/* Pass Explore — mist + stone + teal · Fraunces + Manrope */

:root {
  --stone: #243036;
  --stone-soft: #3a4a52;
  --mist: #e9eef0;
  --paper: #fbfcfc;
  --teal: #22a094;
  --teal-deep: #1a7f76;
  --amber: #e8a54b;
  --mute: #5e6d75;
  --line: rgba(36, 48, 54, 0.12);
  --max: 1140px;
  --header-h: 70px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stone);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(34, 160, 148, 0.1), transparent 50%),
    linear-gradient(180deg, var(--paper), var(--mist));
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--stone); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
  color: var(--stone);
}
p { margin: 0 0 1em; }
.wrap { width: min(100% - 2.25rem, var(--max)); margin-inline: auto; }
.wrap-s { width: min(100% - 2.25rem, 720px); margin-inline: auto; }

/* Header — light */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(251, 252, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--stone);
}
.brand img { width: 36px; height: 36px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand-name b { color: var(--teal); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mute);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--stone); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0.65rem; right: 0.65rem; bottom: 0.1rem;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--stone) !important;
  color: var(--paper) !important;
  margin-left: 0.35rem;
  padding: 0.5rem 0.95rem !important;
  border-radius: 999px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal) !important; color: #fff !important; }
.nav-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line); background: var(--paper);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--stone); }

/* Hero */
.hero {
  position: relative;
  min-height: min(90vh, 840px);
  display: grid; align-items: end;
  overflow: hidden; color: #fff; background: var(--stone);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.7;
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.04); }
  to { transform: scale(1.1) translateY(-1.5%); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(36,48,54,0.2), rgba(36,48,54,0.82)),
    linear-gradient(90deg, rgba(36,48,54,0.55), transparent 60%);
}
.hero-body {
  position: relative; z-index: 1;
  padding: 3.5rem 0 4.5rem;
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--amber); margin-bottom: 0.9rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: -0.035em; line-height: 0.92;
  margin: 0 0 0.4em;
  animation: up 0.85s var(--ease) both;
}
.hero-brand span { color: var(--teal); }
.hero h1 {
  color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 500; max-width: 18ch; margin-bottom: 0.65em;
  animation: up 0.85s 0.08s var(--ease) both;
}
.hero-lead {
  max-width: 38ch; color: rgba(255,255,255,0.86); font-size: 1.1rem;
  margin-bottom: 1.6rem; animation: up 0.85s 0.14s var(--ease) both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  animation: up 0.85s 0.2s var(--ease) both;
}
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.banner {
  position: relative; min-height: 44vh;
  display: grid; align-items: end; overflow: hidden;
  color: #fff; background: var(--stone);
}
.banner-bg, .banner-veil { position: absolute; inset: 0; }
.banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.banner-veil { background: linear-gradient(180deg, rgba(36,48,54,0.15), rgba(36,48,54,0.88)); }
.banner-body {
  position: relative; z-index: 1; padding: 3rem 0 2.5rem;
  width: min(100% - 2.25rem, var(--max)); margin-inline: auto;
}
.banner h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); max-width: 14ch; }
.banner p { color: rgba(255,255,255,0.82); max-width: 42ch; }
.kicker {
  font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; color: var(--teal-deep); margin-bottom: 0.65rem;
}
.banner .kicker { color: var(--amber); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 1.3rem; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-stone { background: var(--stone); color: var(--paper); }
.btn-stone:hover { background: var(--stone-soft); color: #fff; }
.btn-line { border-color: var(--stone); color: var(--stone); background: transparent; }
.btn-line:hover { background: var(--stone); color: #fff; }

.block { padding: 4.5rem 0; }
.block-tight { padding: 3rem 0; }
.block-mist { background: rgba(233, 238, 240, 0.7); }
.block-stone { background: var(--stone); color: rgba(251,252,252,0.88); }
.block-stone h2, .block-stone h3 { color: #fff; }
.block-paper { background: #fff; }

.block-head { max-width: 38rem; margin-bottom: 2.25rem; }
.block-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
.block-head p { color: var(--mute); }
.block-stone .block-head p { color: rgba(251,252,252,0.65); }

/* Chapter cards */
.chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.chapter {
  position: relative; min-height: 300px; overflow: hidden;
  text-decoration: none; color: #fff; background: var(--stone); display: block;
}
.chapter img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.78;
  transition: transform 0.55s var(--ease);
}
.chapter:hover img { transform: scale(1.05); }
.chapter figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(36,48,54,0.92));
  font-family: var(--font-display);
}
.chapter .num {
  display: block; font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.25rem; font-weight: 700;
}
.chapter strong { font-size: 1.4rem; font-weight: 600; }

.duo {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem; align-items: center;
}
.duo.flip .duo-copy { order: 2; }
.duo-media { min-height: 340px; overflow: hidden; border-radius: 4px; }
.duo-media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.duo-copy .lede { font-size: 1.12rem; color: var(--mute); }

.steps { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0; }
.steps li {
  display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem;
  padding: 1rem 0; border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps .n {
  font-family: var(--font-display); font-weight: 700;
  color: var(--teal); font-size: 1.25rem;
}
.steps strong { display: block; font-family: var(--font-display); margin-bottom: 0.15rem; }

.days { display: grid; gap: 0; border-left: 2px solid var(--teal); margin-left: 0.35rem; }
.day { padding: 0 0 1.6rem 1.45rem; position: relative; }
.day::before {
  content: ""; position: absolute; left: -6px; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber); border: 2px solid var(--paper);
}
.day-label {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; color: var(--teal-deep); margin-bottom: 0.25rem;
}
.day h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }

.terrain-row {
  display: grid; grid-template-columns: 150px 1fr auto;
  gap: 1.35rem; align-items: center;
  padding: 1.3rem 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
}
.terrain-row:hover { background: rgba(34,160,148,0.05); }
.terrain-row img { width: 150px; height: 95px; object-fit: cover; border-radius: 4px; }
.terrain-row h3 { margin: 0 0 0.2rem; font-size: 1.3rem; }
.terrain-row p { margin: 0; color: var(--mute); font-size: 0.96rem; }
.terrain-row .go { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal); }

.lens {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.75rem;
}
.lens figure {
  margin: 0; grid-column: span 4; position: relative; overflow: hidden;
  background: var(--stone); min-height: 220px; border-radius: 4px;
}
.lens figure:nth-child(1), .lens figure:nth-child(8) { grid-column: span 6; min-height: 320px; }
.lens figure:nth-child(4) { grid-column: span 8; }
.lens img {
  width: 100%; height: 100%; min-height: 220px; object-fit: cover;
  transition: transform 0.5s var(--ease); opacity: 0.92;
}
.lens figure:hover img { transform: scale(1.04); opacity: 1; }
.lens figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.75rem 1rem; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(36,48,54,0.85));
}

.faq { display: grid; gap: 0.6rem; }
.faq details { border: 1px solid var(--line); background: #fff; padding: 0.15rem 1.1rem; border-radius: 4px; }
.faq details[open] { border-color: var(--teal); }
.faq summary {
  font-family: var(--font-display); font-weight: 600; cursor: pointer;
  padding: 0.95rem 0; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--teal); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--mute); padding-bottom: 0.85rem; }

.metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.metrics strong {
  display: block; font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; color: var(--amber); letter-spacing: -0.03em;
}
.metrics span { color: rgba(251,252,252,0.65); font-size: 0.95rem; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; }
.meta-list { display: grid; gap: 1.25rem; }
.meta-list dt {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; color: var(--teal-deep); margin-bottom: 0.2rem;
}
.meta-list dd { margin: 0; }
.meta-list a { text-decoration: none; font-weight: 600; color: var(--stone); }

.form { display: grid; gap: 1rem; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.35rem; }
input, textarea, select {
  width: 100%; font: inherit; padding: 0.8rem 0.95rem;
  border: 1px solid var(--line); background: #fff; color: var(--stone); border-radius: 4px;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(34,160,148,0.15);
}
textarea { min-height: 140px; resize: vertical; }
.form-ok {
  display: none; padding: 1rem 1.15rem; background: var(--mist);
  border-left: 3px solid var(--teal); border-radius: 4px;
}
.form-ok.show { display: block; animation: up 0.4s var(--ease); }

.pull {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 500; line-height: 1.3;
  border-left: 4px solid var(--teal); padding-left: 1.2rem;
  margin: 1.75rem 0; max-width: 34ch;
}
.prose h2 { margin-top: 2rem; font-size: 1.35rem; }
.prose ul { color: var(--mute); padding-left: 1.15rem; }
.prose li { margin-bottom: 0.4rem; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; }

.site-footer {
  background: var(--stone); color: rgba(251,252,252,0.75);
  padding: 3.5rem 0 1.75rem; margin-top: 3rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-brand { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.85rem; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand strong {
  display: block; font-family: var(--font-display); font-size: 1.2rem; color: #fff;
}
.footer-brand em {
  display: block; font-style: normal; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); font-weight: 700;
}
.footer-tag { max-width: 28ch; font-size: 0.95rem; margin: 0; }
.site-footer h4 {
  color: #fff; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 0.85rem; font-family: var(--font-body);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.site-footer a {
  color: rgba(251,252,252,0.72); text-decoration: none;
  font-size: 0.95rem; font-weight: 600;
}
.site-footer a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  max-width: 480px; margin-inline: auto;
  background: var(--stone); color: rgba(251,252,252,0.9);
  padding: 1.2rem 1.3rem; display: none;
  border-top: 3px solid var(--teal); border-radius: 4px;
  animation: up 0.4s var(--ease);
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 0.9rem; color: rgba(251,252,252,0.72); }
.cookie-banner a { color: var(--amber); }
.cookie-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.55rem 0.9rem; font-size: 0.82rem; }
.cookie-actions .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }

@media (max-width: 960px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: 0.75rem 1.1rem 1.25rem; display: none;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-cta { margin: 0.75rem 0 0; text-align: center; border-radius: 999px; }
  .nav-toggle { display: flex; }
  .chapters, .duo, .duo.flip .duo-copy, .contact-grid, .cols-2, .footer-top, .form-2, .metrics {
    grid-template-columns: 1fr;
  }
  .duo.flip .duo-copy { order: 0; }
  .terrain-row { grid-template-columns: 100px 1fr; }
  .terrain-row .go { display: none; }
  .lens figure, .lens figure:nth-child(1), .lens figure:nth-child(4), .lens figure:nth-child(8) {
    grid-column: span 12;
  }
  .hero-brand { font-size: clamp(2.6rem, 13vw, 4rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
