/* Agent Hunter — warm journey (reception → board → together)
   Palette: cream, sage, terracotta, soft teal (brand_identityV1.md) */

:root {
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --cream: #faf6ef;
  --cream-deep: #f0e8d9;
  --paper: #fffdf8;
  --ink: #2c2825;
  --ink-muted: #6b6259;
  --terracotta: #c75b45;
  --terracotta-soft: #e07862;
  --sage: #5c7d6a;
  --sage-light: #8fb39e;
  --teal: #2a6d6e;
  --teal-soft: #3d9596;
  --honey: #e8b86d;
  --wood: #6b5344;
  --shadow-soft: 0 12px 40px rgba(44, 40, 37, 0.08);
  --shadow-lift: 0 20px 50px rgba(44, 40, 37, 0.12);
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --rail-width: 52px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  border-radius: 8px;
}

.skip-link:focus {
  left: 0.5rem;
}

/* —— Journey shell + optional snap —— */
.journey-path {
  scroll-snap-type: y proximity;
}

.scene {
  scroll-snap-align: start;
  min-height: min(100vh, 920px);
  padding: 3.5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}


.scene.is-visible .scene-reveal {
  opacity: 1;
  transform: translateY(0);
}

.scene-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .scene-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Scroll rail —— */
.journey-rail {
  position: fixed;
  left: max(0.5rem, calc(50vw - 560px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 0.35rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 83, 68, 0.12);
}

@media (min-width: 1100px) {
  .journey-rail {
    display: flex;
  }
}

.journey-rail__track {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: linear-gradient(180deg, var(--honey), var(--sage-light));
  border-radius: 3px;
  opacity: 0.45;
}

.journey-rail button {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid var(--cream-deep);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.journey-rail button.is-active {
  background: var(--terracotta);
  border-color: var(--terracotta-soft);
  box-shadow: 0 0 0 4px rgba(199, 91, 69, 0.2);
}

.journey-rail span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* —— CTA strip (warm) —— */
.cta-strip {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(180deg, #fffdf8 0%, #faf6ef 100%);
  border-bottom: 1px solid rgba(107, 83, 68, 0.12);
  box-shadow: 0 4px 24px rgba(44, 40, 37, 0.06);
}

.cta-strip__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 0.25rem;
}

.cta-strip a,
.cta-strip button {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.cta-strip a:active,
.cta-strip button:active {
  transform: scale(0.98);
}

.cta-strip__primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-soft) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(199, 91, 69, 0.28);
}

.cta-strip__primary:hover {
  box-shadow: 0 6px 22px rgba(199, 91, 69, 0.35);
}

.cta-strip__ghost {
  background: var(--paper);
  color: var(--teal);
  border: 1px solid rgba(42, 109, 110, 0.25);
}

.cta-strip__ghost:hover {
  background: rgba(42, 109, 110, 0.08);
}

.cta-strip__outline {
  background: transparent;
  color: var(--wood);
  border: 1px solid rgba(107, 83, 68, 0.28);
}

.cta-strip__outline:hover {
  background: rgba(232, 184, 109, 0.2);
  border-color: var(--honey);
}

/* —— Nav —— */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.site-nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.site-nav__brand span {
  color: var(--terracotta);
}

.site-nav__links {
  display: none;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 900px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 180ms var(--ease);
}

.site-nav__links a:hover {
  color: var(--terracotta);
}

.lang-toggle {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(107, 83, 68, 0.15);
  background: var(--paper);
}

.lang-toggle button {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.lang-toggle button[aria-pressed="true"] {
  background: rgba(232, 184, 109, 0.35);
  color: var(--ink);
}

/* —— Hero / reception —— */
.hero-wrap {
  position: relative;
  min-height: 0;
  padding-bottom: 0;
  background: linear-gradient(165deg, #fffdf8 0%, var(--cream) 42%, #e8efe8 100%);
  overflow: hidden;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 85% 20%, rgba(232, 184, 109, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(143, 179, 158, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-light), var(--honey));
  border-radius: 3px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 18ch;
}

.hero h1 .accent {
  color: var(--terracotta);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 36rem;
  margin: 0 0 1.25rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  border: 1px solid rgba(107, 83, 68, 0.1);
}

.hero-trust span::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
}

.journey-rail button:hover {
  transform: scale(1.15);
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage);
  margin: 0.5rem 0 0;
}

.scroll-hint::after {
  content: "↓";
  animation: bounce 2s var(--ease) infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint::after {
    animation: none;
  }
}

/* Scene frame + photo */
.scene-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: min(52vh, 440px);
  margin: 0 auto;
  box-shadow: var(--shadow-lift);
  border: 3px solid #fff;
}

.scene-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms var(--ease);
  z-index: 2;
}

.scene-frame.has-image .scene-photo {
  opacity: 1;
}

.scene-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 500ms var(--ease);
}

.scene-frame.has-image .scene-fallback {
  opacity: 0;
}

/* Illustration: reception */
.art-reception {
  background: linear-gradient(145deg, #e8dfd4 0%, #d4e4dc 50%, #f2ebe3 100%);
}

.art-reception::before {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 8%;
  right: 8%;
  height: 28%;
  background: linear-gradient(180deg, #c4a882, #a08060);
  border-radius: 8px 8px 4px 4px;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.06);
}

.art-reception::after {
  content: "";
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 35%;
  background: linear-gradient(180deg, #fff 0%, #f5f0ea 100%);
  border-radius: 12px 12px 4px 4px;
  box-shadow: 0 8px 24px rgba(44, 40, 37, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Illustration: job board */
.art-board {
  background: linear-gradient(160deg, #c9b89a 0%, #a8987c 40%, #8b7b62 100%);
}

.art-board::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: #7d6e58;
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.art-board .pin-note {
  position: absolute;
  width: 28%;
  height: 32%;
  background: #fffef9;
  border-radius: 4px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
}

.art-board .pin-note:nth-child(1) {
  top: 18%;
  left: 12%;
  transform: rotate(-4deg);
}

.art-board .pin-note:nth-child(2) {
  top: 22%;
  left: 38%;
  transform: rotate(2deg);
  background: #fff8e8;
}

.art-board .pin-note:nth-child(3) {
  top: 48%;
  right: 14%;
  width: 34%;
  height: 38%;
  transform: rotate(-2deg);
}

.art-board .pin-note:nth-child(4) {
  bottom: 14%;
  left: 18%;
  transform: rotate(3deg);
  background: #f0f7f4;
}

/* Illustration: together */
.art-together {
  background: linear-gradient(165deg, #e5ebe7 0%, #dde8e3 50%, #f4f0ea 100%);
}

.art-together::before {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 10%;
  right: 10%;
  height: 22%;
  background: linear-gradient(180deg, #b8956f, #8f704f);
  border-radius: 100px 100px 8px 8px;
}

.art-together .buddy {
  position: absolute;
  bottom: 32%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(180deg, #fff 0%, #e8e0d8 100%);
  box-shadow: 0 6px 16px rgba(44, 40, 37, 0.12);
}

.art-together .buddy:nth-child(1) {
  left: 14%;
}

.art-together .buddy:nth-child(2) {
  left: 38%;
  background: linear-gradient(180deg, #f8f4ff 0%, #e5dff0 100%);
}

.art-together .buddy:nth-child(3) {
  right: 28%;
  background: linear-gradient(180deg, #fff9f0 0%, #f0e4d4 100%);
}

.art-together .buddy--you {
  right: 10%;
  width: 22%;
  background: linear-gradient(180deg, var(--terracotta-soft) 0%, var(--terracotta) 100%);
  border: 3px solid #fff;
}

/* Scene layouts */
.scene-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.scene-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .scene-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.scene--reception {
  min-height: min(100vh, 900px);
  padding-top: 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.scene--board {
  background: linear-gradient(180deg, #f5f0e8 0%, var(--cream-deep) 100%);
}

.scene--together {
  background: linear-gradient(180deg, #eef4f0 0%, var(--cream) 100%);
}

.scene-label {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.scene h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink);
  max-width: 22ch;
}

.scene-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

/* Job board */
.board-search {
  margin-bottom: 1.25rem;
}

.board-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.board-search input {
  width: 100%;
  max-width: 320px;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 12px;
  border: 1px solid rgba(107, 83, 68, 0.18);
  font: inherit;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%236b6259' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 0.85rem center;
  background-color: var(--paper);
}

.board-search input:focus {
  outline: 2px solid var(--teal-soft);
  outline-offset: 2px;
}

.job-board-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.job-card {
  display: block;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(107, 83, 68, 0.12);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
  position: relative;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 3px rgba(232, 184, 109, 0.35);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(199, 91, 69, 0.25);
}

.job-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.job-card .role {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  margin: 0 0 0.5rem;
}

.job-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.job-card.is-hidden {
  display: none;
}

/* Together row */
.deskmate-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1.5rem;
}

.deskmate-card {
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(107, 83, 68, 0.1);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.deskmate-card .dm-av {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-soft));
}

.deskmate-card:nth-child(2) .dm-av {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-soft));
}

.deskmate-card:nth-child(3) .dm-av {
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
}

.deskmate-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.deskmate-card .tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0;
}

section {
  padding: 3.5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.value-band {
  background: var(--paper);
  border-top: 1px solid rgba(107, 83, 68, 0.08);
  border-bottom: 1px solid rgba(107, 83, 68, 0.08);
}

.value-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 1rem;
  max-width: 24ch;
}

.value-band p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 42rem;
}

.quote-zh {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 500;
}

#agents {
  background: #fff;
}

#agents h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
}

#agents .section-intro {
  color: var(--ink-muted);
  max-width: 40rem;
  margin: 0 0 2.5rem;
}

.agent-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.agent-card {
  scroll-margin-top: 120px;
  border-radius: 20px;
  padding: 1.75rem;
  background: var(--cream);
  border: 1px solid rgba(107, 83, 68, 0.1);
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease), border-color 200ms var(--ease);
}

.agent-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(199, 91, 69, 0.2);
}

.agent-card header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.agent-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-soft) 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  flex-shrink: 0;
}

.agent-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.agent-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0;
}

.agent-meta {
  display: grid;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.agent-meta dt {
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin: 0 0 0.2rem;
}

.agent-meta dd {
  margin: 0;
  color: var(--ink);
}

.agent-meta .character {
  font-style: italic;
  color: var(--ink-muted);
}

/* Launch + newsletter warm */
.section--launch {
  background: linear-gradient(165deg, #2c2825 0%, #3d3835 100%);
  color: #fff9f3;
}

.section--launch .section-label {
  color: var(--honey);
}

.section--launch h2 {
  color: #fff9f3;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
}

.section--launch p {
  color: rgba(255, 249, 243, 0.78);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.section--launch label {
  color: rgba(255, 249, 243, 0.9);
}

.section--launch input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section--launch input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.section--launch select,
.section--launch textarea {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--ink, #1a1412);
}

.launch-signup-form {
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.launch-signup-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.launch-signup-form .form-compact-hint {
  color: rgba(255, 249, 243, 0.65);
}

.journey-enquiry-band {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.journey-enquiry-band__layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 800px) {
  .journey-enquiry-band__layout {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }
}

.journey-enquiry-band__quote {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 249, 243, 0.92);
  line-height: 1.45;
}

.journey-enquiry-band__quote q {
  quotes: "\201c" "\201d";
}

.journey-enquiry-band__hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 249, 243, 0.68);
}

.journey-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.journey-enquiry-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.journey-enquiry-form__row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .journey-enquiry-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.journey-enquiry-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: rgba(255, 249, 243, 0.9);
}

.journey-enquiry-field input,
.journey-enquiry-field select,
.journey-enquiry-field textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font: inherit;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink, #1a1412);
}

.journey-enquiry-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.journey-enquiry-form__privacy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 249, 243, 0.72);
}

.journey-enquiry-form__privacy a {
  color: var(--honey, #e8c89a);
}

.journey-enquiry-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.journey-enquiry-form__footer .form-status {
  flex: 1 1 12rem;
  margin: 0;
  min-height: 1.25rem;
  color: #fff9f3;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 40, 37, 0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--paper);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lift);
  transform: translateY(12px);
  transition: transform 300ms var(--ease);
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.modal p {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.modal label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.modal input,
.modal select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(107, 83, 68, 0.18);
  font: inherit;
  margin-bottom: 1rem;
  background: #fff;
}

.modal select {
  cursor: pointer;
  appearance: auto;
}

.modal input:focus,
.modal select:focus {
  outline: 2px solid var(--teal-soft);
  outline-offset: 2px;
}

.modal textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(107, 83, 68, 0.18);
  font: inherit;
  margin-bottom: 1rem;
  resize: vertical;
  min-height: 5rem;
}

.modal textarea:focus-visible {
  outline: 2px solid var(--teal-soft);
  outline-offset: 2px;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 100ms ease, opacity 180ms var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-soft));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(107, 83, 68, 0.22);
  color: var(--ink);
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  min-height: 1.25rem;
}

.form-status[role="status"] {
  color: var(--teal-soft);
  font-weight: 600;
}

.form-status.error {
  color: #c23b2f;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(107, 83, 68, 0.08);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink-muted);
}

.site-footer {
  background: #2a2624;
  color: rgba(255, 249, 243, 0.78);
  padding: 3rem 1.5rem;
  font-size: 0.9375rem;
}

.site-footer .section-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer .section-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer strong {
  color: #fff9f3;
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--honey);
}

.apac-note {
  font-size: 0.875rem;
  line-height: 1.5;
  border-left: 3px solid var(--teal-soft);
  padding-left: 1rem;
  margin: 0;
  color: rgba(255, 249, 243, 0.72);
}
