: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: 104px;
  padding: 12px clamp(18px, 4vw, 46px);
  padding-left: clamp(158px, 17vw, 280px);
  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(146px, 15.5vw, 248px);
  aspect-ratio: 1 / 1;
  padding: clamp(9px, 1.1vw, 17px);
  border-right: 1px solid rgba(244, 215, 122, 0.42);
  border-bottom: 1px solid rgba(244, 215, 122, 0.42);
  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(2px, 0.6vw, 8px);
}

.nav-links a {
  position: relative;
  padding: 9px 15px;
  border-radius: 999px;
  color: rgba(255, 248, 234, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  color: var(--cream-100);
  background: rgba(255, 248, 234, 0.08);
}

.nav-links a.is-active {
  color: var(--gold-300);
  background: rgba(216, 173, 69, 0.16);
  box-shadow: inset 0 0 0 1px rgba(244, 215, 122, 0.32);
}

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

.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;
}

.contact-link:hover::after {
  transform: scaleX(1);
}

.top-bar {
  position: relative;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #1a1206;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.top-bar svg {
  flex: none;
  width: 19px;
  height: 19px;
}

.top-bar strong {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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 ---- */
.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) {
  .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) {
  .top-bar {
    padding: 7px 12px;
    font-size: 0.74rem;
  }

  .top-bar .hide-sm {
    display: none;
  }

  .site-header {
    min-height: 88px;
    padding-left: clamp(122px, 33vw, 172px);
    gap: 14px;
  }

  .brand {
    width: clamp(110px, 30vw, 152px);
    padding: clamp(8px, 2.4vw, 12px);
  }

  .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: 118px;
  }

  .brand {
    width: 108px;
    padding: 9px;
  }

  .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;
  }
}

/* ======================================================================
   v2 — Modern menu, mobile drawer, social, subtle motion
   ====================================================================== */

body {
  overflow-x: clip;
}

/* ---- Header: glass + scroll state ---- */
.site-header {
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 248, 234, 0.05);
  transition:
    min-height 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 78px;
  background: rgba(3, 13, 25, 0.96);
  border-bottom-color: rgba(244, 215, 122, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

/* ---- Header CTA: gold fill sweep ---- */
.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta:hover {
  color: #07111f;
  border-color: transparent;
}

.header-cta:hover::before {
  transform: scaleX(1);
}

.header-cta:active,
.button:active,
.social-btn:active {
  transform: translateY(0) scale(0.97);
}

/* ---- Nav pills: lift + underline accent ---- */
.nav-links a {
  transition:
    color 0.2s ease,
    background 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--gold-300);
  transform: translateX(-50%);
  transition: width 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.is-active):hover::after {
  width: 16px;
}

/* ---- Primary button: sheen sweep ---- */
.button-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button-primary::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: translateX(-130%);
}

.button-primary:hover::after {
  animation: sg-sheen 0.8s ease;
}

@keyframes sg-sheen {
  to {
    transform: translateX(130%);
  }
}

/* ---- Cards: hover lift ---- */
.menu-card,
.menu-detail-card {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.menu-card:hover,
.menu-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 215, 122, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
}

/* ---- Social buttons ---- */
.social-btn {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 215, 122, 0.4);
  border-radius: 50%;
  color: var(--cream-100);
  background: rgba(255, 248, 234, 0.05);
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.28s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-color: transparent;
  transform: translateY(-3px);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ---- Footer ---- */
.site-footer {
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand p {
  max-width: 46ch;
}

.footer-social {
  display: flex;
  gap: 12px;
}

/* ---- Hamburger toggle ---- */
.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(244, 215, 122, 0.4);
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.nav-toggle:hover {
  background: rgba(216, 173, 69, 0.16);
  border-color: rgba(244, 215, 122, 0.7);
}

.nav-toggle-bars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--cream-100);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--cream-100);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

body.nav-open .nav-toggle-bars {
  background: transparent;
}

body.nav-open .nav-toggle-bars::before {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile drawer ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(2, 9, 20, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  width: min(86vw, 360px);
  padding: clamp(92px, 16vh, 118px) 26px calc(30px + env(safe-area-inset-bottom));
  background: linear-gradient(170deg, var(--navy-800), var(--navy-950) 70%);
  border-left: 1px solid rgba(244, 215, 122, 0.34);
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.42s;
  will-change: transform;
  overflow-y: auto;
}

body.nav-open .mobile-nav {
  visibility: visible;
  transform: translateX(0);
  transition:
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}

body.nav-open .site-header {
  z-index: 65;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  position: relative;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--cream-100);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  opacity: 0;
  transform: translateX(18px);
  transition:
    background 0.25s ease,
    color 0.2s ease,
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.nav-open .mobile-nav-links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 1) * 55ms + 120ms);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  background: rgba(255, 248, 234, 0.07);
}

.mobile-nav-links a.is-active {
  color: var(--gold-300);
  background: rgba(216, 173, 69, 0.12);
}

.mobile-nav-links a.is-active::before {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 3px;
  height: 56%;
  content: "";
  border-radius: 3px;
  background: var(--gold-300);
  transform: translateY(-50%);
}

.mobile-nav-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-foot .button {
  width: 100%;
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.nav-open .mobile-nav-foot .button {
  opacity: 1;
  transform: none;
  transition-delay: calc(7 * 55ms + 120ms);
}

.mobile-social {
  display: flex;
  gap: 12px;
}

.mobile-nav-phone {
  margin: 0;
  color: var(--gold-300);
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* ---- Scroll reveal + hero load (motion-safe only) ---- */
@media (prefers-reduced-motion: no-preference) {
  .has-js .menu-card,
  .has-js .menu-detail-card,
  .has-js .photo-frame,
  .has-js .section-heading,
  .has-js .cta-band,
  .has-js .contact-panel,
  .has-js .faq-list details,
  .has-js .feature-list li,
  .has-js .steps li,
  .has-js .intro-copy,
  .has-js .signature-copy,
  .has-js .order-panel,
  .has-js .events-copy,
  .has-js .local-copy,
  .has-js .local-tags {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .has-js .menu-card.is-visible,
  .has-js .menu-detail-card.is-visible,
  .has-js .photo-frame.is-visible,
  .has-js .section-heading.is-visible,
  .has-js .cta-band.is-visible,
  .has-js .contact-panel.is-visible,
  .has-js .faq-list details.is-visible,
  .has-js .feature-list li.is-visible,
  .has-js .steps li.is-visible,
  .has-js .intro-copy.is-visible,
  .has-js .signature-copy.is-visible,
  .has-js .order-panel.is-visible,
  .has-js .events-copy.is-visible,
  .has-js .local-copy.is-visible,
  .has-js .local-tags.is-visible {
    opacity: 1;
    transform: none;
  }

  .has-js .hero-content > *,
  .has-js .page-hero-content > * {
    opacity: 0;
    animation: sg-rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .has-js .hero-content > *:nth-child(1),
  .has-js .page-hero-content > *:nth-child(1) {
    animation-delay: 0.06s;
  }
  .has-js .hero-content > *:nth-child(2),
  .has-js .page-hero-content > *:nth-child(2) {
    animation-delay: 0.16s;
  }
  .has-js .hero-content > *:nth-child(3),
  .has-js .page-hero-content > *:nth-child(3) {
    animation-delay: 0.26s;
  }
  .has-js .hero-content > *:nth-child(4),
  .has-js .page-hero-content > *:nth-child(4) {
    animation-delay: 0.36s;
  }
  .has-js .hero-content > *:nth-child(5),
  .has-js .page-hero-content > *:nth-child(5) {
    animation-delay: 0.46s;
  }
}

@keyframes sg-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- Menu/drawer breakpoints ---- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .header-actions .header-cta {
    display: none;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
