/* =========================================================
   Allendale Steakhouse — luxury black / gold / white
   ========================================================= */

:root {
  --ink:        #0b0a09;
  --ink-2:      #110f0c;
  --char:       #1a1712;
  --char-2:     #221d16;
  --gold:       #c9a24d;
  --gold-2:     #e6c982;
  --gold-deep:  #9d7a2c;
  --cream:      #f5efe3;
  --paper:      #faf7f1;
  --muted:      #b3a896;   /* body text on dark */
  --muted-2:    #8d8472;   /* secondary on dark */
  --ink-muted:  #6b6256;   /* secondary on light */
  --line:       rgba(201, 162, 77, 0.24);
  --line-soft:  rgba(245, 239, 227, 0.10);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Karla", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

::selection { background: var(--gold); color: var(--ink); }

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

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding-block: clamp(72px, 9vw, 132px); position: relative; scroll-margin-top: 96px; }
[id] { scroll-margin-top: 96px; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before,
.eyebrow.has-after::after {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.has-after::after { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow.solo::before { display: none; }

.kicker {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  letter-spacing: -0.015em;
}
.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  max-width: 60ch;
}

/* ----------  Buttons  ---------- */
.btn {
  --bg: var(--gold);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border: 1px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn:hover { background: var(--gold-2); }
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 30px -14px rgba(201, 162, 77, 0.7);
}
.btn--gold:hover { background: linear-gradient(180deg, #f2d99a, var(--gold-2)); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover { background: rgba(245, 239, 227, 0.06); border-color: var(--gold); color: var(--gold-2); }

.btn--ink {
  background: transparent;
  color: var(--ink);
  border-color: rgba(11, 10, 9, 0.3);
}
.btn--ink:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn--sm { padding: 0.75em 1.4em; font-size: 0.7rem; }

.btn .ico { width: 15px; height: 15px; }

/* ----------  Announcement bar  ---------- */
.topbar {
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}
.topbar__items { display: flex; gap: 26px; align-items: center; }
.topbar__items span { display: inline-flex; align-items: center; gap: 0.6em; }
.topbar .dot { color: var(--gold); }
.topbar a:hover { color: var(--gold-2); }
.topbar__phone { color: var(--cream); font-weight: 700; }
@media (max-width: 760px) {
  .topbar__items span.hide-sm { display: none; }
  .topbar .container { justify-content: center; }
}

/* ----------  Header / nav  ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,10,9,0.78), rgba(11,10,9,0));
  opacity: 1; transition: opacity .4s var(--ease);
}
.header.is-solid::before { opacity: 0; }
.header.is-solid {
  background: rgba(11, 10, 9, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { height: 52px; width: auto; transition: height .4s var(--ease); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.brand__sub {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.header.is-solid .brand img { height: 44px; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 24px; font-size: 0.85rem; }
.mobile-menu .mm-meta { margin-top: 28px; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.05em; }

@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 620px) {
  .nav__cta .btn { display: none; }
  .nav { min-height: 70px; }
  .topbar__items:first-child { display: none; }
  .topbar .container { justify-content: center; }
}

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-block: 148px 40px;
  overflow: hidden;
}
.hero .container { display: flex; flex-direction: column; }
.hero__inner { margin-top: auto; }
.hero__bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1558030006-450675393462?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.06);
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,9,0.72) 0%, rgba(11,10,9,0.42) 38%, rgba(11,10,9,0.82) 100%),
    radial-gradient(120% 90% at 18% 50%, rgba(11,10,9,0.86) 0%, rgba(11,10,9,0.25) 60%, transparent 100%);
}
.hero__grain { position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 3px 3px; }
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 720px; }
.hero h1 {
  font-size: clamp(2.8rem, 6.6vw, 5.3rem);
  line-height: 0.99;
  margin-top: 18px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero__tag {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--cream);
  max-width: 48ch;
  opacity: 0.92;
}
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: clamp(32px, 5vw, 56px);
}
.hero__strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: none;
}
.hero__strip-cell { background: rgba(11,10,9,0.55); padding: 22px 26px; backdrop-filter: blur(4px); }
.hero__strip-cell .lbl { font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.hero__strip-cell .val { margin-top: 8px; font-family: var(--font-display); font-size: 1.18rem; color: var(--cream); }
.hero__strip-cell .sub { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
@media (max-width: 720px) {
  .hero__strip-grid { grid-template-columns: 1fr; }
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted-2); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: .4 } 50% { transform: scaleY(1); opacity: 1 } }

/* ----------  Marquee value props  ---------- */
.props {
  background: var(--ink-2);
  border-block: 1px solid var(--line-soft);
}
.props .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding-block: 0;
}
.prop {
  padding: 34px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 1px solid var(--line-soft);
}
.prop:first-child { border-left: none; }
.prop .ico { width: 26px; height: 26px; color: var(--gold); flex: none; margin-top: 2px; }
.prop h3 { font-size: 1.02rem; letter-spacing: 0; color: var(--cream); }
.prop p { margin: 4px 0 0; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) {
  .props .container { grid-template-columns: 1fr 1fr; }
  .prop:nth-child(3) { border-left: none; }
  .prop { border-top: 1px solid var(--line-soft); }
  .prop:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 520px) {
  .props .container { grid-template-columns: 1fr; }
  .prop { border-left: none; border-top: 1px solid var(--line-soft); }
  .prop:first-child { border-top: none; }
}

/* ----------  About  ---------- */
.about { background: var(--ink); }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid var(--line);
}
.about__media::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--line);
  pointer-events: none; mix-blend-mode: screen; opacity: 0.6;
}
.about__seal {
  position: absolute; right: -34px; bottom: -34px;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--ink); border: 1px solid var(--line);
  display: grid; place-items: center; padding: 20px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.about__seal img { width: 100%; }
.about h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-top: 22px; }
.about h2 em { font-style: italic; color: var(--gold-2); }
.about p + p { margin-top: 18px; }
.about .lead { margin-top: 26px; }
.about__sign {
  margin-top: 34px; display: flex; align-items: center; gap: 16px;
  padding-top: 26px; border-top: 1px solid var(--line-soft);
}
.about__sign .nm { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold-2); }
.about__sign .rl { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .about__seal { width: 104px; height: 104px; right: -16px; bottom: -16px; }
}

/* ----------  Section heading block  ---------- */
.sec-head { max-width: 640px; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: 20px; font-size: clamp(2rem, 4.2vw, 3.3rem); }
.sec-head h2 em { font-style: italic; color: var(--gold-2); }
.sec-head p { margin-top: 18px; }

/* ----------  Signature cuts  ---------- */
.cuts { background: var(--ink-2); }
.cuts__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cuts__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cut {
  position: relative;
  background: var(--char);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.cut:hover { border-color: var(--line); transform: translateY(-4px); }
.cut__img { aspect-ratio: 4 / 3; overflow: hidden; }
.cut__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cut:hover .cut__img img { transform: scale(1.07); }
.cut__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.cut__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.cut__name { font-family: var(--font-display); font-size: 1.22rem; color: var(--cream); }
.cut__price { font-family: var(--font-display); font-size: 1.12rem; color: var(--gold-2); white-space: nowrap; }
.cut__desc { margin-top: 10px; font-size: 0.86rem; color: var(--muted); line-height: 1.55; flex: 1; }
.cut__tag {
  margin-top: 18px; align-self: flex-start;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); padding: 5px 11px;
}
@media (max-width: 1000px) { .cuts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .cuts__grid { grid-template-columns: 1fr; } }

/* ----------  Menu preview  ---------- */
.menu { background: var(--ink); }
.menu__tabs { display: inline-flex; gap: 6px; border: 1px solid var(--line); padding: 6px; margin-top: 30px; }
.menu__tab {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  padding: 0.85em 1.8em; color: var(--muted); cursor: pointer; background: none; border: none;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.menu__tab.is-active { background: var(--gold); color: var(--ink); }
.menu__panel { display: none; margin-top: 48px; }
.menu__panel.is-active { display: block; animation: fade .5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 64px; }
.menu__group + .menu__group { margin-top: 30px; }
.menu__group h3 {
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  font-family: var(--font-body); font-weight: 700;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.mrow { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: baseline; padding: 9px 0; }
.mrow__l { min-width: 0; }
.mrow__name { font-family: var(--font-display); font-size: 1.08rem; color: var(--cream); }
.mrow__desc { font-size: 0.8rem; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.mrow__dots { flex: 1; border-bottom: 1px dotted rgba(201,162,77,0.35); margin: 0 4px 5px; height: 1px; align-self: end; }
.mrow__price { font-family: var(--font-display); font-size: 1.04rem; color: var(--gold-2); white-space: nowrap; }
.menu__foot { margin-top: 50px; display: flex; flex-wrap: wrap; gap: 16px 26px; align-items: center; justify-content: space-between; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.menu__note { font-size: 0.84rem; color: var(--muted); letter-spacing: 0.02em; }
@media (max-width: 820px) { .menu__cols { grid-template-columns: 1fr; gap: 8px; } }

/* ----------  Experience / gallery  ---------- */
.exp { background: var(--ink-2); }
.exp__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.exp__cell { position: relative; overflow: hidden; border: 1px solid var(--line-soft); }
.exp__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.exp__cell:hover img { transform: scale(1.06); }
.exp__cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,10,9,0.6)); }
.exp__cap { position: absolute; left: 18px; bottom: 14px; z-index: 2; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream); }
.exp__a { grid-column: span 2; grid-row: span 2; }
.exp__b { grid-column: span 2; }
@media (max-width: 760px) {
  .exp__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .exp__a { grid-column: span 2; grid-row: span 2; }
  .exp__b { grid-column: span 2; }
}

/* ----------  Private events  ---------- */
.events { position: relative; overflow: hidden; }
.events__bg { position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=80");
  background-size: cover; background-position: center; }
.events__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,9,0.94) 0%, rgba(11,10,9,0.78) 50%, rgba(11,10,9,0.55) 100%); }
.events .container { position: relative; z-index: 2; }
.events__inner { max-width: 560px; }
.events h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-top: 22px; }
.events h2 em { font-style: italic; color: var(--gold-2); }
.events ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.events li { display: flex; gap: 14px; align-items: flex-start; color: var(--cream); }
.events li .ico { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 5px; }
.events__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------  Visit / hours + location  ---------- */
.visit { background: var(--ink); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.hours { list-style: none; padding: 0; margin: 30px 0 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.hours li.is-today { color: var(--gold-2); }
.hours .day { letter-spacing: 0.08em; }
.hours .time { font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); }
.hours li.is-today .time { color: var(--gold-2); }
.hours .closed { color: var(--muted-2); font-style: italic; }
.visit__badge { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); padding: 9px 16px; }

.contact-block { margin-top: 28px; display: grid; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ico { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
.contact-item .ci-lbl { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-2); }
.contact-item .ci-val { font-family: var(--font-display); font-size: 1.18rem; color: var(--cream); margin-top: 2px; }
.contact-item a.ci-val:hover { color: var(--gold-2); }
.map-wrap { margin-top: 28px; border: 1px solid var(--line); overflow: hidden; aspect-ratio: 16 / 10; background: var(--char); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.9) contrast(0.9); }
.visit__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 880px) { .visit__grid { grid-template-columns: 1fr; } }

/* ----------  Gift card band  ---------- */
.gift { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-top: 1px solid var(--line); }
.gift__card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(201,162,77,0.16), transparent 55%),
    var(--char);
  padding: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.gift__card::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 40L40 0' stroke='%23c9a24d' stroke-opacity='0.05'/%3E%3C/svg%3E"); }
.gift__card h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); position: relative; }
.gift__card h2 em { font-style: italic; color: var(--gold-2); }
.gift__card p { color: var(--muted); margin-top: 16px; position: relative; max-width: 46ch; }
.gift__actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; position: relative; }
.gift__actions .btn { width: 100%; }
@media (max-width: 760px) { .gift__card { grid-template-columns: 1fr; } }

/* ----------  Footer  ---------- */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding-block: 70px 36px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer__brand img { height: 76px; }
.footer__brand p { color: var(--muted); font-size: 0.88rem; margin-top: 20px; max-width: 34ch; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--muted); transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.footer__social a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: 0.9rem; padding: 6px 0; margin: 0; }
.footer__col a:hover { color: var(--gold-2); }
.footer__bottom { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.04em; }
.footer__bottom a:hover { color: var(--gold-2); }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ----------  Scroll reveal  ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ----------  Menu page specifics  ---------- */
.page-hero { position: relative; padding-block: 150px 80px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.page-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,10,9,0.86), rgba(11,10,9,0.7)); }
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-top: 22px; }
.page-hero p { margin: 22px auto 0; }
.page-hero__switch { margin-top: 36px; display: inline-flex; gap: 6px; border: 1px solid var(--line); padding: 6px; }
.page-hero__switch a { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; padding: 0.8em 1.8em; color: var(--muted); }
.page-hero__switch a.is-active { background: var(--gold); color: var(--ink); }

.menupage { background: var(--ink); }
.menupage__cols { columns: 2; column-gap: 64px; }
.menu-section { break-inside: avoid; margin-bottom: 40px; }
.menu-section h2 {
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .menupage__cols { columns: 1; } }
.mp-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 0.86rem; }

/* ----------  Event packages  ---------- */
.pkgs { background: var(--ink); }
.pkg-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--char);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 3.4vw, 44px);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.pkg:hover { border-color: var(--line); transform: translateY(-4px); }
.pkg--feature { border-color: var(--line); background:
  radial-gradient(120% 140% at 100% 0%, rgba(201,162,77,0.12), transparent 55%), var(--char); }
.pkg__flag {
  position: absolute; top: 0; right: clamp(28px, 3.4vw, 44px); transform: translateY(-50%);
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--ink); background: var(--gold); padding: 6px 12px;
}
.pkg__price { display: flex; align-items: baseline; gap: 10px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.pkg__amt { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--gold-2); line-height: 1; }
.pkg__per { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.pkg__courses { margin-top: 22px; display: grid; gap: 18px; flex: 1; }
.pkg__course .lbl {
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 7px;
}
.pkg__course .items { font-family: var(--font-display); font-size: 1.06rem; color: var(--cream); line-height: 1.5; }
.pkg__course .items .sep { color: var(--muted-2); }
.pkg__incl { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.pkg__incl .lbl { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 6px; }
.pkg__incl .items { font-size: 0.92rem; color: var(--muted); }
.pkg__addon { margin-top: 12px; font-size: 0.84rem; color: var(--muted); font-style: italic; }
@media (max-width: 760px) { .pkg-grid { grid-template-columns: 1fr; } }

.events-note {
  margin-top: 40px; text-align: center; font-size: 0.86rem; color: var(--muted);
  letter-spacing: 0.03em;
}
.events-cta {
  margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  border: 1px solid var(--line); background:
    radial-gradient(120% 160% at 0% 0%, rgba(201,162,77,0.12), transparent 55%), var(--char);
  padding: clamp(36px, 5vw, 60px); align-items: center;
}
.events-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
@media (max-width: 760px) {
  .events-cta { grid-template-columns: 1fr; }
  .events-cta__actions { justify-content: flex-start; }
}

/* utility */
.gold { color: var(--gold-2); }
.hr-fade { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; margin: 0; }
