/* ============================================================================
   RIZZ TOUR AND TRAVELS — concept demo
   Art direction: WARM RETRO-TRAVEL / POSTCARD  ·  light "aged card stock"
   Palette derived from accent #28e41b (hue 116, green) → faded forest-olive
   brand + dusty-rose complement, sat on warm oat paper, sepia ink.
   Type: Cormorant Garamond (display serif) + Oswald (condensed poster caps).
   Hero: collage  ·  Grid: uniform postcard cards.
   ============================================================================ */

/* ----------------------------- tokens ----------------------------- */
:root {
  /* base = rotated logo hue, expressed in green per the signature (hue 116) */
  --base:        oklch(0.66 0.20 142);     /* the live green accent #28e41b-ish */

  /* faded primary — desaturated, warmed toward olive/forest */
  --brand:       oklch(0.50 0.085 138);    /* muted forest-olive */
  --brand-deep:  oklch(0.39 0.075 140);    /* headlines-in-colour / hover */
  --brand-soft:  oklch(0.62 0.060 135);

  /* secondary accent — complement (hue +200 ≈ 316), sun-bleached dusty rose */
  --accent-2:    oklch(0.58 0.085 18);     /* faded terracotta-rose, for stamps/ticket ink */
  --accent-2-deep: oklch(0.47 0.090 22);
  --gold:        oklch(0.72 0.085 76);     /* worn brass / varnish — hairlines, seals */

  /* paper & ink */
  --page:        oklch(0.945 0.024 86);    /* warm cream card stock */
  --page-2:      oklch(0.915 0.030 82);    /* deeper banded section */
  --paper-2:     oklch(0.905 0.032 80);
  --card:        oklch(0.972 0.020 88);    /* pasted card, a touch lighter/warmer */
  --card-2:      oklch(0.955 0.024 86);

  --ink:         oklch(0.255 0.030 56);    /* sepia-black, never #000 */
  --ink-2:       oklch(0.405 0.028 54);    /* secondary text */
  --muted:       oklch(0.545 0.022 56);
  --rule:        oklch(0.72 0.035 66);     /* ruled border / hairline */
  --rule-soft:   oklch(0.80 0.030 72);
  --rule-strong: oklch(0.34 0.030 56);

  --grain-opacity: 0.055;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-press: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* type scale */
  --t-hero:  clamp(2.6rem, 1rem + 7.3vw, 5.6rem);
  --t-h2:    clamp(1.9rem, 1rem + 3vw, 3.2rem);
  --t-h3:    clamp(1.2rem, 1rem + 0.9vw, 1.55rem);
  --t-body:  clamp(1.02rem, 0.97rem + 0.3vw, 1.16rem);
  --t-kicker: 0.78rem;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --cond:  "Oswald", "Arial Narrow", system-ui, sans-serif;

  --maxw: 1200px;
  --gut: clamp(1.1rem, 4vw, 2.4rem);
  --sec-pad: clamp(64px, 9vw, 138px);

  /* faded-print photo wash (the unifying move) */
  --photo-filter: sepia(0.26) saturate(0.84) contrast(0.95) brightness(1.04);
}

/* ----------------------------- reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--t-body);
  line-height: 1.62;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.01em; line-height: 1.04; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2.5px solid var(--brand-deep); outline-offset: 3px; }

.wrap { width: min(var(--maxw), 100% - 2*var(--gut)); margin-inline: auto; }

/* kicker / eyebrow — wide-tracked condensed caps (half the aesthetic) */
.kicker {
  font-family: var(--cond);
  font-weight: 600;
  font-size: var(--t-kicker);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  margin: 0 0 1.1rem;
}
.kicker__rule { display: inline-block; width: clamp(28px, 6vw, 64px); height: 1.5px; background: var(--rule-strong); opacity: 0.55; }

/* section header (centred serif + flanking rules) */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.4rem, 5vw, 4rem); }
.sec-head .kicker { justify-content: center; }
.sec-title { font-size: var(--t-h2); }
.sec-title em { font-style: italic; color: var(--brand-deep); }
.sec-sub { margin-top: 1.1rem; color: var(--ink-2); font-size: 1.08rem; max-width: 60ch; margin-inline: auto; }

/* ----------------------------- buttons ----------------------------- */
.btn {
  --b: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.92em 1.5em;
  min-height: 48px;
  border: 1.5px solid var(--b);
  border-radius: 3px;
  color: var(--page);
  background: var(--b);
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  box-shadow: 4px 4px 0 0 color-mix(in oklab, var(--brand-deep) 38%, transparent);
}
.btn:hover { transform: translate(-1px, -1px); background: var(--brand-deep); border-color: var(--brand-deep); box-shadow: 6px 6px 0 0 color-mix(in oklab, var(--brand-deep) 42%, transparent); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 color-mix(in oklab, var(--brand-deep) 40%, transparent); }
.btn--sm { padding: 0.7em 1.1em; min-height: 44px; font-size: 0.82rem; box-shadow: 3px 3px 0 0 color-mix(in oklab, var(--brand-deep) 36%, transparent); }
.btn__ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

.btn--ghost {
  background: transparent; color: var(--brand-deep); border-color: var(--rule-strong);
  box-shadow: 4px 4px 0 0 color-mix(in oklab, var(--rule-strong) 26%, transparent);
}
.btn--ghost:hover { background: color-mix(in oklab, var(--brand) 10%, var(--card)); color: var(--brand-deep); border-color: var(--brand-deep); box-shadow: 6px 6px 0 0 color-mix(in oklab, var(--rule-strong) 30%, transparent); }
.btn--ghost-light { color: var(--page); border-color: color-mix(in oklab, var(--page) 60%, transparent); box-shadow: 4px 4px 0 0 color-mix(in oklab, #000 18%, transparent); }
.btn--ghost-light:hover { background: color-mix(in oklab, var(--page) 14%, transparent); color: var(--page); border-color: var(--page); }

/* ----------------------------- paper grain overlay ----------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 9; pointer-events: none;
  opacity: var(--grain-opacity);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================================
   DEMO BANNER
   ============================================================================ */
.demo-banner {
  position: relative; z-index: 60;
  background: var(--brand-deep);
  color: color-mix(in oklab, var(--page) 92%, var(--brand));
  border-bottom: 1.5px solid color-mix(in oklab, #000 22%, var(--brand-deep));
}
.demo-banner p {
  width: min(var(--maxw), 100% - 2*var(--gut)); margin-inline: auto;
  font-family: var(--cond); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.04em;
  padding: 0.6rem 0; text-align: center; line-height: 1.45;
  display: flex; align-items: center; justify-content: center; gap: 0.5em; flex-wrap: wrap;
}
.demo-banner strong { font-weight: 600; color: var(--page); }
.demo-banner a { color: var(--page); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; }
.demo-banner a:hover { color: var(--gold); }
.demo-banner__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 30%, transparent); }

/* ============================================================================
   NAV
   ============================================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--page) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1.5px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--rule); box-shadow: 0 10px 24px -22px color-mix(in oklab, var(--ink) 70%, transparent); }
.nav__inner {
  width: min(var(--maxw), 100% - 2*var(--gut)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__mark { height: 38px; width: auto; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav-links > a {
  font-family: var(--cond); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-2); position: relative; padding: 0.4em 0;
  transition: color .2s var(--ease);
}
.nav-links > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--brand); transition: right .25s var(--ease);
}
.nav-links > a:not(.nav-cta):hover { color: var(--brand-deep); }
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  color: var(--brand-deep) !important; border: 1.5px solid var(--rule-strong);
  border-radius: 3px; padding: 0.55em 1.05em !important;
  box-shadow: 3px 3px 0 0 color-mix(in oklab, var(--rule-strong) 24%, transparent);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.nav-cta:hover { transform: translate(-1px,-1px); background: var(--brand); color: var(--page) !important; border-color: var(--brand); box-shadow: 5px 5px 0 0 color-mix(in oklab, var(--brand-deep) 34%, transparent); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 12px; margin: -12px -6px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================================
   PAGE FRAME (double rule just inside the viewport)
   ============================================================================ */
.page-frame { position: absolute; inset: clamp(14px, 2.4vw, 30px); border: 1.5px solid var(--rule); pointer-events: none; }
.page-frame::after { content: ""; position: absolute; inset: 5px; border: 1px solid color-mix(in oklab, var(--rule) 60%, transparent); }

/* ============================================================================
   HERO — COLLAGE
   ============================================================================ */
.hero { position: relative; padding: clamp(2.4rem, 5vw, 4.2rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__grid {
  width: min(var(--maxw), 100% - 2*var(--gut)); margin-inline: auto;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(1.4rem, 3vw, 2.6rem);
}

.hero__kicker { color: var(--accent-2-deep); }
.hero__title { font-size: var(--t-hero); letter-spacing: -0.018em; }
.hero__title em { display: block; font-style: italic; color: var(--brand-deep); font-weight: 500; margin-top: 0.12em; }
.hero__sub { margin-top: 1.5rem; max-width: 46ch; color: var(--ink-2); font-size: 1.12rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero__post {
  margin-top: 1.7rem; font-family: var(--cond); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 0.7em; flex-wrap: wrap;
}
.par-avion {
  border: 1.5px solid var(--accent-2); color: var(--accent-2-deep);
  padding: 0.2em 0.6em; letter-spacing: 0.18em; transform: rotate(-2deg); display: inline-block;
}

/* collage of pasted postcards */
.hero__collage { position: relative; aspect-ratio: 1 / 0.92; min-height: 360px; }
.pc {
  position: absolute; margin: 0;
  background: var(--card); padding: 9px 9px 0;
  border: 1px solid var(--rule);
  box-shadow: 0 22px 34px -24px color-mix(in oklab, var(--ink) 72%, transparent), 5px 5px 0 -1px color-mix(in oklab, var(--rule) 50%, transparent);
  transform: rotate(var(--rot));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pc__photo { overflow: hidden; border: 1px solid color-mix(in oklab, var(--rule) 70%, transparent); }
.pc__photo img { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); }
.pc__cap {
  font-family: var(--cond); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2); text-align: center;
  padding: 0.6em 0 0.7em;
}
.pc__tape {
  position: absolute; top: -12px; left: 50%; width: 86px; height: 26px; transform: translateX(-50%) rotate(-3deg);
  background: color-mix(in oklab, var(--gold) 40%, var(--card)); opacity: 0.7;
  border-left: 1px dashed color-mix(in oklab, var(--ink) 30%, transparent);
  border-right: 1px dashed color-mix(in oklab, var(--ink) 30%, transparent);
}
.pc--a { width: 56%; top: 2%; left: 0; z-index: 3; }
.pc--a .pc__photo { aspect-ratio: 4 / 3; }
.pc--b { width: 46%; top: 0; right: 2%; z-index: 2; }
.pc--b .pc__photo { aspect-ratio: 5 / 4; }
.pc--c { width: 50%; bottom: 0; right: 6%; z-index: 4; }
.pc--c .pc__photo { aspect-ratio: 5 / 4; }
.hero__collage:hover .pc { box-shadow: 0 26px 40px -26px color-mix(in oklab, var(--ink) 76%, transparent), 6px 6px 0 -1px color-mix(in oklab, var(--rule) 55%, transparent); }
.pc:hover { transform: rotate(calc(var(--rot) * 0.3)) translateY(-3px); z-index: 6; }

/* stamp */
.stamp {
  position: absolute; z-index: 7;
  background:
    radial-gradient(circle at 50% -4px, transparent 4px, var(--card) 5px) 0 0/14px 8px repeat-x,
    radial-gradient(circle at 50% calc(100% + 4px), transparent 4px, var(--card) 5px) 0 100%/14px 8px repeat-x,
    radial-gradient(circle at -4px 50%, transparent 4px, var(--card) 5px) 0 0/8px 14px repeat-y,
    radial-gradient(circle at calc(100% + 4px) 50%, transparent 4px, var(--card) 5px) 100% 0/8px 14px repeat-y,
    var(--card);
  padding: 12px;
  transform: rotate(var(--rot));
  filter: drop-shadow(0 8px 12px color-mix(in oklab, var(--ink) 40%, transparent));
}
.stamp__inner {
  border: 1.5px solid var(--accent-2); color: var(--accent-2-deep);
  padding: 0.7em 0.9em; text-align: center; display: grid; gap: 0.1em;
}
.stamp__top, .stamp__bot { font-family: var(--cond); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }
.stamp__big { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; line-height: 1; color: var(--accent-2-deep); }
.stamp--hero { bottom: 4%; left: 1%; width: 116px; }

/* hero route line */
.hero-route { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--accent-2); z-index: 1; opacity: 0.62; }
.hero-route__path { stroke-dasharray: 4 7; }
.hero-route__pin { fill: var(--accent-2); }

/* ============================================================================
   TRUST — TICKET STUB
   ============================================================================ */
.trust { padding: 0 0 clamp(2.4rem, 5vw, 4rem); }
.ticket {
  width: min(940px, 100% - 2*var(--gut)); margin-inline: auto;
  display: grid; grid-template-columns: 1fr auto;
  background: var(--card); border: 1.5px solid var(--rule-strong);
  border-radius: 4px;
  box-shadow: 7px 7px 0 -1px color-mix(in oklab, var(--rule-strong) 22%, transparent), 0 26px 40px -30px color-mix(in oklab, var(--ink) 70%, transparent);
  overflow: hidden;
}
.ticket__main { padding: clamp(1.3rem, 3vw, 2rem) clamp(1.3rem, 3vw, 2.2rem); }
.ticket__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.ticket__stats li { display: grid; gap: 0.2rem; position: relative; }
.ticket__stats li + li::before { content: ""; position: absolute; left: -0.5rem; top: 10%; bottom: 10%; width: 1px; background: var(--rule); }
.ticket__n { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 1rem + 2.6vw, 2.5rem); line-height: 1; color: var(--brand-deep); font-variant-numeric: oldstyle-nums; }
.ticket__l { font-family: var(--cond); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); }
.ticket__stub {
  position: relative; display: grid; align-content: center; justify-items: center; gap: 0.15rem;
  padding: 1rem clamp(1.1rem, 2.4vw, 1.7rem);
  background: var(--accent-2-deep); color: color-mix(in oklab, var(--page) 92%, var(--accent-2));
  border-left: 2px dashed color-mix(in oklab, var(--page) 60%, var(--accent-2-deep));
}
.ticket__stub::before, .ticket__stub::after {
  content: ""; position: absolute; left: -8px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--page);
}
.ticket__stub::before { top: -8px; }
.ticket__stub::after { bottom: -8px; }
.ticket__stub-k { font-family: var(--cond); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.82; }
.ticket__stub-v { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.5rem; line-height: 1; }
.ticket__stub-no { font-family: var(--cond); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-top: 0.2rem; }

/* ============================================================================
   ABOUT / STORY
   ============================================================================ */
.about { padding: var(--sec-pad) 0; background: var(--page-2); border-block: 1.5px solid var(--rule); position: relative; }
.about__body { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about__col p { color: var(--ink-2); margin-bottom: 1.2rem; max-width: 62ch; }
.about__col p:first-child { font-size: 1.12rem; color: var(--ink); }

.about__aside { display: grid; gap: 2rem; justify-items: center; }
.pull {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.3rem); line-height: 1.18; color: var(--brand-deep);
  text-align: center; position: relative; margin: 0; padding-top: 1rem;
}
.pull__mark { position: absolute; top: -0.4em; left: 50%; transform: translateX(-50%); font-size: 3em; color: var(--gold); opacity: 0.55; line-height: 1; }

/* wax-seal */
.seal { position: relative; width: 150px; height: 150px; transform: rotate(var(--rot)); }
.seal svg { width: 100%; height: 100%; }
.seal__ring { fill: none; stroke: var(--accent-2); stroke-width: 2; opacity: 0.85; }
.seal__ring--thin { stroke-width: 1; opacity: 0.6; }
.seal__text { font-family: var(--cond); font-weight: 600; font-size: 9px; letter-spacing: 0.18em; fill: var(--accent-2-deep); }
.seal__star { font-size: 14px; fill: var(--accent-2); opacity: 0.5; }
.seal__est {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
  font-family: var(--cond); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.1em;
  color: var(--accent-2-deep); line-height: 1.1;
}

/* ruled section divider */
.rule-divide { width: min(var(--maxw), 100% - 2*var(--gut)); margin: 0 auto; height: 0; position: relative; }
.rule-divide span { position: absolute; left: 0; right: 0; height: 1px; background: var(--rule); }
.rule-divide span:nth-child(1) { top: 0; }
.rule-divide span:nth-child(2) { top: 4px; background: color-mix(in oklab, var(--rule) 55%, transparent); }

/* ============================================================================
   DESTINATIONS — POSTCARD GRID (uniform)
   ============================================================================ */
.dest { padding: var(--sec-pad) 0; }
.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); }
.grid--dest { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card); padding: 10px;
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  transform: rotate(var(--rot));
  box-shadow: 6px 6px 0 -1px color-mix(in oklab, var(--rule) 40%, transparent), 0 24px 36px -30px color-mix(in oklab, var(--ink) 70%, transparent);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card__fig { margin: 0; overflow: hidden; border: 1px solid color-mix(in oklab, var(--rule) 70%, transparent); }
.card__fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: var(--photo-filter); transition: transform .5s var(--ease); }
.card__body { padding: 0.95rem 0.4rem 0.5rem; display: grid; gap: 0.15rem; }
.card__no { font-family: var(--cond); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-2-deep); }
.card__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--ink); line-height: 1.05; }
.card__sub { font-family: var(--cond); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.card:hover { transform: rotate(calc(var(--rot) * 0.2)) translateY(-3px); box-shadow: 8px 8px 0 -1px color-mix(in oklab, var(--brand) 30%, transparent), 0 28px 40px -28px color-mix(in oklab, var(--ink) 72%, transparent); }
.card:hover .card__fig img { transform: scale(1.04); }

/* ============================================================================
   PACKAGES — TICKETED CARDS
   ============================================================================ */
.pkg { padding: var(--sec-pad) 0; background: var(--page-2); border-block: 1.5px solid var(--rule); }
.grid--pkg { grid-template-columns: repeat(3, 1fr); }

.pcard {
  display: flex; flex-direction: column;
  background: var(--card); border: 1.5px solid var(--rule-strong);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 22px 34px -30px color-mix(in oklab, var(--ink) 70%, transparent);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: 6px 8px 0 -2px color-mix(in oklab, var(--brand) 26%, transparent), 0 28px 42px -30px color-mix(in oklab, var(--ink) 72%, transparent); }
.pcard__top { padding: clamp(1.3rem, 2.6vw, 1.7rem); flex: 1; display: flex; flex-direction: column; }
.pcard__tag {
  align-self: flex-start; font-family: var(--cond); font-weight: 600; font-size: 0.64rem;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 0.32em 0.7em; margin-bottom: 0.9rem;
  border: 1.5px solid currentColor; border-radius: 2px; color: var(--accent-2-deep);
  transform: rotate(-1.5deg);
}
.pcard__tag--budget { color: var(--brand-deep); }
.pcard__tag--spring { color: var(--accent-2-deep); }
.pcard__tag--allin  { color: var(--brand-deep); }
.pcard__tag--premium { color: var(--gold); }
.pcard__tag--ghost  { color: var(--muted); }
.pcard__name { font-family: var(--serif); font-weight: 600; font-size: 1.85rem; line-height: 1.02; }
.pcard__meta { font-family: var(--cond); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }
.pcard__desc { margin-top: 0.85rem; color: var(--ink-2); font-size: 1.02rem; line-height: 1.55; }
.pcard__desc strong { color: var(--brand-deep); font-weight: 600; }
.pcard__link { margin-top: 0.8rem; }
.pcard__link a { font-family: var(--cond); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2-deep); text-decoration: none; }
.pcard__link a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* the ticket-stub price row, perforated from the body */
.pcard__stub {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem clamp(1.3rem, 2.6vw, 1.7rem);
  background: color-mix(in oklab, var(--brand) 10%, var(--card-2));
  border-top: 2px dashed var(--rule-strong);
}
.pcard__stub::before, .pcard__stub::after {
  content: ""; position: absolute; top: -9px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--page-2);
}
.pcard__stub::before { left: -9px; }
.pcard__stub::after { right: -9px; }
.pcard__price { display: flex; align-items: baseline; gap: 0.35em; flex-wrap: wrap; }
.pcard__from { font-family: var(--cond); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pcard__rs { font-family: var(--serif); font-weight: 600; font-size: 1.75rem; line-height: 1; color: var(--brand-deep); font-variant-numeric: oldstyle-nums; }
.pcard__pp { font-family: var(--cond); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.pcard--feature { border-color: var(--accent-2-deep); border-width: 2px; box-shadow: 0 0 0 1px var(--accent-2-deep), 0 24px 38px -30px color-mix(in oklab, var(--ink) 72%, transparent); }
.pcard--feature .pcard__stub { background: color-mix(in oklab, var(--accent-2) 12%, var(--card-2)); border-top-color: var(--accent-2-deep); }

.pkg__note { text-align: center; margin-top: clamp(2.2rem, 4vw, 3.4rem); color: var(--ink-2); max-width: 70ch; margin-inline: auto; font-size: 1.04rem; }
.pkg__note a { color: var(--brand-deep); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid color-mix(in oklab, var(--brand) 45%, transparent); }
.pkg__note a:hover { border-bottom-color: var(--brand-deep); }

/* ============================================================================
   ITINERARY — ROUTE LINE TIMELINE
   ============================================================================ */
.itin { padding: var(--sec-pad) 0; }
.route { position: relative; max-width: 760px; margin: 0 auto; padding-left: clamp(46px, 8vw, 68px); }
.route__line { position: absolute; left: clamp(17px, 3.2vw, 28px); top: 8px; bottom: 8px; width: 8px; height: auto; color: var(--accent-2); opacity: 0.7; }
.route__path { stroke-dasharray: 3 9; }

.rstep { position: relative; padding-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.rstep:last-child { padding-bottom: 0; }
.rstep__pin {
  position: absolute; left: calc(-1 * clamp(46px, 8vw, 68px)); top: 2px;
  width: clamp(38px, 6.4vw, 50px); height: clamp(38px, 6.4vw, 50px);
  display: grid; place-content: center; border-radius: 50%;
  background: var(--card); border: 2px solid var(--accent-2-deep);
  color: var(--accent-2-deep); z-index: 2;
  box-shadow: 0 8px 16px -10px color-mix(in oklab, var(--ink) 70%, transparent);
}
.rstep__pin span { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; font-variant-numeric: oldstyle-nums; }
.rstep__pin--end { background: var(--accent-2-deep); color: var(--page); border-color: var(--accent-2-deep); }
.rstep__card {
  background: var(--card); border: 1.5px solid var(--rule);
  border-radius: 4px; padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.2rem, 2.6vw, 1.8rem);
  box-shadow: 5px 5px 0 -1px color-mix(in oklab, var(--rule) 36%, transparent), 0 22px 34px -32px color-mix(in oklab, var(--ink) 70%, transparent);
}
.rstep__day { font-family: var(--cond); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-2-deep); margin-bottom: 0.3rem; }
.rstep__title { font-family: var(--serif); font-weight: 600; font-size: var(--t-h3); margin-bottom: 0.5rem; }
.rstep__desc { color: var(--ink-2); font-size: 1.04rem; line-height: 1.56; }
.rstep__desc strong { color: var(--brand-deep); font-weight: 600; }
.itin__cta { text-align: center; margin-top: clamp(2.2rem, 4vw, 3.2rem); }

/* ============================================================================
   REVIEWS — STAMPED QUOTES
   ============================================================================ */
.reviews { padding: var(--sec-pad) 0; background: var(--page-2); border-block: 1.5px solid var(--rule); }
.grid--rev { grid-template-columns: repeat(2, 1fr); }
.quote {
  position: relative; background: var(--card); padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1.5px solid var(--rule); border-radius: 4px; transform: rotate(var(--rot));
  box-shadow: 6px 6px 0 -1px color-mix(in oklab, var(--rule) 38%, transparent), 0 22px 34px -32px color-mix(in oklab, var(--ink) 70%, transparent);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: rotate(0deg) translateY(-2px); box-shadow: 8px 8px 0 -1px color-mix(in oklab, var(--accent-2) 30%, transparent), 0 26px 40px -30px color-mix(in oklab, var(--ink) 72%, transparent); }
.quote__stamp {
  display: inline-block; font-size: 0.85rem; letter-spacing: 0.15em; color: var(--accent-2-deep);
  border: 1.5px solid var(--accent-2); padding: 0.25em 0.55em; margin-bottom: 1rem;
  transform: rotate(-2deg); transform-origin: left;
}
.quote__text { font-family: var(--serif); font-style: italic; font-size: 1.28rem; line-height: 1.42; color: var(--ink); }
.quote__who { font-family: var(--cond); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-deep); margin-top: 1.1rem; }
.quote__who span { color: var(--muted); font-weight: 500; }

/* ============================================================================
   CONTACT BAND
   ============================================================================ */
.band { position: relative; padding: clamp(3.4rem, 7vw, 6rem) 0; background: var(--brand-deep); color: var(--page); overflow: hidden; }
.band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.10; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, var(--page) 0 2px, transparent 2px 16px);
}
.page-frame--band { border-color: color-mix(in oklab, var(--page) 38%, transparent); }
.page-frame--band::after { border-color: color-mix(in oklab, var(--page) 24%, transparent); }
.band__wrap { position: relative; }
.band__copy { max-width: 620px; }
.band .kicker { color: var(--gold); }
.band .kicker__rule { background: var(--gold); opacity: 0.7; }
.band__title { font-family: var(--serif); font-weight: 600; font-size: var(--t-h2); }
.band__sub { margin-top: 1.1rem; color: color-mix(in oklab, var(--page) 82%, var(--brand)); font-size: 1.12rem; max-width: 52ch; }
.band__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.band .btn--primary { --b: var(--gold); color: var(--ink); border-color: var(--gold); box-shadow: 4px 4px 0 0 color-mix(in oklab, #000 30%, transparent); }
.band .btn--primary:hover { background: color-mix(in oklab, var(--gold) 86%, white); border-color: color-mix(in oklab, var(--gold) 86%, white); }

/* ============================================================================
   FOOTER — POSTMARK / BACK OF POSTCARD
   ============================================================================ */
.foot { background: var(--page); padding: clamp(2.8rem, 6vw, 4.6rem) 0 2rem; }
.postcard-back {
  display: grid; grid-template-columns: 1.4fr auto 0.9fr; gap: clamp(1.6rem, 4vw, 3rem);
  border: 1.5px solid var(--rule-strong); border-radius: 4px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  background: var(--card);
  box-shadow: 7px 7px 0 -1px color-mix(in oklab, var(--rule-strong) 20%, transparent);
}
.foot__logo { height: 40px; width: auto; margin-bottom: 1rem; }
.foot__tag { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--ink-2); max-width: 38ch; margin-bottom: 1.2rem; }
.foot__addr { font-style: normal; font-family: var(--cond); font-weight: 500; font-size: 0.84rem; letter-spacing: 0.06em; line-height: 1.7; color: var(--ink-2); text-transform: uppercase; margin-bottom: 1.3rem; }
.foot__lines { display: grid; gap: 0.7rem; }
.foot__lines li { display: grid; gap: 0.1rem; }
.foot__k { font-family: var(--cond); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-2-deep); }
.foot__lines a { font-family: var(--serif); font-weight: 600; font-size: 1.04rem; color: var(--brand-deep); text-decoration: none; border-bottom: 1.5px solid color-mix(in oklab, var(--brand) 35%, transparent); width: fit-content; transition: border-color .2s var(--ease); }
.foot__lines a:hover { border-bottom-color: var(--brand-deep); }

.postcard-back__divide { width: 1.5px; background: repeating-linear-gradient(var(--rule) 0 6px, transparent 6px 12px); }
.postcard-back__right { position: relative; display: grid; gap: 1rem; align-content: start; justify-items: center; }

.foot-stamp { transform: rotate(var(--rot)); width: 96px;
  background:
    radial-gradient(circle at 50% -4px, transparent 4px, var(--card-2) 5px) 0 0/12px 8px repeat-x,
    radial-gradient(circle at 50% calc(100% + 4px), transparent 4px, var(--card-2) 5px) 0 100%/12px 8px repeat-x,
    radial-gradient(circle at -4px 50%, transparent 4px, var(--card-2) 5px) 0 0/8px 12px repeat-y,
    radial-gradient(circle at calc(100% + 4px) 50%, transparent 4px, var(--card-2) 5px) 100% 0/8px 12px repeat-y,
    var(--card-2);
  padding: 10px;
  filter: drop-shadow(0 6px 10px color-mix(in oklab, var(--ink) 35%, transparent));
}
.foot-stamp__inner { border: 1.5px solid var(--accent-2); color: var(--accent-2-deep); padding: 0.6em; text-align: center; display: grid; gap: 0.05em; }
.foot-stamp__inner span { font-family: var(--cond); font-weight: 500; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; }
.foot-stamp__inner strong { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; line-height: 1; }

.postmark { width: 132px; height: 132px; opacity: 0.78; }
.postmark svg { width: 100%; height: 100%; }
.pm__ring { fill: none; stroke: var(--accent-2-deep); stroke-width: 2; opacity: 0.7; }
.pm__ring--thin { stroke-width: 1; opacity: 0.5; }
.pm__text { font-family: var(--cond); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; fill: var(--accent-2-deep); opacity: 0.85; }
.pm__mid { font-family: var(--serif); font-weight: 600; font-size: 22px; fill: var(--accent-2-deep); opacity: 0.78; }
.pm__mid--sm { font-family: var(--cond); font-weight: 500; font-size: 9px; letter-spacing: 0.2em; }
.foot__rule-note { font-family: var(--cond); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.04em; color: var(--muted); text-align: center; max-width: 24ch; line-height: 1.4; }

.foot__base {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--rule);
  font-family: var(--cond); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--muted);
}
.foot__base-r { letter-spacing: 0.18em; text-transform: uppercase; }

/* ============================================================================
   REVEAL MOTION (paper-settle) — JS adds .in
   ============================================================================ */
[data-reveal], [data-hero-el] {
  opacity: 0; transform: translateY(14px) rotate(-0.6deg);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in, [data-hero-el].in { opacity: 1; transform: none; will-change: auto; }
/* keep the deliberate rotation on rotated cards after reveal */
.card.in, .quote.in { transform: rotate(var(--rot)); }
.stamp--hero { opacity: 0; transform: rotate(var(--rot)) scale(0.9); transition: opacity .14s var(--ease-press), transform .14s var(--ease-press); }
.stamp--hero.in { opacity: 1; transform: rotate(var(--rot)) scale(1); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__collage { max-width: 520px; margin-inline: auto; width: 100%; }
  .about__body { grid-template-columns: 1fr; gap: 2.4rem; }
  .about__aside { order: -1; }
  .grid--dest { grid-template-columns: repeat(2, 1fr); }
  .grid--pkg { grid-template-columns: repeat(2, 1fr); }
  .postcard-back { grid-template-columns: 1fr; }
  .postcard-back__divide { display: none; }
  .postcard-back__right { justify-items: start; grid-auto-flow: row; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0.4rem;
    background: var(--page); border-left: 1.5px solid var(--rule);
    padding: 92px 1.6rem 2rem; transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: -20px 0 40px -30px color-mix(in oklab, var(--ink) 80%, transparent);
  }
  .nav.open .nav-links { transform: translateX(0); }
  .nav-links > a { font-size: 1rem; padding: 0.7em 0; width: 100%; }
  .nav-links > a:not(.nav-cta) { border-bottom: 1px solid var(--rule); }
  .nav-cta { margin-top: 0.8rem; width: 100%; text-align: center; }
  .nav-burger { display: flex; z-index: 51; }

  .ticket { grid-template-columns: 1fr; }
  .ticket__stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .ticket__stats li:nth-child(3)::before, .ticket__stats li + li::before { display: none; }
  .ticket__stub { border-left: 0; border-top: 2px dashed color-mix(in oklab, var(--page) 60%, var(--accent-2-deep)); flex-direction: row; justify-items: center; }
  .ticket__stub::before { left: -8px; top: 50%; transform: translateY(-50%); }
  .ticket__stub::after { left: auto; right: -8px; bottom: auto; top: 50%; transform: translateY(-50%); }
  .ticket__stub { display: flex; gap: 0.8rem; align-items: baseline; justify-content: center; padding: 0.9rem 1rem; }

  .grid--rev { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --gut: 1.05rem; }
  .grid--dest { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid--pkg { grid-template-columns: 1fr; }
  .hero__cta .btn, .band__cta .btn, .itin__cta .btn { width: 100%; }
  .hero__cta, .band__cta { flex-direction: column; }
  .card { transform: rotate(calc(var(--rot) * 0.5)); }
  .card.in { transform: rotate(calc(var(--rot) * 0.5)); }
  .hero__collage { min-height: 320px; }
  .pc--a { width: 60%; } .pc--b { width: 50%; } .pc--c { width: 54%; }
  .page-frame { inset: 9px; }
  .foot__base { justify-content: flex-start; }
}

@media (max-width: 380px) {
  .hero__collage { min-height: 280px; }
  .stamp--hero { width: 92px; }
}

/* ============================================================================
   REDUCED MOTION — complete & beautiful at rest
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal], [data-hero-el] { opacity: 1 !important; transform: none !important; }
  .card, .card.in { transform: rotate(var(--rot)); }
  .quote, .quote.in { transform: rotate(var(--rot)); }
  .stamp--hero { opacity: 1 !important; transform: rotate(var(--rot)) scale(1) !important; }
  .pc { transform: rotate(var(--rot)); }
}

/* ============================================================================
   PRINT
   ============================================================================ */
@media print {
  .demo-banner, .nav, .grain, .band__cta, .hero__cta { display: none; }
  body { background: #fff; }
  .page-frame, .pc, .card, .quote, .ticket, .pcard { box-shadow: none; }
}
