/* =====================================================================
   RiverStone Ticket — "Journal" design system
   Light editorial / boutique magazine. Serif + mono. Mobile-first.
   ===================================================================== */

:root {
  /* paper & ink */
  --paper: #f4efe3;
  --paper-2: #ece4d3;
  --paper-3: #e4dac5;
  --card: #fbf8f1;
  --ink: #1b2a26;
  --ink-2: #34433e;
  --muted: #6c7a72;
  --muted-2: #9aa399;
  --line: rgba(27, 42, 38, 0.16);
  --line-2: rgba(27, 42, 38, 0.30);

  /* accents */
  --forest: #15776a;
  --forest-d: #0d564c;
  --clay: #c1572f;
  --clay-d: #a4441f;
  --gold: #b3863a;

  /* shape */
  --r-sm: 8px; --r: 12px; --r-lg: 18px; --r-xl: 26px; --r-pill: 999px;
  --shadow: 0 26px 60px -30px rgba(27, 42, 38, 0.45);
  --shadow-soft: 0 16px 38px -24px rgba(27, 42, 38, 0.35);
  --ring: 0 0 0 3px rgba(21, 119, 106, 0.35);

  --maxw: 1240px;
  --wide: 1380px;
  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.1, 1);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* ------------------------------ reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.62; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg, video { max-width: 100%; display: block; } img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; overflow-wrap: break-word; }
p { margin: 0; }
::selection { background: var(--forest); color: var(--paper); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ------------------------------ helpers ---------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--wide); }
.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.section--tight { padding-block: clamp(40px, 5.5vw, 76px); }
.section--paper2 { background: var(--paper-2); }
.rule-top { border-top: 1px solid var(--line); }

.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.kicker .n { color: var(--ink); } .kicker::before { content: ""; width: 26px; height: 1px; background: var(--clay); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--clay); }
.eyebrow.center, .kicker.center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: clamp(30px, 4.5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2.1rem, 6vw, 3.6rem); margin-top: 18px; font-weight: 400; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.06rem; max-width: 60ch; }
.section-head.center .section-sub { margin-inline: auto; }
.serif-accent { font-style: italic; color: var(--forest); }
.clay-accent { color: var(--clay); }
/* aliases used by secondary pages */
.grad-text { font-style: italic; color: var(--forest); }
.gold-text { color: var(--clay); font-weight: 600; }
.hero__lead { color: var(--ink-2); font-size: clamp(1.02rem, 2.4vw, 1.22rem); margin-top: 20px; max-width: 60ch; }

/* ------------------------------ buttons ---------------------------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 26px; border-radius: var(--r-pill); border: 1px solid transparent; font-weight: 600; font-size: .95rem; line-height: 1; white-space: nowrap; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s; }
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--forest); color: var(--paper); }
.btn--solid:hover { background: var(--forest-d); transform: translateY(-2px); }
.btn--clay { background: var(--clay); color: #fff; }
.btn--clay:hover { background: var(--clay-d); transform: translateY(-2px); }
.btn--outline { border-color: var(--line-2); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
/* legacy aliases used by secondary pages */
.btn--primary { background: var(--forest); color: var(--paper); }
.btn--primary:hover { background: var(--forest-d); transform: translateY(-2px); }
.btn--gold, .btn--cta, .btn--accent { background: var(--clay); color: #fff; }
.btn--gold:hover, .btn--cta:hover, .btn--accent:hover { background: var(--clay-d); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line-2); padding-bottom: 3px; transition: gap .2s, color .2s, border-color .2s; }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s; }
.link-arrow:hover { color: var(--forest); border-color: var(--forest); gap: 12px; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ------------------------------ topbar / progress ------------------ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 80; background: var(--clay); transition: width .1s linear; }
.topbar { background: var(--ink); color: var(--paper); }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 36px; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-align: center; padding: 5px var(--gutter); }
.topbar__inner svg { width: 14px; height: 14px; color: var(--clay); flex: none; }
.topbar b { color: #fff; }

/* ------------------------------ header ----------------------------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(244, 239, 227, 0.82); backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(244, 239, 227, 0.96); }
.nav { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; letter-spacing: -0.01em; }
@media (max-width: 560px) { .brand__name { font-size: .98rem; } .brand__logo { width: 32px; height: 32px; } }
.brand__name b { font-weight: 600; } .brand__name span { color: var(--forest); }
.nav__links { display: none; gap: 4px; margin-inline: auto; }
.nav__links a { position: relative; padding: 8px 14px; font-family: var(--mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; color: var(--ink-2); transition: color .15s; }
.nav__links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 1px; background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav__links a:hover { color: var(--clay); } .nav__links a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lang { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--r-pill); border: 1px solid var(--line-2); font-family: var(--mono); font-weight: 700; font-size: .74rem; transition: .15s; }
.lang:hover { border-color: var(--ink); } .lang svg { width: 14px; height: 14px; color: var(--muted); }
.nav__cta { display: none; }
.burger { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line-2); }
.burger span { width: 19px; height: 2px; background: var(--ink); position: relative; transition: .25s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink); transition: .25s; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-h) 0 auto 0; z-index: 55; background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 24px; display: grid; gap: 2px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .24s var(--ease); }
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: 14px 6px; font-family: var(--mono); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: 0; } .mobile-menu .btn { margin-top: 12px; }

/* ------------------------------ hero ------------------------------- */
.hero { padding-block: clamp(36px, 5vw, 64px) clamp(40px, 6vw, 80px); }
.hero__inner { display: grid; gap: clamp(28px, 5vw, 48px); }
.hero__kicker { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2rem, 7.6vw, 5.4rem); font-weight: 400; letter-spacing: -0.025em; line-height: 1.02; }
.hero h1 em { font-style: italic; color: var(--forest); }
.hero__lead { color: var(--ink-2); font-size: clamp(1.05rem, 2.4vw, 1.3rem); margin-top: 24px; max-width: 50ch; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero__meta div { display: flex; flex-direction: column; gap: 3px; }
.hero__meta b { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.hero__meta span { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hero__figure { position: relative; }
.hero__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); }
.hero__cap { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; font-family: var(--mono); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.hero__seal { position: absolute; top: 16px; right: 16px; width: 92px; height: 92px; border-radius: 50%; background: var(--clay); color: #fff; display: grid; place-items: center; text-align: center; font-family: var(--mono); font-size: .62rem; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; transform: rotate(-8deg); padding: 10px; }
.hero__notice { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: .86rem; color: var(--ink-2); }
.hero__notice svg { width: 17px; height: 17px; color: var(--clay); flex: none; margin-top: 2px; }

/* ------------------------------ marquee ---------------------------- */
.ticker { border-block: 1px solid var(--line); background: var(--ink); color: var(--paper); overflow: hidden; }
.ticker__track { display: flex; gap: 38px; width: max-content; padding-block: 13px; animation: marq 34s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: #d8d0bf; }
.ticker__item span { color: var(--clay); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ------------------------------ manifesto -------------------------- */
.manifesto { text-align: left; }
.manifesto__quote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 4.6vw, 3.1rem); line-height: 1.22; letter-spacing: -0.015em; max-width: 22ch; }
.manifesto__quote em { font-style: italic; color: var(--forest); }
.manifesto__by { display: flex; align-items: center; gap: 14px; margin-top: 30px; font-family: var(--mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.manifesto__by::before { content: ""; width: 40px; height: 1px; background: var(--line-2); }

/* ------------------------------ destinos --------------------------- */
.dest-grid { display: grid; gap: 0; border-top: 1px solid var(--line); }
.dest-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 16px; align-items: center; padding: 18px 6px; border-bottom: 1px solid var(--line); cursor: pointer; transition: padding-left .2s var(--ease), background .2s; text-align: left; }
.dest-row:hover { background: var(--card); padding-left: 16px; }
.dest-row__flag { font-size: 1.5rem; line-height: 1; }
.dest-row__name { font-family: var(--serif); font-size: clamp(1.3rem, 3.4vw, 1.9rem); font-weight: 500; }
.dest-row__tags { font-family: var(--mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); display: none; }
.dest-row__count { font-family: var(--mono); font-size: .8rem; color: var(--clay); font-weight: 700; }
.dest-row__arrow { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink); transition: .2s; }
.dest-row:hover .dest-row__arrow { background: var(--forest); color: #fff; border-color: var(--forest); }
.dest-row__arrow svg { width: 16px; height: 16px; }

/* ------------------------------ collection (editorial rows) -------- */
.collection { display: grid; gap: clamp(40px, 7vw, 80px); }
.feat { display: grid; gap: 22px; align-items: center; }
.feat__media { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.feat__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; transition: transform .7s var(--ease); }
.feat:hover .feat__media img { transform: scale(1.04); }
.feat__media .num { position: absolute; left: 16px; top: 8px; font-family: var(--serif); font-style: italic; font-size: clamp(3rem, 9vw, 5.5rem); color: #fff; mix-blend-mode: difference; line-height: 1; }
.feat__cat { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.feat h3 { font-size: clamp(1.7rem, 4.4vw, 2.7rem); font-weight: 400; margin-top: 12px; }
.feat__place { display: flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--muted); font-size: .92rem; }
.feat__place svg { width: 16px; height: 16px; color: var(--forest); }
.feat p { color: var(--ink-2); margin-top: 16px; font-size: 1rem; max-width: 48ch; }
.feat__foot { display: flex; align-items: center; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
.feat__price { font-family: var(--serif); font-size: 1.5rem; } .feat__price small { font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; }

/* ------------------------------ index / calendar list -------------- */
.idx-tools { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.idx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip { padding: 9px 16px; border-radius: var(--r-pill); border: 1px solid var(--line-2); font-family: var(--mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; color: var(--ink-2); transition: .15s; }
.fchip:hover { border-color: var(--ink); } .fchip.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.idx-count { font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.idx-list { border-top: 1px solid var(--ink); }
.idx-row { display: grid; grid-template-columns: 42px 76px 1fr auto; gap: 16px; align-items: center; padding: 16px 4px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .2s, padding-left .2s var(--ease); position: relative; text-align: left; width: 100%; }
.idx-row:hover { background: var(--card); padding-left: 14px; }
.idx-row__num { font-family: var(--mono); font-size: .82rem; color: var(--muted); }
.idx-row__thumb { width: 76px; height: 54px; border-radius: 8px; object-fit: cover; background: var(--paper-3); }
.idx-row__main { min-width: 0; }
.idx-row__name { font-family: var(--serif); font-size: clamp(1.15rem, 3vw, 1.45rem); font-weight: 500; }
.idx-row__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 4px; font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.idx-row__meta .mod { color: var(--clay); }
.idx-row__meta .hot { color: #fff; background: var(--clay); padding: 1px 7px; border-radius: var(--r-pill); }
.idx-row__right { display: flex; align-items: center; gap: 16px; justify-self: end; }
.idx-row__price { font-family: var(--serif); font-size: 1.3rem; } .idx-row__price small { font-family: var(--mono); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: block; text-align: right; }
.idx-row__arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .2s; flex: none; }
.idx-row:hover .idx-row__arrow { background: var(--forest); color: #fff; border-color: var(--forest); }
.idx-row__arrow svg { width: 16px; height: 16px; }
.empty { text-align: center; padding: 56px 20px; color: var(--muted); border: 1px dashed var(--line-2); border-radius: var(--r-lg); font-family: var(--mono); font-size: .8rem; }

/* ------------------------------ method ----------------------------- */
.method { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.method__row { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 30px 4px; border-bottom: 1px solid var(--line); align-items: start; }
.method__n { font-family: var(--serif); font-style: italic; font-size: clamp(2.2rem, 6vw, 3.4rem); color: var(--clay); line-height: .9; }
.method__row h3 { font-size: clamp(1.4rem, 3.6vw, 1.9rem); font-weight: 500; }
.method__row p { color: var(--muted); margin-top: 10px; font-size: .98rem; max-width: 60ch; }
.method__row .tag { display: inline-block; margin-top: 12px; font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--line-2); padding: 4px 10px; border-radius: var(--r-pill); }

/* ------------------------------ concierge -------------------------- */
.concierge { display: grid; gap: clamp(26px, 5vw, 48px); align-items: center; }
.concierge__media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.concierge__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.concierge h2 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 400; }
.concierge p { color: var(--ink-2); margin-top: 16px; max-width: 46ch; }
.concierge__list { display: grid; gap: 12px; margin-top: 22px; }
.concierge__list li { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.concierge__list svg { width: 18px; height: 18px; color: var(--forest); flex: none; margin-top: 3px; }
.concierge__list b { font-weight: 600; } .concierge__list span { color: var(--muted); font-size: .9rem; }
.concierge .btn { margin-top: 24px; }

/* ------------------------------ journal ---------------------------- */
.journal { display: grid; gap: 22px; }
.post { display: grid; gap: 14px; }
.post__media { overflow: hidden; border-radius: var(--r); }
.post__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__cat { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.post h3 { font-size: 1.3rem; font-weight: 500; margin-top: 8px; }
.post p { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.post .link-arrow { margin-top: 14px; }

/* ------------------------------ quotes ----------------------------- */
.quotes { display: grid; gap: 24px; }
.quote { padding: 30px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); }
.quote__mark { font-family: var(--serif); font-style: italic; font-size: 3rem; line-height: .6; color: var(--clay); }
.quote p { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; margin-top: 14px; }
.quote__by { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--mono); font-weight: 700; font-size: .82rem; flex: none; }
.quote__by b { display: block; font-size: .92rem; } .quote__by span { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.quote__stars { color: var(--clay); display: inline-flex; gap: 2px; } .quote__stars svg { width: 15px; height: 15px; }

/* ------------------------------ stats ------------------------------ */
.stats-band { display: grid; gap: 0; grid-template-columns: 1fr 1fr; }
.stat-cell { padding: clamp(20px, 4vw, 34px) clamp(14px, 2.5vw, 26px); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat-cell:nth-child(-n+2) { border-top: 0; }
.stat-cell b { display: block; font-family: var(--serif); font-size: clamp(2.1rem, 6vw, 3.2rem); font-weight: 500; }
.stat-cell span { font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 6px; display: block; }

/* ------------------------------ newsletter ------------------------- */
.newsletter { background: var(--ink); color: var(--paper); border-radius: var(--r-xl); padding: clamp(28px, 5vw, 56px); display: grid; gap: 28px; }
.newsletter h2 { font-size: clamp(1.8rem, 4.6vw, 2.6rem); font-weight: 400; color: #fff; }
.newsletter p { color: #c8d2cb; margin-top: 12px; }
.newsletter__perks { display: grid; gap: 10px; margin-top: 18px; }
.newsletter__perks li { display: flex; gap: 11px; align-items: center; font-size: .92rem; color: #d8ddd6; }
.newsletter__perks svg { width: 17px; height: 17px; color: var(--clay); flex: none; }

/* forms (light) */
.form-wrap { width: 100%; } .form-row { display: grid; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.newsletter .form-group label { color: #aeb8b0; }
.form-group input[type=text], .form-group input[type=tel], .form-group input[type=email], .form-control {
  width: 100%; box-sizing: border-box; padding: 14px 15px; border-radius: var(--r); border: 1px solid var(--line-2); background: var(--card); color: var(--ink); font-size: .95rem; font-family: var(--sans); transition: border-color .15s, box-shadow .15s; }
.newsletter .form-group input, .newsletter .form-control { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
.newsletter .form-group input::placeholder { color: #8d978f; }
.form-group input:focus, .form-control:focus { border-color: var(--forest); box-shadow: var(--ring); outline: none; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-consent { font-size: .82rem; color: var(--muted); } .newsletter .form-consent { color: #aeb8b0; }
.form-consent label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-family: var(--sans); text-transform: none; letter-spacing: 0; margin: 0; }
.form-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--clay); flex: none; }
.form-consent a { color: var(--clay); text-decoration: underline; } .newsletter .form-consent a { color: #f0a986; }
.btn-block { width: 100%; padding: 15px; border-radius: var(--r-pill); background: var(--clay); color: #fff; font-weight: 600; font-size: .96rem; cursor: pointer; border: 0; transition: background .2s, transform .2s; font-family: var(--sans); }
.btn-block:hover { background: var(--clay-d); transform: translateY(-2px); }
.success-msg { display: none; margin-top: 12px; padding: 13px 15px; border-radius: var(--r); background: rgba(21,119,106,.16); border: 1px solid rgba(21,119,106,.4); color: #bfe9df; font-size: .88rem; }
.newsletter .success-msg { color: #bfe9df; }
.success-msg.show { display: block; }

/* ------------------------------ FAQ -------------------------------- */
.faq { display: grid; gap: 0; max-width: 860px; margin-inline: auto; border-top: 1px solid var(--ink); }
.acc { border-bottom: 1px solid var(--line); }
.acc__q { width: 100%; text-align: left; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--serif); font-weight: 500; font-size: 1.16rem; }
.acc__q svg { width: 22px; height: 22px; color: var(--clay); flex: none; transition: transform .25s var(--ease); }
.acc.open .acc__q svg { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc__a p { padding: 0 4px 22px; color: var(--muted); font-size: .96rem; }

/* ------------------------------ contact (secondary) ---------------- */
.contact-grid { display: grid; gap: 24px; }
.contact-cards { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.contact-card__icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--line); flex: none; }
.contact-card__icon svg { width: 20px; height: 20px; color: var(--forest); }
.contact-card b { display: block; font-family: var(--serif); font-size: 1.05rem; } .contact-card span, .contact-card a { color: var(--muted); font-size: .9rem; } .contact-card a:hover { color: var(--ink); }

/* feature / band / subscribe used by secondary pages */
.features { display: grid; gap: 0; grid-template-columns: 1fr; }
.feature { padding: 26px 4px; border-top: 1px solid var(--line); }
.feature__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--line); }
.feature__icon svg { width: 23px; height: 23px; color: var(--forest); }
.feature h3 { font-size: 1.2rem; font-weight: 500; margin-top: 16px; } .feature p { color: var(--muted); margin-top: 8px; font-size: .92rem; }
.band { position: relative; overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--line); padding: clamp(30px, 6vw, 60px); background: var(--card); }
.band img { display: none; }
.band__inner { position: relative; max-width: 620px; }
.band h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 400; } .band p { color: var(--muted); margin-top: 14px; } .band .btn { margin-top: 24px; }
.subscribe { border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 5vw, 44px); background: var(--card); }

/* ------------------------------ footer (editorial masthead) -------- */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(44px, 6vw, 72px) 26px; margin-top: 20px; }
.footer-masthead { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; padding-bottom: clamp(28px, 4vw, 44px); border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-kicker { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #8c968d; }
.footer-word { display: block; margin-top: 14px; font-family: var(--serif); font-size: clamp(2.6rem, 9vw, 5.4rem); font-weight: 500; line-height: .92; letter-spacing: -0.025em; color: #fff; }
.footer-word span { color: #6cc4b5; font-style: italic; }
.footer-cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; color: var(--paper); border: 1px solid rgba(255,255,255,.24); padding: 14px 22px; border-radius: var(--r-pill); transition: background .2s, border-color .2s, transform .2s; }
.footer-cta:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-2px); }
.footer-cta svg { width: 16px; height: 16px; }
.footer-cols { display: grid; gap: 30px; grid-template-columns: 1fr; padding-block: clamp(30px, 4vw, 44px); }
.footer-col h4 { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: #8c968d; margin-bottom: 14px; }
.footer-col a { display: block; color: #cdd5cd; padding: 6px 0; font-size: .92rem; transition: color .15s, padding .15s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-contact p { color: #b6c0b8; font-size: .9rem; line-height: 1.75; }
.footer-contact a { color: #cdd5cd; } .footer-contact a:hover { color: #fff; }
.footer-note { display: flex; gap: 12px; align-items: flex-start; font-size: .82rem; color: #b6c0b8; padding-top: 4px; }
.footer-note svg { width: 17px; height: 17px; color: var(--clay); flex: none; margin-top: 2px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #8c968d; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; }
.footer-bottom a { color: #b6c0b8; } .footer-bottom a:hover { color: #fff; }
@media (min-width: 720px) { .footer-cols { grid-template-columns: 1fr 1fr 1.5fr; } }

/* ------------------------------ modal (light, tabbed) -------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(20, 28, 25, 0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal__dialog { position: absolute; inset: auto 0 0 0; max-height: 94vh; background: var(--paper); border-top: 2px solid var(--ink); border-radius: 22px 22px 0 0; overflow-y: auto; -webkit-overflow-scrolling: touch; animation: sheet .32s var(--ease); }
@keyframes sheet { from { transform: translateY(50px); opacity: .4; } }
.modal__bar { position: sticky; top: 0; z-index: 5; display: flex; justify-content: flex-end; padding: 12px; background: linear-gradient(180deg, var(--paper), transparent); }
.modal__x { width: 42px; height: 42px; border-radius: 50%; background: var(--card); border: 1px solid var(--line-2); display: grid; place-items: center; transition: .15s; }
.modal__x:hover { background: var(--ink); color: var(--paper); } .modal__x svg { width: 19px; height: 19px; }
.modal__hero { position: relative; aspect-ratio: 16 / 9; margin-top: -66px; }
.modal__hero img { width: 100%; height: 100%; object-fit: cover; }
.modal__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,25,.1) 30%, rgba(20,28,25,.78)); }
.modal__herotext { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(18px, 4vw, 30px) var(--gutter) 18px; color: #fff; }
.modal__herotext .cat { font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: #f0c9b6; font-weight: 700; }
.modal__herotext h2 { font-size: clamp(1.7rem, 6vw, 2.7rem); font-weight: 400; color: #fff; margin-top: 8px; }
.modal__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 10px; font-family: var(--mono); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; color: #e6ddd0; }
.modal__meta span { display: inline-flex; align-items: center; gap: 6px; } .modal__meta svg { width: 14px; height: 14px; }
.tabs { position: sticky; top: 66px; z-index: 4; display: flex; gap: 0; padding: 0 var(--gutter); background: var(--paper); border-bottom: 1px solid var(--ink); overflow-x: auto; }
.tab { flex: none; padding: 15px 4px; margin-right: 24px; font-family: var(--mono); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; display: inline-flex; align-items: center; gap: 7px; transition: .15s; }
.tab svg { width: 15px; height: 15px; } .tab:hover { color: var(--ink); }
.tab.active { color: var(--clay); border-bottom-color: var(--clay); }
.modal__body { padding: 24px var(--gutter); }
.tabpane { display: none; } .tabpane.active { display: block; animation: fade .25s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } }
.lead-block { font-size: 1.02rem; color: var(--ink-2); }
.perks { display: grid; gap: 10px; margin-top: 18px; }
.perks li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.perks svg { width: 18px; height: 18px; color: var(--forest); flex: none; margin-top: 2px; }
.logistics { display: grid; gap: 0; border-top: 1px solid var(--line); }
.logistics li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.logistics .lico { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--line); }
.logistics .lico svg { width: 18px; height: 18px; color: var(--forest); }
.logistics b { font-size: .95rem; } .logistics p { margin-top: 4px; font-size: .9rem; color: var(--muted); }
.tickets { display: grid; gap: 10px; }
.ticket { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--r); border: 1px solid var(--line-2); cursor: pointer; transition: .15s; background: var(--card); }
.ticket:hover { border-color: var(--ink); }
.ticket.selected { border-color: var(--clay); background: #fbeee6; }
.ticket__radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); flex: none; display: grid; place-items: center; }
.ticket.selected .ticket__radio { border-color: var(--clay); } .ticket.selected .ticket__radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--clay); }
.ticket__info { flex: 1; } .ticket__info b { font-size: .98rem; } .ticket__info span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.ticket__tag { display: inline-block; margin-top: 5px; font-family: var(--mono); font-size: .6rem; letter-spacing: .05em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--line-2); padding: 2px 7px; border-radius: var(--r-pill); }
.ticket__price { font-family: var(--serif); font-size: 1.2rem; }
.tab-note { display: flex; gap: 10px; margin-top: 18px; padding: 14px 16px; border-radius: var(--r); background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-2); font-size: .86rem; }
.tab-note svg { width: 18px; height: 18px; color: var(--clay); flex: none; margin-top: 1px; }
.modal__buy { position: sticky; bottom: 0; z-index: 4; padding: 14px var(--gutter); background: var(--paper); border-top: 1px solid var(--ink); display: flex; align-items: center; gap: 14px; }
.modal__total { margin-right: auto; } .modal__total small { font-family: var(--mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: block; } .modal__total b { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }

/* check-lock */
.checklock { position: fixed; inset: 0; z-index: 130; display: none; }
.checklock.open { display: block; }
.checklock__overlay { position: absolute; inset: 0; background: rgba(20,28,25,.55); backdrop-filter: blur(4px); }
.checklock__panel { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 100%; max-width: 560px; background: var(--paper); border: 2px solid var(--ink); border-bottom: 0; border-radius: 20px 20px 0 0; padding: clamp(22px, 4vw, 32px); box-shadow: var(--shadow); animation: sheet .3s var(--ease); max-height: 92%; overflow-y: auto; }
.checklock__head { display: flex; gap: 12px; align-items: center; }
.checklock__head .ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: #fbeee6; border: 1px solid var(--line); flex: none; } .checklock__head .ico svg { width: 22px; height: 22px; color: var(--clay); }
.checklock__head h3 { font-size: 1.4rem; font-weight: 500; }
.checklock__summary { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 14px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); }
.checklock__summary img { width: 54px; height: 54px; border-radius: 9px; object-fit: cover; flex: none; }
.checklock__summary b { font-size: .98rem; } .checklock__summary span { color: var(--muted); font-size: .82rem; display: block; margin-top: 2px; }
.checklock__summary .pr { margin-left: auto; font-family: var(--serif); font-size: 1.3rem; }
.checklock__warn { margin-top: 16px; color: var(--ink-2); font-size: .92rem; } .checklock__warn b { color: var(--clay); }
.consent-line { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; font-size: .9rem; cursor: pointer; padding: 14px; border-radius: var(--r); border: 1px solid var(--line-2); background: var(--card); transition: border-color .15s; }
.consent-line input { margin-top: 2px; width: 19px; height: 19px; accent-color: var(--clay); flex: none; }
.checklock__actions { display: flex; gap: 10px; margin-top: 20px; } .checklock__actions .btn { flex: 1; }

/* ------------------------------ legal ------------------------------ */
.legal { padding-top: clamp(38px, 6vw, 60px); }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 400; }
.legal__updated { font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.legal__body { max-width: 800px; margin-top: 32px; }
.legal__body h2 { font-size: 1.5rem; margin-top: 40px; font-weight: 500; }
.legal__body h3 { font-size: 1.1rem; margin-top: 24px; font-weight: 500; }
.legal__body p, .legal__body li { color: var(--ink-2); margin-top: 12px; }
.legal__body ul { list-style: none; padding-left: 0; margin-top: 10px; }
.legal__body ul li { position: relative; padding-left: 22px; margin-top: 8px; }
.legal__body ul li::before { content: "—"; position: absolute; left: 0; color: var(--clay); }
.legal__body a { color: var(--forest); text-decoration: underline; } .legal__body strong { color: var(--ink); }

/* ------------------------------ misc ------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; } .reveal[data-d="2"] { transition-delay: .16s; } .reveal[data-d="3"] { transition-delay: .24s; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 16px; }
.skip-link:focus { left: 0; }
body.no-scroll { overflow: hidden; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 30px); z-index: 200; background: var(--ink); color: var(--paper); padding: 14px 22px; border-radius: var(--r-pill); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .3s var(--ease); font-size: .9rem; display: flex; align-items: center; gap: 10px; max-width: 90vw; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: #6cc4b5; flex: none; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (min-width: 560px) {
  .stats-band { grid-template-columns: repeat(4, 1fr); }
  .stat-cell:nth-child(-n+2) { border-top: 1px solid var(--line); }
  .stat-cell { border-top: 1px solid var(--line); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .dest-row__tags { display: block; }
  .hero__cta .btn { width: auto; }
}
@media (min-width: 720px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
  .journal { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.7fr 1fr 1fr; }
  .feat { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feat:nth-child(even) .feat__media { order: 2; }
  .concierge { grid-template-columns: 1fr 1fr; }
  .method__row { grid-template-columns: 80px 1fr; gap: 30px; }
  .newsletter { grid-template-columns: 1.05fr .95fr; align-items: center; }
}
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .burger { display: none; } .mobile-menu { display: none !important; }
  .nav__cta { display: inline-flex; }
  .hero__inner { grid-template-columns: 1.08fr .92fr; align-items: center; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .modal__dialog { inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: min(880px, 94vw); max-height: 90vh; border-radius: 22px; border: 2px solid var(--ink); animation: pop .26s var(--ease); }
  @keyframes pop { from { transform: translate(-50%, -46%); opacity: .4; } }
  .modal__hero { margin-top: 0; border-radius: 20px 20px 0 0; }
  .tabs { top: 0; }
  .checklock__panel { bottom: auto; top: 50%; transform: translate(-50%, -50%); border: 2px solid var(--ink); border-radius: 18px; }
  .stat-cell:first-child { border-left: 0; }
}
