/* ===================================================================
   ITI Retreat — styles.css  ·  "Refined / Confident-Bold" system
   ------------------------------------------------------------------
   Design law (see CLAUDE.md §4):
   - ITI brand manual governs the CHROME (layout, type, CTAs, color, logo).
   - Mood board governs the IMAGERY LAYER only (warm sunset confined to
     .hero__media / .finalcta__media / image gradients + scrims).
   - White + ITI brand colors dominate; ITI Blue = primary CTA.

   Typography: Source Sans 3 throughout — headlines + big numerals are set in
   Source Sans 3 Light (300) for a clean, single-typeface, minimal look; body/UI
   uses Source Sans 3 Regular per the brand manual.
=================================================================== */

:root {
  /* --- ITI brand (primary; structural color + chrome) --- */
  --iti-blue:        #00599b;
  --iti-blue-dark:   #00426f;  /* primary-CTA / statement-band hover + shade */
  --iti-blue-deep:   #032d4d;  /* deepest statement band */
  --iti-aquamarine:  #00b2b8;
  --iti-green:       #d2da16;
  --iti-white:       #ffffff;
  --iti-black:       #11100f;   /* near-black ink — warmer than pure #000 */
  --iti-true-black:  #000000;

  /* --- Graphical greys (structure ONLY) --- */
  --iti-dark-grey:   #5c5969;
  --iti-mid-grey:    #8a8794;
  --iti-light-grey:  #e9e7e6;
  --hairline:        #e4e1dd;   /* warm hairline for rules/borders */

  /* --- Mood-board sunset palette — IMAGERY / OVERLAYS ONLY --- */
  --sunset-amber:    #E8A04C;
  --sunset-terra:    #C77D45;
  --sunset-dusk:     #7E94A8;
  --sunset-deep:     #2B2622;
  --panel-powder:    #e7f1f4;   /* refined pale-blue panel */
  --card-sand:       #EFD9BE;
  --paper:           #F6F4EF;   /* soft warm paper */

  /* --- Type --- */
  --font-display: var(--font-primary);  /* headings set in Source Sans 3 (300) */
  --font-primary: "Source Sans 3", "Source Sans Pro", Verdana, sans-serif;
  --fw-title: 300;
  --fw-body: 400;
  --fw-emphasis: 600;
  --fw-bold: 700;

  /* --- Layout & rhythm --- */
  --maxw: 1200px;
  --gutter: 1.25rem;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --section-y: 5rem;

  /* --- Elevation --- */
  --shadow-sm: 0 1px 2px rgba(17,16,15,.04), 0 6px 18px rgba(17,16,15,.05);
  --shadow-md: 0 4px 12px rgba(17,16,15,.06), 0 18px 44px rgba(17,16,15,.09);
  --shadow-blue: 0 10px 30px rgba(0,89,155,.28);
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-body);
  color: var(--iti-black);
  background: var(--iti-white);
  line-height: 1.62;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--iti-blue); }

/* Headlines in Source Sans 3 Light (300) — tight + confident. */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-title);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }
strong { font-weight: var(--fw-emphasis); }
::selection { background: var(--iti-aquamarine); color: var(--iti-white); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* --------------------------- containers -------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 940px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: 3.5rem; }
.section--hairline { border-top: 1px solid var(--hairline); }
.panel-powder { background: var(--panel-powder); }
.panel-paper { background: var(--paper); }

/* 12-col grid foundation (CLAUDE.md §5: min 4-col blocks) */
.grid { display: grid; gap: 1.5rem; }

/* =================================================================
   SECTION HEADER SYSTEM  — the signature "indexed" device.
   (01) ── eyebrow · display title · lead, with a hairline rule.
================================================================= */
.s-head { max-width: 64ch; margin-bottom: 3rem; }
.eyebrow {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  color: var(--iti-blue);
  margin: 0 0 1rem;
}
.eyebrow--dark { color: var(--iti-blue); }

.s-title, .section__title {
  font-size: clamp(2.15rem, 5.4vw, 3.45rem);
  font-weight: var(--fw-title);
  max-width: 20ch;
  margin-bottom: 1.1rem;
  color: var(--iti-black);
}
.s-lead, .section__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.28rem);
  font-weight: var(--fw-body);
  line-height: 1.55;
  max-width: 58ch;
  color: var(--iti-dark-grey);
}
.s-lead + .s-lead, .section__lead + .section__lead { margin-top: 1rem; }
.section__cta { margin-top: 2.75rem; }

/* Marker underline on a key headline word (confident accent swash). */
.mark {
  position: relative;
  white-space: nowrap;
}
.mark::after {
  content: ""; position: absolute;
  left: -.04em; right: -.04em; bottom: .04em;
  height: .28em;
  background: var(--iti-aquamarine);
  opacity: .9;
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-12deg);
}
.mark--blue::after { background: rgba(0,89,155,.22); }
/* On dark bands the swash flips to ITI green. */
.band-dark .mark::after { background: var(--iti-green); opacity: .85; }

/* Italic editorial accent for select display words. */
.disp-it { font-style: italic; font-weight: var(--fw-title); }

/* ----------------------------- buttons --------------------------- */
.btn {
  --arrow-shift: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-primary);
  font-weight: var(--fw-emphasis);
  font-size: 1rem;
  line-height: 1;
  padding: 1.02em 1.7em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease,
              transform .2s cubic-bezier(.2,.6,.2,1),
              box-shadow .2s ease, border-color .2s ease;
}
.btn .arr { transition: transform .2s cubic-bezier(.2,.6,.2,1); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

/* Primary CTA — ITI Blue (client direction). */
.btn--primary {
  background: var(--iti-blue); color: var(--iti-white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--iti-blue-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,89,155,.34); }

/* Secondary action on light backgrounds: ITI Blue outline. */
.btn--ghost {
  background: transparent; color: var(--iti-blue); border-color: rgba(0,89,155,.4);
}
.btn--ghost:hover { background: rgba(0,89,155,.06); border-color: var(--iti-blue); transform: translateY(-2px); }

/* Secondary action on dark/imagery: white outline. */
.btn--ghost-light {
  background: rgba(255,255,255,.06); color: var(--iti-white); border-color: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: var(--iti-white); transform: translateY(-2px); }

.btn--block { width: 100%; }

/* =================================================================
   SCROLL REVEAL — orchestrated, CSS-driven, reduced-motion safe.
================================================================= */
/* Only hide reveal elements when JS is active (.js on <html>), so a
   no-JS / broken-JS visitor always sees content. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1),
              transform .7s cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
/* Staggered entry for grid children. */
.grid > [data-reveal]:nth-child(2) { --reveal-delay: 80ms; }
.grid > [data-reveal]:nth-child(3) { --reveal-delay: 160ms; }
.grid > [data-reveal]:nth-child(4) { --reveal-delay: 240ms; }
.grid > [data-reveal]:nth-child(5) { --reveal-delay: 320ms; }
.grid > [data-reveal]:nth-child(6) { --reveal-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------ HERO ----------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  color: var(--iti-white);
  overflow: hidden;
}
/* Imagery layer: real golden-hour photo over warm gradient fallback. */
.hero__media {
  position: absolute; inset: 0;
  background:
    url("../media/hero.jpg") center / cover no-repeat,
    radial-gradient(120% 90% at 75% 18%, rgba(232,160,76,.95), rgba(199,125,69,.75) 42%, transparent 70%),
    linear-gradient(180deg, #f0b25f 0%, #c77d45 38%, #7e6a6a 66%, #2B2622 100%);
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,18,28,.46) 0%, rgba(8,18,28,.12) 30%, rgba(6,14,22,.30) 60%, rgba(3,11,18,.78) 100%);
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.75rem 3rem;
  flex: 1;
  z-index: 1;
}

/* Top strip — logo + event meta (NO nav links; conversion guardrail). */
.hero__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.hero__logo { width: 200px; }

.hero__content { max-width: 42ch; margin-top: auto; }

/* Event lockup — formal event identity: name + dates + location, combined. */
.hero__event { margin-bottom: 1.9rem; }
.hero__event-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.7vw, 2.75rem);
  font-weight: var(--fw-title);
  line-height: 1.04;
  letter-spacing: -.015em;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero__event-meta {
  display: block;
  margin-top: .7rem;
  font-weight: var(--fw-emphasis);
  font-size: .84rem; letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .92;
}
.hero__event-meta .dot { opacity: .55; margin-inline: .5em; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.5vw, 4.2rem);
  font-weight: var(--fw-title);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.32);
}
.hero__sub { font-size: 1.12rem; max-width: 46ch; margin-bottom: 2rem; opacity: .95; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 2rem; }
.hero__cta .btn { font-size: 1.08rem; padding: 1.15em 2em; }
.hero__trust {
  margin: 1.85rem 0 0;
  font-size: .88rem;
  font-weight: var(--fw-emphasis);
  opacity: .82;
  max-width: 44ch;
  display: flex; align-items: center; gap: .55rem;
}
.hero__trust::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--iti-green); flex: 0 0 auto;
}

/* Hero load orchestration — staggered rise. */
.hero-reveal { opacity: 0; transform: translateY(24px); animation: heroRise .9s cubic-bezier(.2,.65,.2,1) forwards; }
.hero-reveal.d1 { animation-delay: .15s; }
.hero-reveal.d2 { animation-delay: .28s; }
.hero-reveal.d3 { animation-delay: .41s; }
.hero-reveal.d4 { animation-delay: .54s; }
.hero-reveal.d5 { animation-delay: .67s; }
.hero-reveal.d6 { animation-delay: .80s; }
.hero-reveal.d7 { animation-delay: .93s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-reveal { opacity: 1; transform: none; animation: none; }
  .hero__media { animation: none; transform: none; }
}

/* Scroll cue. */
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--iti-white); opacity: .8;
}
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(var(--iti-white), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }

/* =================================================================
   THE SHIFT — editorial asymmetric statement.
================================================================= */
/* --- The Shift: From → To diptych --- */
.shift {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.shift__panel {
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
}
.shift__panel--from {
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.shift__panel--to {
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(0,178,184,.18), transparent 55%),
    linear-gradient(160deg, var(--iti-blue) 0%, var(--iti-blue-dark) 55%, var(--iti-blue-deep) 100%);
  color: var(--iti-white);
  box-shadow: var(--shadow-blue);
}
.shift__label {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: var(--fw-bold);
  margin: 0 0 1.1rem;
  color: var(--iti-mid-grey);
}
.shift__panel--to .shift__label { color: var(--iti-aquamarine); }
.shift__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.shift__list li {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  font-weight: var(--fw-title);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.shift__panel--from .shift__list li { color: var(--iti-mid-grey); }
.shift__list--icons li { display: flex; align-items: center; gap: .9rem; }
.shift__ico {
  flex: 0 0 auto;
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: var(--iti-white);
}
/* Connector — "the shift" arrow between the two panels. */
.shift__arrow {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .3rem 0;
}
.shift__arrow-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--iti-blue);
}
.shift__arrow-glyph {
  font-size: 1.5rem; line-height: 1; color: var(--iti-blue);
  transform: rotate(90deg);
}
.shift__note {
  font-size: 1.12rem; color: var(--iti-dark-grey);
  max-width: 60ch; margin: 2rem 0 0;
}
.shift__note em { color: var(--iti-black); font-style: italic; }
.shift + .section__cta, .shift__note + .section__cta { margin-top: 1.75rem; }

/* --------------------------- cards (walkaway) -------------------- */
.walkaway { margin-top: 0; }
.card {
  background: var(--iti-white);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,89,155,.2); }
.card__index {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: var(--fw-title); color: var(--iti-aquamarine);
  display: block; margin-bottom: .9rem; line-height: 1;
}
.card__kicker {
  display: block;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--iti-blue);
  margin-bottom: .55rem;
}
.card__title {
  font-size: 1.65rem; font-weight: var(--fw-title);
  letter-spacing: -.01em; margin-bottom: .55rem;
}
.card p { margin: 0; color: var(--iti-dark-grey); }
.card__list { list-style: none; margin: .35rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.card__list li {
  position: relative; padding-left: 1.7rem;
  font-size: .98rem; line-height: 1.4; color: var(--iti-dark-grey);
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .12em;
  width: 1.05rem; height: 1.05rem;
  background-color: var(--iti-aquamarine);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* =================================================================
   WHO IT'S FOR — persona cards (icon-tile style, distinct from
   the numbered .card so the two sections read as different).
================================================================= */
.persona {
  background: var(--iti-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2.2rem 1.9rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.persona:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,89,155,.2); }

/* Rounded gradient icon tile — mirrors .speaker__icon / .price-group__icon. */
.persona__icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(150deg, rgba(0,89,155,.1), rgba(0,178,184,.12));
  color: var(--iti-blue);
  margin-bottom: 1rem;
}
.persona__title {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: var(--fw-title); letter-spacing: -.01em;
  margin: .15rem 0 .5rem;
}
.persona p { margin: 0; color: var(--iti-dark-grey); }

/* Audience qualifier + soft-disqualifier — centred caption lines under the grid. */
.personas__qualifier,
.personas__note {
  text-align: center;
  color: var(--iti-dark-grey);
  max-width: 60ch;
  margin-inline: auto;
}
.personas__qualifier { margin-top: 2.5rem; }
.personas__note { margin-top: .75rem; font-size: .9rem; opacity: .85; }

/* =================================================================
   STATEMENT BAND (dark ITI-blue) — confident rhythm break.
================================================================= */
.band-dark {
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(0,178,184,.18), transparent 55%),
    linear-gradient(160deg, var(--iti-blue) 0%, var(--iti-blue-dark) 55%, var(--iti-blue-deep) 100%);
  color: var(--iti-white);
}
.band-dark .eyebrow { color: var(--iti-green); }
.band-dark .s-title, .band-dark .section__title { color: var(--iti-white); }
.band-dark .s-lead, .band-dark .section__lead { color: rgba(255,255,255,.86); }

/* Pull-quote inside the dark band. */
.pullquote {
  margin: 2.5rem 0 0;
  padding: 0;
  max-width: 30ch;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.9vw, 2.65rem);
  font-weight: var(--fw-title); font-style: italic;
  line-height: 1.22;
  margin: 0 0 1.2rem;
  color: var(--iti-white);
  text-wrap: balance;
}
.pullquote p::before { content: "\201C"; color: var(--iti-green); margin-right: .04em; }
.pullquote p::after { content: "\201D"; color: var(--iti-green); }
.pullquote__cite {
  font-family: var(--font-primary);
  font-style: normal; font-size: .82rem;
  font-weight: var(--fw-emphasis); letter-spacing: .04em;
  color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: .6rem;
}
.pullquote__cite::before { content: ""; width: 1.8rem; height: 2px; background: var(--iti-green); }

.band-dark__grid { display: grid; gap: 2.5rem; }

/* Room = standalone testimonial + group-photo placeholder on the dark band. */
.room__quote { margin: 0; }
.room__quote .pullquote { margin: 1.3rem 0 1.4rem; max-width: 26ch; }
.room__quote .pullquote p { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 0; }
.room__photo {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255,255,255,.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .9rem; text-align: center; padding: 2rem;
  background:
    radial-gradient(120% 100% at 30% 18%, rgba(0,178,184,.28), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
}
.room__photo-badge {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--iti-white);
  padding: .5rem .95rem; border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.room__photo-caption {
  font-size: .92rem; color: rgba(255,255,255,.72); max-width: 22ch; line-height: 1.4;
}

/* =================================================================
   PROGRAM — four-day arc as numbered editorial cards.
================================================================= */
.days { margin-top: 0; }
.day-card {
  background: var(--iti-white);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.day-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.day-card__media {
  display: block; position: relative;
  aspect-ratio: 16 / 11;
  background: var(--iti-light-grey) center / cover no-repeat;
}
.day-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,11,18,.5) 100%);
}
.days .day-card:nth-child(1) .day-card__media { background-image: url("../media/day1.jpg"); }
.days .day-card:nth-child(2) .day-card__media { background-image: url("../media/day2.jpg"); }
.days .day-card:nth-child(3) .day-card__media { background-image: url("../media/day3.jpg"); }
.days .day-card:nth-child(4) .day-card__media { background-image: url("../media/day4.jpg"); }
.day-card__num {
  position: absolute; left: 1rem; bottom: .75rem; z-index: 1;
  font-family: var(--font-display);
  font-weight: var(--fw-title); color: var(--iti-white);
  font-size: 1.15rem; letter-spacing: .02em;
  display: flex; align-items: baseline; gap: .5rem;
}
.day-card__num b { font-size: 2.3rem; font-weight: var(--fw-title); line-height: 1; }
.day-card__body { padding: 1.35rem 1.4rem 1.65rem; display: flex; flex-direction: column; gap: .35rem; }
.day-card__date {
  font-size: .74rem; color: var(--iti-blue); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: .12em;
}
.day-card__title { font-size: 1.55rem; font-weight: var(--fw-title); margin: .1rem 0 .35rem; }
.day-card p { margin: 0; font-size: .96rem; color: var(--iti-dark-grey); }

/* --- Social program — the off-hours moments (clones .day-card) ---- */
.social-cards { margin-top: 0; }
.social-card {
  background: var(--iti-white);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.social-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.social-card__media {
  display: block; position: relative;
  aspect-ratio: 16 / 11;
  /* Warm gradient FALLBACK behind a real photo (imagery layer per brand law).
     Real photos drop in as a leading background-image, like
     .days .day-card:nth-child(n). */
  background:
    radial-gradient(120% 90% at 70% 22%, rgba(232,160,76,.95), rgba(199,125,69,.7) 45%, transparent 72%),
    linear-gradient(160deg, #f0b25f 0%, #c77d45 42%, #7e6a6a 70%, #2B2622 100%);
  background-size: cover; background-position: center;
}
.social-cards .social-card:nth-child(1) .social-card__media {
  background-image: url("../media/social-bbq.jpg"),
    radial-gradient(120% 90% at 70% 22%, rgba(232,160,76,.95), rgba(199,125,69,.7) 45%, transparent 72%),
    linear-gradient(160deg, #f0b25f 0%, #c77d45 42%, #7e6a6a 70%, #2B2622 100%);
}
.social-cards .social-card:nth-child(2) .social-card__media {
  background-image: url("../media/social-outdoor.jpg"),
    radial-gradient(120% 90% at 70% 22%, rgba(232,160,76,.95), rgba(199,125,69,.7) 45%, transparent 72%),
    linear-gradient(160deg, #f0b25f 0%, #c77d45 42%, #7e6a6a 70%, #2B2622 100%);
}
.social-cards .social-card:nth-child(3) .social-card__media {
  background-image: url("../media/social-wine.jpg"),
    radial-gradient(120% 90% at 70% 22%, rgba(232,160,76,.95), rgba(199,125,69,.7) 45%, transparent 72%),
    linear-gradient(160deg, #f0b25f 0%, #c77d45 42%, #7e6a6a 70%, #2B2622 100%);
}
.social-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,11,18,.5) 100%);
}
.social-card__when {
  position: absolute; left: 1rem; bottom: .8rem; z-index: 1;
  color: var(--iti-white);
  font-size: .72rem; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: .12em;
}
.social-card__body { padding: 1.35rem 1.4rem 1.65rem; display: flex; flex-direction: column; gap: .55rem; }
.social-card__title { font-size: 1.55rem; font-weight: var(--fw-title); margin: 0; }
.social-card p { margin: 0; font-size: .96rem; color: var(--iti-dark-grey); }
.social-card__tags {
  list-style: none; margin: .35rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.social-card__tag {
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .78rem; font-weight: var(--fw-bold);
  letter-spacing: .02em; color: var(--iti-blue);
  background: var(--iti-white);
}

/* =================================================================
   GROWTH STATIONS — icon-anchored editorial cards.
================================================================= */
.speakers { margin-top: 0; }

/* --- Growth Stations carousel: horizontal scroll-snap of the six cards.
   Keeps the section calm — three cards in view, the rest a swipe away.
   Native overflow scroll (touch-friendly), optional arrows on desktop. --- */
.s-carousel { position: relative; }
.s-carousel__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.1rem;
}
.s-carousel__hint {
  margin: 0; font-size: .82rem; letter-spacing: .02em;
  color: var(--iti-dark-grey);
}
.s-carousel__nav { display: none; gap: .5rem; }
.s-carousel__btn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--iti-white); color: var(--iti-blue);
  border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
}
.s-carousel__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(0,89,155,.3); }
.s-carousel__btn:disabled { opacity: .35; cursor: default; transform: none; box-shadow: var(--shadow-sm); }

.s-carousel__track {
  display: flex; gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* room for hover-lift + shadow so the snap container doesn't clip them */
  padding: .6rem .2rem 1.4rem;
  margin: -.6rem -.2rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--iti-aquamarine) transparent;
}
.s-carousel__track > .speaker {
  flex: 0 0 auto;
  width: clamp(258px, 80vw, 332px);
  scroll-snap-align: start;
}
.s-carousel__track::-webkit-scrollbar { height: 6px; }
.s-carousel__track::-webkit-scrollbar-thumb { background: var(--iti-aquamarine); border-radius: 999px; }
.s-carousel__track::-webkit-scrollbar-track { background: transparent; }
/* Carousel reveal stagger (replaces the grid > nth-child stagger). */
.s-carousel__track > [data-reveal]:nth-child(2) { --reveal-delay: 70ms; }
.s-carousel__track > [data-reveal]:nth-child(3) { --reveal-delay: 140ms; }

.speaker {
  background: var(--iti-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.speaker:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,89,155,.22); }
.speaker__body { padding: 1.9rem 1.7rem 1.6rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
/* Station icon — visual anchor; ITI-blue glyph in a tinted disc. */
.speaker__icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(150deg, rgba(0,89,155,.1), rgba(0,178,184,.12));
  color: var(--iti-blue);
  margin-bottom: 1rem;
  transition: transform .25s ease;
}
.speaker:hover .speaker__icon { transform: translateY(-2px) rotate(-3deg); }
.speaker__station {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--iti-blue);
}
.speaker__name {
  font-size: 1.7rem; font-weight: var(--fw-title); letter-spacing: -.01em;
  margin: .15rem 0 .4rem;
}
.speaker__body p { font-size: .96rem; margin: 0; color: var(--iti-dark-grey); }
/* Bite-sized "what it covers" — short bullets with an aquamarine dash marker. */
.speaker__covers { list-style: none; margin: .15rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.speaker__covers li {
  position: relative; padding-left: 1.15rem;
  font-size: .92rem; line-height: 1.35; color: var(--iti-dark-grey);
}
.speaker__covers li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: .62rem; height: 2px; background: var(--iti-aquamarine);
}
/* "You leave with" — the punchline; a lifted aquamarine-edged callout. */
.speaker__leave {
  margin-top: 1.15rem;
  padding: .85rem 1rem;
  background: var(--panel-powder);
  border: 1px solid rgba(0,178,184,.45);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.speaker__leave-label {
  display: inline-flex; align-items: center; gap: .42rem;
  font-size: .64rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--iti-blue);
  margin-bottom: .35rem;
}
.speaker__leave-label::before {
  content: ""; flex: 0 0 auto; width: 1rem; height: 1rem;
  background-color: var(--iti-aquamarine);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.speaker__leave-text {
  display: block;
  font-size: 1rem; line-height: 1.35;
  font-weight: var(--fw-emphasis); color: var(--iti-black);
}
/* Speaker = supporting proof: avatar + name pinned to the card foot. */
.speaker__led {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.speaker__avatar {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 50%;
  background:
    radial-gradient(80% 70% at 50% 30%, rgba(232,160,76,.55), transparent 70%),
    linear-gradient(160deg, var(--sunset-terra), var(--sunset-dusk));
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  display: grid; place-items: center;
  box-shadow: 0 0 0 2px var(--iti-white), 0 0 0 3px var(--hairline);
}
.speaker__avatar--initials {
  color: rgba(255,255,255,.92); font-weight: var(--fw-emphasis);
  font-size: .82rem; letter-spacing: .03em;
}
.speaker--rogoski    .speaker__avatar { background-image: url("../media/speaker-rogoski.jpg"); }
.speaker--schiegnitz .speaker__avatar { background-image: url("../media/speaker-schiegnitz.jpg"); }
.speaker--madeira    .speaker__avatar { background-image: url("../media/speaker-madeira.jpg"); }
.speaker--lambert    .speaker__avatar { background-image: url("../media/speaker-lambert.jpg"); }
.speaker--gonzalez   .speaker__avatar { background-image: url("../media/speaker-gonzalez.jpg"); }
.speaker--ochsner    .speaker__avatar { background-image: url("../media/speaker-ochsner.jpg"); }
.speaker--gallucci   .speaker__avatar { background-image: url("../media/speaker-gallucci.jpg"); }
.speaker--prado      .speaker__avatar { background-image: url("../media/speaker-prado.jpg"); }
.speaker__by { font-size: .82rem; line-height: 1.35; color: var(--iti-dark-grey); }
.speaker__byname {
  display: block; font-weight: var(--fw-emphasis); color: var(--iti-black);
  font-size: .92rem;
}
/* Social proof links — chrome (ITI blue/grey), open in a new tab to keep the page open. */
.speaker__social { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.speaker__soc {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 8px;
  color: var(--iti-dark-grey);
  border: 1px solid var(--hairline);
  transition: color .18s ease, border-color .18s ease, transform .18s ease, background-color .18s ease;
}
.speaker__soc svg { width: 17px; height: 17px; }
.speaker__soc:hover {
  color: var(--iti-blue); border-color: rgba(0,89,155,.4);
  background: rgba(0,89,155,.06); transform: translateY(-1px);
}
.speaker__soc:focus-visible { outline: 2px solid var(--iti-blue); outline-offset: 2px; }
/* Growth Over Lunch = a bonus pair, tucked into a collapsible so the six core
   stations stay the focus. Closed by default; native <details>. */
.bonus {
  margin-top: 3.5rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--iti-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.bonus__summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 1.25rem 1.4rem;
  transition: background-color .18s ease;
}
.bonus__summary::-webkit-details-marker { display: none; }
.bonus__summary:hover { background: rgba(0,89,155,.035); }
.bonus__summary:focus-visible { outline: 2px solid var(--iti-blue); outline-offset: -2px; }
.bonus__head { flex: 1 1 15rem; min-width: 0; }
.bonus__tag {
  display: inline-block;
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--iti-blue);
  padding: .3rem .6rem; border-radius: 999px;
  border: 1px solid rgba(0,89,155,.35); background: rgba(0,89,155,.06);
}
.bonus__title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: var(--fw-title); line-height: 1.12;
  letter-spacing: -.01em;
  margin: .55rem 0 .3rem; color: var(--iti-black);
}
.bonus__note { margin: 0; font-size: .92rem; color: var(--iti-dark-grey); }
/* Leaders surfaced in the always-visible summary — the prestige draws the open. */
.bonus__leaders { display: flex; flex-wrap: wrap; gap: 1.1rem 1.4rem; flex: 0 1 auto; }
.bonus__leader { display: flex; align-items: center; gap: .6rem; }
.bonus__leader-avatar {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  box-shadow: 0 0 0 2px var(--iti-white), 0 0 0 3px var(--hairline);
}
.bonus__leader-avatar--ochsner  { background-image: url("../media/speaker-ochsner.jpg"); }
.bonus__leader-avatar--gallucci { background-image: url("../media/speaker-gallucci.jpg"); }
.bonus__leader-by { font-size: .78rem; line-height: 1.3; color: var(--iti-dark-grey); max-width: 18ch; }
.bonus__leader-name { display: block; font-weight: var(--fw-emphasis); color: var(--iti-black); font-size: .88rem; }
.bonus__toggle { margin-left: auto; }
/* +/− indicator — matches the FAQ toggle. */
.bonus__toggle {
  flex: 0 0 auto; position: relative; width: 13px; height: 13px;
  background:
    linear-gradient(var(--iti-blue), var(--iti-blue)) center/100% 2px no-repeat,
    linear-gradient(var(--iti-blue), var(--iti-blue)) center/2px 100% no-repeat;
  transition: transform .22s ease;
}
.bonus[open] .bonus__toggle {
  transform: rotate(180deg);
  background: linear-gradient(var(--iti-blue), var(--iti-blue)) center/100% 2px no-repeat;
}
.bonus[open] .bonus__summary { border-bottom: 1px solid var(--hairline); }
.bonus .speakers--lunch { margin: 0; padding: 1.4rem; }
@media (prefers-reduced-motion: reduce) { .bonus__toggle { transition: none; } }
.speakers--lunch .speaker {
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--hairline);
}
.speakers--lunch .speaker:hover {
  transform: none; box-shadow: none; border-color: var(--hairline);
}
.speakers--lunch .speaker:hover .speaker__icon { transform: none; }
.speakers--lunch .speaker__body { padding: 1.4rem 1.4rem; }
.speakers--lunch .speaker__icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: .65rem;
}
.speakers--lunch .speaker__icon svg { width: 21px; height: 21px; }
.speakers--lunch .speaker__station { color: var(--iti-dark-grey); }
.speakers--lunch .speaker__name { font-size: 1.3rem; }

/* -------------------- testimonials (scaffold) -------------------- */
.testimonials { margin-top: 0; }
.testimonial {
  background: var(--iti-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  /* Reels are portrait — cap the width so the row stays in proportion. */
  width: 100%; max-width: 300px; margin-inline: auto;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__media {
  aspect-ratio: 9 / 16; position: relative;
  background:
    radial-gradient(80% 70% at 50% 30%, rgba(232,160,76,.5), transparent 70%),
    linear-gradient(160deg, var(--sunset-terra), var(--sunset-dusk));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.testimonial__play {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.94); color: var(--iti-blue);
  font-size: 1.15rem; padding-left: .12em;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease;
}
.testimonial:hover .testimonial__play { transform: scale(1.06); }
.testimonial__badge {
  font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: .14em; font-size: .68rem;
  color: var(--iti-white);
  background: rgba(20,15,12,.42);
  border: 1px solid rgba(255,255,255,.5);
  padding: .5em 1em; border-radius: 999px;
}
.testimonial__quote { padding: 1.5rem 1.6rem 0; margin: 0; }
.testimonial__quote p {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.3rem; font-weight: var(--fw-title);
  line-height: 1.35; margin: 0; color: var(--iti-black);
}
.testimonial__who {
  padding: .7rem 1.6rem 1.6rem; margin: 0;
  font-weight: var(--fw-emphasis); color: var(--iti-blue); font-size: .9rem;
}
.testimonial__trust {
  margin-top: 2.5rem; text-align: center;
  font-weight: var(--fw-emphasis); color: var(--iti-dark-grey);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.testimonial__trust::before, .testimonial__trust::after {
  content: ""; width: 2rem; height: 1px; background: var(--hairline);
}

/* Follow Young ITI on Instagram — community CTA */
.testimonial__follow { margin-top: 2.2rem; display: flex; justify-content: center; }
.ig-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background: var(--iti-white); box-shadow: var(--shadow-sm);
  text-decoration: none; color: var(--iti-black);
  transition: transform .2s cubic-bezier(.2,.6,.2,1), box-shadow .2s, border-color .2s;
}
.ig-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--iti-blue); }
.ig-cta__icon {
  flex: none; display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; color: var(--iti-white); background: var(--iti-blue);
}
.ig-cta__text { display: flex; flex-direction: column; line-height: 1.3; text-align: left; }
.ig-cta__lead { font-size: .82rem; color: var(--iti-dark-grey); }
.ig-cta__handle { font-weight: var(--fw-emphasis); color: var(--iti-black); }
.ig-cta__at { color: var(--iti-blue); }
.ig-cta .arr { margin-left: .25rem; color: var(--iti-blue); transition: transform .2s cubic-bezier(.2,.6,.2,1); }
.ig-cta:hover .arr { transform: translateX(4px); }

/* =================================================================
   VENUE — image + text band.
================================================================= */
.venue { background: var(--paper); }
.venue__grid { display: grid; gap: 2.5rem; align-items: center; }
.venue__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--iti-light-grey) center / cover no-repeat;
  background-image: url("../media/venue.jpg");
  box-shadow: var(--shadow-md);
}
.venue__text > p { font-size: 1.12rem; color: var(--iti-dark-grey); }
.venue__note {
  font-size: 1rem; color: var(--iti-black); font-weight: var(--fw-emphasis);
  border-left: 3px solid var(--iti-aquamarine); padding-left: 1rem; margin-top: 1.5rem;
}
/* Golden-hour resort diptych — two portrait shots closing the Setting section.
   Stacks on mobile, side-by-side on wider screens. */
.venue__gallery {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.venue__shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--iti-light-grey) center / cover no-repeat;
  box-shadow: var(--shadow-md);
}
.venue__shot--deck { background-image: url("../media/stay-sunset-deck.jpg"); background-position: 50% 50%; }
.venue__shot--pool { background-image: url("../media/stay-sunset-pool.jpg"); background-position: 50% 50%; }

/* =================================================================
   WHAT'S INCLUDED — value checklist.
================================================================= */
.includes { margin-top: 0; }
.include {
  background: var(--iti-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.4rem 1.55rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.include:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.include__title {
  font-size: 1.3rem; font-weight: var(--fw-title);
  margin: 0 0 .35rem;
  display: flex; align-items: center; gap: .6rem;
}
.include__title::before {
  content: ""; flex: 0 0 auto;
  width: 1.15rem; height: 1.15rem;
  background-color: var(--iti-green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.include p { margin: 0; font-size: .92rem; color: var(--iti-dark-grey); }

/* =================================================================
   ACCOMMODATION (stay).
================================================================= */
.stay { background: var(--panel-powder); }
.units__hint {
  margin: 0;            /* s-head already provides the gap above */
  font-size: 1rem; color: var(--iti-dark-grey);
}
.units__hint-count { color: var(--iti-black); font-weight: var(--fw-emphasis); }
.units { margin-top: 1.1rem; }
.unit {
  background: var(--iti-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.unit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* Per-card photo slider — swipe/snap through several views of the same unit.
   Native scroll-snap + lazy <img>; arrows + dots wired in js/main.js. */
.unit__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--iti-light-grey);
  overflow: hidden;
}
.uslider__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;            /* dots are the indicator; hide native bar */
}
.uslider__track::-webkit-scrollbar { display: none; }
.uslider__slide {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  object-fit: cover;
  scroll-snap-align: center;
  display: block;
}
/* Prev/next — appear on hover (desktop), always visible on touch. */
.uslider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.86); color: var(--iti-blue);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  cursor: pointer; z-index: 2;
  opacity: 0; transition: opacity .2s ease, background-color .2s ease, transform .15s ease;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.uslider__btn--prev { left: .55rem; }
.uslider__btn--next { right: .55rem; }
.unit:hover .uslider__btn, .uslider__btn:focus-visible { opacity: 1; }
.uslider__btn:hover { background: #fff; }
.uslider__btn:active { transform: translateY(-50%) scale(.92); }
/* Dot indicators — grouped in a subtle dark pill so they stay legible
   over both bright (sky/lake) and dark (dome interior) photos. */
.uslider__dots {
  position: absolute; left: 50%; bottom: .55rem; z-index: 2;
  transform: translateX(-50%);
  display: flex; gap: .4rem;
  padding: .3rem .5rem; border-radius: 999px;
  background: rgba(0,0,0,.3);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  pointer-events: none;
}
.uslider__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: 0; padding: 0; cursor: pointer; pointer-events: auto;
  transition: background-color .2s ease, transform .2s ease;
}
.uslider__dot--active { background: var(--iti-white); transform: scale(1.3); }
/* Touch / no-hover: keep arrows visible since there's no hover affordance. */
@media (hover: none) {
  .uslider__btn { opacity: 1; background: rgba(255,255,255,.8); }
}
.unit__body { padding: 1.35rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.unit__name { font-size: 1.4rem; font-weight: var(--fw-title); margin: 0; }
.unit__meta {
  display: flex; flex-wrap: wrap; gap: .35rem .9rem;
  font-size: .76rem; color: var(--iti-blue); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0;
}
.unit p { margin: 0; font-size: .92rem; color: var(--iti-dark-grey); }
/* Inline "More…" reveal — extends the teaser text in place.
   Gated by .js so no-JS visitors see the full text and no dead button. */
.unit__desc-more { display: none; }
.js .unit__desc.is-open .unit__desc-more { display: inline; }
.unit__more {
  display: none;                      /* shown only when JS is on */
  background: none; border: 0; padding: 0;
  font: inherit; cursor: pointer; white-space: nowrap;
  color: var(--iti-blue); font-weight: var(--fw-emphasis);
}
.js .unit__more { display: inline; }
.unit__more:hover { text-decoration: underline; }
.unit__more:focus-visible { outline: 2px solid var(--iti-blue); outline-offset: 2px; border-radius: 3px; }
/* Little spec labels — aquamarine pills (mirrors the old site) */
.unit__chips {
  list-style: none; margin: .35rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.unit__chips li {
  font-size: .76rem; font-weight: var(--fw-body); line-height: 1.3;
  color: var(--iti-dark-grey);
  background: var(--iti-white);
  border: 1px solid var(--hairline);
  padding: .26rem .72rem; border-radius: 999px;
}
.stay__contact {
  margin-top: 2.75rem; text-align: center;
  font-size: 1rem;
}
.stay__contact a { font-weight: var(--fw-emphasis); text-decoration: none; }
.stay__contact a:hover { text-decoration: underline; }

/* =================================================================
   PRICING — refined two-tier with a decisive featured card.
================================================================= */
.price-intro { margin-bottom: .5rem; }
.tiers { margin-top: 1rem; align-items: stretch; }
.tier {
  background: var(--iti-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 2.4rem 2rem;
  display: flex; flex-direction: column; gap: .5rem;
  box-shadow: var(--shadow-sm);
}
.tier--featured {
  border: none; position: relative;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(0,178,184,.16), transparent 55%),
    linear-gradient(160deg, var(--iti-blue) 0%, var(--iti-blue-dark) 100%);
  color: var(--iti-white);
  box-shadow: var(--shadow-blue);
}
.tier__flag {
  position: absolute; top: -.9rem; left: 2rem;
  background: var(--iti-green); color: var(--iti-black);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: var(--fw-bold); padding: .4em .9em; border-radius: 999px;
}
.tier__name { font-size: 1.65rem; font-weight: var(--fw-title); margin: 0; }
.tier__price { margin: .4rem 0 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: .55rem; }
.tier__amount {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: var(--fw-title); color: var(--iti-blue);
  letter-spacing: -.02em; line-height: 1;
}
.tier--featured .tier__amount { color: var(--iti-white); }
.tier__was {
  font-size: 1.3rem; font-weight: var(--fw-body);
  color: var(--iti-mid-grey); text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.tier--featured .tier__was { color: rgba(255,255,255,.6); }
.tier__note { color: var(--iti-dark-grey); font-size: .88rem; margin: .35rem 0 .5rem; }
.tier--featured .tier__note { color: rgba(255,255,255,.78); }
.tier__list { display: flex; flex-direction: column; gap: .6rem; margin: .75rem 0 1.75rem; }
.tier__list li { padding-left: 1.7rem; position: relative; font-size: .96rem; }
.tier__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--iti-aquamarine); font-weight: var(--fw-bold);
}
.tier--featured .tier__list li::before { color: var(--iti-green); }
.tier__rate { font-weight: var(--fw-bold); }
.tier__strike {
  color: var(--iti-mid-grey); text-decoration: line-through;
  text-decoration-thickness: 1px; white-space: nowrap; font-size: .88em;
}
.tier--featured .tier__strike { color: rgba(255,255,255,.6); }
.tier .btn { margin-top: auto; }
.tier--featured .btn--primary {
  background: var(--iti-white); color: var(--iti-blue); box-shadow: none;
}
.tier--featured .btn--primary:hover { background: var(--iti-green); color: var(--iti-black); }

.price-urgency {
  margin: 2.5rem auto 0;
  max-width: 46rem;
  text-align: center;
  background: var(--iti-white);
  border: 1px solid rgba(0,89,155,.22);
  border-left: 4px solid var(--iti-blue);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  color: var(--iti-dark-grey);
  box-shadow: var(--shadow-sm);
}
.price-urgency strong { color: var(--iti-blue); }

/* "Travelling as a group?" — a left-aligned banner aligned to the tier grid
   (not a narrow centered card), anchored by a users icon tile. */
.price-group {
  margin: 1.75rem auto 0;
  max-width: 58rem;                 /* matches .tiers--2 so it sits flush */
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
  background: var(--iti-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.9rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 560px) {
  .price-group { flex-direction: row; align-items: center; gap: 1.5rem; }
}
.price-group__icon {
  flex: 0 0 auto;
  display: inline-grid; place-items: center;
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(150deg, rgba(0,89,155,.1), rgba(0,178,184,.14));
  color: var(--iti-blue);
}
.price-group__title { font-size: 1.45rem; font-weight: var(--fw-title); margin: 0 0 .3rem; }
.price-group p { margin: 0; font-size: 1.02rem; line-height: 1.5; color: var(--iti-dark-grey); }
.price-group strong { color: var(--iti-black); }
.price-group a { color: var(--iti-blue); font-weight: var(--fw-emphasis); text-decoration: none; }
.price-group a:hover { text-decoration: underline; }
.price-safetynet { margin-top: 1.75rem; text-align: center; }
.price-vat {
  margin: 1.5rem 0 0; text-align: center;
  font-size: .8rem; color: var(--iti-mid-grey);
}

/* =================================================================
   FAQ.
================================================================= */
.faq__list { margin-top: 0; max-width: 52rem; }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 1.3rem 2.5rem 1.3rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: var(--fw-title); letter-spacing: -.01em;
  color: var(--iti-black);
  transition: color .18s ease;
}
.faq__item summary:hover { color: var(--iti-blue); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%;
  width: 13px; height: 13px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--iti-blue), var(--iti-blue)) center/100% 2px no-repeat,
    linear-gradient(var(--iti-blue), var(--iti-blue)) center/2px 100% no-repeat;
  transition: transform .22s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(180deg); background: linear-gradient(var(--iti-blue), var(--iti-blue)) center/100% 2px no-repeat; }
.faq__item summary:focus-visible { outline: 2px solid var(--iti-blue); outline-offset: 3px; border-radius: 4px; }
.faq__answer { padding: 0 2.5rem 1.5rem 0; margin: 0; color: var(--iti-dark-grey); font-size: 1.05rem; }
.faq__answer a { font-weight: var(--fw-emphasis); }

/* =================================================================
   LEAD MAGNET — refined sand card.
================================================================= */
.leadcard {
  position: relative;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(232,160,76,.4), transparent 55%),
    var(--card-sand);
  border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4vw, 3.25rem);
  display: grid; gap: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.leadcard__title { font-size: clamp(1.85rem, 4.4vw, 2.65rem); font-weight: var(--fw-title); color: var(--sunset-deep); }
.leadcard__text .eyebrow { color: var(--iti-blue); }
.leadcard__text > p { color: var(--sunset-deep); max-width: 46ch; font-size: 1.08rem; }
.leadcard__links { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.leadcard__links a { color: var(--iti-blue); font-weight: var(--fw-emphasis); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.leadcard__links a:hover { text-decoration: underline; }

.leadform {
  background: var(--iti-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.leadform__label {
  display: block; font-weight: var(--fw-bold);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--iti-blue); margin-bottom: .6rem;
}
.leadform__row { display: flex; flex-direction: column; gap: .8rem; }
.leadform__input {
  font-family: inherit; font-size: 1rem;
  padding: 1em 1.2em;
  border: 1.5px solid var(--iti-light-grey);
  border-radius: 999px;
  background: var(--iti-white);
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.leadform__input:focus { outline: none; border-color: var(--iti-blue); box-shadow: 0 0 0 4px rgba(0,89,155,.12); }
.leadform__hint { font-size: .82rem; color: var(--iti-dark-grey); margin: .85rem 0 0; }
.leadform__success {
  font-weight: var(--fw-emphasis); color: var(--iti-blue);
  margin: .75rem 0 0; font-size: 1.05rem;
}
.leadform__error {
  font-weight: var(--fw-emphasis); color: var(--iti-dark-grey);
  margin: .75rem 0 0; font-size: .95rem;
}
.leadform__error a { color: var(--iti-blue); }
/* Honeypot: kept in the DOM + accessible tree off-screen, never seen by humans. */
.leadform__hp {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden;
}

/* =================================================================
   VIDEO + FINAL CTA.
================================================================= */
.finalcta {
  position: relative; color: var(--iti-white);
  text-align: center; overflow: hidden;
  padding-block: clamp(4.5rem, 12vw, 7.5rem);
}
.finalcta__media {
  position: absolute; inset: 0;
  background:
    url("../media/finalcta.jpg") 50% 72% / cover no-repeat,
    radial-gradient(100% 80% at 50% 30%, rgba(232,160,76,.85), transparent 65%),
    linear-gradient(160deg, #c77d45, #2B2622);
}
.finalcta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,14,22,.5), rgba(3,11,18,.62)); }
.finalcta__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.finalcta__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.9vw, 3.85rem); font-weight: var(--fw-title);
  letter-spacing: -.02em; line-height: 1.06;
  max-width: 16ch; margin: 1.5rem 0 .6rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.finalcta__body { max-width: 52ch; opacity: .94; margin: .25rem 0 1.25rem; font-size: 1.12rem; }
.finalcta__sub {
  font-weight: var(--fw-emphasis); opacity: .95; margin-bottom: 1.9rem;
  text-transform: uppercase; letter-spacing: .08em; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.finalcta__sub::before, .finalcta__sub::after { content: ""; width: 1.6rem; height: 1px; background: rgba(255,255,255,.5); }
.playbtn {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.12);
  color: var(--iti-white); cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s ease, transform .2s ease, border-color .2s ease;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  position: relative;
}
.playbtn::before {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  animation: playPulse 2.4s ease-out infinite;
}
@keyframes playPulse { 0% { transform: scale(.92); opacity: .8; } 100% { transform: scale(1.35); opacity: 0; } }
.playbtn:hover { background: rgba(255,255,255,.24); transform: scale(1.06); border-color: var(--iti-white); }
.playbtn__icon { font-size: 1.6rem; margin-left: 5px; }
@media (prefers-reduced-motion: reduce) { .playbtn::before { animation: none; } }

/* ------------------------- video lightbox ------------------------ */
.vmodal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.vmodal[hidden] { display: none; }
.vmodal__backdrop { position: absolute; inset: 0; background: rgba(3,11,18,.85); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.vmodal__dialog { position: relative; width: 100%; max-width: 960px; }
.vmodal__frame {
  position: relative; aspect-ratio: 16 / 9;
  background: var(--iti-black);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.vmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal__close {
  position: absolute; top: -3rem; right: 0;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  color: var(--iti-white); font-size: 1.6rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: background-color .18s ease, transform .18s ease;
}
.vmodal__close:hover { background: rgba(255,255,255,.26); transform: scale(1.05); }
@media (max-width: 560px) {
  .vmodal__close { top: -3.25rem; right: 50%; transform: translateX(50%); }
  .vmodal__close:hover { transform: translateX(50%) scale(1.05); }
}

/* ------------------------------ footer --------------------------- */
.footer { background: var(--iti-black); color: var(--iti-white); padding-block: 3.5rem; }
.footer__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.footer__logo { width: 230px; margin-bottom: 1.25rem; }
.footer__line { font-weight: var(--fw-emphasis); margin: 0; }
.footer__contact { margin: 0; }
.footer__contact a { color: var(--iti-aquamarine); text-decoration: none; font-weight: var(--fw-emphasis); }
.footer__contact a:hover { text-decoration: underline; }
.footer__legal { font-size: .8rem; color: rgba(255,255,255,.55); margin: 1.25rem 0 0; }

/* =================================================================
   RESPONSIVE — mobile-first; enhance upward.
================================================================= */
@media (min-width: 600px) {
  .leadform__row { flex-direction: row; }
  .leadform__row .leadform__input { flex: 1; }
  .leadform__row .btn { white-space: nowrap; }
}

@media (min-width: 760px) {
  :root { --section-y: 6.5rem; --gutter: 2rem; }
  .s-carousel__nav { display: flex; }
  .s-carousel__hint { font-size: .8rem; }
  .venue__gallery { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .venue__shot { aspect-ratio: 4 / 5; }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .leadcard { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .venue__grid { grid-template-columns: 1fr 1fr; }
  .shift { grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: stretch; }
  .shift__arrow { flex-direction: column; }
  .shift__arrow-glyph { transform: none; }
  .band-dark__grid { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: stretch; }
  .tiers--2 { grid-template-columns: repeat(2, 1fr); max-width: 58rem; margin-inline: auto; }
  .hero__logo { width: 236px; }
  .hero__content { max-width: 30rem; }
}

@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .venue__grid { grid-template-columns: 1.1fr 1fr; }
  .s-head { margin-bottom: 3.5rem; }
}
