@import url("colors_and_type.css");

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--cream);
}
html, body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  overflow-x: hidden;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img {
  display: block;
  max-width: 100%;
}
button, a {
  font: inherit;
}
button {
  cursor: pointer;
}

.sp-only { display: none; }
.pc-only { display: inline; }
@media (max-width: 767px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}
.container-narrow {
  width: min(100% - 48px, 960px);
  margin-inline: auto;
}
.section {
  padding: clamp(96px, 11vw, 168px) 0;
  border-top: 3px solid var(--accent);
}
.section-heading {
  max-width: 880px;
}
.section-heading.compact {
  max-width: 820px;
  margin-bottom: 56px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
.section-sub {
  max-width: 820px;
  margin: 26px 0 0;
  color: var(--muted-ink);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.9;
  word-break: keep-all;
  line-break: strict;
}
.btn,
.nav-cta,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover,
.nav-cta:hover,
.store-button:hover {
  transform: translateY(-1px);
}
.btn-primary {
  min-height: 58px;
  padding: 0 30px;
  background: var(--accent);
  color: #fff;
  border: 0;
  font-weight: 700;
}
.btn-secondary {
  min-height: 52px;
  padding: 0 24px;
  background: rgba(250, 247, 242, 0.82);
  color: var(--ink);
  border: 1.5px solid var(--accent);
  font-weight: 700;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-bottom-color 300ms ease;
}
.nav.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
/* Top: white logo + white text on hero photo */
.nav.is-top .nav-brand .mark,
.nav.is-top .nav-brand .word {
  filter: brightness(0) invert(1);
}
.nav.is-top .nav-links button,
.nav.is-top .mobile-menu button,
.nav.is-top .menu-toggle {
  color: #fff;
}
.nav.is-top .menu-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}
/* Menu open: solid cream background regardless of scroll state — overrides is-top */
.nav.is-menu-open {
  background: #FFF9F3;
  border-bottom-color: rgba(27, 27, 30, 0.08);
  backdrop-filter: none;
}
.nav.is-menu-open .nav-brand .mark,
.nav.is-menu-open .nav-brand .word {
  filter: none;
}
.nav.is-menu-open .nav-links button,
.nav.is-menu-open .mobile-menu button,
.nav.is-menu-open .menu-toggle {
  color: #1B1B1E;
}
.nav.is-menu-open .menu-toggle {
  border-color: rgba(27, 27, 30, 0.15);
  background: rgba(255, 255, 255, 0.7);
}
.nav.is-menu-open .mobile-menu .mobile-menu-cta {
  color: var(--accent);
}
.nav-brand .mark,
.nav-brand .word,
.nav-links button,
.mobile-menu button,
.menu-toggle {
  transition: color 300ms ease, filter 300ms ease, background 300ms ease, border-color 300ms ease;
}
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
}
.nav-brand .mark { width: 30px; height: 30px; }
.nav-brand .word { height: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links button,
.mobile-menu button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
}
.nav-links button:hover,
.mobile-menu button:hover {
  color: var(--accent-dark);
}
.nav-cta {
  min-height: 38px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.4);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(27, 27, 30, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--cream);
}
.hero-media {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease-in-out;
  will-change: opacity;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
}
.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 220ms ease, width 220ms ease, opacity 220ms ease;
}
.hero-dot.is-active {
  background: var(--accent);
  width: 24px;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero-dot.is-active:hover {
  background: var(--accent);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 31, 0.14) 0%, rgba(8, 20, 31, 0.08) 38%, rgba(8, 20, 31, 0.46) 100%),
    linear-gradient(90deg, rgba(8, 20, 31, 0.29) 0%, rgba(8, 20, 31, 0.08) 52%, rgba(8, 20, 31, 0.12) 100%);
}
.hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 10vh, 110px);
  transform: translateX(-50%);
  color: #fffaf2;
}
.hero-kicker {
  margin: 0 0 16px;
  color: rgba(255, 250, 242, 0.86);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(54px, 9vw, 112px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  word-break: keep-all;
  line-break: strict;
  white-space: pre-line;
  font-feature-settings: "palt";
}
.hero-lead {
  margin: 24px 0 34px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.8;
}
.hero-main-cta {
  width: min(420px, 80vw);
}
.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
  animation-fill-mode: forwards;
  will-change: opacity, transform;
}
.hero-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Concept */
.concept {
  min-height: 0;
  padding: clamp(60px, 7vw, 108px) 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: #FFF0E8;
}
.concept-icon {
  display: block;
  margin: 0 auto 14px;
  color: #F26B3A;
}
.concept-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}
.concept h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 5.6vw, 64px);
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  line-break: strict;
  font-feature-settings: "palt";
}
.concept p {
  max-width: 900px;
  margin: 32px auto 0;
  color: var(--muted-ink);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.95;
  word-break: keep-all;
  line-break: strict;
  font-feature-settings: "palt";
}

/* Creator trips */
.creator-trips {
  background: #FFFFFF;
}
.featured-trip {
  margin-top: 64px;
  display: block;
  background: #FFFFFF;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(242, 107, 58, 0.20), 0 4px 12px rgba(242, 107, 58, 0.12);
}
.featured-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
}
.photo-slide.is-active {
  opacity: 1;
}
.featured-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-sans);
}
.overlay-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  color: #E8460A;
  font-size: 13px;
  font-weight: 600;
}
.overlay-chip svg {
  color: #E8460A;
}
.featured-copy {
  padding: 22px;
  background: #FFFFFF;
  display: block;
}
.trip-area {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  background: #F26B3A;
  color: #FFFFFF;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}
.trip-episode {
  margin: 16px 0 22px;
  padding: 6px 0 6px 14px;
  border-left: 3px solid #F26B3A;
}
.trip-episode .episode-label {
  margin: 0 0 6px;
  color: #F26B3A;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.trip-episode .episode-body {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}
.featured-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.4;
}
.trip-description {
  margin: 0 0 20px;
  color: rgba(0, 0, 0, 0.54);
  font-size: 15px;
  line-height: 1.6;
}
.trip-meta {
  display: block;
  margin: 0 0 20px;
  padding: 0;
}
.trip-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 0.5px solid rgba(0, 0, 0, 0.12);
  border-bottom: 0;
}
.trip-meta div:first-child {
  border-top: 0;
}
.trip-meta dt {
  color: rgba(0, 0, 0, 0.54);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trip-meta dd {
  margin: 0;
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  font-weight: 500;
}
.featured-copy .btn-secondary {
  width: 100%;
  border-radius: 50px;
  padding: 16px;
  min-height: 0;
  background: #F26B3A;
  color: #FFFFFF;
  border: 0;
  font-weight: 600;
  font-size: 15px;
}
.featured-copy .btn-secondary:hover {
  background: #DA5C2D;
}
.creator-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 22px;
  margin-top: 28px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x mandatory;
}
.mini-trip {
  position: relative;
  display: block;
  background: #FFFFFF;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 12px 28px rgba(242, 107, 58, 0.20), 0 3px 8px rgba(242, 107, 58, 0.12);
}
.mini-photo {
  position: relative;
  height: 130px;
  overflow: hidden;
}
.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-trip .featured-overlay {
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 11px;
}
.mini-trip .overlay-chip {
  padding: 3px 8px;
  font-size: 11px;
  border-radius: 16px;
}
.mini-trip .overlay-chip svg {
  width: 11px;
  height: 11px;
}
.mini-copy {
  padding: 14px 14px 16px;
  background: #FFFFFF;
}
.mini-copy .trip-area {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 10px;
  background: #F26B3A;
  color: #FFFFFF;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}
.mini-copy .trip-episode {
  margin: 10px 0 12px;
  padding: 4px 0 4px 10px;
  border-left: 2px solid #F26B3A;
}
.mini-copy .trip-episode .episode-label {
  margin: 0 0 4px;
  color: #F26B3A;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.mini-copy .trip-episode .episode-body {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
}
.mini-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.35;
}
.mini-copy .trip-description {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.54);
}
.mini-copy .trip-meta {
  display: block;
  margin: 0 0 10px;
  padding: 0;
}
.mini-copy .trip-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 0.5px solid rgba(0, 0, 0, 0.12);
  border-bottom: 0;
}
.mini-copy .trip-meta div:first-child {
  border-top: 0;
}
.mini-copy .trip-meta dt {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.54);
}
.mini-copy .trip-meta dd {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
}
.mini-copy .btn-secondary {
  width: 100%;
  border-radius: 50px;
  padding: 10px;
  min-height: 0;
  background: #F26B3A;
  color: #FFFFFF;
  border: 0;
  font-weight: 600;
  font-size: 12px;
  gap: 4px;
}
.mini-copy .btn-secondary:hover {
  background: #DA5C2D;
}
.mini-copy .btn-secondary svg {
  width: 14px;
  height: 14px;
}

/* Moods */
.moods {
  background: #FAF0D4;
  overflow: hidden;
}
.moods-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}
.mood-note {
  margin: 24px 0 0;
  color: var(--label-blue);
  font-weight: 700;
}
.mood-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.mood-collage .mood-tile {
  aspect-ratio: 1 / 1;
  min-height: 0;
}
.mood-tile {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border-radius: 16px;
  border: 1px solid rgba(180, 180, 180, 0.12);
  background: #1B1B1E;
  cursor: pointer;
  transition: none;
}
.mood-tile.is-visible {
  transition: none;
}
.mood-tile:hover,
.mood-tile:active,
.mood-tile:focus {
  transform: none;
  filter: none;
}
.mood-tile .mood-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.mood-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 20, 31, 0.0) 50%, rgba(8, 20, 31, 0.65) 100%);
  pointer-events: none;
}
.mood-tile span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* How */
.how {
  background: #fffdf8;
}
.phone-stack {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 24px 28px;
  margin-inline: -24px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.phone-stack::-webkit-scrollbar { display: none; }
.step-phone {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 8px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 0 26px 52px rgba(27, 27, 30, 0.20);
}
.step-phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
}
.step-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
}
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(27, 27, 30, 0.18);
  transition: background 220ms ease, width 220ms ease;
}
.step-dot.is-active {
  background: var(--accent);
  width: 24px;
}
.step-phone-1 { transform: rotate(-4deg) translateY(22px); }
.step-phone-2 { transform: rotate(3deg) translateY(-16px); }
.step-phone-3 { transform: rotate(-2deg) translateY(18px); }
.step-phone-4 { transform: rotate(4deg) translateY(-8px); }
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 clamp(220px, 85vw, 260px);
  scroll-snap-align: start;
}
.step-item .step-phone {
  flex: 0 0 auto;
  width: 100%;
}
.step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.step-label .step-badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-label .step-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F26B3A;
  color: #FFFFFF;
}
.step-label .step-badge svg {
  width: 26px;
  height: 26px;
  stroke: #FFFFFF;
  color: #FFFFFF;
}
.step-label .step-number {
  position: absolute;
  top: -4px;
  left: -8px;
  z-index: 2;
  color: #F26B3A;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.step-label .step-title {
  color: #3D2E1F;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

/* Voices */
.voices {
  background: var(--cream);
  overflow-x: hidden;
}
.voices-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
}
.voice-side {
  display: grid;
  gap: 24px;
  min-width: 0;
}
.voice-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(27, 27, 30, 0.06), 0 4px 10px rgba(27, 27, 30, 0.03);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.voice-featured {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voice-card .quote-text {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.6;
}
.voice-card .quote-text::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: clamp(72px, 8vw, 120px);
  color: rgba(242, 107, 58, 0.5);
  line-height: 0.8;
  display: block;
  margin-bottom: -16px;
}
.voice-card .quote-text::after {
  content: '\201D';
  font-family: var(--font-serif);
  font-size: clamp(72px, 8vw, 120px);
  color: rgba(242, 107, 58, 0.5);
  line-height: 0.4;
  display: block;
  text-align: right;
  margin-top: 8px;
}
.voice-side .voice-card .quote-text {
  font-size: clamp(16px, 1.8vw, 22px);
}
.voice-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.voice-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #F26B3A;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow:
    0 0 0 2px #F26B3A,
    0 0 0 4px #FFE5D6;
  margin: 4px;
}
.voice-person {
  padding-left: 4px;
}
.voice-person-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}
.voice-person strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.voice-person .voice-handle {
  display: block;
  color: var(--muted-ink);
  font-size: 12px;
  line-height: 1.5;
}
.voice-person .voice-label-pill {
  display: inline-block;
  margin-top: 2px;
  padding: 3px 10px;
  background: #F26B3A;
  color: #FFFFFF;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf2;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 31, 0.55) 0%, rgba(8, 20, 31, 0.29) 60%, rgba(8, 20, 31, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 20, 31, 0.21) 0%, rgba(8, 20, 31, 0.43) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}
.cta-content .eyebrow {
  color: rgba(255, 250, 242, 0.84);
}
.cta-content h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 1.22;
  word-break: keep-all;
  line-break: strict;
  font-feature-settings: "palt";
}
.cta-content p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 36px;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.9;
  word-break: keep-all;
  line-break: strict;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-button {
  min-height: 50px;
  padding: 0 22px;
  background: rgba(250, 247, 242, 0.93);
  color: var(--ink);
  border-color: rgba(250, 247, 242, 0.88);
  font-weight: 800;
}
.primary-store {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.store-row {
  display: flex;
  gap: 12px;
}
.store-icon-btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  min-height: 56px;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  border-radius: 12px;
  font-weight: 700;
  text-align: left;
}
.store-icon-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 15px;
}
.store-icon-btn small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.78;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.qr-shell {
  width: fit-content;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(250, 247, 242, 0.34);
  background: rgba(8, 20, 31, 0.22);
  backdrop-filter: blur(10px);
}
.qr-frame {
  width: 74px;
  height: 74px;
  border: 2px solid rgba(250, 247, 242, 0.9);
  background: rgba(250, 247, 242, 0.08);
}
.qr-shell span {
  max-width: 180px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 12px;
  line-height: 1.55;
}

/* Footer */
.footer {
  padding: 62px 0 30px;
  background: var(--ink);
  color: rgba(255, 250, 242, 0.74);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) 1fr 1fr;
  gap: 48px;
}
.footer-brand img {
  height: 20px;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
}
.footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
}
.footer-note {
  max-width: 460px;
  margin-top: 18px !important;
  color: rgba(255, 250, 242, 0.58);
}
.footer-col h3 {
  margin: 0 0 14px;
  color: rgba(255, 250, 242, 0.54);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255, 250, 242, 0.76);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.7;
  padding: 4px 0;
}
.footer-col a:hover {
  color: #fffaf2;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  color: rgba(255, 250, 242, 0.5);
  font-size: 12px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Section heading: slide in from left */
.section-heading.reveal {
  transform: translateX(-30px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.section-heading.reveal.is-visible {
  transform: translateX(0);
}
/* Cards / tiles stagger: 0.1s between siblings */
.creator-strip .mini-trip.reveal:nth-child(1)     { transition-delay: 0s; }
.creator-strip .mini-trip.reveal:nth-child(2)     { transition-delay: 0.1s; }
.creator-strip .mini-trip.reveal:nth-child(3)     { transition-delay: 0.2s; }
.mood-collage .mood-tile.reveal:nth-child(1)      { transition-delay: 0s; }
.mood-collage .mood-tile.reveal:nth-child(2)      { transition-delay: 0.05s; }
.mood-collage .mood-tile.reveal:nth-child(3)      { transition-delay: 0.10s; }
.mood-collage .mood-tile.reveal:nth-child(4)      { transition-delay: 0.15s; }
.mood-collage .mood-tile.reveal:nth-child(5)      { transition-delay: 0.20s; }
.mood-collage .mood-tile.reveal:nth-child(6)      { transition-delay: 0.25s; }
.mood-collage .mood-tile.reveal:nth-child(7)      { transition-delay: 0.30s; }
.mood-collage .mood-tile.reveal:nth-child(8)      { transition-delay: 0.35s; }
.mood-collage .mood-tile.reveal:nth-child(9)      { transition-delay: 0.40s; }
.mood-collage .mood-tile.reveal:nth-child(10)     { transition-delay: 0.45s; }
.mood-collage .mood-tile.reveal:nth-child(11)     { transition-delay: 0.50s; }
.mood-collage .mood-tile.reveal:nth-child(12)     { transition-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 220ms ease, border-color 220ms ease;
  }
  .mobile-menu.is-open {
    max-height: 420px;
    border-top-color: rgba(27, 27, 30, 0.08);
  }
  .mobile-menu button {
    display: block;
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
    padding: 15px 0;
    text-align: left;
    border-bottom: 1px solid rgba(27, 27, 30, 0.08);
  }
  .mobile-menu .mobile-menu-cta {
    margin-top: 10px;
    margin-bottom: 16px;
    padding: 14px 18px;
    text-align: center;
    border: 1.5px solid var(--accent);
    border-radius: 999px;
    background: #fff;
    color: var(--accent);
  }
  .moods-grid,
  .voices-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .container,
  .container-narrow {
    width: min(100% - 32px, 1180px);
  }
  .section {
    padding: 84px 0;
  }
  .nav-inner {
    height: 60px;
  }
  .hero,
  .hero-media {
    min-height: 100svh;
  }
  .hero-media img {
    height: 100svh;
    min-height: 580px;
  }
  .hero-copy {
    bottom: 42px;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.22;
    word-break: keep-all;
    line-break: strict;
  }
  .concept p {
    font-size: 14px;
    line-height: 1.85;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .hero-lead {
    margin-bottom: 26px;
  }
  .hero-main-cta {
    width: 100%;
  }
  .concept {
    min-height: 0;
    padding: 56px 0;
  }
  .featured-trip {
    margin-top: 42px;
  }
  .section-title {
    font-size: clamp(24px, 6.4vw, 30px);
    line-height: 1.3;
    word-break: keep-all;
    line-break: strict;
    letter-spacing: -0.01em;
  }
  .creator-strip {
    grid-auto-columns: minmax(240px, 84%);
  }
  .mood-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
  }
  .mood-collage .mood-tile {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
  .mood-tile span {
    width: calc(100% - 12px);
    font-size: 13px;
    line-height: 1.3;
  }
  .step-phone-1,
  .step-phone-2,
  .step-phone-3,
  .step-phone-4 {
    transform: none;
  }
  .voice-featured {
    min-height: 0;
  }
  .voice-card {
    padding: 16px;
    max-width: 100%;
  }
  .voice-card .quote-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .voice-person strong,
  .voice-person span {
    word-break: break-word;
  }
  .voice-side .voice-card .quote-text {
    font-size: 14px;
  }
  .voice-card .quote-text::before,
  .voice-card .quote-text::after {
    font-size: 56px;
  }
  .voice-person {
    margin-top: 12px;
  }
  .final-cta {
    min-height: 650px;
  }
  .cta-content {
    margin-left: auto;
  }
  .cta-actions {
    display: flex;
    flex-direction: column;
    max-width: 460px;
  }
  .qr-shell {
    display: none;
  }
}

@media (max-width: 390px) {
  .container,
  .container-narrow {
    width: min(100% - 28px, 1180px);
  }
  .nav-brand .word {
    height: 16px;
  }
  .section-title {
    font-size: 24px;
    line-height: 1.3;
    word-break: keep-all;
    line-break: strict;
    letter-spacing: -0.01em;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.25;
  }
  .hero-lead {
    font-size: 16px;
  }
  .btn-primary {
    padding-inline: 20px;
  }
  .featured-overlay {
    left: 16px;
    right: 16px;
    font-size: 12px;
  }
  .mood-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .mood-tile span {
    font-size: 12px;
  }
}

/* Featured trip — desktop tweaks (single-column card, max width to prevent over-stretching) */
@media (min-width: 769px) {
  .featured-trip {
    max-width: 560px;
    margin-inline: auto;
  }
}

/* PC layout (1024+) — wider hero, larger nav, bigger creator routes & moods */
@media (min-width: 1024px) {
  /* Header navigation */
  .nav-inner {
    height: 76px;
  }
  .nav-brand .mark {
    width: 36px;
    height: 36px;
  }
  .nav-brand .word {
    height: 22px;
  }
  .nav-links button {
    font-size: 16px;
    padding: 12px 16px;
  }
  .nav-cta {
    min-height: 42px;
    padding: 0 22px;
    font-size: 14px;
  }

  .section-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  /* Creator routes section title: keep on 1 line by hiding the JSX <br> and trimming font */
  #creator-title {
    font-size: 2.25rem;
  }
  #creator-title br {
    display: none;
  }
  .featured-trip {
    max-width: 880px;
  }
  .featured-photo {
    height: 560px;
  }
  .featured-copy {
    padding: 28px 36px 32px;
  }
  .featured-copy h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0 0 10px;
  }
  .trip-area {
    font-size: 14px;
    margin: 0 0 10px;
  }
  .trip-description {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 24px;
  }
  .trip-meta {
    margin: 0 0 24px;
  }
  .trip-meta div {
    padding: 14px 0;
  }
  .trip-meta dt {
    font-size: 12px;
  }
  .trip-meta dd {
    font-size: 18px;
  }
  .featured-copy .btn-secondary {
    font-size: 16px;
    padding: 18px;
  }

  /* Sub cards — 3 equal columns, aligned with main card width */
  .creator-strip {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: unset;
    gap: 28px;
    overflow-x: visible;
    margin: 56px auto 0;
    max-width: 880px;
    scroll-snap-type: none;
    padding: 8px 0 18px;
  }
  .mini-trip {
    border-radius: 18px;
  }
  .mini-photo {
    height: 220px;
  }
  .mini-trip .featured-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .mini-trip .overlay-chip {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 18px;
  }
  .mini-trip .overlay-chip svg {
    width: 13px;
    height: 13px;
  }
  .mini-copy {
    padding: 18px 20px 20px;
  }
  .mini-copy .trip-area {
    font-size: 12px;
    margin: 0 0 8px;
  }
  .mini-copy h3 {
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 8px;
  }
  .mini-copy .trip-description {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 14px;
  }
  .mini-copy .trip-meta {
    margin: 0 0 16px;
  }
  .mini-copy .trip-meta div {
    padding: 9px 0;
  }
  .mini-copy .trip-meta dt {
    font-size: 10px;
  }
  .mini-copy .trip-meta dd {
    font-size: 14px;
  }
  .mini-copy .btn-secondary {
    padding: 12px;
    font-size: 13px;
  }
  .mini-copy .btn-secondary svg {
    width: 16px;
    height: 16px;
  }

  /* Moods section — balanced PC layout */
  .moods .moods-grid {
    width: min(100% - 48px, 1180px);
    grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.2fr);
    gap: clamp(40px, 3.5vw, 64px);
  }
  .moods .moods-grid .section-heading {
    max-width: 360px;
  }
  .mood-collage {
    gap: 14px;
  }
  .mood-tile {
    border-radius: 18px;
  }
  .mood-tile span {
    font-size: 17px;
    font-weight: 600;
    width: calc(100% - 20px);
  }
}
