:root {
  --navy-950: #030d19;
  --navy-900: #06182c;
  --navy-800: #0a2948;
  --navy-700: #123b5b;
  --gold-500: #d8ad45;
  --gold-300: #f4d77a;
  --cream-100: #fff8ea;
  --cream-200: #f3e6c7;
  --sage-500: #8f9a75;
  --wine-600: #7e2e36;
  --ink: #151b20;
  --muted: rgba(255, 248, 234, 0.74);
  --line: rgba(216, 173, 69, 0.34);
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--cream-100);
  background: var(--navy-950);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(244, 215, 122, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 215, 122, 0.03) 1px, transparent 1px),
    var(--navy-950);
  background-size: 64px 64px, 64px 64px, auto;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 8ch;
  font-size: 6.2rem;
  line-height: 0.82;
}

h2 {
  color: var(--cream-100);
  font-size: 4.8rem;
  line-height: 0.94;
}

h3 {
  font-size: 1.8rem;
  line-height: 1;
}

p {
  line-height: 1.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  min-height: 96px;
  padding: 12px clamp(18px, 4vw, 46px);
  padding-left: clamp(128px, 14vw, 218px);
  border-bottom: 1px solid rgba(244, 215, 122, 0.2);
  background: rgba(3, 13, 25, 0.88);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  width: clamp(112px, 13vw, 200px);
  aspect-ratio: 1 / 1;
  padding: clamp(12px, 1.6vw, 22px);
  border-right: 1px solid rgba(244, 215, 122, 0.34);
  border-bottom: 1px solid rgba(244, 215, 122, 0.34);
  background: linear-gradient(158deg, var(--navy-800), var(--navy-950) 72%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  place-items: center;
  text-decoration: none;
  transition: background 200ms ease;
}

.brand:hover {
  background: linear-gradient(158deg, var(--navy-700), var(--navy-900) 72%);
}

.brand img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
}

.nav-links a,
.contact-link {
  position: relative;
  color: rgba(255, 248, 234, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a::after,
.contact-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.contact-link:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta {
  padding: 10px 18px;
  border: 1px solid rgba(244, 215, 122, 0.64);
  color: var(--gold-300);
  justify-self: end;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button {
  padding: 14px 24px;
}

.button-primary {
  border: 1px solid rgba(244, 215, 122, 0.72);
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.button-secondary {
  border: 1px solid rgba(255, 248, 234, 0.44);
  color: var(--cream-100);
  background: rgba(255, 248, 234, 0.08);
}

.button-secondary:hover {
  border-color: var(--gold-300);
  background: rgba(216, 173, 69, 0.18);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(84svh - 74px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.9), rgba(3, 13, 25, 0.62) 44%, rgba(3, 13, 25, 0.25)),
    linear-gradient(0deg, rgba(3, 13, 25, 0.96), rgba(3, 13, 25, 0.18) 42%, rgba(3, 13, 25, 0.42));
}

.hero::after {
  position: absolute;
  inset: auto clamp(18px, 5vw, 72px) 70px;
  z-index: 2;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(40px, 5vw, 48px) 0 58px;
  align-self: center;
}

.eyebrow,
.section-kicker {
  color: var(--gold-300);
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 760px;
  margin-top: 16px;
  color: var(--cream-100);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.65rem;
  font-weight: 600;
  line-height: 1;
}

.hero-text {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 248, 234, 0.84);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 20px;
  left: clamp(18px, 5vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: rgba(255, 248, 234, 0.78);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-facts span:nth-child(2) {
  color: var(--gold-300);
  text-align: center;
}

.hero-facts span:last-child {
  text-align: right;
}

section {
  scroll-margin-top: 92px;
}

.intro-section,
.menu-section,
.gallery-section,
.faq-contact,
.local-section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro-section {
  background: var(--cream-100);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  max-width: 1160px;
  margin: 18px auto 0;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro-section .section-kicker {
  max-width: 1160px;
  margin: 0 auto;
  color: var(--wine-600);
}

.intro-section h2 {
  color: var(--navy-950);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: rgba(21, 27, 32, 0.78);
  font-size: 1.08rem;
}

.signature-band {
  display: grid;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(6, 24, 44, 0.98), rgba(10, 41, 72, 0.78)),
    var(--navy-900);
  grid-template-columns: minmax(220px, 0.88fr) minmax(280px, 0.74fr) minmax(220px, 0.88fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.signature-copy {
  max-width: 460px;
  justify-self: center;
}

.signature-copy h2 {
  margin: 14px 0 22px;
  font-size: 4.35rem;
}

.signature-copy p:not(.eyebrow) {
  color: var(--muted);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 122, 0.28);
  background: var(--navy-900);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.photo-frame:hover img {
  transform: scale(1.035);
}

.signature-photo {
  aspect-ratio: 4 / 5;
}

.offset-photo {
  margin-top: 72px;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(3, 13, 25, 0.12), rgba(3, 13, 25, 0)),
    #0a1e35;
}

.section-heading {
  display: grid;
  max-width: 1120px;
  margin: 0 auto 42px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: 0;
}

.menu-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  overflow: hidden;
  border: 1px solid rgba(244, 215, 122, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.055);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.menu-card img {
  width: 100%;
  height: 250px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.menu-card span {
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 900;
}

.menu-card p {
  color: rgba(255, 248, 234, 0.76);
  font-size: 0.98rem;
}

.events-section {
  display: grid;
  padding: clamp(68px, 9vw, 126px) clamp(20px, 5vw, 72px);
  background: var(--cream-100);
  color: var(--ink);
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.events-copy {
  max-width: 520px;
  justify-self: end;
}

.events-copy .eyebrow {
  color: var(--wine-600);
}

.events-copy h2 {
  margin: 14px 0 24px;
  color: var(--navy-950);
}

.events-copy p,
.events-copy li {
  color: rgba(21, 27, 32, 0.78);
}

.feature-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

.feature-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold-500);
  transform: rotate(45deg);
}

.events-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 18px;
}

.events-gallery .tall {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.events-gallery figure:not(.tall) {
  aspect-ratio: 4 / 3;
}

.order-section {
  display: grid;
  padding: clamp(66px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(3, 13, 25, 0.96), rgba(6, 24, 44, 0.86)),
    var(--navy-900);
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.order-image {
  aspect-ratio: 16 / 10;
}

.order-panel {
  max-width: 560px;
}

.order-panel h2 {
  margin: 14px 0 22px;
}

.steps {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 16px;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 64px;
  padding: 0 0 0 76px;
  color: var(--muted);
}

.steps li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-300);
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  place-items: center;
}

.steps strong {
  display: block;
  color: var(--cream-100);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.04), rgba(255, 248, 234, 0)),
    var(--navy-950);
}

.image-wall {
  display: grid;
  max-width: 1180px;
  margin: 44px auto 0;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.image-wall figure {
  aspect-ratio: 1 / 1;
}

.image-wall .wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.image-wall .tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.local-section {
  display: grid;
  background: var(--cream-100);
  color: var(--ink);
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.local-copy {
  max-width: 640px;
  justify-self: end;
}

.local-copy .eyebrow {
  color: var(--wine-600);
}

.local-copy h2 {
  margin: 12px 0 22px;
  color: var(--navy-950);
}

.local-copy p {
  color: rgba(21, 27, 32, 0.76);
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(126, 46, 54, 0.18);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(216, 173, 69, 0.16);
  font-size: 0.92rem;
  font-weight: 900;
}

.faq-contact {
  display: grid;
  background:
    linear-gradient(180deg, rgba(6, 24, 44, 0.92), rgba(3, 13, 25, 1)),
    var(--navy-900);
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(32px, 7vw, 96px);
}

.faq-list {
  max-width: 760px;
  justify-self: end;
}

.faq-list h2 {
  margin: 12px 0 28px;
}

details {
  border-top: 1px solid rgba(244, 215, 122, 0.26);
}

details:last-child {
  border-bottom: 1px solid rgba(244, 215, 122, 0.26);
}

summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--cream-100);
  font-weight: 900;
}

details p {
  padding: 0 0 22px;
  color: var(--muted);
}

.contact-panel {
  align-self: start;
  padding: 30px;
  border: 1px solid rgba(244, 215, 122, 0.34);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.055);
}

.contact-panel img {
  width: 160px;
  height: auto;
  margin-bottom: 26px;
  border: 1px solid rgba(244, 215, 122, 0.28);
}

.contact-panel h2 {
  margin-bottom: 14px;
  font-size: 3.1rem;
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel .button {
  width: 100%;
  margin: 24px 0 18px;
}

.contact-link {
  display: table;
  margin-top: 14px;
  overflow-wrap: anywhere;
}

.contact-location {
  margin-top: 28px;
  color: var(--gold-300);
  font-weight: 900;
}

.site-footer {
  display: flex;
  min-height: 120px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(244, 215, 122, 0.22);
  background: #020914;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
}

.site-footer span,
.site-footer p {
  color: rgba(255, 248, 234, 0.68);
}

/* ---- Internal pages ---- */
.nav-links a.is-active {
  color: var(--gold-300);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 52vh;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(52px, 7vw, 84px);
  place-items: center;
  text-align: center;
}

.page-hero .hero-bg {
  z-index: 0;
  object-fit: cover;
}

.page-hero .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 13, 25, 0.78), rgba(3, 13, 25, 0.62) 46%, rgba(3, 13, 25, 0.9)),
    linear-gradient(90deg, rgba(3, 13, 25, 0.6), rgba(3, 13, 25, 0.42));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
}

.page-hero h1 {
  max-width: none;
  margin: 14px auto 0;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.9;
}

.page-hero p {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(255, 248, 234, 0.86);
  font-size: 1.06rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 248, 234, 0.6);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold-300);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.page-section.alt {
  background: var(--cream-100);
  color: var(--ink);
}

.page-section.alt h2 {
  color: var(--navy-950);
}

.page-section.alt p {
  color: rgba(21, 27, 32, 0.78);
}

.page-section.alt .eyebrow,
.page-section.alt .section-kicker {
  color: var(--wine-600);
}

.menu-detail-card {
  display: grid;
  gap: 12px;
  padding: 26px 24px;
  border: 1px solid rgba(244, 215, 122, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.055);
}

.menu-detail-card .price {
  color: var(--gold-300);
  font-weight: 900;
}

.cta-band {
  display: grid;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(3, 13, 25, 0.96), rgba(6, 24, 44, 0.86)),
    var(--navy-900);
  place-items: center;
  text-align: center;
}

.cta-band h2 {
  max-width: 18ch;
  margin: 14px 0 22px;
}

.cta-band p {
  max-width: 56ch;
  margin: 0 auto 26px;
  color: var(--muted);
}

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

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .signature-band,
  .events-section,
  .order-section,
  .local-section,
  .faq-contact,
  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .signature-copy,
  .events-copy,
  .local-copy,
  .faq-list {
    max-width: none;
    justify-self: stretch;
  }

  .signature-photo {
    aspect-ratio: 16 / 10;
  }

  .offset-photo {
    margin-top: 0;
  }

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

  .menu-card img {
    height: 235px;
  }

  h1 {
    font-size: 5.05rem;
  }

  h2 {
    font-size: 3.75rem;
  }

  .hero-subtitle,
  .signature-copy h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 84px;
    padding-left: clamp(98px, 26vw, 132px);
    gap: 14px;
  }

  .brand {
    width: clamp(86px, 24vw, 120px);
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 14px;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 13, 25, 0.46), rgba(3, 13, 25, 0.94) 58%, rgba(3, 13, 25, 0.98)),
      linear-gradient(90deg, rgba(3, 13, 25, 0.82), rgba(3, 13, 25, 0.28));
  }

  .hero-content {
    width: min(100% - 40px, 560px);
    padding: 42px 0 112px;
  }

  h1 {
    font-size: 4.2rem;
  }

  .hero-subtitle {
    font-size: 1.78rem;
  }

  h2,
  .signature-copy h2 {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 5px;
    font-size: 0.84rem;
  }

  .hero-facts span:nth-child(2),
  .hero-facts span:last-child {
    text-align: left;
  }

  .menu-grid,
  .events-gallery,
  .image-wall {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    height: 220px;
  }

  .image-wall .wide,
  .image-wall .tall,
  .events-gallery .tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .steps li {
    padding-left: 62px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding: 12px 16px;
    padding-left: 100px;
  }

  .brand {
    width: 86px;
    padding: 10px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
  }

  .intro-section,
  .menu-section,
  .gallery-section,
  .faq-contact,
  .local-section,
  .events-section,
  .order-section,
  .signature-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .menu-card div,
  .contact-panel {
    padding: 20px;
  }

  .contact-panel h2 {
    font-size: 2.55rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2,
  .signature-copy h2 {
    font-size: 2.55rem;
  }

  .hero-subtitle {
    font-size: 1.58rem;
  }
}
