/* Barafu — design system
   Palette: glacier white, basalt ink, summit slate, Barafu gold. Luxe runs dark (black and gold).
   Type: Cormorant Garamond (display) · Hanken Grotesk (text) · IBM Plex Mono (altitudes, codes, meta). */

:root {
  --bg: #EDF0EE;
  --surface: #F7F8F6;
  --raised: #FFFFFF;
  --ink: #15191B;
  --ink-2: #3B4549;
  --muted: #5F6B70;
  --line: #CCD4D2;
  --gold: #9C7A3E;
  --gold-ink: #7A5E2C;
  --deep: #1B262C;
  --deep-ink: #E9EDEC;
  --deep-muted: #A9B5B8;
  --btn-bg: #15191B;
  --btn-ink: #F7F8F6;
  --focus: #9C7A3E;

  --f-display: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --f-text: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --gutter: clamp(16px, 4vw, 40px);
  --maxw: 1240px;
  --r: 2px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F1315; --surface: #151B1E; --raised: #1A2124; --ink: #E6EAE8; --ink-2: #C3CBCB; --muted: #95A1A5;
    --line: #2A3337; --gold: #C9A469; --gold-ink: #D4B27A; --deep: #0A0E10; --deep-ink: #E6EAE8; --deep-muted: #95A1A5;
    --btn-bg: #E6EAE8; --btn-ink: #0F1315; --focus: #C9A469;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0F1315; --surface: #151B1E; --raised: #1A2124; --ink: #E6EAE8; --ink-2: #C3CBCB; --muted: #95A1A5;
  --line: #2A3337; --gold: #C9A469; --gold-ink: #D4B27A; --deep: #0A0E10; --deep-ink: #E6EAE8; --deep-muted: #95A1A5;
  --btn-bg: #E6EAE8; --btn-ink: #0F1315; --focus: #C9A469;
  color-scheme: dark;
}

/* Luxe is deliberately dark in every theme. */
.brand-luxe {
  --bg: #0B0A09; --surface: #13110E; --raised: #1A1713; --ink: #EDE6D8; --ink-2: #D2C9B8; --muted: #A2988A;
  --line: #2C2721; --gold: #C6A15B; --gold-ink: #D2AE6A; --deep: #060505; --deep-ink: #EDE6D8; --deep-muted: #A2988A;
  --btn-bg: #C6A15B; --btn-ink: #0B0A09; --focus: #C6A15B;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 17px/1.65 var(--f-text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--gold-ink); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 8px 0; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.005em; text-wrap: balance; margin: 0; }
h1 { font-size: clamp(2.6rem, 6vw, 5.1rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font: 600 0.95rem/1.4 var(--f-text); margin: 0; }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 1.4vw, 1.25rem); color: var(--ink-2); max-width: 60ch; }
.eyebrow, .meta { font: 500 0.74rem/1.3 var(--f-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); }
.meta { color: var(--muted); }
.prose { max-width: 66ch; display: grid; gap: 1em; }
.prose h2 { margin-top: 0.8em; font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.prose h3 { margin-top: 0.6em; }
.select { user-select: all; }
.num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border: 1px solid var(--btn-bg); background: var(--btn-bg); color: var(--btn-ink);
  font: 600 0.82rem/1 var(--f-text); letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--r); cursor: pointer; transition: background .2s, color .2s;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-small { padding: 10px 16px; font-size: 0.74rem; }
.btn-block { width: 100%; }
.arrow { display: inline-flex; gap: 8px; align-items: center; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.arrow::after { content: '→'; transition: transform .2s; }
.arrow:hover::after { transform: translateX(4px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- header ---------- */
.house { background: var(--deep); color: var(--deep-muted); font: 500 0.72rem/1 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.house-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 36px; }
.house nav { display: flex; gap: 20px; overflow-x: auto; }
.house a { text-decoration: none; padding-block: 10px; white-space: nowrap; }
.house a[aria-current] { color: var(--deep-ink); border-bottom: 1px solid var(--gold); }
.house a:hover { color: var(--deep-ink); }
.house-wa { display: none; }
@media (min-width: 760px) { .house-wa { display: inline; } }

.site-head { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .mono { color: var(--gold); flex: none; }
.logo { height: 48px; width: auto; flex: none; display: block; }
.logo-on-dark { display: none; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .logo-on-light { display: none; } :root:not([data-theme="light"]) .logo-on-dark { display: block; } }
:root[data-theme="dark"] .logo-on-light { display: none; }
:root[data-theme="dark"] .logo-on-dark { display: block; }
.foot-lockup { width: 220px; height: auto; }
.foot-marks { display: flex; gap: 18px; align-items: center; margin-top: 4px; opacity: 0.85; }
.foot-marks img { height: 34px; width: auto; }
.photo.tall { aspect-ratio: 4 / 5; }
.brand-words { display: grid; line-height: 1.05; }
.brand-name { font: 600 1.55rem/1 var(--f-display); letter-spacing: 0.16em; text-transform: uppercase; }
.brand-div { font: 500 0.66rem/1.4 var(--f-mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.primary { display: none; align-items: center; gap: 26px; font-size: 0.93rem; }
.primary a:not(.btn) { text-decoration: none; padding-block: 6px; border-bottom: 1px solid transparent; }
.primary a[aria-current="page"], .primary a:not(.btn):hover { border-bottom-color: var(--gold); color: var(--ink); }
@media (min-width: 1040px) { .primary { display: flex; } .menu { display: none; } }

.menu summary { list-style: none; cursor: pointer; width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; }
.menu summary::-webkit-details-marker { display: none; }
.menu summary span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: transform .2s; }
.menu[open] summary span:first-child { transform: translateY(4.25px) rotate(45deg); }
.menu[open] summary span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
.menu-panel { position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 24px; display: grid; gap: 4px; }
.menu-panel a:not(.btn) { padding: 10px 0; text-decoration: none; font: 500 1.35rem/1.2 var(--f-display); }
.menu-panel .btn { margin-top: 12px; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-block: 18px 0; font: 500 0.72rem/1.4 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.crumbs a { text-decoration: none; }
.crumbs > * + *::before { content: '/'; margin-right: 8px; color: var(--line); }

/* ---------- bands & layout ---------- */
.band { padding-block: clamp(64px, 9vw, 120px); }
.band + .band { padding-top: 0; }
.band.tint + .band, .band.deep + .band { padding-top: clamp(64px, 9vw, 120px); }
.band.tint { background: var(--surface); padding-top: clamp(64px, 9vw, 120px); }
.band.deep { background: var(--deep); color: var(--deep-ink); padding-top: clamp(64px, 9vw, 120px); --ink: var(--deep-ink); --ink-2: var(--deep-muted); --muted: var(--deep-muted); --line: #2E3A40; --btn-bg: var(--deep-ink); --btn-ink: var(--deep); }
.head2 { display: grid; gap: 16px; margin-bottom: clamp(32px, 4vw, 56px); max-width: 780px; }
.split { display: grid; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr 0.9fr; } .split.rev > :first-child { order: 2; } }
.cols-3 { display: grid; gap: 28px; }
@media (min-width: 760px) { .cols-3 { grid-template-columns: repeat(3, 1fr); } }
.cols-2 { display: grid; gap: 28px; }
@media (min-width: 760px) { .cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- photos / plates ---------- */
.photo { margin: 0; position: relative; overflow: hidden; background: var(--surface); aspect-ratio: 4 / 3; max-width: 100%; }
.photo img, .photo .plate-art { width: 100%; height: 100%; object-fit: cover; display: block; }
.plate-note { position: absolute; left: 10px; bottom: 10px; font: 500 0.62rem/1 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: #F3EEE4; background: rgba(10, 12, 13, 0.45); padding: 6px 8px; }
.hero-photo { aspect-ratio: 5 / 4; }

/* ---------- home hero: altitude ---------- */
.hero { position: relative; color: #EEF1F0; background: #10171B; }
.hero .photo { position: absolute; inset: 0; aspect-ratio: auto; height: 100%; }
.hero .photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,14,16,.82) 0%, rgba(10,14,16,.45) 55%, rgba(10,14,16,.15) 100%); }
.hero-in { position: relative; display: grid; gap: 40px; padding-block: clamp(72px, 10vw, 140px) clamp(48px, 6vw, 80px); }
@media (min-width: 980px) { .hero-in { grid-template-columns: 1.35fr 0.65fr; align-items: end; } }
.hero h1 { font-size: clamp(2.8rem, 6.4vw, 5.6rem); max-width: 13ch; }
.hero h1 em { font-style: italic; color: #D9BD86; }
.hero .lead { color: #D3DADA; margin-top: 22px; }
.hero .eyebrow { color: #D9BD86; margin-bottom: 20px; }
.hero .actions { margin-top: 32px; }
.hero .btn { background: #EEF1F0; color: #10171B; border-color: #EEF1F0; }
.hero .btn:hover { background: transparent; color: #EEF1F0; }
.hero .btn-ghost { background: transparent; color: #EEF1F0; border-color: rgba(238,241,240,.45); }
.alti { list-style: none; margin: 0; padding: 0; border-left: 1px solid rgba(217,189,134,.6); display: grid; }
.alti li a { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 14px 0 14px 18px; text-decoration: none; color: #EEF1F0; position: relative; }
.alti li a::before { content: ''; position: absolute; left: -4px; top: 22px; width: 7px; height: 7px; border-radius: 50%; background: #D9BD86; }
.alti li a:hover { background: rgba(255,255,255,.05); color: #fff; }
.alti .m { font: 500 0.82rem/1.5 var(--f-mono); color: #D9BD86; font-variant-numeric: tabular-nums; }
.alti strong { display: block; font: 600 1.2rem/1.2 var(--f-display); }
.alti span.d { font-size: 0.86rem; color: #B7C1C2; }

.proof { border-bottom: 1px solid var(--line); background: var(--surface); }
.proof ul { list-style: none; margin: 0; padding-block: 18px; padding-inline: 0; display: flex; flex-wrap: wrap; gap: 10px 32px; font: 500 0.74rem/1.4 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.proof strong { color: var(--ink); font-weight: 500; }

/* ---------- page hero ---------- */
.page-hero { padding-block: clamp(32px, 5vw, 64px) clamp(56px, 7vw, 96px); }
.page-hero-in { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .page-hero-in { grid-template-columns: 1fr 1fr; } }
.page-hero-text { display: grid; gap: 22px; }

/* ---------- divisions ---------- */
.divisions { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 860px) { .divisions { grid-template-columns: 1fr 1fr; } }
.division { background: var(--bg); display: grid; text-decoration: none; color: var(--ink); }
.division .photo { aspect-ratio: 16 / 10; }
.division-body { padding: clamp(24px, 3vw, 40px); display: grid; gap: 14px; }
.division.is-luxe { background: #0B0A09; color: #EDE6D8; }
.division.is-luxe .eyebrow { color: #D2AE6A; }
.division.is-luxe p { color: #C9C0B0; }
.division.is-luxe .arrow { color: #EDE6D8; border-color: #C6A15B; }
.division:hover h3 { color: var(--gold-ink); }
.division.is-luxe:hover h3 { color: #D2AE6A; }

/* ---------- journey cards ---------- */
.jgrid { display: grid; gap: 32px 28px; }
@media (min-width: 700px) { .jgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .jgrid { grid-template-columns: repeat(3, 1fr); } }
.jcard-link { display: grid; gap: 18px; text-decoration: none; color: var(--ink); }
.jcard-body { display: grid; gap: 8px; }
.jcard-body p:not(.meta):not(.price) { color: var(--ink-2); }
.jcard .price { margin-top: 6px; font-size: 0.95rem; color: var(--muted); }
.jcard .price strong { color: var(--ink); font: 600 1.25rem/1 var(--f-display); }
.jcard-link:hover h3 { color: var(--gold-ink); }
.jcard .photo { transition: opacity .2s; }
.jcard-link:hover .photo { opacity: .92; }

/* ---------- route table / data tables ---------- */
.table-wrap { overflow-x: auto; border-top: 1px solid var(--ink); }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: 0.95rem; }
th, td { text-align: left; padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font: 500 0.7rem/1.3 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
td.num, th.num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
td a { font-weight: 600; }

/* ---------- itinerary ---------- */
.trip { display: grid; gap: clamp(32px, 5vw, 64px); }
@media (min-width: 980px) { .trip { grid-template-columns: 1fr 340px; align-items: start; } .pricebox { position: sticky; top: 100px; } }
.pricebox { border: 1px solid var(--line); background: var(--surface); padding: 28px; display: grid; gap: 12px; }
.pb-price { font-size: 1rem; color: var(--muted); }
.pb-price strong { font: 600 2.4rem/1 var(--f-display); color: var(--ink); display: block; margin-top: 4px; }
.jcard .price-season { margin: 2px 0 0; font: 500 0.72rem/1.4 var(--f-mono); letter-spacing: 0.04em; color: var(--muted); }
.pb-seasons { margin: 4px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.pb-seasons div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.pb-seasons dt { font-size: 0.85rem; color: var(--ink-2); }
.pb-seasons dd { margin: 0; font: 600 0.9rem/1.2 var(--f-mono); color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.pb-note, .pb-promise { font-size: 0.85rem; color: var(--muted); }
.days { list-style: none; margin: 0; padding: 0; display: grid; }
.days li { display: grid; grid-template-columns: 76px 1fr; gap: 20px; padding-block: 22px; border-top: 1px solid var(--line); }
.days .day { font: 500 0.74rem/1.5 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); }
.days h4 { font: 600 1.3rem/1.2 var(--f-display); margin-bottom: 6px; }
.days .alt { font: 500 0.78rem/1.4 var(--f-mono); color: var(--muted); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.days p { color: var(--ink-2); }
.legs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font: 500 0.82rem/1 var(--f-mono); letter-spacing: 0.06em; }
.legs span { border: 1px solid var(--line); padding: 8px 10px; }
.legs i { font-style: normal; color: var(--gold-ink); }
.inc { display: grid; gap: 28px; }
@media (min-width: 700px) { .inc { grid-template-columns: 1fr 1fr; } }
ul.ticks, ul.crosses { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
ul.ticks li, ul.crosses li { padding-left: 26px; position: relative; color: var(--ink-2); }
ul.ticks li::before { content: ''; position: absolute; left: 2px; top: 0.55em; width: 12px; height: 6px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg); }
ul.crosses li::before { content: '–'; position: absolute; left: 4px; color: var(--muted); }
.stack { display: grid; gap: clamp(40px, 5vw, 64px); }
.block { display: grid; gap: 18px; align-content: start; }

/* ---------- profile chart ---------- */
.profile-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--surface); padding: 12px; }
.profile { width: 100%; min-width: 560px; height: auto; display: block; }
.pf-grid { stroke: var(--line); stroke-width: 1; }
.pf-axis { font: 500 11px var(--f-mono); fill: var(--muted); }
.pf-area { fill: var(--gold); opacity: 0.14; }
.pf-line { fill: none; stroke: var(--gold); stroke-width: 2; }
.pf-dot { fill: var(--surface); stroke: var(--gold); stroke-width: 2; }
.pf-top { fill: var(--gold); }
.pf-peak { font: 600 12px var(--f-mono); fill: var(--ink); }

/* ---------- reviews ---------- */
.reviews { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 900px) { .reviews { grid-template-columns: 260px 1fr; } }
.rv-score { display: grid; gap: 10px; align-content: start; }
.rv-num { font: 500 5.5rem/0.9 var(--f-display); color: var(--gold-ink); }
.rv-list { display: grid; gap: 28px; }
@media (min-width: 760px) { .rv-list { grid-template-columns: repeat(3, 1fr); } }
blockquote { margin: 0; display: grid; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
blockquote p { font: 500 1.3rem/1.35 var(--f-display); }
blockquote footer { font-size: 0.85rem; font-weight: 600; }
blockquote footer span { font-weight: 400; color: var(--muted); }
.rv-wall { columns: 1; column-gap: 32px; }
@media (min-width: 760px) { .rv-wall { columns: 2; } }
@media (min-width: 1100px) { .rv-wall { columns: 3; } }
.rv-wall blockquote { break-inside: avoid; margin-bottom: 32px; }

/* ---------- purpose / hody / sisters ---------- */
.purpose { display: grid; gap: 40px; align-items: end; }
@media (min-width: 900px) { .purpose { grid-template-columns: 1.2fr 1fr; } }
.purpose > div { display: grid; gap: 16px; max-width: 60ch; }
.purpose-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 0; }
.purpose-facts div { background: var(--bg); padding: 20px 16px; }
.band.deep .purpose-facts div { background: var(--deep); }
.purpose-facts dt { font: 500 2.1rem/1 var(--f-display); color: var(--gold-ink); }
.purpose-facts dd { margin: 8px 0 0; font-size: 0.85rem; color: var(--muted); }
.hody { display: grid; gap: 20px; align-items: center; border: 1px solid var(--line); padding: clamp(22px, 3vw, 32px); background: var(--surface); }
@media (min-width: 860px) { .hody { grid-template-columns: 56px 1fr auto; } }
.hody-mark { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-ink); font: 600 1.6rem/1 var(--f-display); }
.hody h3 { font-size: 1.45rem; margin: 6px 0 8px; }
.hody p:not(.eyebrow) { color: var(--ink-2); max-width: 70ch; }
.sisters { display: grid; gap: 24px; }
@media (min-width: 900px) { .sisters { grid-template-columns: 1fr 1fr 1fr; align-items: stretch; } }
.sister { display: grid; gap: 8px; align-content: start; padding: 24px; border: 1px solid var(--line); text-decoration: none; color: var(--ink); }
.sister strong { font: 600 1.45rem/1.2 var(--f-display); }
.sister span:last-child { color: var(--ink-2); }
.sister:hover { border-color: var(--gold); }

.cta-band { background: var(--deep); color: var(--deep-ink); padding-top: clamp(64px, 9vw, 120px) !important; --ink: var(--deep-ink); --line: #2E3A40; --btn-bg: var(--deep-ink); --btn-ink: var(--deep); }
.cta-in { display: grid; gap: 28px; align-items: end; }
@media (min-width: 900px) { .cta-in { grid-template-columns: 1.3fr 1fr; } .cta-in .actions { justify-content: flex-end; } }
.cta-band p { color: var(--deep-muted); margin-top: 14px; max-width: 56ch; }

/* ---------- features ---------- */
.features { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 760px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature { background: var(--bg); padding: 28px 24px 28px 0; display: grid; gap: 10px; align-content: start; }
.band.tint .feature { background: var(--surface); }
.band.deep .feature { background: var(--deep); }
@media (min-width: 760px) { .feature { padding: 28px 24px; } }
.feature p { color: var(--ink-2); }
.feature .k { font: 500 0.74rem/1.4 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; counter-reset: s; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: s; display: grid; gap: 10px; border-top: 1px solid var(--ink); padding-top: 18px; }
.steps li::before { content: 'Step ' counter(s); font: 500 0.72rem/1 var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-ink); }
.steps p { color: var(--ink-2); }
.note { border-left: 2px solid var(--gold); padding: 4px 0 4px 18px; color: var(--ink-2); max-width: 66ch; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--ink); max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative; font: 600 1.25rem/1.3 var(--f-display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 16px; font: 400 1.6rem/1 var(--f-text); color: var(--gold-ink); }
.faq details[open] summary::after { content: '–'; }
.faq-a { padding-bottom: 22px; color: var(--ink-2); max-width: 70ch; }

/* ---------- plan form ---------- */
.planner { display: grid; gap: clamp(32px, 5vw, 64px); }
@media (min-width: 980px) { .planner { grid-template-columns: 1fr 360px; align-items: start; } }
.form { border: 1px solid var(--line); background: var(--surface); padding: clamp(22px, 4vw, 44px); }
.progress { display: flex; gap: 6px; margin-bottom: 28px; }
.progress span { flex: 1; height: 2px; background: var(--line); }
.progress span.on { background: var(--gold); }
.step { display: grid; gap: 20px; border: 0; margin: 0; padding: 0; min-width: 0; }
.step legend { font: 500 clamp(1.6rem, 2.6vw, 2.1rem)/1.15 var(--f-display); padding: 0; margin-bottom: 8px; }
.step-count { font: 500 0.72rem/1 var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.choices { display: grid; gap: 10px; }
@media (min-width: 620px) { .choices { grid-template-columns: 1fr 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: grid; gap: 4px; padding: 16px 18px; border: 1px solid var(--line); background: var(--raised); cursor: pointer; }
.choice span b { font-weight: 600; }
.choice span small { color: var(--muted); font-size: 0.85rem; }
.choice input:checked + span { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.choice input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 2px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input, .field select, .field textarea { font: inherit; color: var(--ink); background: var(--raised); border: 1px solid var(--line); border-radius: var(--r); padding: 12px 14px; width: 100%; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--focus); outline-offset: 0; border-color: transparent; }
.fields-2 { display: grid; gap: 16px; }
@media (min-width: 620px) { .fields-2 { grid-template-columns: 1fr 1fr; } }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.form-error { color: #B3462F; font-size: 0.9rem; }
.brand-luxe .form-error { color: #E08A6D; }
.done { display: grid; gap: 16px; }
.done h2 { font-size: 2.2rem; }
.side-card { display: grid; gap: 14px; padding: 24px; border: 1px solid var(--line); }
.side-card p { color: var(--ink-2); }

/* ---------- footer ---------- */
.site-foot { background: var(--deep); color: var(--deep-muted); padding-block: 72px 110px; font-size: 0.93rem; }
@media (min-width: 760px) { .site-foot { padding-bottom: 40px; } }
.site-foot .brand { color: var(--deep-ink); }
.site-foot .brand .mono { color: #C9A469; }
.site-foot .brand-div { color: var(--deep-muted); }
.foot-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot-grid > div { display: grid; gap: 10px; align-content: start; }
.foot-grid h3 { font: 500 0.72rem/1.4 var(--f-mono); letter-spacing: 0.14em; text-transform: uppercase; color: #C9A469; margin-bottom: 6px; }
.foot-grid a { text-decoration: none; color: var(--deep-ink); }
.foot-grid a:hover { color: #D9BD86; }
.foot-brand p { max-width: 42ch; }
.foot-contact { line-height: 1.9; }
.foot-base { margin-top: 56px; padding-top: 20px; border-top: 1px solid #2A353A; display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; font: 500 0.72rem/1.5 var(--f-mono); letter-spacing: 0.06em; }
.foot-base a { color: var(--deep-muted); }

.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: grid; grid-template-columns: 1fr 0.8fr 0.8fr 1fr; background: var(--deep); border-top: 1px solid #2A353A; padding-bottom: env(safe-area-inset-bottom, 0px); }
.dock a, .dock button { text-align: center; background: none; border: 0; cursor: pointer; padding: 15px 8px; color: var(--deep-ink); text-decoration: none; font: 600 0.76rem/1 var(--f-text); letter-spacing: 0.1em; text-transform: uppercase; }
.dock > * + * { border-left: 1px solid #2A353A; }
.dock .dock-cta { background: #C9A469; color: #10171B; }
@media (min-width: 760px) { .dock { display: none; } }

/* ---------- Luxe accents ---------- */
.brand-luxe .site-head { background: color-mix(in srgb, #0B0A09 90%, transparent); }
.brand-luxe h1, .brand-luxe h2 { font-weight: 500; letter-spacing: 0.005em; }
.brand-luxe .page-hero h1 { font-style: italic; }
.brand-luxe .band.deep, .brand-luxe .cta-band, .brand-luxe .site-foot, .brand-luxe .house { background: #060505; }
.brand-luxe .btn:hover { color: var(--ink); }
.luxe-list { display: grid; border-top: 1px solid var(--line); }
.luxe-list a { display: grid; gap: 8px; padding-block: 28px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); }
@media (min-width: 860px) { .luxe-list a { grid-template-columns: 170px 1fr 1.3fr 40px; align-items: baseline; gap: 28px; } }
.luxe-list .k { font: 500 0.74rem/1 var(--f-mono); letter-spacing: 0.12em; color: var(--gold); }
.luxe-list h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 500; }
.luxe-list p { color: var(--ink-2); }
.luxe-list .go { color: var(--gold); font-size: 1.4rem; }
.luxe-list a:hover h3 { color: var(--gold); }

/* preview wrapper (artifact preview only) */
.page-root { background: var(--bg); color: var(--ink); min-height: 100vh; }
@media (min-width: 1100px) { .features:has(> .feature:nth-child(6)) { grid-template-columns: repeat(3, 1fr); } }

/* ---------- video ---------- */
.video { margin: 0; display: grid; gap: 10px; }
.video-link { position: relative; display: block; aspect-ratio: 16 / 9; max-width: 100%; overflow: hidden; background: #0A0E10; }
.video-link img, .video-link .plate-art, .video-link iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,16,0) 50%, rgba(10,14,16,.55)); transition: opacity .2s; }
.video-play { position: absolute; z-index: 1; left: 50%; top: 50%; width: 76px; height: 76px; margin: -38px 0 0 -38px; border-radius: 50%; border: 1px solid rgba(238,241,240,.8); background: rgba(10,14,16,.45); backdrop-filter: blur(4px); transition: transform .2s, background .2s; }
.video-play::before { content: ''; position: absolute; left: 31px; top: 25px; border-left: 20px solid #EEF1F0; border-top: 13px solid transparent; border-bottom: 13px solid transparent; }
.video-link:hover .video-play { transform: scale(1.06); background: rgba(201,164,105,.85); }
.video-len { position: absolute; z-index: 1; right: 12px; bottom: 10px; font: 500 0.75rem/1 var(--f-mono); color: #EEF1F0; }
.video.is-playing .video-link::after, .video.is-playing .video-play, .video.is-playing .video-len { display: none; }
.video figcaption { font-size: 0.9rem; color: var(--muted); }

/* ---------- social ---------- */
.social { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.social-handle { font: 500 0.78rem/1 var(--f-mono); letter-spacing: 0.04em; margin-right: 6px; color: var(--deep-ink); }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #2E3A40; color: var(--deep-ink); }
.social a:hover { border-color: #C9A469; color: #D9BD86; }
.social svg, .ig svg, .insta-head .btn svg { width: 18px; height: 18px; }
.foot-social { display: grid; gap: 12px; margin-top: 8px; }
.ig { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font: 500 0.82rem/1.4 var(--f-mono); color: inherit; }
.ig:hover { color: var(--gold-ink); }
.foot-social .ig, .foot-igs .ig { color: var(--deep-muted); }
.foot-social .ig:hover, .foot-igs .ig:hover { color: #D9BD86; }
.foot-igs { display: grid; gap: 8px; margin-top: 10px; }
.inline-links { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.band.deep .ig { color: var(--deep-ink); }
.hody-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.insta { display: grid; gap: 28px; }
.insta-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 20px; }
.insta-head h2 { max-width: 20ch; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
@media (min-width: 900px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
.insta-tile { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface); }
.insta-tile img, .insta-tile .plate-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .2s; }
.insta-tile:hover img { transform: scale(1.04); opacity: .9; }

/* ---------- gallery & crew ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gal { margin: 0; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface); max-width: 100%; }
.gal img, .gal .plate-art { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px; font: 500 0.7rem/1.3 var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; color: #F3EEE4; background: linear-gradient(180deg, transparent, rgba(10,12,13,.7)); }
.crew { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
@media (min-width: 760px) { .crew { grid-template-columns: repeat(6, 1fr); } }
.crew img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- stays you can feel ---------- */
.feel .head2 { margin-bottom: 26px; }
.feel-tabs { display: flex; gap: 6px 26px; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line); margin-bottom: 22px; -webkit-overflow-scrolling: touch; }
.feel-tabs::-webkit-scrollbar { display: none; }
.feel-tabs button { flex: none; background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; padding: 12px 0 13px; font: 500 0.76rem/1 var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); cursor: pointer; }
.feel-tabs button:hover { color: var(--ink); }
.feel-tabs button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--gold); }
.feel-tabs button:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.feel.js-on .feel-group[data-hide] { display: none; }
.feel-group + .feel-group { margin-top: 40px; }
.feel.js-on .feel-group + .feel-group { margin-top: 0; }
.feel-line { font-family: var(--f-display); font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.35; color: var(--ink-2); max-width: 46ch; margin: 0 0 20px; }
.feel-group { animation: feelIn .45s ease both; }
@keyframes feelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.feel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 8px; }
@media (min-width: 700px) { .feel-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 190px; } }
@media (min-width: 1100px) { .feel-grid { grid-auto-rows: 220px; } }
.feel-tile { margin: 0; position: relative; overflow: hidden; background: var(--surface); min-width: 0; }
.feel-tile.is-big { grid-column: span 2; grid-row: span 2; }
.feel-grid.n-3 { grid-auto-rows: 170px; }
@media (min-width: 700px) { .feel-grid.n-3 { grid-template-columns: 2fr 1fr; grid-auto-rows: 210px; } .feel-grid.n-3 .is-big { grid-column: span 1; } }
@media (min-width: 1100px) { .feel-grid.n-3 { grid-auto-rows: 250px; } }
.feel-open { display: block; width: 100%; height: 100%; }
.feel-open img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.feel-tile:hover .feel-open img { transform: scale(1.045); }
.feel-open:focus-visible { outline: 2px solid var(--focus); outline-offset: -4px; }
.feel-tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 12px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 4px 10px; color: #F3EEE4; background: linear-gradient(180deg, transparent, rgba(8,9,10,.78)); pointer-events: none; }
.feel-cap { grid-column: 1; font-family: var(--f-display); font-size: 1.08rem; line-height: 1.15; text-wrap: balance; }
.feel-tile.is-big .feel-cap { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
.feel-meta { grid-column: 1; font: 500 0.64rem/1.3 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(243,238,228,.78); }
.feel-meta b { color: #E2C58C; font-weight: 600; }
.feel-stay { grid-column: 2; grid-row: 1 / span 2; align-self: end; pointer-events: auto; font: 600 0.68rem/1 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: #15120C; background: #D8B574; padding: 9px 11px; border-radius: 999px; white-space: nowrap; transition: background .2s, transform .2s; }
.feel-stay:hover { color: #15120C; background: #F0D49C; transform: translateY(-1px); }
@media (max-width: 699px) {
  .feel-tile:not(.is-big) .feel-cap { display: none; }
  .feel-tile:not(.is-big) figcaption { grid-template-columns: 1fr; padding: 30px 8px 8px; }
  .feel-tile:not(.is-big) .feel-stay { grid-column: 1; grid-row: auto; justify-self: start; padding: 7px 9px; font-size: 0.6rem; }
}
@media (hover: hover) and (min-width: 700px) {
  .feel-tile:not(.is-big) .feel-stay { opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s, background .2s; }
  .feel-tile:hover .feel-stay, .feel-tile:focus-within .feel-stay { opacity: 1; transform: none; }
}
.feel-note { margin: 18px 0 0; font: 500 0.7rem/1.5 var(--f-mono); letter-spacing: 0.04em; color: var(--muted); }

.plan-ref { display: flex; gap: 14px; align-items: center; padding: 10px; margin: 0 0 22px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold); }
.plan-ref[hidden] { display: none; }
.plan-ref img { width: 72px; height: 72px; object-fit: cover; flex: none; }
.plan-ref p { margin: 0; line-height: 1.35; }
.plan-ref small { display: block; font: 500 0.66rem/1.4 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.plan-ref b { font-family: var(--f-mono); color: var(--gold-ink); font-weight: 600; }

/* lightbox */
.feel-box { border: 0; padding: 0; margin: auto; width: min(1180px, 100vw); max-width: 100vw; max-height: 100dvh; background: #0B0A09; color: #EDE6D8; display: grid; grid-template-columns: 1fr; overflow: auto; }
.feel-box:not([open]) { display: none; }
.feel-box::backdrop { background: rgba(5,5,5,.86); backdrop-filter: blur(4px); }
.feel-box figure { margin: 0; background: #000; display: grid; place-items: center; min-height: 0; }
.feel-box img { width: 100%; max-height: 72dvh; object-fit: contain; display: block; }
.feel-box .fb-body { padding: 22px 22px 26px; display: grid; gap: 12px; align-content: start; }
.feel-box .fb-code { font: 500 0.72rem/1.3 var(--f-mono); letter-spacing: 0.14em; text-transform: uppercase; color: #D2AE6A; }
.feel-box h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #F3EEE4; }
.feel-box p { margin: 0; color: #C9C0AF; }
.feel-box .fb-actions { display: grid; gap: 10px; margin-top: 8px; }
.feel-box .fb-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 18px; border-radius: var(--r); text-decoration: none; font-weight: 600; }
.feel-box .fb-wa { background: #C6A15B; color: #0B0A09; }
.feel-box .fb-wa:hover { background: #DDBA78; color: #0B0A09; }
.feel-box .fb-plan { border: 1px solid #5A4E3C; color: #EDE6D8; }
.feel-box .fb-plan:hover { border-color: #C6A15B; color: #F3EEE4; }
.feel-box .fb-small { font: 500 0.68rem/1.5 var(--f-mono); color: #8F8676; letter-spacing: .03em; }
.feel-box .fb-close, .feel-box .fb-nav { position: absolute; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(11,10,9,.72); color: #F3EEE4; font-size: 1.3rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.feel-box .fb-close { top: 12px; right: 12px; }
.feel-box .fb-nav { top: calc(min(72dvh, 56vw) / 2 - 22px); }
.feel-box .fb-prev { left: 12px; } .feel-box .fb-next { right: 12px; }
.feel-box button:focus-visible { outline: 2px solid #C6A15B; outline-offset: 2px; }
@media (min-width: 900px) {
  .feel-box { grid-template-columns: minmax(0, 1fr) 340px; height: min(760px, 92dvh); overflow: hidden; }
  .feel-box figure { height: 100%; }
  .feel-box img { max-height: 100%; height: 100%; }
  .feel-box .fb-body { padding: 64px 32px 32px; align-content: center; }
  .feel-box .fb-nav { top: 50%; transform: translateY(-50%); }
  .feel-box .fb-next { right: calc(340px + 12px); }
}
@media (prefers-reduced-motion: reduce) { .feel-group { animation: none; } .feel-open img { transition: none; } }

/* ---------- Luxe reel ---------- */
.reel { margin: 0; display: grid; gap: 14px; justify-items: center; }
.reel-frame { position: relative; width: min(100%, 360px); aspect-ratio: 9 / 16; overflow: hidden; background: #060505; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.reel-compact .reel-frame { width: min(100%, 320px); }
.reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-play { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px 11px 14px; border: 1px solid rgba(237,230,216,.6); background: rgba(6,5,5,.55); backdrop-filter: blur(6px); color: #EDE6D8; font: 600 0.72rem/1 var(--f-text); letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.reel-play span { width: 0; height: 0; border-left: 9px solid #C6A15B; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.reel-play:hover { background: rgba(198,161,91,.9); color: #0B0A09; border-color: transparent; }
.reel-play:hover span { border-left-color: #0B0A09; }
.reel figcaption { display: grid; gap: 10px; justify-items: center; text-align: center; }
.reel-lines { font: italic 500 1.25rem/1.35 var(--f-display); color: var(--ink-2); }
.reset-band { align-items: center; }
.reset-band h2 { font-style: italic; }

.hody-logo { width: 48px; height: auto; }

/* ---------- ask a question ---------- */
.ask-fab { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: none; align-items: center; gap: 10px; padding: 13px 18px 13px 16px; border-radius: 999px; border: 1px solid rgba(201,164,105,.5); background: var(--deep); color: var(--deep-ink); font: 600 0.78rem/1 var(--f-text); letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.22); transition: transform .2s, border-color .2s; }
.ask-fab:hover { transform: translateY(-2px); border-color: #C9A469; }
.ask-fab:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
@media (min-width: 760px) { .ask-fab { display: inline-flex; } }
.ask-dot { width: 8px; height: 8px; border-radius: 50%; background: #5FB98A; box-shadow: 0 0 0 3px rgba(95,185,138,.22); flex: none; }
.ask-dot.off { background: #C9A469; box-shadow: 0 0 0 3px rgba(201,164,105,.22); }
.ask { border: 0; padding: 0; width: min(520px, 100vw); max-width: 100vw; max-height: 100dvh; margin: auto; background: var(--raised); color: var(--ink); overflow: auto; border-radius: 4px; }
.ask:not([open]) { display: none; }
.ask::backdrop { background: rgba(8,10,11,.62); backdrop-filter: blur(3px); }
@media (min-width: 760px) { .ask { margin: auto 22px 22px auto; max-height: calc(100dvh - 44px); box-shadow: 0 30px 80px rgba(0,0,0,.35); } }
@media (max-width: 759px) { .ask { margin: auto auto 0; width: 100vw; border-radius: 14px 14px 0 0; } }
.ask-x { position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; border: 0; background: none; color: var(--muted); font-size: 1.6rem; line-height: 1; cursor: pointer; border-radius: 50%; }
.ask-x:hover { color: var(--ink); background: var(--surface); }
.ask-head { padding: 26px 26px 8px; }
.ask-head h2 { font-size: clamp(1.6rem, 4vw, 2rem); margin-top: 6px; padding-right: 30px; }
.ask-status { display: flex; align-items: center; gap: 10px; margin: 12px 0 0; font-size: 0.92rem; color: var(--ink-2); }
.ask-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 26px 0; }
.ask-way { display: grid; gap: 4px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; background: var(--surface); min-width: 0; }
.ask-way:hover { border-color: var(--gold); color: inherit; }
.ask-way b { font-weight: 600; }
.ask-way small { font: 500 0.7rem/1.35 var(--f-mono); color: var(--muted); overflow-wrap: anywhere; }
.ask-or { display: flex; align-items: center; gap: 12px; margin: 20px 26px 4px; font: 500 0.68rem/1 var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.ask-or::before, .ask-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.ask-form, .ask-done { padding: 10px 26px 26px; display: grid; gap: 14px; }
.ask-field { display: grid; gap: 6px; min-width: 0; }
.ask-field span { font-size: 0.85rem; font-weight: 600; }
.ask-field input, .ask-field textarea { width: 100%; font: inherit; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 11px 12px; min-height: 46px; }
.ask-field textarea { resize: vertical; min-height: 84px; }
.ask-field input:focus, .ask-field textarea:focus { outline: 2px solid var(--focus); outline-offset: 0; border-color: transparent; }
.ask-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 480px) { .ask-row { grid-template-columns: 1fr 1fr; } }
.ask-answers { display: grid; gap: 8px; }
.ask-answers:empty { display: none; }
.ask-hint { margin: 0; font: 500 0.66rem/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink); }
.ask-answer { padding: 12px 14px; border-left: 3px solid var(--gold); background: var(--surface); animation: feelIn .3s ease both; }
.ask-answer b { display: block; margin-bottom: 4px; }
.ask-answer p { margin: 0 0 6px; font-size: 0.92rem; color: var(--ink-2); }
.ask-answer a { font-size: 0.85rem; font-weight: 600; }
.ask-error { margin: 0; min-height: 0; color: #B3261E; font-size: 0.9rem; }
.ask-error:empty { display: none; }
.ask-form .btn { width: 100%; justify-content: center; }
.ask-fine { margin: 0; font-size: 0.82rem; color: var(--muted); text-align: center; }
.ask-done h3 { font-size: 1.8rem; }
.ask-done p { margin: 0; color: var(--ink-2); }
.brand-luxe .ask-error { color: #F2A89F; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .ask-error { color: #F2A89F; } }
.ask-open .ask-fab { opacity: 0; pointer-events: none; }
.ask [hidden] { display: none !important; }

/* photo mosaic (The Reset in pictures) */
.mosaic { columns: 3 260px; column-gap: 14px; margin-top: 36px; }
.mosaic figure { break-inside: avoid; margin: 0 0 14px; position: relative; overflow: hidden; background: var(--surface); }
.mosaic img { width: 100%; height: auto; display: block; }
.mosaic figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px; font: 500 0.72rem/1.4 var(--f-mono); letter-spacing: 0.06em; color: #F6F1E7; background: linear-gradient(transparent, rgba(12,10,8,.72)); }
@media (max-width: 560px) { .mosaic { columns: 2 140px; column-gap: 10px; } .mosaic figure { margin-bottom: 10px; } .mosaic figcaption { font-size: 0.66rem; padding: 22px 10px 8px; } }

/* horseback rides + panoramic photo */
.rides { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); margin-top: 8px; }
@media (min-width: 760px) { .rides { grid-template-columns: repeat(2, 1fr); } }
.ride { background: var(--bg); padding: 30px 0; display: grid; gap: 12px; align-content: start; }
@media (min-width: 760px) { .ride { padding: 34px 32px; } .ride:nth-child(odd) { padding-left: 0; } }
.band.tint .ride { background: var(--surface); }
.ride .k { font: 500 0.74rem/1.4 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); }
.ride h3 { font: 600 1.55rem/1.15 var(--f-display); }
.ride-facts { display: flex; flex-wrap: wrap; gap: 6px 18px; font: 500 0.78rem/1.4 var(--f-mono); color: var(--muted); }
.ride p { color: var(--ink-2); }
.ride .price { color: var(--ink); }
.ride .price strong { font: 600 1.35rem/1 var(--f-display); }
.ride .price span { color: var(--muted); font-size: 0.9rem; }
.ride .arrow { justify-self: start; }
.photo.pano { aspect-ratio: 1569 / 604; margin-top: 28px; }
@media (max-width: 560px) { .photo.pano { aspect-ratio: 16 / 9; } }


/* founder (Our story) */
.founder { display: grid; gap: 20px 56px; }
.founder .meta { margin-top: 10px; }
@media (min-width: 900px) {
  .founder.no-photo { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
  .founder.has-photo { grid-template-columns: 1.1fr 0.9fr; grid-template-rows: auto 1fr; align-items: start; }
  .founder.has-photo .photo { grid-row: 1 / span 2; aspect-ratio: 4 / 5; }
}

.foot-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.form-terms { margin-top: 18px; }
.form-terms a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.terms h2 { margin-top: 40px; } .terms h2:first-child { margin-top: 0; }
.terms ol ul { margin: 10px 0 4px; padding-left: 20px; list-style: disc; display: grid; gap: 8px; }
.terms li { margin-bottom: 8px; }
.proof a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); transition: color .2s, border-color .2s; }
.proof a:hover { color: var(--ink); border-color: currentColor; }
