/* ============================================================
   YOURTRAIL.RUN — Coaching site layer
   Extends: colors_and_type.css + brand_effects.css (load first)
   Adds: site chrome, layout rhythm, photo placeholders,
   feature/step/stat/pricing patterns, forms, scroll motion.
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--orange); color: var(--on-accent); }

/* ---- Layout primitives ------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
.container-narrow { max-width: 880px; }

.section { padding: clamp(72px, 11vw, 150px) 0; }
.section-tight { padding: clamp(48px, 7vw, 90px) 0; }

.divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* section eyebrow + heading rhythm */
.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .92;
  font-size: clamp(38px, 6vw, 76px);
  margin: 0 0 22px;
}
.section-head p {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}
.text-orange { color: var(--orange); }

/* ============================================================
   SITE NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              backdrop-filter var(--dur) var(--ease-out),
              padding var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: color-mix(in srgb, var(--ink-950) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: var(--border);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: .03em;
  line-height: 1;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: .12em;
  white-space: nowrap;
}
.nav-brand .dot { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--fg-muted);
  padding: 9px 14px;
  border-radius: var(--r-md);
  transition: color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.nav-links a:hover { color: var(--fg); background: color-mix(in srgb, var(--white) 7%, transparent); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  font-size: 14px;
  background: var(--orange);
  color: var(--on-accent);
  text-decoration: none;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-hover); box-shadow: var(--glow-orange); }
.nav-cta:active { transform: scale(.97); }

.nav-toggle { display: none; background: none; border: 0; color: var(--fg); cursor: pointer; padding: 8px; }

@media (max-width: 860px) {
  .nav-right { display: flex; align-items: center; gap: 10px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--ink-900);
    border-left: 1px solid var(--border);
    padding: 92px 20px 28px;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 16px; }
}

/* ============================================================
   PHOTO PLACEHOLDERS  (swap for real <img> when supplied)
   ============================================================ */
.photo-ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, color-mix(in srgb, var(--sky-deep) 38%, transparent) 0%, transparent 55%),
    radial-gradient(140% 120% at 12% 100%, color-mix(in srgb, var(--orange) 16%, transparent) 0%, transparent 50%),
    linear-gradient(160deg, var(--ink-800) 0%, var(--ink-950) 100%);
  isolation: isolate;
}
/* faint topographic contour motif */
.photo-ph::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  background-image:
    repeating-radial-gradient(circle at 70% 25%,
      transparent 0 26px,
      color-mix(in srgb, var(--ink-100) 7%, transparent) 26px 27px);
  -webkit-mask-image: radial-gradient(circle at 70% 25%, #000, transparent 72%);
          mask-image: radial-gradient(circle at 70% 25%, #000, transparent 72%);
  opacity: .55;
}
.photo-ph__label {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--snow) 72%, transparent);
  background: rgba(8,11,15,.55);
  border: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
  padding: 6px 11px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(3px);
}
.photo-ph__label svg { width: 13px; height: 13px; opacity: .85; }
/* centered glyph for big empty placeholders */
.photo-ph__glyph {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--snow) 16%, transparent);
}
.photo-ph__glyph svg { width: clamp(48px, 9vw, 96px); height: auto; }

/* real photos use this to inherit the rounded frame */
.photo-frame { border-radius: var(--r-lg); overflow: hidden; }
/* a real photo filling any positioned parent (hero/band/cta backgrounds) */
.bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -8% 0 0 0;
  height: 116%;
  z-index: 0;
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,11,15,.55) 0%, rgba(8,11,15,.1) 26%, rgba(8,11,15,.2) 54%, rgba(8,11,15,.88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(54px, 8vw, 96px);
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero__kicker::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .85;
  font-size: clamp(56px, 11vw, 168px);
  margin: 0 0 28px;
  color: var(--snow);
  text-shadow: 0 4px 40px rgba(8,11,15,.5);
  max-width: 16ch;
}
.hero h1 .accent { color: var(--orange); }
.hero__lede {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.5;
  color: color-mix(in srgb, var(--snow) 90%, transparent);
  max-width: 54ch;
  margin: 0 0 36px;
  font-weight: 500;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--snow) 60%, transparent);
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--orange), transparent);
  animation: cue 2.2s var(--ease-in-out) infinite;
  transform-origin: top;
}
@keyframes cue { 0%,100% { transform: scaleY(.3); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ============================================================
   BUTTONS (site-scale, build on brand .btn)
   ============================================================ */
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: var(--r-pill); }
.btn-arrow svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.btn-arrow:hover svg { transform: translateX(4px); }
.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--orange);
  text-decoration: none; letter-spacing: .01em;
}
.btn-text svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.btn-text:hover svg { transform: translateX(4px); }

/* ============================================================
   FEATURE / PILLAR CARDS
   ============================================================ */
.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  color: var(--orange);
  margin-bottom: 22px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.feature p { font-size: 16px; line-height: 1.62; color: var(--fg-muted); margin: 0; text-wrap: pretty; }

/* ============================================================
   "FIT" — two-column for-you / not-for-you
   ============================================================ */
.fit-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(28px, 3.4vw, 44px); }
.fit-col.is-yes { border-color: color-mix(in srgb, var(--forest) 55%, var(--border)); }
.fit-col__head { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.fit-col__head .badge { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.fit-col.is-yes .badge { background: color-mix(in srgb, var(--forest) 24%, transparent); color: #7fd09a; }
.fit-col.is-no .badge { background: color-mix(in srgb, var(--white) 8%, transparent); color: var(--fg-subtle); }
.fit-col__head h3 { font-family: var(--font-ui); font-weight: 700; font-size: 22px; margin: 0; letter-spacing: -.01em; }
.fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.fit-list li { display: flex; gap: 13px; font-size: 16.5px; line-height: 1.5; color: var(--fg); }
.fit-list li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.fit-col.is-yes .fit-list li svg { color: #7fd09a; }
.fit-col.is-no { opacity: .92; }
.fit-col.is-no .fit-list li { color: var(--fg-muted); }
.fit-col.is-no .fit-list li svg { color: var(--fg-subtle); }

/* ============================================================
   STEPS / TIMELINE
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 78px);
  line-height: .8;
  color: var(--orange);
  letter-spacing: .01em;
}
.step__body h3 { font-family: var(--font-ui); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 14px; letter-spacing: -.01em; }
.step__body p { font-size: 17px; line-height: 1.62; color: var(--fg-muted); margin: 0; max-width: 60ch; text-wrap: pretty; }
.step__meta { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-subtle); }
.step__meta svg { width: 15px; height: 15px; color: var(--orange); }
@media (max-width: 600px) { .step { grid-template-columns: 1fr; gap: 8px; } }

/* ============================================================
   STATS
   ============================================================ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); }
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-block .n {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: .82;
  color: var(--orange);
  letter-spacing: .01em;
}
.stat-block .n small { font-size: .42em; color: var(--fg-muted); letter-spacing: .02em; }
.stat-block .k { margin-top: 12px; font-size: 14px; line-height: 1.45; color: var(--fg-muted); font-weight: 500; }

/* ============================================================
   QUOTE / CALLOUT band
   ============================================================ */
.band {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band--photo { background: var(--ink-950); }
.band__bg { position: absolute; inset: 0; z-index: 0; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,11,15,.92) 0%, rgba(8,11,15,.7) 45%, rgba(8,11,15,.35) 100%); }
.band__inner { position: relative; z-index: 2; }
.pullquote {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 64px);
  line-height: .98;
  letter-spacing: .01em;
  margin: 0;
  max-width: 18ch;
}
.pullquote .accent { color: var(--orange); }
.pullquote-cite { margin-top: 24px; font-size: 15px; font-weight: 600; letter-spacing: .04em; color: var(--fg-muted); }

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 52px);
  overflow: hidden;
}
.price-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--orange) 14%, transparent), transparent 55%);
  pointer-events: none;
}
.price-card__inner { position: relative; z-index: 1; }
.price-tag { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 6px; }
.price-tag .amt { font-family: var(--font-display); font-size: clamp(56px, 8vw, 104px); line-height: .8; color: var(--snow); }
.price-tag .per { font-size: 18px; font-weight: 600; color: var(--fg-muted); }
.price-note { font-size: 15px; color: var(--fg-muted); line-height: 1.5; max-width: 46ch; }
.price-incl { list-style: none; margin: 28px 0 0; padding: 28px 0 0; border-top: 1px solid var(--border); display: grid; gap: 14px; }
.price-incl li { display: flex; gap: 12px; font-size: 16px; line-height: 1.5; }
.price-incl li svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 2px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px) 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -.01em;
  color: var(--fg);
  transition: color var(--dur) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-item .ico {
  flex: none; width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong); border-radius: 50%;
  color: var(--orange);
  transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.faq-item[open] .ico { transform: rotate(45deg); background: color-mix(in srgb, var(--orange) 16%, transparent); }
.faq-item .ico svg { width: 16px; height: 16px; }
.faq-answer { padding: 0 0 clamp(24px, 3vw, 32px); max-width: 70ch; }
.faq-answer p { font-size: 17px; line-height: 1.65; color: var(--fg-muted); margin: 0 0 14px; text-wrap: pretty; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 52px);
}
.form-row { margin-bottom: 28px; }
.form-row:last-of-type { margin-bottom: 0; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; gap: 0; } .form-grid-2 .form-row { margin-bottom: 24px; } }
.field-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  margin-bottom: 10px;
  color: var(--fg);
}
.field-label .opt { font-weight: 500; color: var(--fg-subtle); font-size: 13px; letter-spacing: 0; }
.field-help { font-size: 13.5px; color: var(--fg-subtle); margin: 0 0 10px; line-height: 1.45; }
.input, .textarea, .select {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--fg);
  background: var(--ink-950);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.input::placeholder, .textarea::placeholder { color: var(--fg-subtle); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--focus-ring);
  background: var(--ink-900);
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%237E8A98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

/* chip radio / checkbox group */
.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
  user-select: none;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:hover { border-color: var(--ink-500); color: var(--fg); }
.choice:has(input:checked) {
  border-color: var(--orange);
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  color: var(--orange);
}
.choice:has(input:focus-visible) { box-shadow: 0 0 0 3px var(--focus-ring); }

.apply-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 920px) { .apply-split { grid-template-columns: 1fr; gap: 28px; } }

.form-submit { margin-top: 8px; }
.form-note { font-size: 13.5px; color: var(--fg-subtle); margin-top: 18px; line-height: 1.5; }

/* success state */
.form-success {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px);
}
.form-success .check {
  width: 72px; height: 72px; margin: 0 auto 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--forest) 24%, transparent);
  color: #7fd09a;
}
.form-success .check svg { width: 36px; height: 36px; }
.form-success h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(32px, 5vw, 52px); line-height: .92; margin: 0 0 18px; }
.form-success p { font-size: 18px; line-height: 1.6; color: var(--fg-muted); max-width: 48ch; margin: 0 auto; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-final { position: relative; overflow: hidden; text-align: center; }
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,11,15,.78), rgba(8,11,15,.92)); }
.cta-final__inner { position: relative; z-index: 2; }
.cta-final h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 110px);
  line-height: .86;
  letter-spacing: .01em;
  margin: 0 0 26px;
}
.cta-final h2 .accent { color: var(--orange); }
.cta-final p { font-size: clamp(17px, 2vw, 22px); color: var(--fg-muted); max-width: 50ch; margin: 0 auto 38px; line-height: 1.55; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-950); border-top: 1px solid var(--border); padding: clamp(56px, 7vw, 88px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand .nav-brand { font-size: 32px; margin-bottom: 16px; }
.footer-brand p { color: var(--fg-muted); font-size: 15px; line-height: 1.6; max-width: 36ch; margin: 0; }
.footer-col h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-subtle); margin: 0 0 18px; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { display: inline-flex; align-items: center; gap: 9px; color: var(--fg-muted); text-decoration: none; font-size: 15px; transition: color var(--dur) var(--ease-out); }
.footer-col a:hover { color: var(--orange); }
.footer-col a svg { width: 16px; height: 16px; flex: none; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: clamp(40px, 5vw, 64px); padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--fg-subtle); font-size: 13.5px; margin: 0; }

/* ============================================================
   VISTA — full-bleed cinematic photo break with one line
   ============================================================ */
.vista {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px, 64vh, 680px);
  display: flex;
  align-items: flex-end;
}
.vista .bg-photo { will-change: transform; }
.vista__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,11,15,.5) 0%, rgba(8,11,15,.12) 32%, rgba(8,11,15,.2) 58%, rgba(8,11,15,.82) 100%);
}
.vista__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(40px, 7vw, 92px); }
.vista__line {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 5.4vw, 76px);
  line-height: .92;
  letter-spacing: .01em;
  margin: 16px 0 0;
  max-width: 20ch;
  color: var(--snow);
  text-shadow: 0 4px 32px rgba(8,11,15,.55);
}
.vista__line .accent { color: var(--orange); }
.vista .eyebrow { text-shadow: 0 2px 12px rgba(8,11,15,.8); }

/* ============================================================
   SCROLL REVEAL  (visible by default; JS hides only below-fold,
   then animates them in. Above-the-fold content is never hidden,
   so it can't get stuck if transitions don't tick.)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal.will-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .reveal.will-reveal.is-in { opacity: 1; transform: none; }
  .reveal-d1.will-reveal { transition-delay: .08s; }
  .reveal-d2.will-reveal { transition-delay: .16s; }
  .reveal-d3.will-reveal { transition-delay: .24s; }
  .reveal-d4.will-reveal { transition-delay: .32s; }
}

/* ============================================================
   PHOTO FALLBACK — branded topo gradient shown behind the photo
   sections so they read as intentional (not broken) when a real
   <img> is missing. Real photos sit on top (.bg-photo, z-index 0)
   and cover this; if an <img> 404s it self-removes (onerror) and
   this shows through. Drop full-res photos into images/ to replace.
   ============================================================ */
.hero__bg, .vista, .band__bg, .cta-final__bg {
  background:
    radial-gradient(120% 90% at 78% 8%, color-mix(in srgb, var(--sky-deep) 38%, transparent) 0%, transparent 55%),
    radial-gradient(140% 120% at 12% 100%, color-mix(in srgb, var(--orange) 16%, transparent) 0%, transparent 50%),
    linear-gradient(160deg, var(--ink-800) 0%, var(--ink-950) 100%);
}

/* disabled buttons (e.g. submit gated on a consent checkbox) */
.btn:disabled, .btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}
.btn:disabled:hover, .btn[disabled]:hover {
  background: var(--orange);
  box-shadow: none !important;
}

/* small helpers */
.mt-0 { margin-top: 0; }
.lead-block { font-size: clamp(20px, 2.6vw, 30px); line-height: 1.5; font-weight: 500; max-width: 24ch; }
.muted { color: var(--fg-muted); }
.eyebrow-line { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow-line::before { content:""; width: 28px; height: 2px; background: var(--orange); }
