/* ════════════════════════════════════════════════════════════
   The Adventurer's Rest — high-fidelity landing page
   
   System:
   ─ Type
       Display:  Marcellus  (refined Roman serif, light medieval edge)
       Body:     Manrope    (clean, warm geometric sans)
       Accent:   Marcellus italic for inline pull-tags
   ─ Color
       forest-deep #0E1812 · forest #19271D · forest-mid #24382A
       amber #D5A14A · amber-bright #E9BD6E
       parchment #F5EEDA · parchment-warm #EFE4C5
       ink #1B140A · ink-2 #463B27 · ink-mute #877A5E
       rust #8E462A
   ─ Spacing
       Sections: 112 / 72 (desktop / mobile)
       Page gutter: 40 / 20
   ─ Shape
       Card radius 6-12px · button radius 4px
       Borders subtle 1px @ ink/20% · shadows warm soft
   ──────────────────────────────────────────────────────────── */

:root {
  --forest-deep: #0E1812;
  --forest: #19271D;
  --forest-mid: #24382A;
  --moss: #4F6850;

  --amber: #D5A14A;
  --amber-bright: #E9BD6E;
  --amber-deep: #A8772A;

  --parchment: #F5EEDA;
  --parchment-warm: #EFE4C5;
  --parchment-deep: #E6D8B1;
  --cream: #FAF6E8;

  --ink: #1B140A;
  --ink-2: #463B27;
  --ink-mute: #877A5E;
  --rust: #8E462A;

  --shadow-sm: 0 1px 2px rgba(27,20,10,0.06), 0 1px 1px rgba(27,20,10,0.04);
  --shadow-md: 0 4px 14px rgba(27,20,10,0.08), 0 1px 2px rgba(27,20,10,0.05);
  --shadow-lg: 0 16px 40px rgba(27,20,10,0.14), 0 4px 12px rgba(27,20,10,0.08);
  --shadow-card: 0 1px 2px rgba(27,20,10,0.05), 0 8px 24px rgba(27,20,10,0.08);
  --shadow-glow-amber: 0 0 60px rgba(213, 161, 74, 0.18);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  --container: 1240px;
  --gutter: 40px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection {
  background: var(--amber);
  color: var(--ink);
}

/* ═════════════ TYPOGRAPHY ═════════════ */

.display {
  font-family: "Marcellus", "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
}

.display.on-dark { color: var(--parchment); }

.tagline {
  font-family: "Marcellus", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--amber-deep);
  letter-spacing: 0.005em;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

.eyebrow.on-dark { color: var(--amber-bright); opacity: 0.85; }

.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 10px;
  transform: translateY(-1px);
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
}

.muted { color: var(--ink-mute); }
.muted-dark { color: rgba(245, 238, 218, 0.6); }

/* ═════════════ LAYOUT PRIMITIVES ═════════════ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head .display {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-head .lede {
  font-size: 17px;
}

/* ═════════════ BUTTONS ═════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: var(--amber-bright);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.22), 0 0 24px rgba(213, 161, 74, 0.3);
}

.btn-forest {
  background: var(--forest);
  color: var(--parchment);
  box-shadow: var(--shadow-md);
}
.btn-forest:hover {
  background: var(--forest-mid);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(27, 20, 10, 0.22);
}
.btn-ghost:hover { background: rgba(27,20,10,0.04); border-color: rgba(27,20,10,0.4); }

.btn-ghost.on-dark {
  color: var(--parchment);
  border-color: rgba(245, 238, 218, 0.3);
}
.btn-ghost.on-dark:hover {
  background: rgba(245, 238, 218, 0.06);
  border-color: rgba(245, 238, 218, 0.55);
}

.btn-lg {
  padding: 17px 28px;
  font-size: 15px;
}

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ═════════════ NAV ═════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, padding 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(245, 238, 218, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: rgba(27,20,10,0.08);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--parchment);
  transition: color 0.3s ease;
}

.nav.scrolled .brand { color: var(--ink); }

.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg { width: 100%; height: 100%; }

.brand-name {
  font-family: "Marcellus", serif;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--parchment);
  opacity: 0.85;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-links { color: var(--ink-2); opacity: 1; }

.nav-links a {
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--amber-bright); }
.nav.scrolled .nav-links a:hover { color: var(--rust); }

.nav-cta { flex-shrink: 0; }

.nav-cta .btn {
  padding: 10px 16px;
  font-size: 13px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .brand-name { font-size: 17px; }
}

/* ═════════════ HERO ═════════════ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100svh;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* LEFT — atmospheric "photo" panel */
.hero-photo {
  position: relative;
  background: var(--forest-deep);
  overflow: hidden;
  min-height: 420px;
}

/* Layered atmospheric gradient — night forest w/ lantern glow */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Foreground lantern glow — amber */
    radial-gradient(ellipse 280px 240px at 38% 64%, rgba(233, 189, 110, 0.55) 0%, rgba(213, 161, 74, 0.18) 38%, transparent 70%),
    /* Distant secondary glow */
    radial-gradient(ellipse 200px 160px at 68% 48%, rgba(213, 161, 74, 0.18) 0%, transparent 60%),
    /* Upper canopy moonlight */
    radial-gradient(ellipse 600px 280px at 50% 0%, rgba(168, 183, 162, 0.12) 0%, transparent 70%),
    /* Mid-tone forest body */
    radial-gradient(ellipse 80% 70% at 50% 60%, #1a2b1f 0%, #0E1812 70%),
    var(--forest-deep);
}

/* Subtle vertical "trees" — gradient bars to imply silhouettes */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,24,18,0.4) 0%, transparent 25%, transparent 75%, rgba(14,24,18,0.85) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 18px,
      rgba(8, 14, 11, 0.18) 18px,
      rgba(8, 14, 11, 0.18) 19px,
      transparent 19px,
      transparent 80px
    );
  pointer-events: none;
}

.hero-photo-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--parchment);
}

/* Lantern dot — tiny glowing accent positioned over the gradient sweet spot */
.lantern {
  position: absolute;
  left: 38%;
  top: 60%;
  width: 8px; height: 8px;
  background: var(--amber-bright);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(233, 189, 110, 0.3),
    0 0 18px 4px rgba(233, 189, 110, 0.65),
    0 0 60px 16px rgba(213, 161, 74, 0.4);
  animation: lantern-flicker 4s ease-in-out infinite;
  z-index: 3;
}

@keyframes lantern-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  35%      { opacity: 0.85; transform: scale(0.97); }
  60%      { opacity: 1; transform: scale(1.02); }
  78%      { opacity: 0.92; transform: scale(0.99); }
}

.hero-photo-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(14, 24, 18, 0.55);
  border: 1px solid rgba(245, 238, 218, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 238, 218, 0.75);
  align-self: flex-start;
  margin-bottom: 28px;
}

.hero-photo-caption .swatch {
  width: 6px; height: 6px; background: var(--amber); border-radius: 50%;
}

.hero-photo .tagline-block {
  max-width: 380px;
}

.hero-photo .tagline-block .tagline {
  font-size: 26px;
  line-height: 1.25;
  color: var(--amber-bright);
  display: block;
  margin-bottom: 12px;
}

.hero-photo-meta {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 238, 218, 0.15);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 238, 218, 0.55);
  text-transform: uppercase;
}

.hero-photo-meta span + span::before {
  content: "·";
  margin-right: 18px;
  opacity: 0.5;
}

/* RIGHT — copy + inline form */
.hero-copy {
  background: var(--parchment);
  padding: 120px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media (max-width: 1080px) {
  .hero-copy { padding: 100px 36px 48px; }
}

@media (max-width: 960px) {
  .hero-copy { padding: 56px 24px 48px; }
}

.hero-copy .eyebrow { margin-bottom: 20px; }

.hero-copy .display {
  font-size: clamp(40px, 5.6vw, 68px);
  margin-bottom: 18px;
  max-width: 14ch;
}

.hero-copy .lede {
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 48ch;
  margin-bottom: 32px;
}

.hero-form {
  background: var(--cream);
  border: 1px solid rgba(27, 20, 10, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  max-width: 520px;
}

.hero-form-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-form-head .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(213, 161, 74, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-deep);
}

.hero-form-head .title {
  font-family: "Marcellus", serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-form-head .sub {
  font-size: 12px;
  color: var(--ink-mute);
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .hero-form-row { grid-template-columns: 1fr; }
}

.input {
  width: 100%;
  padding: 12px 14px;
  background: var(--parchment);
  border: 1px solid rgba(27, 20, 10, 0.15);
  border-radius: var(--radius-sm);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input::placeholder { color: var(--ink-mute); }

.input:focus {
  outline: none;
  border-color: var(--amber-deep);
  box-shadow: 0 0 0 3px rgba(213, 161, 74, 0.22);
  background: var(--cream);
}

.hero-form .btn { width: 100%; margin-top: 6px; }

.hero-form-note {
  font-size: 11px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.hero-form-note a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ═════════════ CONCEPT — 5 pillars ═════════════ */

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr 1fr; }
}

.pillar {
  padding: 28px 22px;
  background: var(--cream);
  border: 1px solid rgba(27, 20, 10, 0.08);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(213, 161, 74, 0.35);
}

.pillar .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(213, 161, 74, 0.2), rgba(213, 161, 74, 0.06));
  border: 1px solid rgba(213, 161, 74, 0.35);
  color: var(--amber-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.pillar .icon svg { width: 22px; height: 22px; }

.pillar h3 {
  font-family: "Marcellus", serif;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 400;
}

.pillar p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
}

/* ═════════════ TWO PATHS ═════════════ */

.two-paths-bg {
  background: linear-gradient(180deg, var(--parchment-warm) 0%, var(--parchment) 100%);
  border-top: 1px solid rgba(27,20,10,0.06);
  border-bottom: 1px solid rgba(27,20,10,0.06);
}

.paths-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .paths-grid { grid-template-columns: 1fr; }
}

.path-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.path-card.quest {
  background: var(--forest-deep);
  color: var(--parchment);
}
.path-card.quest::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 18%, rgba(213, 161, 74, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 25% 80%, rgba(36, 56, 42, 0.55) 0%, transparent 60%);
  pointer-events: none;
}

.path-card.inn {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(27, 20, 10, 0.08);
}

.path-card-image {
  position: relative;
  flex: 1 1 280px;
  min-height: 240px;
  overflow: hidden;
}

.path-card .path-card-image-label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 238, 218, 0.5);
  padding: 5px 10px;
  background: rgba(14, 24, 18, 0.55);
  border: 1px solid rgba(245, 238, 218, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.path-card.inn .path-card-image-label {
  color: var(--ink-mute);
  background: rgba(245, 238, 218, 0.7);
  border-color: rgba(27, 20, 10, 0.12);
}

/* Quest image — moody candlelit table */
.path-card.quest .path-card-image {
  background:
    radial-gradient(ellipse 50% 80% at 55% 75%, rgba(213, 161, 74, 0.55) 0%, rgba(213, 161, 74, 0.18) 30%, transparent 65%),
    radial-gradient(ellipse 70% 90% at 50% 50%, #2a4030 0%, #16221a 70%),
    var(--forest-deep);
  position: relative;
}
.path-card.quest .path-card-image::after {
  /* table-edge horizontal sweep */
  content: "";
  position: absolute;
  inset: 60% 0 0 0;
  background:
    linear-gradient(180deg, rgba(120, 80, 40, 0.0) 0%, rgba(70, 45, 22, 0.45) 40%, rgba(40, 24, 12, 0.85) 100%);
  pointer-events: none;
}

/* Inn image — soft, warm tent interior */
.path-card.inn .path-card-image {
  background:
    radial-gradient(ellipse 60% 50% at 50% 25%, rgba(233, 189, 110, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(213, 161, 74, 0.25) 0%, rgba(168, 119, 42, 0.05) 50%, transparent 70%),
    linear-gradient(180deg, #FAF3DC 0%, #E6CFA0 100%);
}

.path-card-body {
  padding: 32px 32px 32px;
}
.path-card.quest .path-card-body { padding: 36px 36px 36px; }

.path-card .path-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.path-card.quest .path-tag {
  background: rgba(213, 161, 74, 0.16);
  color: var(--amber-bright);
  border: 1px solid rgba(213, 161, 74, 0.35);
}
.path-card.inn .path-tag {
  background: rgba(27, 20, 10, 0.06);
  color: var(--ink-2);
  border: 1px solid rgba(27, 20, 10, 0.1);
}

.path-card h3 {
  font-family: "Marcellus", serif;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.05;
}
.path-card.quest h3 { color: var(--parchment); }

.path-card p.lede {
  margin-bottom: 22px;
  max-width: 44ch;
}
.path-card.quest p.lede { color: rgba(245, 238, 218, 0.78); }

.path-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.path-card.quest .path-features { grid-template-columns: 1fr 1fr; gap: 10px 24px; }

@media (max-width: 600px) {
  .path-card.quest .path-features { grid-template-columns: 1fr; }
}

.path-features li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
}
.path-card.quest .path-features li { color: rgba(245, 238, 218, 0.85); }

.path-features li .bullet {
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--amber-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  color: var(--amber-deep);
}
.path-card.quest .path-features li .bullet {
  border-color: var(--amber);
  color: var(--amber);
}
.path-features li .bullet::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* ═════════════ PROTOTYPE WEEKEND ═════════════ */

.prototype {
  background: var(--forest-deep);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}

.prototype::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 25%, rgba(213, 161, 74, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 85% 80%, rgba(36, 56, 42, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.prototype .container { position: relative; z-index: 1; }

.prototype-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 880px) {
  .prototype-grid { grid-template-columns: 1fr; gap: 36px; }
}

.prototype-grid h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 14px 0 18px;
  max-width: 16ch;
}

.prototype-grid p { font-size: 17px; color: rgba(245, 238, 218, 0.72); max-width: 50ch; margin-bottom: 22px; line-height: 1.6; }

.prototype-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.prototype-tags .tag {
  padding: 6px 12px;
  border: 1px solid rgba(245, 238, 218, 0.25);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(245, 238, 218, 0.8);
  letter-spacing: 0.04em;
}

.prototype-card {
  background: rgba(245, 238, 218, 0.04);
  border: 1px solid rgba(245, 238, 218, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.prototype-card .title {
  font-family: "Marcellus", serif;
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--parchment);
}

.prototype-card .sub {
  font-size: 13px;
  color: rgba(245, 238, 218, 0.6);
  margin-bottom: 22px;
}

.prototype-card .btn { width: 100%; }

.prototype-card .meta {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 238, 218, 0.45);
  text-align: center;
  margin-top: 14px;
}

/* ═════════════ WHY THIS EXISTS ═════════════ */

.why {
  background: var(--parchment);
}

.why-quote {
  font-family: "Marcellus", serif;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  color: var(--ink);
  position: relative;
}

.why-quote::before, .why-quote::after {
  content: "";
  display: block;
  height: 1px;
  width: 56px;
  background: var(--amber-deep);
  opacity: 0.55;
  margin: 22px auto;
}

.why-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .why-cols { grid-template-columns: 1fr; gap: 24px; }
}

.why-cols p { margin: 0; }

.why-cols .drop {
  float: left;
  font-family: "Marcellus", serif;
  font-size: 52px;
  line-height: 0.9;
  color: var(--rust);
  margin: 4px 10px 0 0;
}

/* ═════════════ FUTURE VISION ═════════════ */

.future {
  background: var(--parchment-warm);
  border-top: 1px solid rgba(27,20,10,0.06);
  border-bottom: 1px solid rgba(27,20,10,0.06);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .timeline { grid-template-columns: 1fr; }
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 28px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--amber-deep) 0 6px, transparent 6px 12px);
  opacity: 0.45;
}

@media (max-width: 880px) { .timeline::before { display: none; } }

.phase {
  position: relative;
  text-align: left;
  padding-top: 0;
}

.phase .node {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--parchment);
  border: 2px solid var(--amber-deep);
  position: relative;
  margin-bottom: 22px;
  z-index: 1;
}
.phase.now .node {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(213, 161, 74, 0.2);
}

.phase .phase-label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 6px;
}

.phase h4 {
  font-family: "Marcellus", serif;
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.phase p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

.future-foot {
  text-align: center;
  margin-top: 56px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ═════════════ BIG WAITLIST FORM ═════════════ */

.waitlist {
  background: var(--parchment);
}

.waitlist-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(27, 20, 10, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
}

@media (max-width: 600px) {
  .waitlist-form-wrap { padding: 28px 22px; }
}

.form-row {
  margin-bottom: 22px;
}

.form-row label,
.form-row .label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

.input.textarea {
  resize: vertical;
  min-height: 110px;
  font-family: "Manrope", sans-serif;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 20, 10, 0.18);
  background: var(--parchment);
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.chip:hover { border-color: var(--amber-deep); color: var(--ink); }
.chip.active {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--ink);
}

.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 600px) { .interest-grid { grid-template-columns: 1fr; } }

.interest-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(27, 20, 10, 0.15);
  border-radius: var(--radius);
  background: var(--parchment);
  cursor: pointer;
  transition: all 0.15s ease;
}
.interest-option:hover { border-color: var(--amber-deep); background: var(--cream); }
.interest-option.checked {
  border-color: var(--amber-deep);
  background: rgba(213, 161, 74, 0.08);
  box-shadow: inset 0 0 0 1px var(--amber-deep);
}

.interest-option .check {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(27,20,10,0.3);
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: all 0.15s ease;
}
.interest-option.checked .check {
  background: var(--amber);
  border-color: var(--amber-deep);
  color: var(--ink);
}
.interest-option .check svg { width: 12px; height: 12px; }

.interest-option .title-row {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.interest-option .sub {
  font-size: 12px;
  color: var(--ink-mute);
}

.waitlist-form-wrap .btn-primary {
  width: 100%;
  margin-top: 14px;
}

.waitlist-form-wrap .form-foot {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 18px;
}

.optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  font-size: 12px;
  margin-left: 6px;
}

/* ═════════════ FAQ ═════════════ */

.faq {
  background: var(--parchment-warm);
  border-top: 1px solid rgba(27,20,10,0.06);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(27, 20, 10, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item.open {
  border-color: rgba(213, 161, 74, 0.45);
  box-shadow: var(--shadow-card);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.25;
}

.faq-q .icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(213, 161, 74, 0.12);
  color: var(--amber-deep);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--amber);
  color: var(--ink);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 65ch;
}

/* ═════════════ FINAL CTA ═════════════ */

.final-cta {
  background: var(--forest-deep);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 70%, rgba(213, 161, 74, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(168, 183, 162, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta .display {
  font-size: clamp(36px, 5.5vw, 64px);
  margin: 22px 0 16px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .lede {
  color: rgba(245, 238, 218, 0.72);
  font-size: 17px;
  max-width: 52ch;
  margin: 0 auto 32px;
}

.final-cta .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(213, 161, 74, 0.7);
}

.final-cta .ornament .rule {
  height: 1px;
  width: 56px;
  background: rgba(213, 161, 74, 0.45);
}
.final-cta .ornament .glyph {
  font-family: "Marcellus", serif;
  font-size: 14px;
  letter-spacing: 0.3em;
}

/* ═════════════ FOOTER ═════════════ */

.footer {
  background: var(--forest);
  color: rgba(245, 238, 218, 0.6);
  padding: 36px 0 30px;
  border-top: 1px solid rgba(245, 238, 218, 0.08);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer .brand-name { font-size: 15px; color: var(--parchment); }

.footer-meta {
  opacity: 0.7;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a:hover { color: var(--amber-bright); }

/* ═════════════ MOBILE / RESPONSIVE TUNING ═════════════ */

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .hero-photo { min-height: 380px; }
  .path-card-body { padding: 28px 22px; }
  .path-card.quest .path-card-body { padding: 28px 22px; }
  .prototype-card { padding: 22px; }
  .waitlist-form-wrap { padding: 26px 20px; }
}

@media (max-width: 540px) {
  .hero-copy .display { font-size: 36px; }
  .why-quote::before, .why-quote::after { width: 36px; }
}

/* ═════════════ UTILITIES ═════════════ */

.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row .btn { white-space: nowrap; }

/* Live Express/EJS form states */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-notice {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-notice.success {
  border: 1px solid rgba(79, 104, 80, .35);
  background: rgba(79, 104, 80, .12);
  color: var(--forest);
}
.form-notice.error {
  border: 1px solid rgba(142, 70, 42, .35);
  background: rgba(142, 70, 42, .12);
  color: var(--rust);
}
.interest-option input[type="checkbox"] { display: none; }

/* Top-of-page nav contrast fix: the nav spans both dark and parchment hero columns. */
.nav:not(.scrolled) {
  background: linear-gradient(90deg, rgba(14, 24, 18, .38) 0%, rgba(14, 24, 18, .26) 48%, rgba(245, 238, 218, .86) 52%, rgba(245, 238, 218, .92) 100%);
  backdrop-filter: saturate(130%) blur(8px);
  -webkit-backdrop-filter: saturate(130%) blur(8px);
}
.nav:not(.scrolled) .nav-links {
  color: var(--ink-2);
  opacity: 1;
  font-weight: 700;
}
.nav:not(.scrolled) .nav-links a:hover { color: var(--rust); }
.nav:not(.scrolled) .nav-cta .btn-primary {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(27,20,10,.08), inset 0 1px 0 rgba(255,255,255,.18);
}
@media (max-width: 960px) {
  .nav:not(.scrolled) {
    background: rgba(14, 24, 18, .62);
  }
  .nav:not(.scrolled) .nav-links { color: var(--parchment); }
}

/* Override previous split nav fix: use one consistent dark header at page top. */
.nav:not(.scrolled) {
  background: rgba(14, 24, 18, .88) !important;
  backdrop-filter: saturate(130%) blur(10px);
  -webkit-backdrop-filter: saturate(130%) blur(10px);
  border-bottom-color: rgba(245, 238, 218, .12);
}
.nav:not(.scrolled) .brand,
.nav:not(.scrolled) .nav-links,
.nav:not(.scrolled) .nav-links a {
  color: var(--parchment) !important;
  opacity: 1 !important;
}
.nav:not(.scrolled) .nav-links a:hover { color: var(--amber-bright) !important; }

/* Adventurer's Rest generated image assets */
.hero-photo::before {
  background:
    linear-gradient(180deg, rgba(14,24,18,.18) 0%, rgba(14,24,18,.34) 50%, rgba(14,24,18,.72) 100%),
    radial-gradient(ellipse 360px 260px at 42% 64%, rgba(233, 189, 110, 0.20), transparent 72%),
    url('/images/adventurers-rest/hero-1.png') center center / cover no-repeat !important;
}
.hero-photo::after { opacity: .45; }
.hero-photo-caption { display: none; }
.path-card.quest .path-card-image {
  background:
    linear-gradient(180deg, rgba(14,24,18,.06), rgba(14,24,18,.22)),
    url('/images/adventurers-rest/quest-table-2.png') center center / cover no-repeat !important;
}
.path-card.inn .path-card-image {
  background:
    linear-gradient(180deg, rgba(14,24,18,.04), rgba(14,24,18,.18)),
    url('/images/adventurers-rest/inn-interior-1.png') center center / cover no-repeat !important;
}
.path-card-image-label { display: none; }
