/* ════════════════════════════════════════════════════════════
   NORTH CHANNEL · Full-Bleed Night Canvas
   ONE photo behind everything. Content floats on top.
   ════════════════════════════════════════════════════════════ */

:root {
  --gold:   #c8401a;
  --goldb:  #e05522;
  --goldl:  #d44c1e;
  --goldbd: rgba(200,64,26,0.35);
  --green:  #1e4030;
  --dark:   #0e0b04;
  --muted:  rgba(255,255,255,0.62);
  --xmuted: rgba(255,255,255,0.38);
  --hh:     64px;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Work Sans', system-ui, sans-serif;
  --ty:     calc(50vh - 200px);
  --hty:    calc(var(--hh) + 32px);
  /* World total width */
  --world:  3680px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  color: #fff;
}
img   { display: block; }
a     { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* ── OWNERSHIP BANNER ────────────────────────────────────── */
.mgmt-banner {
  display: none;
}

/* Under New Ownership — floats directly on hero photo */
.hero-ownership {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .3rem 2rem;
  z-index: 255;
  pointer-events: none;
}
.ownership-txt {
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.mgmt-banner em {
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .06em;
  color: rgba(0,0,0,0.85);
  text-shadow: none;
  white-space: nowrap;
}
.mgmt-line {
  flex: 1;
  height: 1px;
  max-width: 160px;
  background: linear-gradient(to right, transparent, rgba(224,85,34,.65));
}
.mgmt-banner .mgmt-line:last-child {
  background: linear-gradient(to left, transparent, rgba(224,85,34,.65));
}

/* ── PROGRESS ─────────────────────────────────────────────── */
.pbar  { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: rgba(224,85,34,.15); z-index: 300; }
.pfill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--goldb)); width: 0%; transition: width .25s ease; }



/* ── HEADER — always transparent, always light text ─────── */
.hdr {
  position: fixed; top: 30px; left: 0; right: 0;
  height: var(--hh);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0.8rem; gap: 0.5rem;
  z-index: 260;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 100%);
  color: #fff;
}

.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; cursor: pointer; position: relative; z-index: 9999; }
.logo-t { font-family: var(--serif); font-weight: 500; font-size: .85rem; letter-spacing: .04em; white-space: nowrap; color: #fff; }
.logo-badge { height: 56px; width: auto; opacity: 1; }
.hero-logo { width: 180px; height: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.9)) drop-shadow(0 0 20px rgba(0,0,0,0.7)); margin-bottom: 1rem; display: block; margin-left: auto; margin-right: auto; }
.story-ship { width: calc(100% + 4.4rem); margin-left: -2.2rem; margin-bottom: -2rem; height: auto; opacity: .85; display: block; }

/* NORTH CHANNEL transparent watermark text */
.nc-wmark-text {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  white-space: nowrap;
  display: block;
  line-height: 1;
}

.hnav { display: flex; gap: .55rem; align-items: center; }
.hnav a { font-size: .58rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color .2s; white-space: nowrap; cursor: pointer; }
.hnav a:hover { color: #fff; }

/* ── NAV MORE DROPDOWN ──────────────────────────────────── */
.nav-more { position: relative; }
.nav-more-btn {
  display: flex; align-items: center; gap: .28rem;
  background: transparent; border: none;
  font-family: var(--sans); font-size: .58rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.7); cursor: pointer;
  transition: color .2s; padding: 0; white-space: nowrap;
}
.nav-more-btn:hover { color: #fff; }
.nav-more-caret { transition: transform .22s ease; flex-shrink: 0; }
.nav-more-btn[aria-expanded="true"] .nav-more-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: rgba(14,11,4,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224,85,34,.25);
  border-radius: 6px;
  min-width: 148px;
  padding: .4rem 0;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 400;
}
.nav-dropdown.open {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-item {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .62rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  cursor: pointer; transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-drop-item:hover { color: var(--goldb); background: rgba(224,85,34,.08); }

.hright { display: flex; gap: .65rem; align-items: center; flex-shrink: 0; }
@media (max-width: 700px) {
  .hright .btn { display: none; }
}
.tbtn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: border-color .2s, color .2s; }
.tbtn:hover { border-color: rgba(255,255,255,.65); color: #fff; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .73rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .6rem 1.4rem; border: 1px solid transparent;
  border-radius: 3px; transition: all .22s; cursor: pointer; white-space: nowrap;
}
.bgold       { background: var(--gold); color: #fff; border-color: var(--gold); }
.bgold:hover { background: var(--goldl); border-color: var(--goldl); }
.bghst       { background: transparent; color: #fff; border-color: rgba(255,255,255,.48); }
.bghst:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.bghst-sm    { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); font-size: .68rem; padding: .5rem 1.1rem; }
.bghst-sm:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.75); }
.btn-full { width: 100%; }
.mt { margin-top: .8rem !important; }
/* Hero centered on first viewport */
.hero-center {
  position: absolute !important;
  left: 240px !important;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 400px;
}
.hero-center .hero-btns { justify-content: center; }
.hero-center .gold-rule { margin: .6rem auto; }
.hero-btns { display: flex; gap: .65rem; margin-top: 1rem; flex-wrap: wrap; }

/* ── TYPE ────────────────────────────────────────────────── */
.eyebrow { display: block; font-size: .67rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.light-ey { color: rgba(224,85,34,.9); }
h2 { font-family: var(--serif); font-size: clamp(1.9rem, 2.8vw, 2.8rem); font-weight: 400; line-height: 1.08; }
h2 em { font-style: italic; font-weight: 300; color: var(--goldb); }
.light-h { color: #fff; }
.light-h em { color: var(--goldb); }
.light-h3 { font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.55rem); font-weight: 400; line-height: 1.15; color: #fff; }
.light-h3 em { font-style: italic; font-weight: 300; color: var(--goldb); }
.kicker { font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(224,85,34,1); text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.gold-rule { width: 48px; height: 1px; background: var(--goldb); margin: .65rem 0; }
.new-mgmt-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
  margin-bottom: .4rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}
.new-mgmt-badge::before,
.new-mgmt-badge::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--goldb);
  opacity: .8;
  flex-shrink: 0;
}
.tagline { font-size: .73rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,0.85); white-space: nowrap; }

/* ── PHOTO GRID ────────────────────────────────────── */
.photo-grid-panel {
  background: #080603;
  border-left: 1px solid rgba(200,64,26,0.15);
  overflow: hidden;
}
.pg-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 110px 32px 60px;
  box-sizing: border-box;
}
.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 5px;
  width: 100%;
  height: 100%;
}
.pg-cell {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.pg-cell:hover .pg-placeholder { border-color: rgba(200,64,26,0.5); }
.pg-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.pg-cell:hover img { transform: scale(1.06); }
.pg-placeholder {
  width: 100%; height: 100%;
  background: #12100a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: border-color .2s;
}
/* Lightbox */
.pg-lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.pg-lightbox.open { opacity: 1; pointer-events: auto; }
.pg-lightbox img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(200,64,26,0.3);
  border-radius: 3px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.9);
}
.pg-lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; font-size: 1.1rem; z-index: 901;
}
.pg-lb-prev, .pg-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); border: 1px solid rgba(200,64,26,0.3);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; z-index: 901;
  transition: background .2s;
}
.pg-lb-prev:hover, .pg-lb-next:hover { background: rgba(200,64,26,0.5); }
.pg-lb-prev { left: 20px; }
.pg-lb-next { right: 20px; }

/* ── OLD FLIPBOOK (kept for reference, hidden) */
.flipbook-panel {
  overflow: hidden;
  background: #0a0703;
  border-left: 1px solid rgba(200,64,26,0.15);
}
.flipbook-wrap {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
/* The card stack */
.flipbook-book {
  position: relative;
  width: 240px;   /* 4" proportion */
  height: 360px;  /* 6" proportion */
}
/* Ghost cards stacked behind for depth */
.flipbook-book::before,
.flipbook-book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #1a1108;
  border: 1px solid rgba(200,64,26,0.18);
  border-radius: 3px;
}
.flipbook-book::before { transform: translate(6px, 6px); z-index: 0; }
.flipbook-book::after  { transform: translate(3px, 3px); z-index: 1; }

.flip-slide {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: 0;
  transform: rotateY(-12deg) scale(0.96);
  transform-origin: right center;
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200,64,26,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}
.flip-slide.active {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  pointer-events: auto;
}
.flip-slide.exit-left {
  opacity: 0;
  transform: rotateY(12deg) scale(0.96);
  transform-origin: left center;
}
.flip-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.flip-placeholder {
  width: 100%; height: 100%;
  background: #110d06;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem;
}
.flip-placeholder svg { opacity: .18; }
.flip-placeholder span {
  font-family: var(--serif);
  font-size: .7rem; letter-spacing: .15em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
}
/* Arrows */
.flip-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,64,26,0.3);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 20;
}
.flip-arrow:hover { background: rgba(200,64,26,0.5); color: #fff; }
.flip-prev { left: 28px; }
.flip-next { right: 28px; }
.flip-arrow:disabled { opacity: .2; cursor: default; }
/* Dots */
.flip-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 20;
}
.flip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer; transition: background .2s;
}
.flip-dot.active { background: var(--goldb); border-color: var(--goldb); }
/* Counter */
.flip-counter {
  position: absolute; bottom: 28px; right: calc(50% - 160px);
  font-family: var(--serif); font-size: .65rem;
  letter-spacing: .1em; color: rgba(255,255,255,0.3);
  z-index: 20;
}

/* ── CHALLENGE BUTTON ──────────────────────────────── */
.challenge-btn {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: .9rem;
  padding: .5rem 1rem .5rem .8rem;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,64,26,0.5);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  width: fit-content;
}
.challenge-btn:hover {
  background: rgba(200,64,26,0.18);
  border-color: rgba(200,64,26,0.85);
}
.challenge-icon {
  font-size: 1rem;
  color: var(--goldb);
  line-height: 1;
}
.challenge-label {
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}
.challenge-label em {
  font-style: italic;
  color: var(--goldb);
}
.challenge-arrow {
  font-size: 1.1rem;
  color: rgba(200,64,26,0.7);
  margin-left: .15rem;
  line-height: 1;
}

/* ── COMING SOON BADGE ─────────────────────────────── */
.coming-soon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.1rem;
  width: 100%;
}
.csb-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,64,26,0.5));
}
.coming-soon-badge .csb-line:last-child {
  background: linear-gradient(to left, transparent, rgba(200,64,26,0.5));
}
.csb-inner {
  display: flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(200,64,26,0.4);
  border-radius: 20px;
  padding: .32rem .85rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
.csb-icon {
  color: var(--goldb);
  font-size: .7rem;
  opacity: .8;
}
.csb-text {
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.csb-text em {
  font-style: italic;
  color: var(--goldb);
  font-weight: 400;
}
@media (max-width: 500px) {
  .hero-center { left: 24px !important; width: calc(100vw - 48px) !important; }
  .tagline { font-size: .62rem; letter-spacing: .12em; white-space: normal; }
  .wmark { font-size: clamp(4rem, 18vw, 6rem); }
  .hero-btns { gap: .4rem; }
  .hero-btns .btn { font-size: .65rem; padding: .45rem .7rem; }
}
.light-p { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.8; }
.light-p-soft { font-size: .88rem; color: rgba(255,255,255,.45); font-style: italic; margin-top: .3rem; }
.light-p-sm { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── FADE-UP ──────────────────────────────────────────────── */
.fu { opacity: 0; transform: translateY(14px); transition: opacity .75s ease, transform .75s ease; }
.fu.on { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   STAGE
   ══════════════════════════════════════════════════════════ */
.stage {
  position: fixed; inset: 0;
  overflow-x: scroll; overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.stage::-webkit-scrollbar { display: none; }

/* ══════════════════════════════════════════════════════════
   WORLD
   ══════════════════════════════════════════════════════════ */
.world {
  position: relative;
  width: var(--world);
  height: 100vh;
  background: var(--dark); /* fallback if image hasn't loaded */
}

/* ══════════════════════════════════════════════════════════
   BACKGROUND — the single photo layer
   ══════════════════════════════════════════════════════════ */
.bg-photo {
  /* Fixed to viewport — full bleed */
  position: fixed;
  inset: -15%;
  z-index: 0;
  overflow: hidden;
}
.bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(0.77);
  transform-origin: center center;
}

/* Global base scrim — very subtle, keeps photo visible */
.bg-base-scrim {
  position: fixed; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

/* Dimming zones — atmospheric darkening over specific horizontal ranges */
.dim-zone {
  position: absolute; top: 0; bottom: 0; z-index: 2;
  pointer-events: none;
}

/* Left-side gradient — darkens behind hero text, fades to transparent */
.glow-hero {
  position: absolute;
  top: 0; left: 0;
  width: 560px; height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.42) 40%,
    rgba(0,0,0,0.0) 100%
  );
  z-index: 2; pointer-events: none;
}
.glow-zone {
  position: absolute;
  top: 20%; bottom: 20%;
  width: 700px;
  background: radial-gradient(ellipse at center, rgba(200,64,26,0.09) 0%, transparent 70%);
  z-index: 2; pointer-events: none;
}

/* Vertical gold separator lines */
.vsep {
  position: absolute; top: 15vh; bottom: 15vh; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(224,85,34,.4) 30%, rgba(224,85,34,.4) 70%, transparent);
  z-index: 10; pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   CONTENT PIECES
   ══════════════════════════════════════════════════════════ */
.piece { position: absolute; z-index: 10; }
.copy-piece {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  padding: 2rem 2.2rem;
}

/* ── HERO ── */
.wmark {
  font-family: var(--serif);
  font-size: clamp(5.5rem, 11vw, 10rem);
  font-weight: 300; line-height: .92;
  color: #fff; letter-spacing: -.01em; margin: .25rem 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.wmark em { display: block; font-style: italic; color: var(--goldb); }

.scroll-cue {
  position: absolute; z-index: 10;
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-cue svg { animation: nudge 2.6s ease-in-out infinite; }
@keyframes nudge {
  0%,100% { transform: translateX(0); opacity: .5; }
  50%      { transform: translateX(7px); opacity: 1; }
}

/* ── FROSTED GLASS CARDS ── */
.glass-card {
  background: rgba(10, 7, 2, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(224,85,34,.22);
  border-radius: 8px;
  overflow: hidden;
}

/* ── MENU CARD ── */
.menu-card { padding: 0; }

.tabs { display: flex; border-bottom: 1px solid rgba(224,85,34,.2); }
.tab {
  background: transparent; border: none;
  padding: .75rem 1.3rem;
  font-size: .71rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); position: relative; transition: color .2s;
}
.tab::after { content:''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--goldb); transform: scaleX(0); transition: transform .25s; }
.tab.active { color: var(--goldb); }
.tab.active::after { transform: scaleX(1); }
.tab:hover { color: rgba(255,255,255,.85); }

.tp { display: none; overflow-y: auto; max-height: calc(100vh - var(--hh) - 100px); padding: 0 1.6rem 1.2rem; }
.tp.active { display: block; }
.tp::-webkit-scrollbar { width: 3px; }
.tp::-webkit-scrollbar-thumb { background: rgba(224,85,34,.3); border-radius: 2px; }

.dgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; padding: 1.2rem 0; }
.dish { border-bottom: 1px solid rgba(224,85,34,.15); padding-bottom: .8rem; }
.dr { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .2rem; }
.dish h3 { font-family: var(--serif); font-size: .98rem; font-weight: 500; color: rgba(255,255,255,.9); }
.dish span { font-family: var(--serif); font-size: .9rem; color: var(--goldb); flex-shrink: 0; margin-left: .5rem; }
.dish p { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── MENU BOXES — white stacked cards ── */
.mbox-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-height: calc(100vh - var(--hh) - 32px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(224,85,34,.4) transparent;
}
.mbox-stack::-webkit-scrollbar { width: 3px; }
.mbox-stack::-webkit-scrollbar-thumb { background: rgba(224,85,34,.4); border-radius: 2px; }

.mbox {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(224,85,34,.35);
  border-top: 3px solid var(--goldb);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.45);
}
.mbox-hd {
  background: #faf7f0;
  padding: .65rem 1rem .45rem;
  border-bottom: 1px solid rgba(224,85,34,.25);
}
.mbox-cat {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}
.mbox-list {
  list-style: none;
  padding: .5rem .9rem .65rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mbox-list li {
  border-bottom: 1px solid rgba(224,85,34,.18);
  padding-bottom: .45rem;
}
.mbox-list li:last-child { border-bottom: none; padding-bottom: 0; }
.mbox-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .1rem;
}
.mbox-name {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: #1a1408;
}
.mbox-price {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: .5rem;
}
.mbox-list p {
  font-size: .74rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ── MENU EXPAND / ACCORDION ── */
.mbox-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.mbox-more.open {
  max-height: 1200px;
}
.mbox-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  width: 100%;
  background: #faf7f0;
  border: none;
  border-top: 1px solid rgba(224,85,34,.25);
  padding: .48rem .9rem;
  font-family: var(--serif);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.mbox-toggle:hover {
  background: rgba(224,85,34,.08);
  color: var(--goldl);
}
.mbox-toggle svg {
  transition: transform .35s ease;
  flex-shrink: 0;
}
.mbox-toggle.open svg {
  transform: rotate(180deg);
}
.mbox-more-note {
  font-size: .68rem;
  color: rgba(180,140,20,.7);
  font-style: italic;
  padding: .3rem .9rem .5rem;
  background: #faf7f0;
  border-top: 1px dashed rgba(224,85,34,.18);
}

/* ── EXP CARDS ── */
.exp-inline { display: flex; gap: 1.2rem; margin-top: 1.4rem; width: 100%; }
.exp-inline .exp-card { flex: 1; }
.exp-card { display: flex; flex-direction: column; }

.eimg { flex: 0 0 52%; overflow: hidden; }
.eimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.exp-card:hover .eimg img { transform: scale(1.04); }
.ebody { flex: 1; padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .4rem; justify-content: center; }
.estats { display: flex; gap: 1.5rem; margin: .3rem 0; }
.estats div { display: flex; flex-direction: column; gap: .06rem; }
.estats strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--goldb); line-height: 1; }
.estats span { font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
/* ── RESERVATION ── */
.res-hours { display: flex; flex-direction: column; gap: .35rem; }
.ilabel { font-size: .63rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--goldb); display: block; margin-bottom: .3rem; }
.hours { display: grid; grid-template-columns: 1fr 1fr; gap: .16rem .6rem; font-size: .78rem; }
.hours span:nth-child(odd) { color: rgba(255,255,255,.85); font-weight: 500; }
.hours span:nth-child(even) { color: rgba(255,255,255,.55); }
address p { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.65; }
address a { color: var(--goldb); }
address a:hover { text-decoration: underline; }

/* ── FORM CARD ── */
.form-card { padding: 1.6rem 1.85rem; }
.form-panel { display: flex; flex-direction: column; }
.form-card-full {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem 1.85rem;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .68rem; }
.fg { display: flex; flex-direction: column; gap: .25rem; }
.fg.full { margin-bottom: .68rem; }
label { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
label em { color: var(--goldb); font-style: normal; margin-left: 2px; }
input, select, textarea {
  font-family: var(--sans); font-size: .86rem;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(224,85,34,.3);
  border-radius: 3px; padding: .5rem .68rem;
  outline: none; transition: border-color .2s; width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.3); }
select option { background: #1a1408; color: #fff; }
input:focus, select:focus, textarea:focus { border-color: var(--goldb); background: rgba(255,255,255,.12); }
textarea { resize: none; }
.fnote { text-align: center; font-size: .68rem; color: rgba(255,255,255,.35); margin-top: .45rem; }
.fnote a { color: var(--goldb); }
.fok { display: flex; align-items: center; justify-content: center; gap: .55rem; padding: 2rem; color: var(--goldb); font-family: var(--serif); font-size: 1.1rem; }

/* ── FOOTER ── */
.footer-piece {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .7rem; text-align: center;
  padding: 2rem 3rem;
  z-index: 10;
  /* Extra deep dark for footer over photo */
  background: linear-gradient(to right, transparent 0%, rgba(4,2,0,.85) 8%, rgba(4,2,0,.92) 100%);
}
.fmark { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.fname { font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 300; line-height: .97; color: rgba(255,255,255,.9); letter-spacing: .04em; }
.fname em { display: block; font-style: italic; color: var(--goldb); }
.frule { width: 40px; height: 1px; background: var(--goldb); opacity: .4; }
.floc { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.fcols { display: flex; gap: 3rem; text-align: left; flex-wrap: wrap; justify-content: center; }
.fc h4 { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--goldb); margin-bottom: .6rem; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: .28rem; }
.fc li, .fc address p { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.fc a { color: rgba(255,255,255,.45); transition: color .2s; }
.fc a:hover { color: var(--goldb); }
.fcopy { font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.22); }

/* ── DOTS ─────────────────────────────────────────────────── */
.dots { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .48rem; z-index: 200; align-items: center; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.38); padding: 0; transition: all .28s; }
.dot.active { background: var(--goldb); border-color: var(--goldb); transform: scale(1.45); }

