/* ——— TREPIC TOKENS ——————————————————————————————————————— */
:root {
  --c-ink: #292420;
  --c-bg: #FAF9F4;
  --c-off: #F3F0E9;
  --c-warm: #F3F0E9;
  --c-line: #E2DDD2;
  --c-line-strong: #C9C2B5;
  --c-mute: rgba(41, 36, 32, 0.55);
  --c-mute-strong: rgba(41, 36, 32, 0.7);
  --c-mute-ink: #756E66;
  --c-gold-1: #b28b43;
  --c-gold-2: #b28b43;
  --c-gold-3: #b28b43;
  --ff-display: "Cormorant Infant", "Cormorant Garamond", Lora, Georgia, serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ff-mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
  --nav-h: 76px;
  --gutter: clamp(20px, 4vw, 56px);
  --max: 1440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--c-bg); color: var(--c-ink); scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 15px; color: inherit; }

/* ——— TYPOGRAPHY UTILITIES ————————————————————————————————— */
.serif { font-family: var(--ff-display); font-weight: 300; letter-spacing: -0.01em; }
.serif-it { font-family: var(--ff-display); font-style: italic; font-weight: 400; }
.mono { font-family: var(--ff-mono); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.eyebrow.on-dark { color: rgba(255,255,255,0.78); }

.display {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.display em {
  font-style: italic;
  font-weight: 500;
}

.h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.h2 em { font-style: italic; font-weight: 500; }

.h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

.body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-mute-ink);
}
.body-lg {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-mute-ink);
}
.body.on-dark, .body-lg.on-dark { color: rgba(255,255,255,0.72); }

.kicker {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ——— BUTTONS ————————————————————————————————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--c-ink);
  background: var(--c-ink);
  color: #fff;
  transition: background .22s ease, color .22s ease, border-color .22s ease, opacity .22s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--c-ink); }

.btn.ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn.ghost:hover { background: var(--c-ink); color: #fff; }

.btn.on-dark {
  background: #fff;
  color: #0A0A0A;
  border-color: #fff;
}
.btn.on-dark:hover { background: transparent; color: #fff; }

.btn.ghost.on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn.ghost.on-dark:hover { background: #fff; color: #0A0A0A; border-color: #fff; }

.btn.lg { padding: 20px 36px; font-size: 12px; }
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ——— TEXT LINK —————————————————————————————————————————— */
.tlink {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-ink);
  transition: gap .22s ease, opacity .22s ease;
}
.tlink:hover { gap: 16px; }
.tlink.on-dark { color: #fff; border-bottom-color: #fff; }

/* ——— LAYOUT ————————————————————————————————————————————— */
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(64px, 9vw, 140px) 0; }

/* ——— NAVBAR ————————————————————————————————————————————— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.transparent { background: transparent; color: var(--c-ink); }
.nav.transparent .nav-cta {
  background: var(--c-gold-1);
  color: #fff;
  border-color: var(--c-gold-1);
}
.nav.transparent .nav-cta:hover { background: transparent; color: var(--c-gold-1); border-color: var(--c-gold-1); }
.nav.solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--c-ink);
  border-bottom-color: var(--c-line);
  padding: 14px var(--gutter);
}
.nav.solid-always {
  background: #fff;
  color: var(--c-ink);
  border-bottom-color: var(--c-line);
}
.nav-logo { height: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity .2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-cta {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid currentColor;
  transition: background .22s ease, color .22s ease;
}
.nav.transparent .nav-cta:hover { background: #fff; color: #0A0A0A; }
.nav.solid .nav-cta:hover, .nav.solid-always .nav-cta:hover { background: var(--c-ink); color: #fff; }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ——— LOGO ——————————————————————————————————————————————— */
.logo-gold-fill { fill: url(#trepicGold); }

/* ——— HERO —————————————————————————————————————————————— */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  color: var(--c-ink);
  overflow: hidden;
  background: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  will-change: transform;
}
.hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 120%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.2s ease-in-out;
}
.hero-bg img.on {
  opacity: 1;
  animation: kenburns 28s ease-in-out infinite alternate;
}
.hero::after {
  /* soft white wash so artwork stays readable behind dark text */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.78) 100%);
  pointer-events: none;
}
.hero-grid { display: none; }
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.hero-content h1 { margin-left: auto; margin-right: auto; }
.hero-content p.lede { margin-left: auto; margin-right: auto; }
.hero-content .hero-ctas { justify-content: center; }
.hero-content .eyebrow {
  margin-top: 80px;
  margin-bottom: 28px;
  color: var(--c-gold-1);
  font-weight: 700;
  display: inline-block;
  align-self: center;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(212,184,106,0.25);
}
.hero-content h1 { margin: 0 0 32px; color: var(--c-ink); max-width: 920px; font-size: clamp(44px, 6.4vw, 88px); line-height: 1.0; }
.hero-content h1 em { color: var(--c-gold-1); }
.hero-content p.lede { max-width: 480px; margin: 0 0 36px; color: var(--c-mute-ink); font-size: 15.5px; line-height: 1.65; }
.hero-scroll { color: var(--c-mute-ink) !important; }
.hero-scroll::after { background: linear-gradient(to bottom, rgba(10,10,10,0.4), transparent) !important; }
.hero-ctas .btn:not(.ghost) {
  background: var(--c-gold-1);
  border-color: var(--c-gold-1);
  color: #fff;
}
.hero-ctas .btn:not(.ghost):hover {
  background: transparent;
  color: var(--c-gold-1);
}
.hero-ctas .btn.ghost {
  background: #fff;
  border-color: rgba(10,10,10,0.18);
  color: var(--c-ink);
}
.hero-ctas .btn.ghost:hover {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollcue 2.4s ease-in-out infinite;
}

/* Hero variant B — editorial split */
.hero.edit {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  color: var(--c-ink);
  min-height: 820px;
}
.hero.edit::after { display: none; }
.hero.edit .hero-left {
  position: relative;
  padding: calc(var(--nav-h) + 60px) clamp(32px, 5vw, 80px) 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--c-line);
}
.hero.edit .issue {
  font-family: var(--ff-body);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-mute);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.hero.edit h1 { color: var(--c-ink); margin: 48px 0 32px; max-width: 680px; }
.hero.edit p.lede { color: var(--c-mute-ink); max-width: 440px; margin: 0 0 36px; font-size: 17px; line-height: 1.6; }
.hero.edit .hero-right {
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero.edit .hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 28s ease-in-out infinite alternate;
}
.hero.edit .frame {
  position: absolute;
  left: 48px; top: 48px; right: 48px; bottom: 48px;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
}
.hero.edit .caption {
  position: absolute; left: 64px; bottom: 64px; color: #fff;
  font-family: var(--ff-display); font-style: italic; font-size: 20px;
  line-height: 1.3;
  max-width: 320px;
}
@media (max-width: 900px) {
  .hero.edit { grid-template-columns: 1fr; min-height: auto; }
  .hero.edit .hero-right { height: 60vh; }
}

@keyframes kenburns {
  0%   { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.18) translate3d(-2%,-1%,0); }
}
@keyframes scrollcue {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ——— STATS BAR —————————————————————————————————————————— */
.stats {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: #fff;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid var(--c-line);
  text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.stat:last-child { border-right: 0; }
.stat .v {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat .l {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-mute);
}

.stats.floating {
  position: relative;
  z-index: 4;
  margin: -64px var(--gutter) 0;
  max-width: calc(var(--max) - var(--gutter) * 2);
  margin-left: auto; margin-right: auto;
  background: #fff;
  border: 1px solid var(--c-line);
}
@media (max-width: 760px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
}

/* ——— SECTION HEADERS ———————————————————————————————————— */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: clamp(48px, 7vw, 96px);
  align-items: end;
}
.section-head .lead p { max-width: 460px; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ——— MISSION ————————————————————————————————————————————— */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
@media (max-width: 820px) { .mission-grid { grid-template-columns: 1fr; } }

.mission-text .eyebrow { margin-bottom: 28px; }
.mission-text h2 { margin: 0 0 28px; max-width: 540px; }
.mission-text p { max-width: 480px; margin-bottom: 36px; }

.offset-frame {
  position: relative;
  aspect-ratio: 4 / 5;
}
.offset-frame img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 2;
}
.offset-frame::before {
  content: "";
  position: absolute;
  top: 16px; right: -16px; bottom: -16px; left: 16px;
  border: 1px solid var(--c-ink);
  z-index: 1;
}

/* ——— HOW IT WORKS ——————————————————————————————————————— */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-line-strong);
}
.hiw-step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--c-line);
  position: relative;
}
.hiw-step:last-child { border-right: 0; padding-right: 0; }
.hiw-step .num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--c-line);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hiw-step h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.hiw-step p { font-size: 14.5px; line-height: 1.6; margin: 0; color: var(--c-mute-ink); }
@media (max-width: 900px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-step { padding-right: 24px; }
  .hiw-step:nth-child(2) { border-right: 0; }
  .hiw-step:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); padding-bottom: 40px; }
}
@media (max-width: 560px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-step { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .hiw-step:last-child { border-bottom: 0; }
}

/* ——— DESTINATIONS ——————————————————————————————————————— */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-line);
}
.dest {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1612;
  cursor: pointer;
}
.dest img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.92);
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.dest:hover img { transform: scale(1.06); filter: saturate(0.92) contrast(1.05) brightness(0.96); }
/* Warm sepia tint to unify mismatched source photos */
.dest::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(178,139,67,0.10) 0%, rgba(41,36,32,0.04) 50%, rgba(41,36,32,0.0) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.dest::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.25) 45%, rgba(10,8,6,0) 70%);
  pointer-events: none;
  z-index: 1;
}
.dest-meta {
  position: absolute; left: 28px; bottom: 28px; right: 28px; z-index: 2;
  color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.dest-meta .name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.dest-meta .country {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 10px;
  color: var(--c-gold-1);
  font-weight: 600;
}
.dest-meta .count {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: var(--ff-mono);
}
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; }
}

/* ——— FINAL CTA ———————————————————————————————————————— */
.final {
  background: var(--c-warm);
  color: var(--c-ink);
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 200px) var(--gutter);
  text-align: center;
}
.final .grid-lines { display: none; }
.final h2 {
  color: var(--c-ink);
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative; z-index: 2;
  font-size: clamp(44px, 6vw, 88px);
}
.final h2 em { color: var(--c-gold-1); }
.final .eyebrow { color: var(--c-mute-ink); margin-bottom: 24px; position: relative; z-index: 2; }
.final .btn.on-dark {
  background: var(--c-gold-1);
  color: #fff;
  border-color: var(--c-gold-1);
}
.final .btn.on-dark:hover { background: transparent; color: var(--c-gold-1); }
.final .btn.ghost.on-dark {
  background: transparent;
  color: var(--c-gold-1);
  border-color: var(--c-gold-1);
}
.final .btn.ghost.on-dark:hover { background: var(--c-gold-1); color: #fff; border-color: var(--c-gold-1); }

/* ——— LIGHT CTA SECTION (overrides on-dark within light-themed sections) ——— */
.section-light-cta { background: var(--c-warm) !important; color: var(--c-ink) !important; }
.section-light-cta h2, .section-light-cta h2 * { color: var(--c-ink) !important; }
.section-light-cta h2 em { color: var(--c-gold-1) !important; font-style: italic; }
.section-light-cta .eyebrow,
.section-light-cta .eyebrow.on-dark { color: var(--c-mute-ink) !important; }
.section-light-cta .body,
.section-light-cta .body-lg,
.section-light-cta .body.on-dark,
.section-light-cta .body-lg.on-dark { color: var(--c-mute-ink) !important; }
.section-light-cta .btn.on-dark {
  background: var(--c-gold-1) !important;
  color: #fff !important;
  border-color: var(--c-gold-1) !important;
}
.section-light-cta .btn.on-dark:hover { background: transparent !important; color: var(--c-gold-1) !important; }
.section-light-cta .btn.ghost.on-dark {
  background: transparent !important;
  color: var(--c-gold-1) !important;
  border-color: var(--c-gold-1) !important;
}
.section-light-cta .btn.ghost.on-dark:hover { background: var(--c-gold-1) !important; color: #fff !important; border-color: var(--c-gold-1) !important; }
.section-light-cta .field.dark input,
.section-light-cta .field.dark select,
.section-light-cta .field.dark textarea {
  color: var(--c-ink) !important;
  border-bottom-color: var(--c-line) !important;
  background: transparent !important;
}
.section-light-cta .field.dark input::placeholder,
.section-light-cta .field.dark textarea::placeholder { color: var(--c-mute) !important; }
.section-light-cta .field.dark input:focus,
.section-light-cta .field.dark select:focus,
.section-light-cta .field.dark textarea:focus { border-bottom-color: var(--c-ink) !important; }
.section-light-cta .field.dark label { color: var(--c-mute-ink) !important; }
.final .cta-row { position: relative; z-index: 2; }
.final .gold-flourish {
  display: none;
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--c-gold-1), var(--c-gold-2), var(--c-gold-1));
  margin: 0 auto 36px;
  position: relative; z-index: 2;
}
body[data-gold="on"] .final .gold-flourish,
body[data-gold="on"] .gold-flourish { display: block; }

/* ——— FOOTER ————————————————————————————————————————————— */
.footer {
  background: #fff;
  padding: 80px var(--gutter) 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 500;
  color: var(--c-ink);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; }
.footer a { color: var(--c-mute-ink); font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--c-ink); }
.footer .brand-col p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--c-ink);
  margin: 24px 0 28px;
  max-width: 320px;
}
.footer .tiny {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.footer .domains { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer .domains a { color: var(--c-mute-ink); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: color .2s, border-color .2s; }
.footer .domains a:hover { color: var(--c-gold-1); border-bottom-color: var(--c-gold-1); }
.footer .domains span { color: var(--c-mute); }
.footer-bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mute);
}
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ——— PAGE HERO (dark, for sub-pages) ——————————————————— */
.page-hero {
  background: #0A0A0A;
  color: #fff;
  padding: calc(var(--nav-h) + clamp(80px, 12vw, 160px)) var(--gutter) clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  /* Subtle darken at the bottom only, keep top of image fully visible */
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.35) 100%);
  z-index: 1;
}
.page-hero.how::before      { background-image: url("assets/page-hero-how.jpg"); }
.page-hero.how::after       { background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.55) 100%); }
.page-hero.creators::before { background-image: url("assets/page-hero-creators.jpg"); }
.page-hero.brands::before   { background-image: url("assets/page-hero-brands.jpg"); }
.page-hero.about::before    { background-image: url("assets/page-hero-about.jpg"); }
.page-hero .page-hero-inner,
.page-hero > *:not(::before):not(::after) { position: relative; z-index: 2; }
.page-hero h1,
.page-hero .display,
.page-hero .eyebrow,
.page-hero .lede,
.page-hero p { text-shadow: 0 2px 18px rgba(0,0,0,0.45); }
.page-hero .grid-lines { display: none; }
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative; z-index: 2;
}
.page-hero h1 { color: #fff; margin: 28px 0 0; max-width: 640px; }
.page-hero .eyebrow { color: rgba(255,255,255,0.7); }
.page-hero p.lede { max-width: 440px; color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; margin: 0 0 28px; }
@media (max-width: 820px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ——— CARDS (creator tiers, brand diffs) ———————————————— */
.col-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
.col-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line); border-top: 1px solid var(--c-line-strong); border-bottom: 1px solid var(--c-line-strong); }
.col-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
.col-card {
  background: #fff;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  border-left: 1px solid transparent;
  transition: border-left-color .25s ease, background-color .25s ease;
}
.col-card:hover { background: var(--c-off); border-left-color: var(--c-ink); }
.col-card .tier-name {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.col-card .tier-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--c-gold-1);
}
.col-card .tier-icon svg { width: 40px; height: 40px; display: block; }
.col-card .tier-sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-mute-ink);
  opacity: 0.75;
  margin-top: -4px;
}
.col-card p { font-size: 14px; line-height: 1.6; color: var(--c-mute-ink); margin: 0; flex: 1; }
.col-card .tier-meta {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-ink);
  padding-top: 16px; border-top: 1px solid var(--c-line);
}
@media (max-width: 900px) {
  .col-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .col-grid-4 { grid-template-columns: 1fr; }
  .col-grid-2 { grid-template-columns: 1fr; }
  .col-grid-3 { grid-template-columns: 1fr; }
}

/* Metric blocks (How You Earn) */
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line-strong); }
.metric {
  background: #fff;
  padding: 48px 36px 40px;
  border-top: 2px solid var(--c-ink);
}
.metric .v {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric .l { margin-top: 16px; font-size: 13px; color: var(--c-mute-ink); line-height: 1.55; max-width: 260px; }
@media (max-width: 760px) { .metric-row { grid-template-columns: 1fr; } }

/* ——— FORMS ————————————————————————————————————————————— */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 4px; }
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.field label .opt { color: var(--c-mute); font-style: italic; text-transform: none; letter-spacing: 0.05em; margin-left: 6px; }
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-line-strong);
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
  color: var(--c-ink);
  border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-mute); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--c-ink); }
.field textarea { resize: vertical; min-height: 96px; }
.field.dark input, .field.dark select, .field.dark textarea {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
}
.field.dark input::placeholder, .field.dark textarea::placeholder { color: rgba(255,255,255,0.4); }
.field.dark input:focus, .field.dark select:focus, .field.dark textarea:focus { border-bottom-color: #fff; }
.field.dark label { color: rgba(255,255,255,0.9); }

.checkgroup { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 10px; }
@media (max-width: 640px) { .checkgroup { grid-template-columns: 1fr; } }
.checkopt {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--c-line-strong);
  cursor: pointer;
  transition: background .15s, color .15s;
  user-select: none;
}
.checkopt.on { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.checkopt input { display: none; }
.checkopt .dot { width: 8px; height: 8px; border: 1px solid currentColor; }
.checkopt.on .dot { background: currentColor; }

.toggle-row { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--c-line-strong); }
.toggle-btn {
  padding: 14px 22px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-right: 1px solid var(--c-line-strong);
  flex: 1;
  transition: background .2s, color .2s;
}
.toggle-btn:last-child { border-right: 0; }
.toggle-btn.on { background: var(--c-ink); color: #fff; }

/* ——— REVEALS ————————————————————————————————————————————— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
body[data-reveal="off"] .reveal { opacity: 1; transform: none; transition: none; }

/* ——— TRIA CHATBOT ————————————————————————————————————— */
.tria-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #0A0A0A;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 70;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform .2s ease;
}
.tria-btn:hover { transform: translateY(-2px); }
.tria-btn svg { width: 24px; height: 24px; }
.tria-btn .star-gold { fill: url(#trepicGoldSm); }

.tria-panel {
  position: fixed;
  right: 28px;
  bottom: 100px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 140px);
  background: #0A0A0A;
  color: #fff;
  z-index: 69;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.1);
  transform-origin: bottom right;
  animation: triaIn .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes triaIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.tria-head {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 14px;
}
.tria-avatar {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.tria-avatar svg { width: 18px; height: 18px; }
.tria-head .t-name { font-family: var(--ff-display); font-size: 18px; }
.tria-head .t-sub { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }
.tria-close { margin-left: auto; color: rgba(255,255,255,0.5); font-size: 18px; line-height: 1; padding: 4px; }
.tria-close:hover { color: #fff; }
.tria-body { flex: 1; overflow-y: auto; padding: 24px 22px; display: flex; flex-direction: column; gap: 16px; }
.tria-msg { max-width: 86%; font-size: 14px; line-height: 1.55; }
.tria-msg.bot { color: rgba(255,255,255,0.9); align-self: flex-start; }
.tria-msg.user {
  align-self: flex-end;
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  color: #fff;
}
.tria-msg.bot .who { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.tria-msg.bot .who svg { width: 10px; height: 10px; }
.tria-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tria-chip {
  font-size: 11px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  transition: background .2s, color .2s;
}
.tria-chip:hover { background: #fff; color: #0A0A0A; }
.tria-input {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
}
.tria-input input {
  flex: 1; background: transparent; border: none; outline: none; color: #fff; padding: 10px 0;
  font-size: 14px;
}
.tria-input input::placeholder { color: rgba(255,255,255,0.35); }
.tria-send {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.tria-send:hover { background: #fff; color: #0A0A0A; }
.tria-typing { display: inline-flex; gap: 4px; padding: 6px 0; }
.tria-typing i {
  width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%;
  animation: dot 1.3s ease-in-out infinite;
}
.tria-typing i:nth-child(2) { animation-delay: 0.15s; }
.tria-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ——— WAITLIST PAGE —————————————————————————————————————— */
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
@media (max-width: 900px) { .waitlist-grid { grid-template-columns: 1fr; } }

.benefit-list { list-style: none; padding: 0; margin: 40px 0 0; }
.benefit-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.benefit-list li:last-child { border-bottom: 0; }
.benefit-list .bn {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--c-mute);
}
.benefit-list .bt {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.benefit-list .bd { font-size: 14px; color: var(--c-mute-ink); }

.success-block {
  background: var(--c-ink);
  color: #fff;
  padding: 60px 48px;
  text-align: center;
}
.success-block .code {
  font-family: var(--ff-mono);
  font-size: 28px;
  letter-spacing: 0.22em;
  padding: 20px 28px;
  border: 1px dashed rgba(255,255,255,0.4);
  display: inline-block;
  margin: 28px 0;
}

/* ——— THE PRACTICE (journaling flow) ——————————————————— */
.practice-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-line-strong);
}
.pf-step {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
.pf-step:last-child { border-bottom: 0; }
.pf-num {
  grid-column: 1; grid-row: 1;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.pf-label {
  grid-column: 1; grid-row: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 14px;
}
.pf-h {
  grid-column: 3; grid-row: 1 / span 2;
  align-self: start;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
.pf-p {
  grid-column: 1; grid-row: 3;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--c-mute-ink);
  max-width: 100%;
  margin: 0;
}
.pf-chat,
.pf-prompts,
.pf-edit-grid,
.pf-delivery {
  grid-column: 2; grid-row: 1 / -1;
  align-self: center;
}
.pf-tags {
  grid-column: 3; grid-row: 3;
  align-self: start;
}
@media (max-width: 900px) {
  .pf-step {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
  .pf-num, .pf-label, .pf-h, .pf-p,
  .pf-chat, .pf-prompts, .pf-edit-grid, .pf-delivery, .pf-tags {
    grid-column: 1; grid-row: auto;
  }
}
.pf-p .serif-it { color: var(--c-ink); }

/* chat log inside step I */
.pf-chat {
  background: #0A0A0A;
  color: #fff;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pf-msg {
  font-size: 14px;
  line-height: 1.55;
  max-width: 92%;
}
.pf-msg.bot { color: rgba(255,255,255,0.92); align-self: flex-start; }
.pf-msg.user {
  align-self: flex-end;
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  color: #fff;
}
.pf-msg .who {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

/* prompts inside step II */
.pf-prompts { display: grid; gap: 0; border-top: 1px solid var(--c-line-strong); }
.pf-prompt {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: baseline;
}
.pf-kicker {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.pf-pr-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  color: var(--c-ink);
}
.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.pf-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--c-line-strong);
  color: var(--c-ink);
}

/* edit grid step III */
.pf-edit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.pf-edit-card {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}
.pf-e-badge {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.pf-e-h {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pf-e-sub { font-size: 13.5px; line-height: 1.6; color: var(--c-mute-ink); margin-top: auto; }

/* delivery step IV */
.pf-delivery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.pf-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.pf-card.film { background: #0A0A0A; color: #fff; }
.pf-film-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.pf-card.film { display: flex; flex-direction: column; }
.pf-film-frame img,
.pf-film-frame video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.pf-film-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 55%);
}
.pf-film-chrome {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 28px;
  z-index: 2; color: #fff;
  display: flex; flex-direction: column; gap: 14px;
}
.pf-film-bar {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.pf-film-play {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  padding-left: 2px;
}
.pf-film-time { font-family: var(--ff-mono); }
.pf-film-bar::after {
  content: "";
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.7) 22%, rgba(255,255,255,0.2) 22%);
}
.pf-film-caption {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.3;
  color: #fff;
  max-width: 360px;
}
.pf-card-meta {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pf-card.film .pf-card-meta { color: rgba(255,255,255,0.65); border-top: 1px solid rgba(255,255,255,0.1); }
.pf-card.post .pf-card-meta { color: var(--c-mute); border-top: 1px solid var(--c-line); }

.pf-post-head {
  padding: 28px 28px 16px;
  border-bottom: 1px solid var(--c-line);
}
.pf-post-head .pf-kicker { margin-bottom: 10px; display: block; }
.pf-post-head h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.pf-post-meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.pf-post-body {
  padding: 24px 28px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--c-mute-ink);
}
.pf-post-body p { margin: 0 0 16px; }
.pf-drop {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 0.9;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--c-ink);
}
.pf-post-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 20px 0;
}
.pf-post-gallery > div {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #eee 25%, #f5f3f0 50%, #eee 75%);
  background-size: 200% 200%;
}
.pf-post-gallery > div:nth-child(1) { background-image: url("https://images.unsplash.com/photo-1540541338287-41700207dee6?w=600&q=80&auto=format&fit=crop"); background-size: cover; background-position: center; }
.pf-post-gallery > div:nth-child(2) { background-image: url("https://images.unsplash.com/photo-1499678329028-101435549a4e?w=600&q=80&auto=format&fit=crop"); background-size: cover; background-position: center; }
.pf-post-gallery > div:nth-child(3) { background-image: url("https://images.unsplash.com/photo-1471922694854-ff1b63b20054?w=600&q=80&auto=format&fit=crop"); background-size: cover; background-position: center; }

@media (max-width: 980px) {
  .pf-step { grid-template-columns: 1fr; gap: 20px; }
  .pf-num { font-size: 36px; }
  .pf-prompt { grid-template-columns: 1fr; gap: 8px; }
  .pf-edit-grid { grid-template-columns: 1fr; }
  .pf-delivery { grid-template-columns: 1fr; }
}
.tria-inline {
  background: #0A0A0A;
  color: #fff;
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 460px;
  justify-content: flex-end;
}
.tria-inline .topline {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

/* ——— JOURNAL —————————————————————————————————————————— */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 36px; }
.journal-card { display: flex; flex-direction: column; gap: 18px; cursor: pointer; }
.journal-card .img { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.journal-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.journal-card:hover .img img { transform: scale(1.05); }
.journal-card .cat { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--c-mute); }
.journal-card h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 400; margin: 0; line-height: 1.2; }
.journal-card p { font-size: 14px; color: var(--c-mute-ink); margin: 0; }
.journal-card .meta { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-mute); }
@media (max-width: 900px) { .journal-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .journal-grid { grid-template-columns: 1fr; } }

.filter-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 64px;
}
.filter-btn {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mute);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.filter-btn.on { color: var(--c-ink); border-bottom-color: var(--c-ink); }
.filter-btn:hover { color: var(--c-ink); }

/* ——— ABOUT values ———————————————————————————————————— */
.values-box {
  border: 1px solid var(--c-ink);
  padding: 40px 36px;
  display: grid; gap: 32px;
}
.values-box .v {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.values-box .v:last-child { padding-bottom: 0; border-bottom: 0; }
.values-box .v h4 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.values-box .v p { font-size: 14px; margin: 0; color: var(--c-mute-ink); }

/* ——— BRAND LOGO ROW ——————————————————————————————————— */
.brand-row {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 40px 0;
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 8px 56px;
}
.brand-row .label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-mute);
  margin-right: 16px;
}
.brand-row .name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--c-ink);
}

/* ——— PROSE —————————————————————————————————————————————— */
.prose p { margin: 0 0 22px; font-size: 16px; line-height: 1.75; color: var(--c-mute-ink); max-width: 560px; }
.prose p.drop::first-letter {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 64px;
  line-height: 0.9;
  float: left;
  padding: 8px 12px 0 0;
}

/* ——— IMAGE BACKDROP HELPERS ——————————————————————————— */
.imgbox {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.imgbox img { width: 100%; height: 100%; object-fit: cover; }

/* utilities */
.spacer-sm { height: 40px; }
.spacer { height: 80px; }
.divider-line { height: 1px; background: var(--c-line); margin: 0 auto; }
.center { text-align: center; }
.mw-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.mw-640 { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ——— ABOUT · Mission statement card ———————————————————— */
.mission-statement {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 80px);
  border-top: 1px solid var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  text-align: center;
  position: relative;
}
.ms-kicker {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 40px;
}
.ms-quote {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin: 0 auto 40px;
  max-width: 760px;
  position: relative;
}
.ms-quote em {
  font-style: italic;
  font-family: var(--ff-display);
  color: var(--c-ink);
}
.ms-mark {
  display: block;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.6;
  color: var(--c-gold-1);
  margin-bottom: 16px;
}
.ms-rule {
  width: 48px;
  height: 1px;
  background: var(--c-ink);
  margin: 0 auto 32px;
}
.ms-sig {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}
.ms-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.ms-title {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.ms-loc {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-mute);
  text-align: right;
  line-height: 1.8;
}

/* ——— ABOUT · Pillar list ——————————————————————————————— */
.pillar-list {
  margin-top: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--c-line-strong);
}
.pillar-row {
  display: grid;
  grid-template-columns: 72px 240px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
  transition: background 0.3s ease;
}
.pillar-row:hover { background: var(--c-warm); }
.pillar-num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--c-mute);
  letter-spacing: 0.05em;
}
.pillar-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--c-ink);
}
.pillar-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-mute-ink);
  max-width: 560px;
}

/* ——— ABOUT · Competitive grid ——————————————————————————— */
.compete-grid {
  margin-top: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--c-line);
}
.cg-row {
  display: grid;
  grid-template-columns: 180px 1fr 1.1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.cg-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute-ink);
  font-weight: 600;
}
.cg-them {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-mute-ink);
  position: relative;
}
.cg-them::before {
  content: "Them";
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 10px;
}
.cg-us {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--c-ink);
  position: relative;
}
.cg-us::before {
  content: "Trepic";
  display: block;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold-1);
  margin-bottom: 10px;
}

/* ——— ABOUT · One-liner ——————————————————————————————— */
.oneliner {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  text-wrap: balance;
}
.oneliner em {
  font-style: italic;
  color: var(--c-gold-1);
}

@media (max-width: 860px) {
  .ms-sig { flex-direction: column; align-items: flex-start; }
  .ms-loc { text-align: left; }
  .pillar-row { grid-template-columns: 48px 1fr; }
  .pillar-row .pillar-desc { grid-column: 1 / -1; padding-left: 60px; }
  .cg-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ——— TRAVELERS PAGE ——————————————————————————————————————— */
.page-hero.travelers {
  min-height: 88vh;
  margin-bottom: 0;
  padding-bottom: clamp(96px, 14vw, 180px);
}
.page-hero.travelers::before {
  background-image: url("assets/web/hero-tpic353.jpg");
}
.page-hero.travelers::after {
  background: linear-gradient(180deg, rgba(10,8,6,0.32) 0%, rgba(10,8,6,0.55) 100%);
}

/* Full-bleed stat strip, flush to the hero above */
.page-hero.travelers + .travelers-strip {
  margin-top: 0;
}
.travelers-strip {
  opacity: 1;
  transition: opacity .3s ease;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg);
}
.travelers-strip.at-top { opacity: 0; pointer-events: none; }
.t-strip-item {
  padding: 40px clamp(24px, 4vw, 56px);
  border-right: 1px solid var(--c-line);
}
.t-strip-item:last-child { border-right: 0; }
.t-strip-v {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.012em;
  color: var(--c-gold-1);
  margin-bottom: 8px;
}
.t-strip-l {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-mute-ink);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .travelers-strip { grid-template-columns: 1fr; }
  .t-strip-item { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .t-strip-item:last-child { border-bottom: 0; }
}

.travelers-phases {
  display: grid;
  gap: clamp(72px, 9vw, 140px);
  margin-top: clamp(48px, 6vw, 80px);
}
.travelers-phase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.travelers-phase.right { grid-template-columns: 1.2fr 1fr; direction: rtl; }
.travelers-phase.right > * { direction: ltr; }
.travelers-phase-meta {
  display: flex; align-items: center; gap: 14px;
  color: var(--c-mute-ink);
  font-size: 11px !important;
  letter-spacing: 0.28em !important;
  margin-bottom: 22px;
  font-weight: 600;
}
.travelers-phase-meta span:first-child {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--c-gold-1);
  text-transform: none;
}
.travelers-phase-meta .dot { color: var(--c-line-strong); font-size: 12px; }
.travelers-phase-h {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
  color: var(--c-ink);
}
.travelers-phase-p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-mute-ink);
  margin: 0;
  max-width: 50ch;
}
.travelers-phase-art {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.travelers-phase-art img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.travelers-phase:hover .travelers-phase-art img { transform: scale(1.03); }
.travelers-phase-art figcaption {
  position: absolute; left: 16px; bottom: 14px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
}
@media (max-width: 760px) {
  .travelers-phase, .travelers-phase.right { grid-template-columns: 1fr; direction: ltr; }
  .travelers-phase-art { aspect-ratio: 4 / 3; }
}

/* —— Tria block —— */
.travelers-tria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.travelers-tria-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.travelers-tria-list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-mute-ink);
  border-top: 1px solid var(--c-line);
  padding-top: 12px;
}
.travelers-tria-list li:first-child { border-top: 0; padding-top: 0; }
.travelers-tria-list strong {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  color: var(--c-gold-1);
  margin-right: 8px;
  font-size: 17px;
}

.travelers-tria-chat { display: flex; align-items: center; justify-content: center; }
.t-chat-frame {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: clamp(20px, 3vw, 32px);
  display: grid; gap: 12px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 16px 60px rgba(41,36,32,0.06);
}
.t-chat-bubble {
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  border-radius: 18px;
  max-width: 92%;
}
.t-chat-tria { background: var(--c-cream); color: var(--c-ink); border-bottom-left-radius: 4px; align-self: flex-start; }
.t-chat-you { background: var(--c-gold-1); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; margin-left: auto; }
.t-chat-meta { font-size: 10px !important; letter-spacing: 0.22em !important; color: var(--c-mute); padding-top: 8px; border-top: 1px solid var(--c-line); margin-top: 6px; }
@media (max-width: 760px) {
  .travelers-tria { grid-template-columns: 1fr; }
}

/* —— Explore loop —— */
.travelers-loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(40px, 5vw, 64px);
  border: 1px solid var(--c-line);
}
.t-loop-step {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--c-line);
  display: grid;
  gap: 14px;
}
.t-loop-step:last-child { border-right: 0; }
.t-loop-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--c-gold-1);
  letter-spacing: -0.01em;
}
.t-loop-h {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--c-ink);
}
.t-loop-p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-mute-ink);
  margin: 0;
}
.travelers-loop-note {
  margin-top: 32px;
  padding: 22px 28px;
  background: var(--c-cream);
  border-left: 2px solid var(--c-gold-1);
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  color: var(--c-mute-ink);
  line-height: 1.7;
}
@media (max-width: 760px) {
  .travelers-loop { grid-template-columns: 1fr; }
  .t-loop-step { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .t-loop-step:last-child { border-bottom: 0; }
}

/* ——— Travelers · Anyone Can Be a Creator ——— */
.travelers-anyone {
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.travelers-anyone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 56px);
}
.t-anyone-card {
  background: var(--c-bg);
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--c-line);
  display: grid;
  gap: 16px;
  align-content: start;
  transition: border-color .25s ease, transform .25s ease;
}
.t-anyone-card:hover { border-color: var(--c-gold-1); transform: translateY(-2px); }
.t-anyone-num {
  color: var(--c-gold-1);
  font-size: 11px !important;
  letter-spacing: 0.28em !important;
}
.t-anyone-h {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
}
.t-anyone-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-mute-ink);
  margin: 0;
}
@media (max-width: 760px) {
  .travelers-anyone-grid { grid-template-columns: 1fr; }
}

/* ——— THANKS / SPLASH PAGE ——— */
/* .thanks-hero reuses the same .hero structure as the homepage; no overrides needed for the hero block itself. */

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  margin-top: 32px;
}
.thanks-step { background: #fff; padding: 40px 36px; }
.thanks-step-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 36px;
  color: var(--c-gold-1);
  margin-bottom: 16px;
  font-style: italic;
}
.thanks-step-h {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--c-ink);
}
.thanks-step-p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-mute-ink);
}

.thanks-quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.thanks-quote-img { aspect-ratio: 4/5; overflow: hidden; }
.thanks-quote-img img { width:100%; height:100%; object-fit:cover; filter: saturate(0.82) contrast(1.04) brightness(0.95); }
.thanks-quote-body .oneliner {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--c-ink);
  margin: 0;
}
.thanks-quote-body .oneliner em { color: var(--c-gold-1); font-style: italic; }

.thanks-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.thanks-tile { margin: 0; position: relative; overflow: hidden; background: #1a1612; }
.thanks-tile img { width:100%; height:100%; object-fit:cover; filter: saturate(0.78) contrast(1.04) brightness(0.92); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.thanks-tile:hover img { transform: scale(1.04); filter: saturate(0.92) contrast(1.05) brightness(0.96); }
.thanks-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(178,139,67,0.10) 0%, rgba(41,36,32,0.04) 50%, rgba(41,36,32,0) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.thanks-tile figcaption {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  color: #fff; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  z-index: 2;
}
.thanks-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}
.thanks-tile-0 { grid-column: span 3; grid-row: span 2; }
.thanks-tile-1 { grid-column: span 3; }
.thanks-tile-2 { grid-column: span 2; }
.thanks-tile-3 { grid-column: span 1; grid-row: span 2; }
.thanks-tile-4 { grid-column: span 2; }
.thanks-tile-5 { grid-column: span 2; }

.thanks-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.thanks-stat { padding: 36px 24px; border-right: 1px solid var(--c-line); text-align: center; }
.thanks-stat:last-child { border-right: 0; }
.thanks-stat-n {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.thanks-stat-l { margin-top: 6px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-mute-ink); }

@media (max-width: 900px) {
  .thanks-steps { grid-template-columns: 1fr; }
  .thanks-quote { grid-template-columns: 1fr; }
  .thanks-stats { grid-template-columns: 1fr 1fr; }
  .thanks-stat:nth-child(2) { border-right: 0; }
  .thanks-stat:nth-child(1), .thanks-stat:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .thanks-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .thanks-tile-0, .thanks-tile-3 { grid-column: span 2; grid-row: span 1; }
  .thanks-tile-1, .thanks-tile-2, .thanks-tile-4, .thanks-tile-5 { grid-column: span 1; grid-row: span 1; }
}

/* ——— MOBILE RESPONSIVE — collapse inline 2-col grids ——— */
@media (max-width: 760px) {
  .section [style*="grid-template-columns"],
  .container > [style*="grid-template-columns"],
  main [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .section { padding-left: var(--gutter); padding-right: var(--gutter); }
  .footer-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .nav { padding-left: 20px; padding-right: 20px; }
  .hero-content h1 { font-size: clamp(40px, 11vw, 72px) !important; }
  .h2 { font-size: clamp(28px, 8vw, 44px); }
  .display { font-size: clamp(36px, 10vw, 60px); }
  .final h2 { font-size: clamp(36px, 10vw, 60px); }
  .final { padding: 80px var(--gutter); }
  .section-light-cta .btn.lg, .hero-ctas .btn.lg { padding: 16px 24px; font-size: 11px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .tria-panel { right: 12px !important; left: 12px !important; bottom: 90px !important; width: auto !important; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(36px, 12vw, 56px) !important; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; min-width: 140px; }
  .nav .nav-cta { padding: 10px 16px; font-size: 10px; }
}
