/* ============================================================
   GOLDVARG COLLECTION MUSEUM — Design System
   Direction: monumental, cinematic, stone & gold (gem.eg-inspired)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Archivo:wght@400;500;600;700&family=Marcellus&family=Bodoni+Moda:wght@500;600;700&family=Pinyon+Script&display=swap');

:root {
  /* Surfaces — warm near-black "espresso" */
  --bg:        #15110b;
  --bg-2:      #1d1810;
  --bg-3:      #251f15;
  --bg-4:      #2e271a;

  /* Light "stone" surfaces */
  --paper:     #f4ede0;
  --paper-2:   #ece2d0;
  --paper-3:   #e2d6bf;

  /* Gold / brass accent */
  --gold:      #c9a24b;
  --gold-soft: #e2c684;
  --gold-deep: #9c7a31;

  /* Pop accent — oxblood racing red (Batmobile / motorsport) */
  --oxblood:   #8a2e22;
  --oxblood-2: #b04030;

  /* Subtle Argentine sky (used sparingly) */
  --sky:       #7fb0c9;

  /* Text on dark */
  --t-hi:      #f3ecdd;
  --t-mid:     #c7bba2;
  --t-lo:      #93876f;

  /* Text on light */
  --ink:       #15110b;
  --ink-mid:   #4d4536;
  --ink-lo:    #837759;

  /* Lines */
  --line:      rgba(201,162,75,.22);
  --line-2:    rgba(201,162,75,.40);
  --line-ink:  rgba(21,17,11,.14);

  --shadow:    0 24px 70px -24px rgba(0,0,0,.7);
  --shadow-sm: 0 10px 30px -12px rgba(0,0,0,.5);

  --maxw: 1280px;
  --gut: clamp(22px, 5vw, 84px);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-ui: 'Archivo', system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--t-hi);
  font-family: var(--ff-ui);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* keyboard focus visibility */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.section--light :focus-visible, .bk-modal :focus-visible { outline-color: var(--gold-deep); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--ink { color: var(--gold-deep); }

.display {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.01em;
}
h1.display { font-size: clamp(48px, 8vw, 124px); }
h2.display { font-size: clamp(36px, 5.4vw, 76px); }
h3.display { font-size: clamp(26px, 3.2vw, 44px); }

.serif-italic { font-family: var(--ff-display); font-style: italic; font-weight: 400; }

.lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.7; color: var(--t-mid); font-weight: 400; }
.muted { color: var(--t-lo); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(72px, 11vh, 160px) 0; position: relative; }
.section--light { background: var(--paper); color: var(--ink); }
.section--stone { background: var(--bg-2); }

.section--light .eyebrow { color: var(--gold-deep); }
.section--light .lede { color: var(--ink-mid); }
.section--light .muted { color: var(--ink-lo); }

.rule { height: 1px; background: var(--line); border: 0; }
.section--light .rule { background: var(--line-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-ui); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 2px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--gold { background: var(--gold); color: #1a1306; }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline { border: 1px solid var(--line-2); color: var(--t-hi); }
.btn--outline:hover { border-color: var(--gold); background: rgba(201,162,75,.08); }
.section--light .btn--outline { border-color: rgba(21,17,11,.3); color: var(--ink); }
.section--light .btn--outline:hover { border-color: var(--gold-deep); background: rgba(201,162,75,.1); }
.btn--ghost { padding-left: 0; padding-right: 0; color: var(--gold); }
.btn--ghost .arr { transition: transform .25s var(--ease); }
.btn--ghost:hover .arr { transform: translateX(5px); }

/* ============================================================
   TOP NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(21,17,11,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: 13px; padding-bottom: 13px;
}
.brand { display: flex; align-items: center; gap: 13px; cursor: pointer; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center; flex: none;
  position: relative;
}
.brand-mark::before {
  content: ""; width: 16px; height: 7px; border-radius: 999px;
  background: var(--gold); transform: rotate(-34deg);
}
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b {
  font-family: var(--ff-display); font-weight: 600; font-size: 21px; letter-spacing: .02em;
}
.brand-txt span {
  font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold);
  margin-top: 3px; font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 12.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 12px; color: var(--t-mid); position: relative; transition: color .2s;
}
.nav-link:hover { color: var(--t-hi); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 1px; background: var(--gold);
}
.nav-right { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 999px;
  overflow: hidden; font-size: 11px; font-weight: 700; letter-spacing: .06em;
}
.lang button { padding: 6px 12px; color: var(--t-lo); transition: background .2s, color .2s; }
.lang button.on { background: var(--gold); color: #1a1306; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 1.5px; background: var(--t-hi); transition: .3s var(--ease); }

/* mobile nav panel */
.mnav {
  position: fixed; inset: 0; z-index: 99; background: rgba(21,17,11,.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 var(--gut);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mnav.open { opacity: 1; pointer-events: auto; }
.mnav a {
  font-family: var(--ff-display); font-size: 38px; font-weight: 500; padding: 8px 0;
  color: var(--t-mid); border-bottom: 1px solid var(--line);
}
.mnav a.active { color: var(--gold); }
.mnav-foot { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

/* sticky book bar (mobile) */
.book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 14px; align-items: center; justify-content: space-between;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(21,17,11,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
}
.book-bar-txt { font-size: 13px; letter-spacing: .04em; color: var(--t-mid); }
.book-bar .btn { padding: 13px 22px; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hslide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s var(--ease), transform 7s linear;
  transform: scale(1.06);
}
.hslide.on { opacity: 1; transform: scale(1); z-index: 1; }
.hslide-img { position: absolute; inset: 0; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(20,16,10,.72) 0%, rgba(20,16,10,.30) 20%, rgba(20,16,10,.34) 48%, rgba(20,16,10,.97) 100%),
    linear-gradient(95deg, rgba(20,16,10,.7) 0%, rgba(20,16,10,.34) 42%, rgba(20,16,10,0) 72%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gut) clamp(60px, 11vh, 130px);
  max-width: var(--maxw); margin: 0 auto; left: 0; right: 0;
}
.hero-content .eyebrow { margin-bottom: 22px; text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.6); }
.hero h1 em { color: var(--gold-soft); font-weight: 500; }
.hero-sub { max-width: 50ch; margin-top: 26px; color: #f1ebdd; text-shadow: 0 1px 16px rgba(0,0,0,.75); }
.hero-cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  margin-top: 18px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: #f1ebdd; background: rgba(21,17,11,.35); backdrop-filter: blur(4px);
  text-shadow: none;
}
.hero-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* page-hero text legibility over imagery */
.pagehero .eyebrow { text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.pagehero h1 { text-shadow: 0 2px 26px rgba(0,0,0,.6); }
.pagehero .lede { color: #ece4d4; text-shadow: 0 1px 16px rgba(0,0,0,.75); }

.hero-meta {
  position: absolute; z-index: 3; bottom: clamp(60px,11vh,130px); right: var(--gut);
  display: flex; flex-direction: column; align-items: flex-end; gap: 18px;
}
.hslide-cap {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft);
  display: flex; align-items: center; gap: 10px;
}
.hslide-cap::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero-dots { display: flex; gap: 9px; }
.hero-dots button {
  width: 26px; height: 3px; background: rgba(255,255,255,.28); border-radius: 2px; transition: background .3s;
}
.hero-dots button.on { background: var(--gold); }

/* Guinness / rating chips above the fold */
.cred-bar {
  position: absolute; z-index: 3; top: 50%; left: var(--gut); transform: translateY(-50%);
  display: none;
}

/* ============================================================
   IMAGE PLACEHOLDERS (cinematic)
   ============================================================ */
.ph {
  position: relative; overflow: hidden; background: var(--bg-3);
  --c1: #2a2316; --c2: #1a150d;
  background-image:
    radial-gradient(120% 90% at 70% 15%, rgba(201,162,75,.16), transparent 60%),
    linear-gradient(150deg, var(--c1), var(--c2));
}
.ph::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 2px, transparent 2px 4px);
}
.ph-label {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  display: flex; align-items: center; gap: 9px;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--t-lo);
}
.ph-label svg { width: 15px; height: 15px; flex: none; opacity: .8; }
.ph--oxblood { --c1: #3a1812; --c2: #1c0f0b; }
.ph--blue { --c1: #18303a; --c2: #0d171c; }
.ph--stone { --c1: #d8ccb4; --c2: #c1b291; }
.ph--stone .ph-label { color: rgba(21,17,11,.45); }

/* ============================================================
   GENERIC SECTION BLOCKS
   ============================================================ */
.sec-head { max-width: 60ch; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { margin-bottom: 22px; }

.two-col {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center;
}
.two-col--rev { grid-template-columns: 1fr 1.05fr; }
.two-col > * { min-width: 0; }

/* counters strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--bg); padding: clamp(28px,4vw,46px) clamp(18px,2vw,30px); }
.section--light .stats { background: var(--line-ink); border-color: var(--line-ink); }
.section--light .stat { background: var(--paper); }
.stat-num { font-family: var(--ff-display); font-size: clamp(40px, 5vw, 66px); font-weight: 600; line-height: 1; color: var(--gold); }
.section--light .stat-num { color: var(--gold-deep); }
.stat-lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-lo); margin-top: 12px; }
.section--light .stat-lbl { color: var(--ink-lo); }

/* collection grid */
.coll-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.coll-card {
  position: relative; overflow: hidden; border-radius: 3px; cursor: pointer;
  min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
}
.coll-card .ph { position: absolute; inset: 0; }
.coll-card-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(21,17,11,.2) 55%, rgba(21,17,11,.9) 100%);
  transition: background .4s var(--ease);
}
.coll-card-body { position: relative; z-index: 2; padding: 26px; }
.coll-card-body .num { font-size: 12px; letter-spacing: .2em; color: var(--gold-soft); text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.coll-card-body h3 { font-family: var(--ff-display); font-size: 28px; font-weight: 500; margin-top: 8px; color: #fff; text-shadow: 0 1px 16px rgba(0,0,0,.65); }
.coll-card-body p { font-size: 14px; color: #e6ddca; margin-top: 8px; max-width: 34ch; opacity: 0; max-height: 0; transition: opacity .4s var(--ease), max-height .4s var(--ease); text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.coll-card:hover .coll-card-body p { opacity: 1; max-height: 80px; }
.coll-card:hover .coll-card-grad { background: linear-gradient(180deg, rgba(21,17,11,.1) 0%, rgba(21,17,11,.55) 55%, rgba(21,17,11,.95) 100%); }
.coll-card:hover .ph { transform: scale(1.05); }
.coll-card .ph { transition: transform .8s var(--ease); }

/* span helpers */
.s12 { grid-column: span 12; } .s8 { grid-column: span 8; } .s6 { grid-column: span 6; }
.s4 { grid-column: span 4; } .s3 { grid-column: span 3; } .s7 { grid-column: span 7; } .s5 { grid-column: span 5; }

/* ============================================================
   EXPERIENCES / PRICING
   ============================================================ */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.tier {
  border: 1px solid var(--line); border-radius: 4px; padding: clamp(30px,3.5vw,48px);
  display: flex; flex-direction: column; background: var(--bg-2);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.tier:hover { border-color: var(--line-2); transform: translateY(-4px); }
.tier--feature { background: linear-gradient(165deg, var(--bg-3), var(--bg-2)); border-color: var(--line-2); }
.tier-flag {
  align-self: flex-start; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line-2); padding: 5px 13px; border-radius: 999px; margin-bottom: 24px;
}
.tier h3 { font-family: var(--ff-display); font-size: 34px; font-weight: 500; }
.tier .dur { color: var(--t-lo); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }
.tier .price { font-family: var(--ff-display); font-size: 58px; font-weight: 600; color: var(--gold); margin: 24px 0 6px; line-height: 1; }
.tier .price span { font-size: 16px; color: var(--t-lo); font-family: var(--ff-ui); }
.tier ul { list-style: none; margin: 22px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.tier li { display: flex; gap: 12px; font-size: 15px; color: var(--t-mid); }
.tier li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold); }
.tier .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote-block { text-align: center; max-width: 24ch; margin: 0 auto; }
.bigquote {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 4.2vw, 56px); line-height: 1.18; color: var(--t-hi);
}
.section--light .bigquote { color: var(--ink); }
.quote-attr { margin-top: 30px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reviews-wall { columns: 3; column-gap: 22px; }
.reviews-wall .review { break-inside: avoid; margin-bottom: 22px; background: #fff; }
.review { border: 1px solid var(--line); border-radius: 4px; padding: 28px 30px; }
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.review-head .stars { margin-bottom: 0; }
.review-src { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-lo); border: 1px solid var(--line-ink); border-radius: 999px; padding: 4px 10px; }
.src-tripadvisor { color: #1f8a5b; border-color: rgba(31,138,91,.4); }
.src-facebook { color: #2a6fdb; border-color: rgba(42,111,219,.4); }
.review .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.review p { font-style: italic; font-family: var(--ff-display); font-size: 20px; line-height: 1.4; color: var(--t-hi); }
.review .who { margin-top: 18px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-lo); }
.section--light .review { border-color: var(--line-ink); }
.section--light .review p { color: var(--ink); }

/* ============================================================
   STORY / TIMELINE
   ============================================================ */
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid; grid-template-columns: 140px 1fr; gap: clamp(20px,4vw,60px);
  padding: clamp(28px,3.5vw,44px) 0; border-top: 1px solid var(--line);
  align-items: start;
}
.section--light .tl-item { border-color: var(--line-ink); }
.tl-year { font-family: var(--ff-display); font-size: clamp(32px,3vw,46px); font-weight: 600; color: var(--gold); line-height: 1; }
.section--light .tl-year { color: var(--gold-deep); }
.tl-body h3 { font-family: var(--ff-display); font-size: 26px; font-weight: 500; margin-bottom: 10px; }
.tl-body p { color: var(--t-mid); max-width: 60ch; }
.section--light .tl-body p { color: var(--ink-mid); }

/* ============================================================
   VISIT / PLAN
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-ink); border: 1px solid var(--line-ink); }
.info-cell { background: var(--paper); padding: clamp(24px,3vw,38px); }
.info-cell .eyebrow { margin-bottom: 12px; }
.info-cell h4 { font-family: var(--ff-display); font-size: 24px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.info-cell p { font-size: 15px; color: var(--ink-mid); }
.info-cell .small { font-size: 13px; color: var(--ink-lo); margin-top: 4px; }

.faq-item { border-top: 1px solid var(--line-ink); padding: 0; }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 0; font-family: var(--ff-display); font-size: clamp(20px,2.2vw,27px); font-weight: 500; color: var(--ink);
}
.faq-q .pm { font-family: var(--ff-ui); font-size: 26px; color: var(--gold-deep); transition: transform .3s var(--ease); flex: none; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding-bottom: 28px; color: var(--ink-mid); max-width: 70ch; }

/* ---------- real embedded map ---------- */
.gmap { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.gmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.85) sepia(.12) contrast(1.04); }
.gmap:hover iframe { filter: grayscale(.3) sepia(.05); transition: filter .4s var(--ease); }
.gmap iframe { transition: filter .4s var(--ease); }
.gmap-card {
  position: absolute; left: 14px; bottom: 14px; z-index: 2; max-width: calc(100% - 28px);
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(21,17,11,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: 6px; padding: 14px 18px;
  pointer-events: none;
}
.gmap-card-k { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.gmap-card-v { font-family: var(--ff-display); font-size: 19px; font-weight: 600; color: var(--t-hi); margin-top: 2px; }
.gmap-card-s { font-size: 12.5px; color: var(--t-mid); }
.gmap-card-cta { pointer-events: auto; margin-top: 8px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--gold-soft); align-self: flex-start; }
.gmap-card-cta:hover { color: #fff; }
.gmap--compact { aspect-ratio: 16/10; margin-top: 18px; }
.gmap--compact .gmap-card { padding: 10px 14px; }
.gmap--compact .gmap-card-v { font-size: 16px; }
.gmap--compact .gmap-card-s { display: none; }

.map-frame { position: relative; border-radius: 4px; overflow: hidden; width: 100%; min-height: 0; }
.map-pin {
  position: absolute; top: 42%; left: 38%; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map-pin .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--oxblood-2); box-shadow: 0 0 0 6px rgba(176,64,48,.25); }
.map-pin .pin-lbl { background: var(--bg); color: var(--t-hi); font-size: 11px; letter-spacing: .1em; padding: 5px 10px; border-radius: 3px; white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(60px,8vh,100px) 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand-txt b { font-size: 26px; }
.foot-brand p { color: var(--t-lo); font-size: 14px; margin-top: 18px; max-width: 32ch; }
.foot-col h5 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; color: var(--t-mid); font-size: 14px; margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.foot-bottom p { font-size: 12px; color: var(--t-lo); letter-spacing: .04em; }
.disclaimer { font-size: 12px; color: var(--t-lo); max-width: 60ch; line-height: 1.6; margin-top: 4px; }

.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: border-color .2s, background .2s; }
.socials a:hover { border-color: var(--gold); background: rgba(201,162,75,.08); }
.socials svg { width: 17px; height: 17px; }

/* sticky book bar (mobile) */
.book-bar-legacy {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 12px; align-items: center; justify-content: space-between;
  padding: 12px var(--gut); background: rgba(21,17,11,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
}

/* ============================================================
   TRUST BAR  ·  NEWSLETTER  ·  WHATSAPP FLOAT
   ============================================================ */
.trustbar { background: var(--bg-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.trust-track { display: flex; width: max-content; animation: trustScroll 38s linear infinite; }
.trustbar:hover .trust-track { animation-play-state: paused; }
body.no-ticker .trust-track { animation: none; transform: none; justify-content: center; width: 100%; }
body.no-ticker .trust-seq[aria-hidden="true"] { display: none; }
body.no-ticker .trust-seq { flex-wrap: wrap; justify-content: center; }
.trust-seq { display: flex; flex: none; }
.trust-item {
  display: inline-flex; align-items: center; gap: 16px; padding: 16px 0;
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t-mid);
  white-space: nowrap;
}
.trust-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.trust-sep { color: var(--gold); margin: 0 30px; font-size: 11px; opacity: .8; }
@keyframes trustScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; } }

/* asymmetric editorial stats */
.section--statblock { padding: clamp(64px,9vh,120px) 0; }
.statblock { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px,6vw,90px); align-items: center; }
.stat-lead { display: flex; flex-direction: column; border-left: 2px solid var(--gold); padding-left: clamp(22px,3vw,40px); }
.stat-lead-num { font-family: var(--ff-display); font-weight: 600; font-size: clamp(72px,13vw,168px); line-height: .82; color: var(--gold); letter-spacing: -.02em; }
.stat-lead-lbl { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--t-lo); margin-top: 22px; max-width: 24ch; }
.stat-rest { display: flex; flex-direction: column; }
.stat-row { display: flex; align-items: baseline; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.stat-row:last-child { border-bottom: 1px solid var(--line); }
.stat-row-num { font-family: var(--ff-display); font-weight: 600; font-size: clamp(38px,5vw,60px); line-height: 1; color: var(--t-hi); flex: none; min-width: 2.4ch; }
.stat-row--accent .stat-row-num { color: var(--oxblood-2); }
.stat-row-lbl { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--t-lo); }
.section--light .stat-row { border-color: var(--line-ink); }
.section--light .stat-row-num { color: var(--ink); }
.section--light .stat-lead-lbl, .section--light .stat-row-lbl { color: var(--ink-lo); }

.newsletter {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line);
}
.newsletter-l h4 { font-family: var(--ff-display); font-size: clamp(24px,3vw,34px); font-weight: 500; color: var(--t-hi); margin-bottom: 8px; }
.newsletter-l p { color: var(--t-lo); font-size: 15px; max-width: 44ch; }
.newsletter-form { display: flex; gap: 10px; flex: none; }
.newsletter-form input {
  font-family: var(--ff-ui); font-size: 15px; color: var(--t-hi); background: var(--bg-3);
  border: 1px solid var(--line-2); border-radius: 2px; padding: 14px 18px; min-width: 240px;
}
.newsletter-form input::placeholder { color: var(--t-lo); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.newsletter-done { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 15px; font-weight: 600; }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  display: inline-flex; align-items: center; gap: 0;
  height: 58px; padding: 0; border-radius: 999px; overflow: hidden;
  background: #1faf54; color: #fff; box-shadow: 0 10px 30px -8px rgba(31,175,84,.6);
  transition: padding .3s var(--ease), background .25s var(--ease);
}
.wa-float > svg { width: 28px; height: 28px; margin: 0 15px; flex: none; }
.wa-float-lbl { max-width: 0; opacity: 0; white-space: nowrap; font-size: 14px; font-weight: 600; transition: max-width .35s var(--ease), opacity .25s var(--ease), margin .35s var(--ease); }
.wa-float:hover { background: #25c763; }
.wa-float:hover .wa-float-lbl { max-width: 240px; opacity: 1; margin-right: 22px; }

@media (max-width: 860px) {
  .newsletter { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: 0; flex: 1; }
  .wa-float { bottom: 84px; right: 16px; height: 52px; }
  .wa-float > svg { width: 24px; height: 24px; margin: 0 14px; }
  .wa-float:hover .wa-float-lbl { max-width: 0; opacity: 0; margin: 0; }
  .statblock { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   EXTRAS — game · calculator · club
   ============================================================ */
.game { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,56px); align-items: center; }
.game-img { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.game-count { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 12px; letter-spacing: .16em; color: var(--gold-soft); background: rgba(21,17,11,.6); padding: 5px 11px; border-radius: 999px; }
.game-q { font-family: var(--ff-display); font-size: clamp(22px,2.6vw,30px); line-height: 1.25; color: var(--t-hi); margin-bottom: 24px; }
.game-opts { display: flex; flex-direction: column; gap: 12px; }
.game-opt { text-align: left; padding: 16px 20px; border: 1px solid var(--line); border-radius: 4px; color: var(--t-hi); font-size: 16px; font-weight: 500; background: var(--bg); transition: border-color .2s, background .2s, opacity .2s; }
.game-opt:hover { border-color: var(--gold); }
.game-opt.right { border-color: #3f8f5a; background: rgba(63,143,90,.16); color: #cfe6d6; }
.game-opt.wrong { border-color: var(--oxblood-2); background: rgba(176,64,48,.16); }
.game-opt.dim { opacity: .45; }
.game-feedback { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.fb-ok { color: #6fcf97; font-family: var(--ff-display); font-size: 24px; font-style: italic; }
.fb-no { color: var(--oxblood-2); font-family: var(--ff-display); font-size: 24px; font-style: italic; }
.game-finish { text-align: center; padding: 30px 0; }
.game-score { font-family: var(--ff-display); font-size: clamp(64px,9vw,110px); font-weight: 600; color: var(--gold); line-height: 1; }
.game-score span { font-size: .4em; color: var(--t-lo); margin-left: 8px; }
.game-score-lbl { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--t-lo); margin: 12px 0 26px; }

.calc { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,4vw,64px); align-items: stretch; }
.calc-controls { display: flex; flex-direction: column; gap: 26px; }
.calc-field label { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-lo); margin-bottom: 12px; }
.calc-field label b { color: var(--gold-deep); font-family: var(--ff-display); font-size: 16px; letter-spacing: 0; }
.calc-field input[type=range] { width: 100%; accent-color: var(--gold-deep); height: 4px; }
.calc-presets-lbl { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-lo); margin-bottom: 12px; }
.calc-preset-btns { display: flex; flex-wrap: wrap; gap: 9px; }
.calc-chip { padding: 9px 15px; border: 1px solid var(--line-ink); border-radius: 999px; font-size: 13px; color: var(--ink-mid); background: #fff; transition: border-color .2s, color .2s; }
.calc-chip:hover { border-color: var(--gold-deep); }
.calc-chip.on { border-color: var(--gold-deep); background: var(--gold-deep); color: #fff; }
.calc-scales { display: flex; gap: 10px; }
.calc-scale { flex: 1; padding: 14px 0; border: 1.5px solid var(--line-ink); border-radius: 4px; font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--ink); background: #fff; transition: border-color .2s, background .2s, color .2s; }
.calc-scale.on { border-color: var(--gold-deep); background: var(--gold-deep); color: #fff; }
.calc-result { background: var(--ink); border-radius: 6px; padding: clamp(28px,3vw,44px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: #fff; }
.calc-result-lbl { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--t-lo); }
.calc-result-num { font-family: var(--ff-display); font-size: clamp(60px,9vw,104px); font-weight: 600; color: var(--gold-soft); line-height: .95; margin: 10px 0 4px; }
.calc-result-num small { font-family: var(--ff-ui); font-size: .26em; font-weight: 500; color: var(--t-lo); margin-left: 8px; }
.calc-result-sub { font-size: 13px; letter-spacing: .1em; color: var(--t-lo); }
.calc-bar { width: 100%; height: 6px; background: rgba(255,255,255,.12); border-radius: 3px; margin-top: 24px; overflow: hidden; }
.calc-bar span { display: block; height: 100%; background: var(--gold); transition: width .35s var(--ease); }

.club-sec { text-align: center; }
.club { display: flex; flex-direction: column; align-items: center; }
.club-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.club-form input { font-family: var(--ff-ui); font-size: 15px; color: var(--t-hi); background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 2px; padding: 14px 18px; min-width: 280px; }
.club-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.club-done { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 16px; font-weight: 600; }

/* events page */
.ev-packs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,3vw,40px); }
.ev-pack { border: 1px solid var(--line-ink); border-radius: 6px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.ev-pack-img { position: relative; aspect-ratio: 16/10; }
.ev-pack-img .ph { transition: transform .8s var(--ease); }
.ev-pack:hover .ev-pack-img .ph { transform: scale(1.04); }
.ev-pack-body { padding: clamp(24px,3vw,38px); display: flex; flex-direction: column; flex: 1; }
.ev-pack-tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.ev-pack-body h3 { font-family: var(--ff-display); font-size: clamp(24px,2.6vw,32px); font-weight: 600; color: var(--ink); margin: 8px 0 12px; }
.ev-pack-body > p { color: var(--ink-mid); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.ev-pack-body ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.ev-pack-body li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-mid); }
.ev-pack-body li svg { color: var(--gold-deep); flex: none; margin-top: 2px; }
.ev-pack-from { margin-top: auto; font-size: 14px; color: var(--ink-lo); }
.ev-pack-from strong { font-family: var(--ff-display); font-size: 26px; color: var(--ink); }

.ev-quoter { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(26px,4vw,56px); align-items: stretch; }
.ev-q-controls { display: flex; flex-direction: column; gap: 26px; }
.ev-q-field label { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-lo); margin-bottom: 12px; }
.ev-q-field label b { color: var(--gold-soft); font-family: var(--ff-display); font-size: 17px; letter-spacing: 0; }
.ev-q-field input[type=range] { width: 100%; accent-color: var(--gold); }
.ev-q-types { display: flex; flex-direction: column; gap: 9px; }
.ev-q-type { text-align: left; padding: 14px 18px; border: 1px solid var(--line); border-radius: 4px; color: var(--t-hi); font-size: 15px; font-weight: 500; background: var(--bg); transition: border-color .2s, background .2s; }
.ev-q-type:hover { border-color: var(--gold); }
.ev-q-type.on { border-color: var(--gold); background: rgba(201,162,75,.12); }
.ev-q-toggle { display: flex; gap: 10px; }
.ev-q-toggle button { flex: 1; padding: 13px 0; border: 1px solid var(--line); border-radius: 4px; color: var(--t-mid); font-size: 15px; font-weight: 600; background: var(--bg); transition: border-color .2s, background .2s, color .2s; }
.ev-q-toggle button.on { border-color: var(--gold); background: var(--gold); color: #1a1306; }
.ev-q-result { background: linear-gradient(165deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line-2); border-radius: 6px; padding: clamp(28px,3vw,42px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.ev-q-result-lbl { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--t-lo); }
.ev-q-result-num { font-family: var(--ff-display); font-size: clamp(52px,7vw,84px); font-weight: 600; color: var(--gold-soft); line-height: .95; margin: 10px 0 6px; }
.ev-q-result-sub { font-size: 13px; letter-spacing: .06em; color: var(--t-lo); }
.ev-q-cta { margin: 26px 0 16px; justify-content: center; }
.ev-q-note { font-size: 12.5px; color: var(--t-lo); line-height: 1.5; }

@media (max-width: 860px) {
  .ev-packs, .ev-quoter { grid-template-columns: 1fr; }
}

/* motorsport filter */
.moto-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.moto-filter { padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--t-mid); background: var(--bg); transition: border-color .2s, color .2s, background .2s; }
.moto-filter:hover { border-color: var(--gold); color: var(--t-hi); }
.moto-filter.on { border-color: var(--gold); background: var(--gold); color: #1a1306; }
.moto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.moto-card { border-radius: 4px; overflow: hidden; background: var(--bg); border: 1px solid var(--line); }
.moto-card-img { position: relative; aspect-ratio: 4/3; }
.moto-card-body { padding: 20px 22px; }
.moto-card-body h4 { font-family: var(--ff-display); font-size: 23px; font-weight: 500; color: var(--t-hi); margin-bottom: 6px; }
.moto-card-body p { font-size: 14px; color: var(--t-mid); line-height: 1.5; }

/* 360 panorama */
.pano { position: relative; border-radius: 6px; overflow-x: auto; overflow-y: hidden; cursor: grab; -webkit-overflow-scrolling: touch; scrollbar-width: none; height: clamp(300px, 48vh, 480px); background: var(--bg-3); }
.pano::-webkit-scrollbar { display: none; }
.pano:active { cursor: grabbing; }
.pano-img { height: 100%; width: auto; max-width: none; display: block; user-select: none; pointer-events: none; }
.pano-hint { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(21,17,11,.7); padding: 8px 16px; border-radius: 999px; pointer-events: none; }

@media (max-width: 860px) {
  .moto-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .moto-grid { grid-template-columns: 1fr; }
}

/* tier availability + gift */
.tier-avail { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft); margin-top: 14px; }
.tier-avail::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6fcf97; box-shadow: 0 0 0 4px rgba(111,207,151,.18); }

@media (max-width: 860px) {
  .game, .calc { grid-template-columns: 1fr; }
}

/* ============================================================
   PRESS STRIP · WHO · SIGNATURE · KIOSK · PAGE TRANSITION
   ============================================================ */
.pstrip { background: var(--paper); border-bottom: 1px solid var(--line-ink); }
.pstrip-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gut);
  display: flex; align-items: center; gap: clamp(18px,3vw,40px); flex-wrap: wrap;
}
.pstrip-label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--ink-lo); flex: none; }
.pstrip-names { display: flex; align-items: center; gap: clamp(18px,2.6vw,38px); flex-wrap: wrap; flex: 1; }
.pstrip-name { font-family: var(--ff-display); font-weight: 600; font-size: clamp(18px,1.8vw,23px); color: var(--ink-mid); white-space: nowrap; }
.pstrip-cta { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); flex: none; }
.pstrip-cta:hover { color: var(--ink); }

.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px,3vw,36px); }
.who-card { display: flex; flex-direction: column; align-items: flex-start; }
.who-card-img { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.who-card h3 { font-family: var(--ff-display); font-size: clamp(23px,2.2vw,28px); font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.who-card p { color: var(--ink-mid); font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
.who-card .btn--ghost { color: var(--gold-deep); }

.sign { display: grid; grid-template-columns: .82fr 1.2fr; gap: clamp(32px,5vw,80px); align-items: center; }
.sign-photo { max-width: 420px; }
.sign-script { font-family: 'Pinyon Script', cursive; font-size: clamp(44px,5vw,64px); color: var(--gold-soft); line-height: 1; transform: rotate(-3deg); transform-origin: left center; }
.sign-role { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--t-lo); margin-top: 14px; }

.kiosk { position: fixed; inset: 0; background: #000; overflow: hidden; z-index: 50; }
.kiosk-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.kiosk-slide.on { opacity: 1; }
.kiosk-slide img { width: 100%; height: 100%; object-fit: cover; }
.kiosk-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,10,.55) 0%, rgba(20,16,10,.05) 35%, rgba(20,16,10,.85) 100%); }
.kiosk-ui { position: absolute; left: 0; right: 0; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(24px,4vw,56px); pointer-events: none; }
.kiosk-cap { font-family: var(--ff-display); font-size: clamp(34px,5vw,64px); font-weight: 500; color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.6); max-width: 18ch; }
.kiosk-tip { font-size: clamp(13px,1.4vw,16px); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-top: 14px; }
.kiosk-exit { position: absolute; top: 18px; right: 18px; z-index: 3; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 8px 16px; transition: color .2s, border-color .2s; }
.kiosk-exit:hover { color: #fff; border-color: rgba(255,255,255,.6); }

.bk-minireview { background: var(--paper-2); border-radius: 6px; padding: 16px 20px; margin-top: 16px; }
.bk-minireview-stars { color: var(--gold-deep); font-size: 13px; letter-spacing: 2px; }
.bk-minireview p { font-family: var(--ff-display); font-style: italic; font-size: 16.5px; color: var(--ink); line-height: 1.45; margin: 6px 0; }
.bk-minireview-who { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-lo); }

.page-anim { animation: pageIn .45s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .page-anim { animation: none; } }

@media (max-width: 860px) {
  .who-grid { grid-template-columns: 1fr; }
  .sign { grid-template-columns: 1fr; }
  .sign-photo { max-width: 320px; }
  .pstrip-inner { gap: 12px; }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.bk-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(10,8,5,.72); backdrop-filter: blur(8px); padding: 24px;
  animation: bkFade .3s var(--ease);
}
@keyframes bkFade { from { opacity: 0; } to { opacity: 1; } }
.bk-modal {
  position: relative; width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto;
  background: var(--paper); color: var(--ink); border-radius: 8px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.7);
  animation: bkRise .35s var(--ease);
}
@keyframes bkRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.bk-close {
  position: absolute; top: 16px; right: 16px; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-size: 15px; color: var(--ink-mid);
  background: rgba(21,17,11,.06); transition: background .2s;
}
.bk-close:hover { background: rgba(21,17,11,.13); }

.bk-head { padding: 26px clamp(22px,4vw,38px) 0; }
.bk-head-title { font-family: var(--ff-display); font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 20px; }
.bk-steps { display: flex; gap: 6px; border-bottom: 1px solid var(--line-ink); padding-bottom: 18px; }
.bk-step { display: flex; align-items: center; gap: 7px; flex: none; opacity: .5; transition: opacity .25s; }
.bk-step.on, .bk-step.done { opacity: 1; }
.bk-step-dot {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; background: var(--paper-3); color: var(--ink-mid); flex: none;
}
.bk-step.on .bk-step-dot { background: var(--gold-deep); color: #fff; }
.bk-step.done .bk-step-dot { background: var(--ink); color: #fff; }
.bk-step-lbl { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; color: var(--ink-mid); }
.bk-step:not(.on) .bk-step-lbl { display: none; }

.bk-body { padding: 26px clamp(22px,4vw,38px); }
.bk-h { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.bk-muted { color: var(--ink-lo); font-size: 14px; }
.bk-note { font-size: 13px; color: var(--ink-lo); margin-top: 14px; line-height: 1.5; }

/* experience cards */
.bk-exps { display: flex; flex-direction: column; gap: 14px; }
.bk-exp {
  position: relative; text-align: left; display: grid; grid-template-columns: 1fr auto;
  grid-template-areas: "flag radio" "name name" "dur dur" "desc desc" "price price";
  gap: 4px 12px; padding: 20px 22px; border: 1.5px solid var(--line-ink); border-radius: 6px;
  background: #fff; transition: border-color .2s, box-shadow .2s; cursor: pointer;
}
.bk-exp:hover { border-color: var(--gold); }
.bk-exp.sel { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.bk-exp-flag { grid-area: flag; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.bk-exp-name { grid-area: name; font-family: var(--ff-display); font-size: 23px; font-weight: 600; color: var(--ink); }
.bk-exp-dur { grid-area: dur; font-size: 13px; color: var(--ink-lo); }
.bk-exp-desc { grid-area: desc; font-size: 14px; color: var(--ink-mid); margin-top: 4px; line-height: 1.5; }
.bk-exp-price { grid-area: price; font-family: var(--ff-display); font-size: 26px; font-weight: 700; color: var(--ink); margin-top: 8px; }
.bk-exp-price small { font-family: var(--ff-ui); font-size: 12px; font-weight: 500; color: var(--ink-lo); }
.bk-radio { grid-area: radio; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-ink); align-self: start; }
.bk-exp.sel .bk-radio { border-color: var(--gold-deep); background: var(--gold-deep) content-box; padding: 4px; box-shadow: inset 0 0 0 3px #fff; }

/* calendar */
.bk-cal { border: 1px solid var(--line-ink); border-radius: 6px; padding: 16px; background: #fff; }
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bk-cal-head span { font-family: var(--ff-display); font-size: 19px; font-weight: 600; color: var(--ink); }
.bk-cal-nav { width: 32px; height: 32px; border-radius: 50%; font-size: 19px; color: var(--ink); background: var(--paper-2); transition: background .2s; }
.bk-cal-nav:hover:not(:disabled) { background: var(--paper-3); }
.bk-cal-nav:disabled { opacity: .3; cursor: default; }
.bk-cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.bk-cal-dow span { text-align: center; font-size: 11px; font-weight: 700; color: var(--ink-lo); }
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bk-day {
  aspect-ratio: 1; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--ink);
  display: grid; place-items: center; transition: background .15s, color .15s;
}
.bk-day:not(.off):hover { background: var(--paper-2); }
.bk-day.off { color: var(--ink-lo); opacity: .32; cursor: default; }
.bk-day.sel { background: var(--gold-deep); color: #fff; }

.bk-slots { display: flex; gap: 10px; flex-wrap: wrap; }
.bk-slot { padding: 12px 22px; border: 1.5px solid var(--line-ink); border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--ink); background: #fff; transition: border-color .2s, background .2s; }
.bk-slot:hover { border-color: var(--gold); }
.bk-slot.sel { border-color: var(--gold-deep); background: var(--gold-deep); color: #fff; }

/* guests */
.bk-stepper { display: flex; align-items: center; justify-content: center; gap: 28px; padding: 14px 0 6px; }
.bk-stepper button { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line-ink); font-size: 26px; color: var(--ink); background: #fff; transition: border-color .2s; }
.bk-stepper button:hover:not(:disabled) { border-color: var(--gold-deep); }
.bk-stepper button:disabled { opacity: .3; cursor: default; }
.bk-stepper-n { font-family: var(--ff-display); font-size: 54px; font-weight: 700; color: var(--ink); min-width: 120px; text-align: center; display: flex; flex-direction: column; line-height: 1; }
.bk-stepper-n small { font-family: var(--ff-ui); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-lo); margin-top: 8px; }
.bk-runtotal { display: flex; justify-content: space-between; align-items: baseline; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-ink); }
.bk-runtotal span { color: var(--ink-mid); }
.bk-runtotal strong { font-family: var(--ff-display); font-size: 28px; color: var(--ink); }

/* fields */
.bk-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.bk-field label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-lo); font-weight: 600; margin-bottom: 7px; }
.bk-field input, .bk-field textarea {
  font-family: var(--ff-ui); font-size: 16px; color: var(--ink); background: #fff;
  border: 1px solid var(--line-ink); border-radius: 4px; padding: 12px 14px; width: 100%;
}
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201,162,75,.16); }
.bk-err { color: var(--oxblood-2); font-size: 12px; margin-top: 5px; }
.bk-gift { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line-ink); border-radius: 6px; cursor: pointer; }
.bk-gift input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold-deep); flex: none; }
.bk-gift strong { display: block; color: var(--ink); font-size: 15px; }
.bk-gift em { display: block; font-style: normal; color: var(--ink-lo); font-size: 13px; margin-top: 6px; line-height: 1.5; }
.bk-gift-badge { display: inline-block; margin-left: 10px; background: var(--gold-deep); color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }

/* summary */
.bk-summary { border: 1px solid var(--line-ink); border-radius: 6px; overflow: hidden; }
.bk-srow { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--line-ink); }
.bk-srow:last-child { border-bottom: 0; }
.bk-srow span { color: var(--ink-mid); font-size: 14px; }
.bk-srow strong { color: var(--ink); font-weight: 600; text-align: right; }
.bk-srow--total { background: var(--paper-2); }
.bk-srow--total strong { font-family: var(--ff-display); font-size: 22px; }
.bk-srow--dep span { color: var(--gold-deep); font-weight: 600; }
.bk-srow--dep strong { color: var(--gold-deep); font-family: var(--ff-display); font-size: 20px; }
.bk-srow--rest span:last-child { color: var(--ink-lo); }
.bk-pay { width: 100%; justify-content: center; margin-top: 20px; }

/* confirmation */
.bk-conf { text-align: center; }
.bk-conf-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-deep); color: #fff; font-size: 30px; display: grid; place-items: center; margin: 4px auto 18px; }
.bk-conf-title { font-family: var(--ff-display); font-size: 32px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.bk-conf-ref { font-size: 14px; color: var(--ink-mid); margin-bottom: 16px; }
.bk-conf-ref strong { color: var(--ink); letter-spacing: .05em; }
.bk-conf-body { color: var(--ink-mid); max-width: 40ch; margin: 0 auto 24px; line-height: 1.6; }
.bk-conf-card { border: 1px solid var(--line-ink); border-radius: 6px; overflow: hidden; text-align: left; margin-bottom: 20px; }
.bk-conf-meet { text-align: left; background: var(--paper-2); border-radius: 6px; padding: 20px 22px; margin-bottom: 24px; }
.bk-conf-meet-t { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.bk-conf-meet p { font-family: var(--ff-display); font-size: 19px; color: var(--ink); line-height: 1.4; margin: 8px 0 8px; }
.bk-conf-meet-note { font-size: 13px; color: var(--ink-lo); }
.bk-conf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* footer nav */
.bk-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px clamp(22px,4vw,38px); border-top: 1px solid var(--line-ink); position: sticky; bottom: 0; background: var(--paper); }
.section--light .bk-backbtn, .bk-backbtn { color: var(--ink-mid); }
.bk-dim { opacity: .45; }

@media (max-width: 560px) {
  .bk-overlay { padding: 0; }
  .bk-modal { max-width: 100%; max-height: 100vh; height: 100%; border-radius: 0; }
  .bk-step-lbl { display: none !important; }
  .bk-conf-actions .btn { width: 100%; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hslide { transition: opacity .4s; }
}

/* ============================================================
   BLOG / JOURNAL  (on light surface)
   ============================================================ */
.post-meta { display:flex; align-items:center; gap:9px; font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-lo); margin-bottom:16px; flex-wrap:wrap; }
.post-dot { opacity:.5; }
.post-tag { color:var(--gold-deep); font-weight:600; }
.post-tag--gold { background:var(--gold-deep); color:#fff; padding:4px 10px; border-radius:999px; letter-spacing:.1em; }
.ig-link { display:inline-flex; align-items:center; gap:8px; color:var(--gold-deep); font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; margin-top:20px; }

.blog-feature { display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(28px,4vw,64px); align-items:center; margin-bottom:64px; }
.blog-feature-img { position:relative; border-radius:4px; overflow:hidden; aspect-ratio:4/3; }
.blog-feature-img .ph { transition:transform .8s var(--ease); }
.blog-feature:hover .blog-feature-img .ph { transform:scale(1.04); }
.blog-feature-body h3 { font-size:clamp(28px,3.4vw,46px); font-weight:500; line-height:1.05; color:var(--ink); margin-bottom:18px; }
.blog-feature-body p { color:var(--ink-mid); font-size:18px; line-height:1.65; max-width:48ch; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.blog-card { display:flex; flex-direction:column; }
.blog-card-img { position:relative; border-radius:4px; overflow:hidden; aspect-ratio:3/2; margin-bottom:22px; }
.blog-card-img .ph { transition:transform .7s var(--ease); }
.blog-card:hover .blog-card-img .ph { transform:scale(1.05); }
.blog-card-body h4 { font-family:var(--ff-display); font-size:25px; font-weight:600; line-height:1.12; color:var(--ink); margin-bottom:12px; }
.blog-card-body p { color:var(--ink-mid); font-size:15px; line-height:1.6; }
.blog-card .ig-link { margin-top:16px; }

/* ============================================================
   PRESS
   ============================================================ */
.outlet-chip {
  display:inline-flex; align-items:center; font-family:var(--ff-display); font-weight:600;
  font-size:22px; color:var(--ink); letter-spacing:.01em;
  padding:8px 16px; border:1px solid var(--line-ink); border-radius:3px; background:#fff; white-space:nowrap;
}
.press-feature { display:grid; grid-template-columns:1.05fr 1.1fr; gap:clamp(28px,4vw,56px); align-items:center; padding-bottom:clamp(36px,5vw,56px); margin-bottom:clamp(34px,5vw,54px); border-bottom:1px solid var(--line-ink); }
.press-feature-img { position:relative; border-radius:4px; overflow:hidden; aspect-ratio:4/3; }
.press-feature-img .ph { transition:transform .8s var(--ease); }
.press-feature:hover .press-feature-img .ph { transform:scale(1.04); }
.press-feature-body h3 { font-size:clamp(26px,3vw,40px); line-height:1.18; color:var(--ink); margin:16px 0 16px; }
.press-feature-body p { color:var(--ink-mid); font-size:17px; line-height:1.6; max-width:52ch; margin-bottom:16px; }
.section--light .press-feature-body .btn--ghost { color:var(--gold-deep); }

/* timeline by year */
.press-timeline { display:flex; flex-direction:column; gap:clamp(30px,4vw,52px); }
.press-yeargroup { display:grid; grid-template-columns:150px 1fr; gap:clamp(20px,3vw,44px); align-items:start; }
.press-year { position:sticky; top:92px; }
.press-year-num { font-family:var(--ff-display); font-weight:600; font-size:clamp(40px,5vw,64px); color:var(--gold-deep); line-height:1; }
.press-cards { display:flex; flex-direction:column; gap:13px; }
.press-card { display:flex; align-items:center; gap:18px; padding:16px 20px; border:1px solid var(--line-ink); border-radius:6px; background:#fff; transition:border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
a.press-card:hover { border-color:var(--gold-deep); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.press-card.noclick { background:transparent; border-style:dashed; cursor:default; }
.press-card-thumb { width:78px; height:58px; position:relative; border-radius:3px; overflow:hidden; flex:none; }
.press-card-main { flex:1; min-width:0; }
.press-card-top { display:flex; align-items:center; gap:12px; margin-bottom:7px; flex-wrap:wrap; }
.press-badge { font-size:10px; letter-spacing:.14em; text-transform:uppercase; font-weight:700; padding:4px 9px; border-radius:3px; background:var(--paper-3); color:var(--ink-mid); flex:none; }
.tone-award .press-badge, .tone-record .press-badge { background:var(--gold-deep); color:#fff; }
.tone-video .press-badge { background:var(--oxblood); color:#fff; }
.tone-feature .press-badge { background:var(--ink); color:#fff; }
.press-card-outlet { font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-lo); }
.press-card-title { font-family:var(--ff-display); font-size:20px; font-weight:600; color:var(--ink); line-height:1.25; }
.press-card-arr { color:var(--ink-lo); flex:none; transition:color .2s var(--ease), transform .2s var(--ease); }
.press-card-arr em { font-style:normal; font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; opacity:.7; }
a.press-card:hover .press-card-arr { color:var(--gold-deep); transform:translateX(4px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(36px,6vw,90px); align-items:start; }
.contact-grid > * { min-width: 0; }
.field select, .field input, .field textarea { max-width: 100%; }
.channels { display:flex; flex-direction:column; gap:14px; margin-bottom:42px; }
.channel { display:flex; gap:18px; align-items:center; padding:20px 22px; border:1px solid var(--line-ink); border-radius:4px; background:#fff; transition:border-color .25s var(--ease), transform .25s var(--ease); }
.channel:hover { border-color:var(--gold-deep); transform:translateY(-2px); }
.channel-ico { width:46px; height:46px; flex:none; border-radius:50%; display:grid; place-items:center; background:var(--paper-2); color:var(--gold-deep); }
.channel-k { font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-lo); }
.channel-v { font-family:var(--ff-display); font-size:23px; font-weight:600; color:var(--ink); line-height:1.1; margin:2px 0; }
.channel-note { font-size:13px; color:var(--ink-lo); }
.contact-meet { padding-top:32px; border-top:1px solid var(--line-ink); margin-bottom:38px; }
.contact-addr { font-family:var(--ff-display); font-size:22px; color:var(--ink); line-height:1.4; margin:14px 0 8px; }
.contact-note { font-size:14px; color:var(--ink-lo); line-height:1.6; }
.contact-follow { padding-top:32px; border-top:1px solid var(--line-ink); }
.socials--ink a { border-color:var(--line-ink); color:var(--ink); }
.socials--ink a:hover { border-color:var(--gold-deep); background:rgba(156,122,49,.08); }

.contact-form-wrap { background:#fff; border:1px solid var(--line-ink); border-radius:6px; padding:clamp(28px,3.5vw,48px); box-shadow:var(--shadow-sm); }
.contact-form h3 { font-size:32px; font-weight:600; color:var(--ink); margin-bottom:26px; }
.field { display:flex; flex-direction:column; margin-bottom:18px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field label { font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-lo); margin-bottom:8px; font-weight:600; }
.field input, .field select, .field textarea {
  font-family:var(--ff-ui); font-size:16px; color:var(--ink); background:var(--paper);
  border:1px solid var(--line-ink); border-radius:3px; padding:13px 15px; width:100%; transition:border-color .2s, box-shadow .2s;
}
.field textarea { resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--gold-deep); box-shadow:0 0 0 3px rgba(201,162,75,.18); }
.form-sent { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; min-height:340px; gap:22px; }
.form-sent-ico { width:64px; height:64px; border-radius:50%; background:var(--gold-deep); color:#fff; display:grid; place-items:center; }
.form-sent p { font-family:var(--ff-display); font-size:24px; color:var(--ink); max-width:24ch; line-height:1.4; }

@media (max-width: 900px) {
  .blog-feature, .press-feature, .contact-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr 1fr; }
  .press-yeargroup { grid-template-columns:1fr; gap:12px; }
  .press-year { position:static; }
  .press-year-num { font-size:34px; }
  .press-card-thumb { display:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1150px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 860px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .nav .lang, .nav .nav-right > .btn--gold { display: none; }
  .two-col, .two-col--rev { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .reviews-wall { columns: 1; }
  .info-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .coll-grid > * { grid-column: span 12 !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .coll-card-body p { opacity: 1; max-height: 80px; }
  .coll-card { min-height: 320px; }
  .hero-meta { display: none; }
  .book-bar { display: flex; }
  .hero-cta { gap: 12px; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero h1 { max-width: 100%; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .foot-top { grid-template-columns: 1fr; }
}
