/* HELLOIAM.AM — cinematic home. Tokens from 01 - brand/DESIGN.md */

:root {
  --bg: #FFF7E8;
  --ink: #1F140A;
  --primary: #D61E23;
  --accent-warm: #FFC53A;
  --accent-cool: #4A7BFF;
  --cream: #FFF7E8;
  --surface: #FFFFFF;
  --border-soft: #D61E2333;
  --hero-bg: #FFF7E8;
  --hero-ink: #1F140A;
  --hero-word: #D61E23;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

:root[data-hero-tone="red"] {
  --hero-bg: #FFF7E8;
  --hero-word: #D61E23;
  --hero-ink: #1F140A;
}

:root[data-hero-tone="warm"] {
  --hero-bg: #FFC53A;
  --hero-word: #D61E23;
  --hero-ink: #1F140A;
}

:root[data-hero-tone="blue"] {
  --hero-bg: #FFF7E8;
  --hero-word: #4A7BFF;
  --hero-ink: #1F140A;
}

:root[data-hero-tone="ink"] {
  --hero-bg: #FFFFFF;
  --hero-word: #1F140A;
  --hero-ink: #1F140A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

::selection { background: var(--primary); color: var(--surface); }

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-status {
  margin-top: 10px;
  font: 700 14px/1.4 var(--sans);
}

.form-status[data-tone="success"] { color: #176b3a; }
.form-status[data-tone="error"] { color: var(--primary); }

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* ---------- loader ---------- */

body.loading { overflow: hidden; }
html[data-skip-loader="1"] body.loading { overflow: auto; }

#loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--surface);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease, background 0.22s ease, color 0.22s ease;
}

html[data-skip-loader="1"] #loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

#loader[data-tone="1"] { background: var(--cream); color: var(--ink); }
#loader[data-tone="2"] { background: var(--accent-warm); color: var(--ink); }
#loader[data-tone="3"] { background: var(--primary); color: var(--surface); }
#loader[data-tone="4"] { background: var(--ink); color: var(--cream); }
#loader[data-tone="5"] { background: var(--accent-cool); color: var(--surface); }

.loader-word {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(46px, 11vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(-2px);
}

.loader-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72vw, 520px);
  min-height: clamp(120px, 22vw, 220px);
}

.loader-stage > * { grid-area: 1 / 1; }

.loader-word,
.loader-emoji {
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.loader-word.is-hidden {
  opacity: 0;
  transform: translateY(-2px) scale(0.92);
}

.loader-emoji {
  width: clamp(80px, 12vw, 132px);
  height: clamp(80px, 12vw, 132px);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.82) rotate(-8deg);
  filter: drop-shadow(0 18px 24px rgba(31, 20, 10, 0.18));
}

.loader-emoji.is-active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ---------- fixed chrome ---------- */

.chrome-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 4vw, 48px);
  pointer-events: none;
}

.chrome-header > * { pointer-events: auto; }

.chrome-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.locale-switch {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(31, 20, 10, 0.16);
  transition: background 0.2s ease;
}

.locale-switch:hover { background: var(--cream); }

/* custom animated dropdown (replaces the native <select> UI) */
.cselect { position: relative; display: inline-flex; }
.cselect > select {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
  clip: rect(0 0 0 0);
}
.cselect-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.cselect-btn::after {
  content: "";
  width: 7px; height: 7px;
  margin-left: 1px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
  transition: transform 0.22s ease;
}
.cselect.open .cselect-btn::after { transform: translateY(1px) rotate(225deg); }
.cselect-panel {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  min-width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 10px 0 rgba(31, 20, 10, 0.10), 0 22px 36px rgba(31, 20, 10, 0.20);
  padding: 7px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cselect.open .cselect-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cselect-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.cselect-option {
  padding: 9px 16px 9px 13px;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.14s ease;
}
.cselect-option:hover { background: var(--cream); }
.cselect-option.is-active { background: var(--accent-warm); }
[dir="rtl"] .cselect-panel { left: auto; right: 0; }

.cselect--form {
  display: block;
  width: 100%;
}

.cselect--form .cselect-btn--form {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  border: 2px solid rgba(214, 30, 35, 0.22);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font: 700 16px/1.25 var(--sans);
  padding: 15px 14px;
  box-shadow: 6px 6px 0 rgba(31, 20, 10, 0.08);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.cselect--form .cselect-btn--form:hover,
.cselect--form .cselect-btn--form:focus-visible,
.cselect--form.open .cselect-btn--form {
  background: var(--surface);
  border-color: var(--accent-cool);
  transform: translate(-1px, -1px);
  box-shadow: 8px 8px 0 rgba(74, 123, 255, 0.14);
  outline: none;
}

.cselect--form .cselect-btn--form::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.18s ease;
}

.cselect--form.open .cselect-btn--form::after { transform: translateY(2px) rotate(225deg); }
.cselect--form .cselect-panel { min-width: 100%; border-radius: 10px; box-shadow: 8px 8px 0 rgba(31, 20, 10, 0.14), 0 18px 28px rgba(31, 20, 10, 0.18); }

/* departure city switcher */
.flight-origins {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(980px, 100%);
  margin: 0 0 clamp(4px, 1vh, 10px);
}

.flight-origins-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.origin-select {
  display: none;
  width: 100%;
  border: 2px solid rgba(255, 247, 232, 0.28);
  border-radius: 12px;
  background: rgba(255, 247, 232, 0.08);
  color: var(--cream);
  font: 700 15px/1.2 var(--sans);
  padding: 13px 14px;
  box-shadow: 7px 7px 0 rgba(74, 123, 255, 0.22);
}

.origin-select option {
  color: var(--ink);
  background: var(--surface);
}

.flight-snapshot {
  justify-self: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.38);
}

.flight-snapshot span { color: rgba(255, 247, 232, 0.62); }

.origin-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.origin-list li { display: flex; }

.origin-row-break { flex-basis: 100%; height: 0; margin: 0; padding: 0; }

.origin-chip {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  min-height: 38px;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.origin-chip:hover { transform: translateY(-1px); background: var(--cream); }

.origin-chip .chip-code {
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.55;
  margin-left: 3px;
}

.origin-chip.is-active {
  background: var(--accent-cool);
  color: var(--surface);
  box-shadow: none;
}

.origin-chip.is-active .chip-code { opacity: 0.85; }

/* brief pulse on the big airport code when a city is picked */
@keyframes codePulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.airport-code.pulse { animation: codePulse 0.5s ease; }

/* RTL (Hebrew) */
[dir="rtl"] .panel-inner,
[dir="rtl"] .triptych-head,
[dir="rtl"] .request-copy { text-align: right; }
[dir="rtl"] .hero .panel-inner { align-items: flex-end; }
[dir="rtl"] .slogan-strip { direction: ltr; }
[dir="rtl"] .chrome-header { flex-direction: row-reverse; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  text-decoration: none;
  color: var(--cream);
  text-shadow: 0 1px 20px rgba(31, 20, 10, 0.5);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.wordmark img {
  width: 54px;
  height: 38px;
  object-fit: contain;
  margin: 0 3px;
  filter: drop-shadow(0 6px 12px rgba(31, 20, 10, 0.22));
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s ease;
}

.wordmark:hover img {
  transform: translateY(-1px) rotate(-8deg) scale(1.08);
  filter: drop-shadow(0 10px 16px rgba(31, 20, 10, 0.28));
}

body.on-light .wordmark { color: var(--ink); text-shadow: none; }

body.on-light .book-pill {
  background: var(--accent-warm);
  color: var(--ink);
  border-color: var(--ink);
}

body.on-light .book-pill:hover { background: var(--primary); border-color: var(--primary); color: var(--surface); }

.book-pill {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  background: var(--accent-warm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 11px 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  box-shadow: 0 8px 0 rgba(31, 20, 10, 0.16);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.show-tour-pill .book-pill {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.book-pill:hover { background: var(--primary); color: var(--surface); border-color: var(--primary); }

/* dot nav */

.dots {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
  mix-blend-mode: difference;
}

.dots a {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--surface);
  display: block;
  transition: transform 0.25s ease, background 0.25s ease;
}

.dots a.active { background: var(--surface); transform: scale(1.45); }

/* ---------- panels ---------- */

.panel {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  display: flex;
  overflow: hidden;
}

.panel video.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(31,20,10,0.45) 0%, rgba(31,20,10,0.05) 30%, rgba(31,20,10,0.05) 50%, rgba(31,20,10,0.72) 100%);
}

.panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 5vw, 72px);
  padding-bottom: clamp(40px, 7vh, 88px);
}

/* type */

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  font-size: clamp(56px, 10.5vw, 150px);
  text-transform: uppercase;
}

.display .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.display .am-yellow {
  display: block;
  color: var(--accent-warm);
}

.display .display-icon {
  height: 0.82em;
  width: auto;
  vertical-align: -0.08em;
  display: inline-block;
}

.sub {
  font-size: clamp(19px, 2vw, 24px);
  max-width: 52ch;
  color: rgba(255, 247, 232, 0.88);
}

/* reveal animation */

.r {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--d, 0s);
}

.inview .r { opacity: 1; transform: none; }
.panel:target .r { opacity: 1; transform: none; }

/* ---------- hero ---------- */

.hero {
  background: var(--hero-bg);
  color: var(--hero-ink);
  transition: background 0.35s ease, color 0.35s ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 20, 10, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 20, 10, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.24;
}

/* giant bleed-off emojis in hero bg */
.hero-bg-emojis {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hbe {
  position: absolute;
  object-fit: contain;
}

/* pomegranate – top-right corner, majority off-screen */
.hbe-1 {
  width: clamp(520px, 78vw, 1100px);
  height: clamp(520px, 78vw, 1100px);
  top: -42%;
  right: -28%;
  transform: rotate(18deg);
  opacity: 0.72;
}

/* lavash – bottom-left corner, bleeds off */
.hbe-2 {
  width: clamp(400px, 62vw, 860px);
  height: clamp(400px, 62vw, 860px);
  bottom: -38%;
  left: -14%;
  transform: rotate(-12deg);
  opacity: 0.65;
}

/* third icon hidden – two is enough */
.hbe-3 { display: none; }

.hero .panel-inner {
  justify-content: center;
  align-items: flex-start;
  gap: clamp(18px, 3vh, 28px);
  padding-bottom: clamp(44px, 7vh, 84px);
}

.hero .kicker { color: var(--hero-word); }

.hero .sub {
  color: color-mix(in srgb, var(--hero-ink) 76%, transparent);
  font-family: var(--sans);
  font-weight: 600;
  max-width: 44ch;
}

.hero-lockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 72px);
  width: 100%;
  flex-wrap: wrap;
}

.hero-emoji {
  margin: 0;
  display: grid;
  justify-items: center;
  flex: 0 1 auto;
}

.hero-display {
  max-width: 100%;
  font-size: clamp(44px, 10.5vw, 150px);
  color: var(--hero-ink);
}

.hero-word-line {
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(12px, 2.1vw, 28px);
  max-width: 100%;
}

.hero-word {
  display: inline-block;
  color: var(--hero-word);
  transition: color 0.35s ease;
}

.hero-feature-icon {
  /* roughly the height of the three headline lines, ~40% of the viewport */
  width: clamp(220px, min(40vw, 52vh), 600px);
  height: clamp(220px, min(40vw, 52vh), 600px);
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 22px 26px rgba(31, 20, 10, 0.26));
  transform: rotate(-4deg);
  transition: transform 0.35s ease;
}

.hero-am { color: var(--hero-word); transition: color 0.35s ease; }

.hero-feature-icon:hover { transform: rotate(5deg) scale(1.05); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.hero-tour-cta,
.hero-note-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}

.hero-tour-cta {
  min-height: 58px;
  padding: 18px 34px;
  color: var(--surface);
  background: var(--primary);
  border: 2px solid var(--primary);
  font-size: clamp(17px, 1.7vw, 22px);
  box-shadow: 9px 9px 0 rgba(31, 20, 10, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-tour-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(31, 20, 10, 0.16);
}

.hero-note-link {
  min-height: 58px;
  padding: 18px 26px;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--surface);
  font-size: clamp(15px, 1.3vw, 18px);
}

.slogan-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(820px, calc(100vw - 48px));
  height: 64px;
  border: 3px solid var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 rgba(31, 20, 10, 0.14);
}

.slogan-strip span,
.slogan-strip strong {
  display: grid;
  place-items: center;
  min-width: 0;
  color: var(--ink);
  background: var(--surface);
  overflow: hidden;
  text-align: center;
}

.slogan-strip span:nth-child(2) { background: var(--cream); }
.slogan-strip span:nth-child(3) { background: var(--accent-warm); }
.slogan-strip span:nth-child(4) { background: var(--primary); color: var(--surface); }
.slogan-strip span:nth-child(5) { background: var(--ink); color: var(--cream); }
.slogan-strip strong { background: var(--accent-cool); color: var(--surface); padding: 0 10px; }

.slogan-strip img {
  width: 46px;
  height: 46px;
  align-self: center;
  justify-self: center;
  object-fit: contain;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero .scroll-cue {
  display: none;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,247,232,0.9), transparent);
  animation: cue 1.8s ease-in-out infinite;
}

.hero .scroll-cue::after { background: linear-gradient(to bottom, var(--hero-ink), transparent); }

@keyframes cue {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- video hero (alt page) ---------- */

.video-hero .panel-inner {
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
}

.video-hero .display { max-width: 11ch; }

/* ---------- manifesto ---------- */

.manifesto { background: var(--ink); }

.manifesto .panel-inner {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 36px;
}

.statement {
  font-family: var(--serif);
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.15;
  max-width: 26ch;
  font-weight: 400;
}

.statement em {
  font-style: italic;
  color: var(--accent-warm);
}

.statement .red { color: var(--primary); font-style: normal; }

/* ticker */

.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 247, 232, 0.18);
  padding: 18px 0;
  white-space: nowrap;
  overflow: hidden;
}

.ticker-track {
  display: inline-block;
  animation: ticker 36s linear infinite;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: rgba(255, 247, 232, 0.85);
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 9px;
}
.ticker-track .dot { color: var(--primary); }

.ticker-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- tour panels ---------- */

.tour-index {
  position: absolute;
  top: clamp(76px, 11vh, 110px);
  right: clamp(24px, 5vw, 72px);
  z-index: 2;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 247, 232, 0.5);
}

.tour-panel .panel-inner { gap: 18px; }

.tour-title {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: clamp(46px, 7.8vw, 112px);
  text-decoration: none;
  display: block;
  max-width: 14ch;
}

.tour-title:hover .serif { color: var(--accent-warm); }

.tour-title .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  transition: color 0.25s ease;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.85);
}

.meta-row .price { color: var(--accent-warm); }

.tour-line { max-width: 56ch; font-size: clamp(18px, 1.9vw, 22px); color: rgba(255,247,232,0.9); }

.tour-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--cream);
  border: 1.5px solid rgba(255, 247, 232, 0.6);
  border-radius: 999px;
  padding: 15px 30px;
  width: fit-content;
  transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.tour-cta:hover { background: var(--cream); color: var(--ink); gap: 18px; }

/* ---------- tours triptych (alt layout) ---------- */

.triptych { background: var(--ink); flex-direction: column; }

.triptych-head {
  position: absolute;
  top: clamp(70px, 10vh, 96px);
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  pointer-events: none;
  display: grid;
  gap: 10px;
}

.triptych-head .kicker { color: var(--cream); letter-spacing: 0.22em; }

.triptych-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--surface);
  text-shadow: 0 4px 24px rgba(31, 20, 10, 0.45);
}

.triptych-cols {
  display: flex;
  flex: 1;
  min-height: 100svh;
}

.t-col {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  border-left: 1px solid rgba(255, 247, 232, 0.18);
  transition:
    flex 0.65s cubic-bezier(0.3, 0.7, 0.2, 1),
    opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: 0s, var(--d, 0s), var(--d, 0s);
}

.t-col:first-child { border-left: none; }

.t-col video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: filter 0.5s ease, transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.t-col::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(31,20,10,0.44) 0%, rgba(31,20,10,0) 42%, rgba(31,20,10,0.88) 100%);
}

.t-col:hover { flex: 1.75; }

.t-col:hover video { filter: brightness(0.95); transform: scale(1.04); }

/* tri-colour accent bar on hover — yellow / red / blue */
.t-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  z-index: 3;
  background: var(--t-accent, var(--accent-warm));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.3, 0.7, 0.2, 1);
}
.t-col:nth-of-type(1) { --t-accent: var(--accent-warm); }
.t-col:nth-of-type(2) { --t-accent: var(--primary); }
.t-col:nth-of-type(3) { --t-accent: var(--accent-cool); }
.t-col:hover::before { transform: scaleX(1); }
.t-col:hover { box-shadow: inset 0 0 0 2px var(--t-accent); }

.t-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(20px, 2.5vw, 40px);
  padding-bottom: clamp(32px, 6vh, 64px);
}

.t-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--accent-warm);
  display: block;
  margin-bottom: 12px;
}

.t-title {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(26px, 2.9vw, 46px);
}

.t-title .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.t-line {
  font-size: clamp(15px, 1.25vw, 19px);
  color: rgba(255, 247, 232, 0.88);
  margin-top: 12px;
  max-width: 34ch;
  min-height: 4.8em;
}

.t-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.8);
}

.t-meta .price { color: var(--accent-warm); }

.t-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1.5px solid rgba(255, 247, 232, 0.5);
  padding-bottom: 4px;
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.t-col:hover .t-cta { gap: 16px; border-color: var(--t-accent, var(--accent-warm)); }

@media (max-width: 760px) {
  .triptych-cols { flex-direction: column; }
  .t-col { border-left: none; border-top: 1px solid rgba(255, 247, 232, 0.18); }
  .t-col:first-child { border-top: none; }
  .t-line { display: none; }
  .t-body { padding-bottom: 24px; }
}

/* ---------- flights ---------- */

.flights { background: var(--ink); color: var(--cream); }

.flights .panel-inner {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 2.4vh, 26px);
  padding-top: clamp(76px, 11vh, 112px);
}

.flight-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  width: min(980px, 100%);
}

.flight-route-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(110px, 0.55fr) minmax(160px, 0.9fr);
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  min-height: clamp(145px, 21vh, 210px);
  padding: clamp(8px, 1.6vw, 18px) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.airport-stack {
  display: grid;
  justify-items: start;
  gap: 8px;
  text-align: left;
}

.airport-stack--arrival {
  justify-items: end;
  text-align: right;
}

.airport-city,
.airport-name {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.airport-city {
  font-size: 13px;
  color: var(--accent-warm);
}

.airport-name {
  max-width: 18ch;
  font-size: 11px;
  line-height: 1.25;
  color: rgba(255, 247, 232, 0.58);
}

.airport-code {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--surface);
  background: transparent;
  appearance: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(60px, 9vw, 124px);
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: none;
  transition: transform 0.18s ease, color 0.18s ease;
}

.airport-code--origin { color: var(--accent-cool); }

.airport-code--arrival {
  background: transparent;
  color: var(--surface);
  box-shadow: none;
}

.airport-code--arrival {
  color: var(--cream);
}

.route-line {
  position: relative;
  width: 100%;
  min-width: 100px;
  height: 3px;
  background-image: linear-gradient(90deg, rgba(255, 247, 232, 0.5) 55%, transparent 45%);
  background-size: 14px 3px;
  align-self: center;
}

.route-line img {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(40px, 5vw, 64px);
  height: clamp(40px, 5vw, 64px);
  object-fit: contain;
  animation: fly 3.2s ease-in-out infinite;
}

@keyframes fly {
  0% { left: 0; transform: translate(0, -50%) rotate(4deg); }
  50% { left: calc(100% - clamp(40px, 5vw, 64px)); transform: translate(0, -54%) rotate(-4deg); }
  100% { left: 0; transform: translate(0, -50%) rotate(4deg); }
}

.flight-price-card {
  display: grid;
  justify-items: start;
  align-content: center;
  min-height: clamp(145px, 21vh, 210px);
  padding: clamp(18px, 2.6vw, 28px);
  text-align: left;
  background: var(--accent-warm);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(255, 247, 232, 0.10);
}

.price-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.flight-price-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: 0;
}

.flight-price-card small {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(31, 20, 10, 0.62);
}

.flight-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  width: min(860px, 100%);
  margin-top: 6px;
}

.ff {
  border-top: 1px solid rgba(255, 247, 232, 0.22);
  padding-top: 14px;
  text-align: left;
}

.ff strong {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1;
}

.ff:nth-child(1) strong { color: var(--accent-warm); }
.ff:nth-child(2) strong { color: var(--surface); }
.ff:nth-child(3) strong { color: var(--accent-cool); }
.ff span {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.6);
  line-height: 1.5;
}

.flight-note {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  max-width: 640px;
  background: rgba(255, 247, 232, 0.06);
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 16px;
  padding: 18px 24px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255, 247, 232, 0.9);
}

.flight-note img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.flight-note strong { font-family: var(--sans); font-weight: 700; }

@media (max-width: 760px) {
  .flight-board,
  .flight-route-card,
  .flight-detail-grid { grid-template-columns: 1fr; }
  .flight-route-card { gap: 18px; min-height: auto; }
  .airport-stack,
  .airport-stack--arrival { justify-items: center; text-align: center; }
  .route-line { width: min(220px, 72vw); justify-self: center; transform: rotate(90deg); margin: 22px 0; }
  .flight-price-card { min-height: auto; justify-items: center; text-align: center; }
  .flight-note { flex-direction: row; padding: 16px 18px; }
  .flight-origins { grid-template-columns: 1fr; justify-items: stretch; width: min(420px, 100%); }
  .flight-origins-label,
  .flight-snapshot { justify-self: center; }
  .origin-select { display: block; }
  .origin-list { display: none; }
}

/* ---------- textures mosaic ---------- */

.textures { background: var(--ink); }

.mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.mosaic .cell {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.mosaic video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.5s ease;
  filter: brightness(0.82);
}

.mosaic .cell:hover video { transform: scale(1.06); filter: brightness(1); }

.textures-title {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.textures-title span {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(42px, 7.4vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--surface);
  mix-blend-mode: difference;
  white-space: pre-line;
}

/* ---------- instagram ---------- */

.instagram {
  background: var(--cream);
  color: var(--ink);
}

.instagram .panel-inner {
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
}

.instagram .kicker { color: var(--primary); }

.instagram-copy {
  display: grid;
  gap: 24px;
  max-width: 620px;
}

.instagram .display {
  color: var(--ink);
  font-size: clamp(62px, 9vw, 148px);
}

.instagram-follow { color: var(--primary); max-width: 7ch; }

.instagram .sub {
  color: rgba(31, 20, 10, 0.72);
  font-family: var(--sans);
  font-weight: 600;
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  color: var(--surface);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 16px 28px;
  transition: gap 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.instagram-cta:hover {
  gap: 18px;
  background: var(--primary);
  border-color: var(--primary);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, 1fr);
  gap: 14px;
}

.ig-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: 0;
  padding: 18px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 8px 8px 0 rgba(31, 20, 10, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ig-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 rgba(31, 20, 10, 0.16);
}

.ig-card span {
  position: relative;
  z-index: 2;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ig-card strong {
  position: relative;
  z-index: 2;
  font-family: var(--sans);
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.02;
  max-width: 9.5ch;
}

.ig-card img {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: clamp(62px, 7vw, 104px);
  height: clamp(62px, 7vw, 104px);
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 14px 18px rgba(31, 20, 10, 0.18));
}

.ig-card-red { background: var(--primary); color: var(--surface); }
.ig-card-blue { background: var(--accent-cool); color: var(--surface); }
.ig-card-yellow { background: var(--accent-warm); }
.ig-card-cream { background: var(--cream); }
.ig-card-ink { background: var(--ink); color: var(--cream); }
.ig-card-white { background: var(--surface); }

/* ---------- request / coming soon ---------- */

.request {
  background: var(--cream);
  color: var(--ink);
  overflow-y: auto;
}

.request--soon {
  display: block;
  overflow-x: hidden;
}

.request-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - clamp(32px, 8vw, 120px)));
  min-height: calc(100svh - 218px);
  margin: 0 auto;
  padding: clamp(88px, 10vh, 122px) 0 clamp(34px, 5vh, 62px);
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.request-shell--soon {
  width: min(1180px, calc(100vw - clamp(48px, 8vw, 160px)));
  min-height: calc(100svh - 206px);
  padding-top: clamp(104px, 11vh, 138px);
  padding-bottom: clamp(36px, 5vh, 62px);
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  justify-items: stretch;
  align-content: center;
  gap: clamp(34px, 6vw, 82px);
  text-align: left;
}

.request-copy {
  display: grid;
  gap: 24px;
}

.request--soon .request-copy {
  max-width: none;
  justify-items: start;
  gap: 18px;
}

.request .kicker { color: var(--primary); }

.request .display {
  color: var(--ink);
  font-size: clamp(48px, 7.6vw, 118px);
}

.request--soon .display {
  font-size: clamp(52px, 7.2vw, 108px);
  line-height: 0.88;
}

.request .display .serif { color: var(--primary); }

.request .sub {
  color: rgba(31, 20, 10, 0.72);
  font-family: var(--sans);
  font-weight: 600;
}

.request--soon .sub {
  max-width: 42ch;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.36;
}

.request-contact {
  display: grid;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.request--soon .request-contact {
  display: grid;
  justify-content: start;
  gap: 12px 22px;
  font-size: clamp(20px, 2.1vw, 32px);
}

.request-contact a {
  max-width: 100%;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--accent-warm);
  overflow-wrap: anywhere;
  transition: color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.request-contact a:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateX(4px);
}

.coming-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  justify-self: end;
  width: min(520px, 100%);
  min-height: auto;
  padding: clamp(22px, 3.2vw, 42px);
  background: var(--surface);
  border: 4px solid var(--ink);
  box-shadow: 16px 16px 0 rgba(31, 20, 10, 0.16), -8px -8px 0 rgba(255, 197, 58, 0.28);
  overflow: hidden;
}

.coming-card::before,
.coming-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border: 4px solid var(--ink);
  background: var(--accent-warm);
  z-index: 0;
}

.coming-card::before {
  top: -46px;
  right: -34px;
  transform: rotate(8deg);
}

.coming-card::after {
  left: -54px;
  bottom: -52px;
  background: var(--accent-cool);
  transform: rotate(-12deg);
}

.coming-card > * {
  position: relative;
  z-index: 1;
}

.coming-card img {
  width: clamp(82px, 8vw, 116px);
  height: clamp(82px, 8vw, 116px);
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(31, 20, 10, 0.18));
}

.coming-card .section-label {
  color: var(--primary);
  margin: 0;
}

.coming-card h3 {
  max-width: 15ch;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--ink);
}

.coming-card > p:not(.section-label) {
  max-width: 44ch;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.35;
  color: rgba(31, 20, 10, 0.68);
}

.coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.email-capture { width: 100%; }

.email-capture__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.email-capture__input {
  flex: 1 1 180px;
  min-height: 52px;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--surface, #fff);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(31, 20, 10, 0.12);
  outline: none;
  transition: box-shadow 0.15s;
}

.email-capture__input:focus {
  box-shadow: 6px 6px 0 rgba(31, 20, 10, 0.18);
}

.email-capture__btn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.email-capture__msg {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding-left: 8px;
}

.coming-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 6px 6px 0 rgba(31, 20, 10, 0.14);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.coming-action--primary {
  background: var(--primary);
  color: var(--surface);
}

.coming-action:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 rgba(31, 20, 10, 0.18);
  background: var(--accent-warm);
  color: var(--ink);
}

.tour-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: var(--surface);
  border: 4px solid var(--ink);
  box-shadow: 16px 16px 0 rgba(31, 20, 10, 0.16), -8px -8px 0 rgba(255, 197, 58, 0.24);
  padding: clamp(18px, 3vw, 34px);
}

.tour-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  align-content: start;
}

.tour-form label.wide {
  grid-column: 1 / -1;
}

.tour-form label span {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
}

.tour-form input,
.tour-form select,
.tour-form textarea {
  width: 100%;
  min-width: 0;
  border: 2px solid var(--border-soft);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font: 700 16px/1.25 var(--sans);
  padding: 15px 14px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  box-shadow: 6px 6px 0 rgba(31, 20, 10, 0.06);
}

.tour-form textarea {
  resize: vertical;
}

.tour-form input:focus,
.tour-form select:focus,
.tour-form textarea:focus {
  border-color: var(--accent-cool);
  background: var(--surface);
  box-shadow: 8px 8px 0 rgba(74, 123, 255, 0.14);
}

.tour-form label.has-error input,
.tour-form label.has-error select,
.tour-form label.has-error textarea,
.tour-form label.has-error .cselect-btn--form {
  border-color: var(--primary);
  background: #fff0ec;
  box-shadow: 8px 8px 0 rgba(214, 30, 35, 0.15);
}

.field-error {
  min-height: 15px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.25;
  color: var(--primary);
}

.tour-form button {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: var(--surface);
  background: var(--primary);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: gap 0.18s ease, background 0.18s ease;
}

.tour-form button:hover {
  gap: 18px;
  background: var(--ink);
}

.request-emoji-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0 0 78px;
}

.request-emoji {
  width: 120px;
  height: 120px;
  object-fit: contain;
  cursor: crosshair;
  filter: drop-shadow(0 18px 24px rgba(31, 20, 10, 0.18));
  transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.request-emoji:hover { transform: rotate(-7deg) scale(1.08); }

/* ---------- CTA ---------- */

.cta { background: var(--bg); color: var(--ink); }

/* grey variant: matches the emoji-loop video background so it melts into the screen */
.cta.cta-grey { background: var(--cream); }
.cta.cta-grey .cta-footer { border-top-color: rgba(31, 20, 10, 0.14); }

.emoji-loop {
  width: clamp(180px, 24vw, 300px);
  height: auto;
  display: block;
}

.cta .panel-inner {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.culture-loop {
  width: clamp(110px, 14vw, 170px);
  height: clamp(110px, 14vw, 170px);
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(31, 20, 10, 0.18));
}

.cta .display { color: var(--ink); font-size: clamp(40px, 7.5vw, 104px); }
.cta .display .serif { color: var(--primary); }

.cta .sub { color: rgba(31, 20, 10, 0.7); }

/* icon marquee — running line of pack icons */

.icon-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
}

.icon-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 26s linear infinite;
}

.icon-marquee-track img {
  width: clamp(44px, 6vw, 72px);
  height: clamp(44px, 6vw, 72px);
  object-fit: contain;
  margin-right: clamp(26px, 4.5vw, 56px);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-marquee-track img:hover { transform: scale(1.25) rotate(7deg); }

/* icon row */

.icon-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
  line-height: 1;
}

.icon-row img {
  width: clamp(38px, 5vw, 64px);
  height: clamp(38px, 5vw, 64px);
  object-fit: contain;
  transform: scale(0) rotate(-12deg);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--d, 0s);
}

.inview .icon-row img { transform: scale(1) rotate(0deg); }

.icon-row img:hover { transform: scale(1.3) rotate(8deg); transition-duration: 0.2s; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  color: var(--cream);
  background: var(--primary);
  border-radius: 999px;
  padding: 18px 40px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta-btn:hover { transform: translateY(-3px); background: var(--ink); }

.cta-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.cta-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(31, 20, 10, 0.6);
  border-top: 1px solid rgba(31, 20, 10, 0.12);
}

.cta-footer a { color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
.cta-footer a:hover { color: var(--primary); }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .instagram .panel-inner,
  .request-shell {
    grid-template-columns: 1fr;
  }

  .instagram .panel-inner {
    align-content: center;
  }

  .instagram-follow { max-width: none; }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, 1fr);
  }

  .request-shell {
    width: min(760px, calc(100% - 36px));
    padding-top: 96px;
  }

  .request-shell--soon {
    width: min(760px, calc(100vw - 36px));
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-bottom: 40px;
  }

  .request--soon .request-copy {
    justify-items: center;
  }

  .request--soon .request-contact {
    justify-content: center;
  }

  .coming-card {
    grid-template-columns: 1fr;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .coming-card img { grid-row: auto; }
}

@media (max-width: 640px) {
  .dots { display: none; }
  .chrome-header { padding: 16px 14px; gap: 8px; }
  .wordmark { font-size: 15px; }
  .wordmark img { width: 34px; height: 24px; margin: 0 -1px; }
  .book-pill { font-size: 12px; padding: 9px 14px; box-shadow: 0 6px 0 rgba(31, 20, 10, 0.14); }
  .hero .panel-inner { padding: 92px 20px 56px; }
  .hero .sub { max-width: 100%; font-size: 18px; }
  .hero .kicker { font-size: 11px; letter-spacing: 0.16em; }
  .hero-lockup { align-items: flex-end; }
  .hero-feature-icon { width: clamp(150px, 44vw, 220px); height: clamp(150px, 44vw, 220px); }
  .chrome-tools { gap: 8px; }
  .locale-switch { font-size: 11px; padding: 8px 12px; box-shadow: 0 6px 0 rgba(31, 20, 10, 0.14); }
  .hero-actions { width: 100%; }
  .hero-tour-cta,
  .hero-note-link { min-height: 52px; padding: 14px 20px; }
  .hero-tour-cta { flex: 1 1 100%; }
  .slogan-strip {
    width: 100%;
    max-width: calc(100vw - 40px);
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slogan-strip span,
  .slogan-strip strong { min-height: 42px; font-size: 12px; overflow-wrap: anywhere; }
  .slogan-strip img { width: 36px; height: 36px; }
  .tour-index { top: 84px; right: 20px; }
  .triptych-head { top: 72px; }
  .triptych-title { font-size: 28px; }
  .instagram .panel-inner { padding: 88px 18px 48px; }
  .instagram .display { font-size: clamp(54px, 16vw, 82px); }
  .instagram-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(138px, 1fr); }
  .ig-card { min-height: 138px; padding: 15px; }
  .request-shell { width: calc(100% - 36px); padding: 88px 0 92px; }
  .request-shell--soon { width: calc(100% - 32px); padding: 86px 0 34px; }
  .request--soon .request-copy { max-width: 100%; gap: 14px; }
  .request--soon .display { font-size: clamp(44px, 14vw, 68px); }
  .request--soon .sub { max-width: 100%; font-size: 17px; }
  .request--soon .request-contact { font-size: clamp(18px, 7vw, 28px); gap: 8px; }
  .coming-card { padding: 20px; box-shadow: 8px 8px 0 rgba(31, 20, 10, 0.16); }
  .coming-card img { width: 76px; height: 76px; }
  .coming-card h3 { max-width: 16ch; font-size: clamp(27px, 8vw, 38px); }
  .coming-card > p:not(.section-label) { font-size: 15px; }
  .coming-action { width: 100%; }
  .tour-form { grid-template-columns: 1fr; padding: 16px; box-shadow: 8px 8px 0 rgba(31, 20, 10, 0.16); }
  .request-contact { font-size: clamp(22px, 7vw, 34px); }
  .request-emoji-wrap { padding-bottom: 84px; }
  .request-emoji { width: 96px; height: 96px; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(4, 1fr); }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
  .r { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}
