:root {
  --black: #080705;
  --ink: #15110c;
  --cream: #fff7ea;
  --soft: #eadcc7;
  --gold: #c9943d;
  --green: #253a31;
  --burgundy: #6f2231;
  --line: rgba(255, 247, 234, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(8, 7, 5, 0.94);
  border-bottom: 1px solid rgba(255, 247, 234, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 46px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(201, 148, 61, 0.2));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 247, 234, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

.nav-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
}

.nav-action,
.button.primary {
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  border-color: rgba(255, 247, 234, 0.42);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: end;
  padding: 150px clamp(18px, 6vw, 92px) 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.9) 0%, rgba(8, 7, 5, 0.52) 48%, rgba(8, 7, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.84), rgba(8, 7, 5, 0.08) 45%),
    url("assets/hero-dining.png") center / cover no-repeat;
}

.hero-content {
  max-width: 940px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  margin-bottom: 20px;
  font-size: 88px;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 56px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero p {
  max-width: 760px;
  color: rgba(255, 247, 234, 0.88);
  font-size: 21px;
  font-weight: 600;
}

.hero-actions,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(8, 7, 5, 0.62);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 140px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.hero-panel p {
  margin-bottom: 0;
  color: var(--cream);
  font-size: 16px;
}

.section-band {
  scroll-margin-top: 100px;
  padding: 96px clamp(18px, 6vw, 92px);
}

.section-heading {
  margin-bottom: 40px;
}

.section-intro {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255, 247, 234, 0.78);
  font-size: 18px;
}

.about {
  background: var(--cream);
  color: var(--ink);
}

.about .section-heading .eyebrow,
.about h2 {
  color: var(--ink);
}

.about-grid,
.events,
.schedule {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.about-copy p,
.events-copy p,
.schedule-copy p {
  max-width: 690px;
  color: rgba(21, 17, 12, 0.78);
  font-size: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip div,
.service-grid article,
.event-list article,
.highlight-grid article,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-strip div {
  min-height: 150px;
  padding: 22px;
  background: var(--black);
  color: var(--cream);
}

.trust-strip strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
}

.trust-strip span {
  font-weight: 800;
}

.services,
.gallery,
.schedule {
  background: var(--black);
}

.service-grid,
.highlight-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 250px;
  padding: 26px;
  background: var(--ink);
}

.service-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-weight: 900;
}

.service-grid p,
.event-list p,
.highlight-grid p,
.testimonial-grid blockquote,
.testimonial-grid figcaption,
.schedule-copy p {
  color: rgba(255, 247, 234, 0.78);
}

.events {
  background: var(--green);
}

.events-copy {
  position: sticky;
  top: 120px;
}

.events-copy p {
  color: rgba(255, 247, 234, 0.82);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list article {
  padding: 24px;
  background: rgba(255, 247, 234, 0.08);
}

.highlights {
  background: var(--cream);
  color: var(--ink);
}

.highlights .eyebrow,
.highlights h2 {
  color: var(--ink);
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-grid article {
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
}

.highlight-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.highlight-grid article:nth-child(1) img {
  object-position: center 58%;
}

.highlight-grid article:nth-child(2) img {
  object-position: center 48%;
}

.highlight-grid article:nth-child(3) img {
  object-position: center 55%;
}

.highlight-grid h3,
.highlight-grid p {
  padding-right: 22px;
  padding-left: 22px;
}

.highlight-grid h3 {
  margin-top: 22px;
}

.highlight-grid p {
  padding-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-large {
  grid-row: span 2;
}

.testimonials {
  background: var(--burgundy);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 24px;
  align-items: start;
}

.review-card,
.review-form {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card {
  padding: 28px;
  background: rgba(8, 7, 5, 0.28);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.testimonial-grid blockquote,
.review-card blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.22;
}

.review-author {
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.owner-response {
  border-top: 1px solid rgba(255, 247, 234, 0.16);
  padding-top: 16px;
}

.owner-response strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-response p,
.review-form p {
  color: rgba(255, 247, 234, 0.78);
}

.review-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(8, 7, 5, 0.42);
  box-shadow: var(--shadow);
}

.review-form h3 {
  margin-bottom: 0;
}

.schedule {
  align-items: start;
}

.contact-details {
  margin-top: 28px;
}

.contact-details a {
  border-bottom: 1px solid rgba(255, 247, 234, 0.48);
  font-weight: 900;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #050403;
  color: rgba(255, 247, 234, 0.78);
  font-size: 14px;
}

.site-footer img {
  width: 62px;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 7, 5, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-action {
    justify-self: end;
  }

  .hero,
  .about-grid,
  .events,
  .review-layout,
  .schedule {
    grid-template-columns: 1fr;
  }

  .events-copy {
    position: static;
  }

  .service-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 70px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 10px 16px;
  }

  .brand small,
  .nav-action {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 48px;
  }

  .brand strong {
    font-size: 20px;
  }

  .nav-links {
    top: 76px;
  }

  .hero {
    min-height: 92vh;
    padding: 118px 18px 52px;
    background:
      linear-gradient(90deg, rgba(8, 7, 5, 0.92), rgba(8, 7, 5, 0.64)),
      url("assets/hero-dining.png") center / cover no-repeat;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-panel {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
  }

  .hero-panel img {
    width: 82px;
    max-height: 110px;
    margin-bottom: 0;
  }

  .hero-panel p {
    font-size: 15px;
  }

  .section-band {
    padding: 70px 18px;
  }

  .service-grid,
  .highlight-grid,
  .testimonial-grid,
  .trust-strip,
  .booking-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-large {
    grid-row: span 1;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer img {
    width: 54px;
    max-height: 74px;
  }
}
