/* NOIR & GOLD — Modern American Steakhouse */

:root {
  --paper: #FAF6EE;
  --paper-2: #F2ECDF;
  --card: #FFFDF8;
  --ink: #1F1710;
  --ink-2: #F2ECDF;
  --charcoal: #FFFDF8;
  --charcoal-2: #F2ECDF;
  --gold: #9C7937;
  --gold-bright: #C9A961;
  --gold-soft: rgba(156, 121, 55, .5);
  --gold-faint: rgba(156, 121, 55, .16);
  --ivory: #241B12;
  --ivory-70: rgba(36, 27, 18, .78);
  --ivory-50: rgba(36, 27, 18, .58);
  --wine: #6B1E2B;
  --serif: "Playfair Display", "Georgia", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(.22, .61, .21, 1);
  --reveal-dur: 800ms;
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: .015em;
  color: var(--ivory-70);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

address { font-style: normal; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: .8rem;
  letter-spacing: .12em;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 14px; }

.container { width: min(1160px, 100% - 48px); margin-inline: auto; }
.container-wide { width: min(1360px, 100% - 40px); margin-inline: auto; }
.container-narrow { width: min(880px, 100% - 48px); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.15;
}

h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); letter-spacing: .01em; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .45s var(--ease-out), border-color .45s var(--ease-out), color .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: #8A6B30;
  box-shadow: 0 10px 34px -12px rgba(156, 121, 55, .45);
}
.btn-ghost {
  border-color: var(--gold-soft);
  color: var(--gold);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(156, 121, 55, .08);
}
.btn-lg { padding: 19px 46px; font-size: .78rem; }

.icon {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.star {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}
.stars-note {
  margin-left: 10px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-50);
}

.price {
  font-family: var(--serif);
  color: var(--gold);
}

/* ---------- notification bar ---------- */

.notif-bar {
  background: var(--ink);
  border-bottom: 1px solid rgba(156, 121, 55, .25);
}
.notif-bar p {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
  padding: 9px 0;
  text-align: center;
  font-family: var(--serif);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--gold-bright);
}
.notif-bar a {
  position: relative;
  padding-bottom: 2px;
}
.notif-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.notif-bar a:hover::after,
.notif-bar a:focus-visible::after { transform: scaleX(1); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(250, 246, 238, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(156, 121, 55, .2);
  box-shadow: 0 18px 48px -28px rgba(31, 23, 16, .25);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-mark svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .5s var(--ease-out);
}
.brand:hover .brand-mark svg { transform: rotate(-8deg); }
.brand-word {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: .42em;
  text-indent: .1em;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle-bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--gold);
  transition: transform .45s var(--ease-out), opacity .3s;
}
.nav-toggle-bar:nth-child(1) { top: 17px; }
.nav-toggle-bar:nth-child(2) { top: 26px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 40px);
}
.primary-nav a:not(.btn) {
  position: relative;
  padding: 6px 2px;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ivory-70);
  transition: color .4s var(--ease-out);
}
.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.primary-nav a:not(.btn):hover,
.primary-nav a:not(.btn):focus-visible { color: var(--gold); }
.primary-nav a:not(.btn):hover::after,
.primary-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-reserve { margin-left: clamp(20px, 2.4vw, 40px); padding: 11px 22px; font-size: .66rem; }

body.nav-open { overflow: hidden; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
@supports not (height: 100svh) {
  .hero { min-height: calc(100vh - var(--header-h)); }
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 126%;
  object-fit: cover;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(250, 246, 238, .18) 30%, rgba(250, 246, 238, .55) 78%, rgba(250, 246, 238, .85) 100%),
    linear-gradient(180deg, rgba(250, 246, 238, .78), rgba(250, 246, 238, .22) 38%, var(--paper) 96%);
}

.hero-content {
  text-align: center;
  padding-block: 110px 140px;
}
.hero-content h1 {
  margin-top: 22px;
  font-size: clamp(4.2rem, 13vw, 9.5rem);
  font-weight: 500;
  letter-spacing: .3em;
  text-indent: .3em;
  line-height: 1;
  text-shadow: 0 12px 60px rgba(250, 246, 238, .9);
}
.hero-content .eyebrow { justify-content: center; }
.hero-content .eyebrow::before { display: none; }
.hero-tagline {
  margin-top: 20px;
  font-size: clamp(.78rem, 1.6vw, .95rem);
  font-weight: 300;
  letter-spacing: .5em;
  text-indent: .5em;
  text-transform: uppercase;
  color: var(--ivory);
}
.hero-content .stars { margin-top: 26px; }
.hero-content .star { width: 17px; height: 17px; }
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: rgba(156, 121, 55, .35);
  overflow: visible;
}
.hero-scroll span {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 18px;
  background: var(--gold);
  animation: scroll-cue 2.8s var(--ease-out) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(-18px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(58px); opacity: 0; }
}

/* ---------- shared section rhythm ---------- */

section { scroll-margin-top: calc(var(--header-h) + 8px); }

.section-head { margin-bottom: clamp(48px, 7vh, 76px); }
.section-head .eyebrow { margin-bottom: 18px; }

.hairline-top { border-top: 1px solid rgba(156, 121, 55, .14); }

/* ---------- about ---------- */

.about { padding-block: clamp(96px, 14vh, 170px) clamp(80px, 12vh, 150px); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.about-copy h2 { margin-bottom: 30px; }
.about-copy p + p { margin-top: 22px; }
.pullquote {
  margin-top: 44px;
  padding-left: 26px;
  border-left: 1px solid var(--gold-soft);
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ivory);
}
.pullquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-media {
  position: relative;
  border: 1px solid var(--gold-soft);
  padding: 14px;
}
.about-media::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--gold-faint);
  pointer-events: none;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- why choose us ---------- */

.why {
  padding-block: clamp(80px, 12vh, 140px);
  border-top: 1px solid rgba(156, 121, 55, .12);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 2.4vw, 32px);
}
.why-item {
  position: relative;
  padding: 36px 30px 40px;
  background: linear-gradient(180deg, var(--card), #FAF5EA);
  border: 1px solid rgba(156, 121, 55, .18);
  transition:
    transform .65s var(--ease-out),
    border-color .65s var(--ease-out),
    box-shadow .65s var(--ease-out);
}
.why-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.why-item:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 121, 55, .45);
  box-shadow:
    0 34px 60px -38px rgba(31, 23, 16, .28),
    0 0 46px -24px rgba(156, 121, 55, .3);
}
.why-item:hover::before { transform: scaleX(1); }
.why-item .icon { transition: stroke .6s var(--ease-out); }
.why-item:hover .icon {
  stroke: #7D6027;
  animation: icon-sway 1.9s ease-in-out infinite alternate;
}
@keyframes icon-sway {
  from {
    transform: translateY(-4px) rotate(-4deg);
    filter: drop-shadow(0 8px 12px rgba(156, 121, 55, .4));
  }
  to {
    transform: translateY(4px) rotate(4deg);
    filter: drop-shadow(0 -2px 10px rgba(156, 121, 55, .15));
  }
}
.why-item h3 {
  margin: 20px 0 12px;
  font-size: 1.22rem;
}
.why-item p { font-size: .93rem; line-height: 1.7; }

/* ---------- featured menu ---------- */

.menu-section {
  padding-block: clamp(90px, 13vh, 160px);
  background: linear-gradient(180deg, var(--paper-2), #FBF7EE 55%, var(--paper-2));
  border-top: 1px solid rgba(156, 121, 55, .12);
  border-bottom: 1px solid rgba(156, 121, 55, .12);
}
.menu-section .section-head,
.tabs,
.menu-note { text-align: center; }
.menu-section .section-head .eyebrow { justify-content: center; }
.menu-section .section-head .eyebrow::before { display: none; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 30px);
  width: min(1080px, 100%);
  margin-inline: auto;
}
.menu-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 30px 30px;
  background: linear-gradient(180deg, var(--card), #FAF5EA);
  border: 1px solid rgba(156, 121, 55, .18);
  transition:
    transform .65s var(--ease-out),
    border-color .65s var(--ease-out),
    box-shadow .65s var(--ease-out);
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 121, 55, .45);
  box-shadow:
    0 34px 60px -38px rgba(31, 23, 16, .28),
    0 0 46px -24px rgba(156, 121, 55, .3);
}
.menu-course {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-card h3 { font-size: 1.32rem; }
.item-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ivory-50);
  flex: 1;
}
.menu-card .price {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(156, 121, 55, .14);
  width: 100%;
  text-align: right;
  font-size: 1.18rem;
}
.menu-note {
  margin-top: 54px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory-50);
}
.menu-note::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: 0 auto 26px;
  background: var(--gold-soft);
}

/* ---------- signature dishes ---------- */

.signature { padding-block: clamp(90px, 13vh, 160px) clamp(70px, 9vh, 110px); }
.signature > .section-head { margin-bottom: 44px; }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.2vw, 30px);
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}
.dish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 30px 30px;
  background: linear-gradient(180deg, var(--card), #FAF5EA);
  border: 1px solid rgba(156, 121, 55, .18);
  transition:
    transform .65s var(--ease-out),
    border-color .65s var(--ease-out),
    box-shadow .65s var(--ease-out);
}
.dish-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 121, 55, .45);
  box-shadow:
    0 34px 60px -38px rgba(31, 23, 16, .28),
    0 0 46px -24px rgba(156, 121, 55, .3);
}
.dish-card:hover::before { transform: scaleX(1); }
.dish-no {
  font-size: .64rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing .65s var(--ease-out);
}
.dish-card:hover .dish-no { letter-spacing: .42em; }
.dish-card h3 { font-size: 1.3rem; }
.dish-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ivory-50);
  flex: 1;
}
.dish-card .price {
  align-self: flex-end;
  margin-top: auto;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(156, 121, 55, .14);
  text-align: right;
  font-size: 1.2rem;
}

/* ---------- services ---------- */

.services { padding-block: clamp(70px, 9vh, 110px); }
.services > .section-head { margin-bottom: 44px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.2vw, 30px);
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 42px 30px 38px;
  text-align: center;
  background: linear-gradient(180deg, var(--card), #FAF5EA);
  border: 1px solid rgba(156, 121, 55, .18);
  transition:
    transform .65s var(--ease-out),
    border-color .65s var(--ease-out),
    box-shadow .65s var(--ease-out);
}
.service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.service-card { position: relative; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 121, 55, .45);
  box-shadow:
    0 34px 60px -38px rgba(31, 23, 16, .28),
    0 0 46px -24px rgba(156, 121, 55, .3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { font-size: 1.28rem; }
.service-card p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--ivory-50);
}
.service-card .icon {
  width: 46px;
  height: 46px;
  transition: stroke .6s var(--ease-out);
}
.service-card:hover .icon {
  stroke: #7D6027;
  animation: icon-sway 1.9s ease-in-out infinite alternate;
}

/* ---------- dining experience ---------- */

.experience {
  position: relative;
  min-height: clamp(520px, 86vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(156, 121, 55, .12);
  border-bottom: 1px solid rgba(156, 121, 55, .12);
}
.exp-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.exp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-video.is-hidden { display: none; }
.exp-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 60% at 22% 68%, rgba(232, 185, 106, .28), transparent 70%),
    radial-gradient(50% 66% at 74% 40%, rgba(156, 121, 55, .2), transparent 70%),
    radial-gradient(34% 44% at 52% 78%, rgba(107, 30, 43, .16), transparent 70%),
    radial-gradient(120% 100% at 50% 0%, #FBF7EE, var(--paper-2) 85%);
  animation: candle-breath 7s ease-in-out infinite alternate;
}
@keyframes candle-breath {
  from { filter: brightness(.92); }
  to { filter: brightness(1.12); }
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 90% at 50% 42%, rgba(250, 246, 238, .45) 25%, rgba(250, 246, 238, .82) 100%),
    linear-gradient(180deg, rgba(250, 246, 238, .7), rgba(250, 246, 238, .25) 30%, rgba(250, 246, 238, .85));
}
.exp-content {
  text-align: center;
  padding: 130px 24px;
}
.exp-content .eyebrow { justify-content: center; margin-bottom: 20px; }
.exp-content .eyebrow::before { display: none; }
.exp-content h2 { max-width: 21ch; margin-inline: auto; }
.exp-content p {
  max-width: 52ch;
  margin: 26px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ivory-70);
}

/* ---------- amenities ---------- */

.amenities { padding-block: clamp(70px, 10vh, 110px); }
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(40px, 6vw, 84px);
}
.amenities-list li {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}
.amenities-list .icon { width: 40px; height: 40px; }
.amenities-list span:not(.icon) {
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ivory-50);
}

/* ---------- gallery ---------- */

.gallery { padding-block: clamp(80px, 12vh, 140px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(200px, 26vw, 320px);
  gap: 22px;
}
.g-item { margin: 0; overflow: hidden; }
.g-item.g-tall { grid-row: span 2; }
.g-item button { display: block; width: 100%; height: 100%; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), box-shadow .9s var(--ease-out);
}
.g-item button:hover img,
.g-item button:focus-visible img {
  transform: scale(1.02);
  box-shadow: 0 24px 60px -30px rgba(31, 23, 16, .45);
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 6vw, 90px);
  background: rgba(250, 246, 238, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease-out), visibility 0s linear .6s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.lb-figure {
  max-width: min(960px, 100%);
  text-align: center;
}
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  margin-inline: auto;
  opacity: 1;
  transition: opacity .5s var(--ease-out);
}
.lb-figure img.is-fading { opacity: 0; }
.lb-figure figcaption {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-50);
  letter-spacing: .03em;
}
.lb-close,
.lb-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(156, 121, 55, .4);
  border-radius: 50%;
  color: var(--ivory);
  transition: border-color .4s var(--ease-out), background-color .4s var(--ease-out), color .4s var(--ease-out);
}
.lb-close:hover,
.lb-arrow:hover {
  border-color: var(--gold);
  background: rgba(156, 121, 55, .12);
  color: var(--gold);
}
.lb-close svg,
.lb-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: clamp(10px, 4vw, 48px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(10px, 4vw, 48px); top: 50%; transform: translateY(-50%); }

/* ---------- reviews ---------- */

.reviews {
  padding-block: clamp(90px, 13vh, 160px);
  background: linear-gradient(180deg, var(--paper-2), #FBF7EE 55%, var(--paper-2));
  border-top: 1px solid rgba(156, 121, 55, .12);
  border-bottom: 1px solid rgba(156, 121, 55, .12);
}
.reviews .section-head { text-align: center; }
.reviews .section-head .eyebrow { justify-content: center; }
.reviews .section-head .eyebrow::before { display: none; }

.carousel-viewport { display: grid; }
.review-slide {
  grid-area: 1 / 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.review-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.review-slide blockquote {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.6;
  color: var(--ivory);
}
.review-slide figcaption {
  margin-top: 26px;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 44px;
}
.car-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(156, 121, 55, .35);
  border-radius: 50%;
  color: var(--ivory-70);
  transition: border-color .45s var(--ease-out), color .45s var(--ease-out), background-color .45s var(--ease-out);
}
.car-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(156, 121, 55, .08);
}
.car-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.car-dots { display: flex; gap: 12px; }
.car-dot {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  transition: background-color .45s var(--ease-out), border-color .45s var(--ease-out), transform .45s var(--ease-out);
}
.car-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

/* ---------- faq ---------- */

.faq { padding-block: clamp(90px, 13vh, 160px); }
.faq-list { border-bottom: 1px solid rgba(156, 121, 55, .16); }
.faq-item { border-top: 1px solid rgba(156, 121, 55, .16); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: 100%;
  padding: 27px 4px;
  text-align: left;
}
.faq-q span:first-child {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ivory);
  transition: color .4s var(--ease-out);
}
.faq-q:hover span:first-child { color: var(--gold); }
.faq-icon {
  position: relative;
  flex: 0 0 18px;
  height: 18px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.4px;
  background: var(--gold);
  transition: transform .5s var(--ease-out);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-out);
}
.faq-a > p {
  overflow: hidden;
  min-height: 0;
  padding: 0 4px;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a > p { padding-bottom: 28px; }

/* ---------- contact ---------- */

.contact { padding-block: clamp(90px, 13vh, 160px); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: stretch;
}
.map-wrap {
  border: 1px solid var(--gold-soft);
  padding: 12px;
}
.map-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  cursor: default;
  pointer-events: none;
}
.map-link img,
.map-link svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 9px 22px;
  background: rgba(31, 23, 16, .85);
  border: 1px solid var(--gold-soft);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
}

.contact-info h3 { font-size: 1.5rem; }
.addr { margin-top: 16px; line-height: 1.8; }
.tel-line, .mail-line { margin-top: 6px; }
.contact-info a:not(.btn) {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease-out);
}
.contact-info a:not(.btn):hover { border-color: var(--gold); }
.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  margin-top: 30px;
}
.hours dt, .hours dd { padding: 11px 0; }
.hours dt {
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ivory-50);
}
.hours dd {
  text-align: right;
  font-family: var(--serif);
  color: var(--ivory);
}
.hours dt:not(:nth-last-of-type(1)),
.hours dd:not(:last-child) {
  border-bottom: 1px solid rgba(156, 121, 55, .12);
}
.contact-info .btn { margin-top: 34px; }
.contact-info span.btn {
  display: inline-block;
  cursor: default;
  pointer-events: none;
}

.landmarks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: clamp(44px, 7vh, 70px);
  padding-top: 34px;
  border-top: 1px solid rgba(156, 121, 55, .12);
}
.landmarks-lede {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-50);
}
.landmark-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.landmark-chip,
.landmark-chips li {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(156, 121, 55, .5);
  border-radius: 999px;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.landmark-chips li .landmark-chip {
  display: contents;
  border: none;
  padding: 0;
}

/* ---------- final cta ---------- */

.final-cta {
  position: relative;
  min-height: clamp(480px, 74vh, 700px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(60% 90% at 50% 115%, rgba(232, 185, 106, .3), transparent 70%),
    radial-gradient(90% 130% at 50% -25%, #352718, transparent 62%),
    linear-gradient(180deg, #261C12, #17100A);
}
.cta-content { padding: 110px 24px; }
.cta-content h2 {
  font-size: clamp(2.3rem, 5.4vw, 4.3rem);
  letter-spacing: .02em;
  max-width: 18ch;
  margin-inline: auto;
  color: #F7F1E4;
}
.cta-content .btn { margin-top: 44px; }
.cta-phone {
  display: block;
  margin-top: 26px;
  font-size: .82rem;
  letter-spacing: .3em;
  color: var(--gold-bright);
  transition: color .4s var(--ease-out);
}
.cta-phone:hover { color: #E5CB92; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(156, 121, 55, .14);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  padding-block: clamp(64px, 9vh, 96px) 54px;
}
.f-brand .brand-word { font-size: 1.1rem; }
.f-brand .brand-mark svg { width: 32px; height: 32px; }
.f-tagline {
  margin-top: 20px;
  font-size: .88rem;
  color: var(--ivory-50);
}
.social { display: flex; gap: 12px; margin-top: 26px; }
.social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(156, 121, 55, .4);
  border-radius: 50%;
  color: var(--gold);
  transition: border-color .45s var(--ease-out), background-color .45s var(--ease-out);
}
.social a:hover { border-color: var(--gold); background: rgba(156, 121, 55, .1); }
.social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-col h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.f-col li + li, address { margin-top: 12px; }
.f-col a, .f-col address {
  font-size: .9rem;
  color: var(--ivory-50);
}
.f-col a {
  border-bottom: 1px solid transparent;
  transition: color .4s var(--ease-out), border-color .4s var(--ease-out);
}
.f-col a:hover { color: var(--gold); border-color: var(--gold-soft); }
.f-hours { margin-top: 18px; font-size: .78rem; letter-spacing: .04em; color: var(--ivory-50); }
.f-claim a { color: var(--gold); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid rgba(156, 121, 55, .1);
  font-size: .74rem;
  color: var(--ivory-50);
}
.footer-base a {
  color: var(--ivory-50);
  border-bottom: 1px solid transparent;
  transition: color .4s, border-color .4s;
}
.footer-base a:hover { color: var(--gold); border-color: var(--gold-soft); }

/* ---------- reveal on scroll ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--reveal-dur) var(--ease-out),
    transform var(--reveal-dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-height: 640px) {
  :root { --header-h: 56px; }
  .brand-mark svg { width: 30px; height: 30px; }
  .brand-word { font-size: 1.05rem; }
  .hero-scroll { display: none; }
  .notif-bar { display: none; }
}

@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid,
  .dish-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; justify-self: end; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(250, 246, 238, .98);
    border-bottom: 1px solid rgba(156, 121, 55, .2);
    padding: 18px 0 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), visibility 0s linear .5s;
  }
  .site-header.nav-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .primary-nav ul a {
    display: block;
    padding: 15px 0 !important;
    font-size: .78rem;
  }
  .primary-nav li + li a { border-top: 1px solid rgba(156, 121, 55, .09); }
  .nav-reserve { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { order: 2; }
}

@media (min-width: 981px) {
  .primary-nav { display: contents; }
}

@media (max-width: 720px) {
  body { line-height: 1.7; }
  .why-grid { grid-template-columns: 1fr; gap: 22px; }
  .gallery-grid { grid-auto-rows: 260px; }
  .amenities-list { gap: 34px 40px; }
  .hero-actions .btn { width: min(320px, 100%); }
  .lb-arrow { width: 44px; height: 44px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 14px; right: 14px; }
  .footer-base { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .container { width: min(1160px, 100% - 40px); }
  .menu-grid, .dish-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .landmarks { flex-direction: column; align-items: flex-start; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-scroll span { animation: none; opacity: 0; }
  .exp-fallback { animation: none; }
}
