/* =========================================================
   Solar for You — Proposal Site
   Brand: desert navy + sun gold, Inter/Sora typography
   Mobile-first, prefers-reduced-motion respected
   ========================================================= */

:root {
  --navy-950: #07111f;
  --navy-900: #0a1628;
  --navy-800: #0f1f36;
  --navy-700: #16294a;
  --navy-600: #1c3258;

  --gold-400: #ffd66b;
  --gold-500: #f5a623;
  --gold-600: #e07a00;
  --gold-700: #b85f00;

  --sand-50:  #fbfaf7;
  --sand-100: #f5f1e9;
  --sand-200: #ece5d5;
  --sand-300: #d7ccb5;
  --ink-900:  #0c1a2e;
  --ink-700:  #2a3a55;
  --ink-500:  #5b6a83;
  --ink-300:  #98a3b6;

  --line-light: rgba(12, 26, 46, 0.08);
  --line-dark:  rgba(255, 255, 255, 0.10);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-lift: 0 30px 60px -28px rgba(7, 17, 31, 0.4);
  --shadow-soft: 0 10px 30px -16px rgba(7, 17, 31, 0.25);

  --container-max: 1180px;
  --container-px: clamp(20px, 4vw, 40px);

  --font-display: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }

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

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, p, a, li, strong, span {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img, picture, svg, video { max-width: 100%; display: block; }

a { color: var(--gold-700); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--gold-600); }
a:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

button { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -64px; left: 12px;
  background: var(--navy-900); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout primitives ---------- */

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

.section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
  overflow: hidden;
}
.section-light { background: var(--sand-50); color: var(--ink-900); }
.section-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #e7ecf5;
}
.section-soft { background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%); }
.section-cta {
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 60%, var(--gold-400) 100%);
  color: #1a1108;
  padding: clamp(72px, 9vw, 110px) 0;
}
.section-closing {
  background: radial-gradient(circle at 50% 40%, var(--navy-700) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 64px; }
}
.col-narrow { position: sticky; top: 100px; }
@media (max-width: 899px) { .col-narrow { position: static; } }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Section masks (CSS mask transitions) ---------- */

.section-mask {
  position: absolute;
  left: 0; right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 2;
}
.section-mask-bottom {
  bottom: -1px;
  background: var(--sand-50);
  -webkit-mask-image: radial-gradient(120% 110px at 50% 100%, transparent 0 60%, #000 60.5% 100%);
          mask-image: radial-gradient(120% 110px at 50% 100%, transparent 0 60%, #000 60.5% 100%);
}
.section-light + .section-dark .section-mask-bottom,
.section-dark + .section-light .section-mask-bottom { display: none; }
/* Color of mask is the *next* section's color. Default sand-50 already set. */
.section-dark .section-mask-bottom { background: var(--sand-50); }
.section-light .section-mask-bottom { background: var(--navy-900); }
.section-cta .section-mask-bottom { background: var(--navy-900); }
.section-soft .section-mask-bottom { background: var(--sand-50); }
.section-closing .section-mask-bottom { display: none; }

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 18px;
}
.kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 18px;
}
.section-dark .kicker { color: var(--gold-400); }
.section-cta  .kicker { color: #2a1500; }
.kicker-num {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.85;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
  color: inherit;
}
.section-light h2, .section-light h3 { color: var(--ink-900); }
.section-dark h2, .section-dark h3 { color: #f5f7fb; }

.hero-title { font-size: clamp(30px, 6vw, 64px); font-weight: 800; letter-spacing: -0.02em; }
@media (max-width: 420px) {
  .hero-title { font-size: 28px; line-height: 1.18; letter-spacing: -0.015em; -webkit-hyphens: auto; hyphens: auto; }
}
h2 { font-size: clamp(28px, 4.2vw, 44px); }
h3 { font-size: clamp(19px, 1.6vw, 22px); }

p { margin: 0 0 14px; }
.lede { font-size: clamp(18px, 1.7vw, 21px); line-height: 1.55; color: var(--ink-700); margin-bottom: 22px; }
.section-dark .lede { color: #cbd3e2; }
.lede-light { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.section-cta .lede-light { color: rgba(26, 17, 8, 0.85); }

.section-sub {
  max-width: 720px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-500);
  margin: 6px 0 36px;
}
.section-dark .section-sub { color: rgba(231, 236, 245, 0.75); }

.section-head { max-width: 780px; margin-bottom: 36px; }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 200ms ease, border-color 200ms ease;
}
.site-header[data-elevated="true"] {
  background: rgba(7, 17, 31, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--container-px);
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
}
.brand:hover { color: #fff; }
.brand-mark {
  display: inline-flex; width: 36px; height: 36px;
  background: rgba(245, 166, 35, 0.10);
  border-radius: 10px;
  padding: 4px;
}
.brand-wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.brand-name-accent { color: var(--gold-500); font-weight: 700; }
.brand-tag {
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.primary-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px; align-items: center;
}
.nav-list a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500; font-size: 14.5px;
  padding: 8px 12px; border-radius: 8px;
  transition: color 150ms ease, background 150ms ease;
}
.nav-list a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nav-cta {
  color: #1a1108 !important;
  background: var(--gold-500);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-400) !important; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle-bar { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute; top: 100%; right: var(--container-px); left: var(--container-px);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px; margin-top: 8px;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    box-shadow: var(--shadow-lift);
    display: none;
  }
  .primary-nav[data-open="true"] .nav-list { display: flex; }
  .nav-list a { padding: 12px 14px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
  padding: 120px 0 100px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 20% 30%, rgba(245, 166, 35, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.55) 0%, rgba(7, 17, 31, 0.85) 60%, rgba(7, 17, 31, 0.96) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero-sub {
  font-size: clamp(17px, 1.55vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0 32px;
  max-width: 720px;
  line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
@media (max-width: 480px) { .hero-ctas .btn { flex: 1 1 100%; } }
.hero-pillars {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  max-width: 720px;
}
@media (min-width: 640px) {
  .hero-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .hero-pillars { grid-template-columns: repeat(4, 1fr); }
}
.hero-pillars li {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: 700;
  color: #fff; font-size: 15px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.hero-pillars li span {
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 6px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #1a1108;
  box-shadow: 0 16px 30px -12px rgba(245, 166, 35, 0.5);
}
.btn-primary:hover { transform: translateY(-1px); color: #1a1108; background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.section-light .btn-ghost { color: var(--ink-900); border-color: var(--line-light); }
.section-light .btn-ghost:hover { background: rgba(12, 26, 46, 0.04); color: var(--ink-900); }
.section-cta .btn-primary { background: #1a1108; color: #ffd66b; box-shadow: 0 14px 28px -12px rgba(0,0,0,0.4); }
.section-cta .btn-primary:hover { background: #261906; color: #fff0bf; }
.section-cta .btn-ghost { color: #1a1108; border-color: rgba(26,17,8,0.35); }
.section-cta .btn-ghost:hover { background: rgba(26,17,8,0.06); color: #1a1108; }
.btn-full { display: flex; width: 100%; }

/* ---------- Cards / structures ---------- */

.card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-top: 0; margin-bottom: 10px; }
.card p { color: var(--ink-700); }
.card .micro { color: var(--ink-500); }

.card-dark {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #e7ecf5;
  backdrop-filter: blur(2px);
}
.card-dark h3 { color: #fff; margin-bottom: 12px; }
.card-dark p, .card-dark li { color: rgba(231, 236, 245, 0.82); }

.callout {
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.10), rgba(245, 166, 35, 0.04));
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  color: var(--ink-900);
  font-size: 16px;
}
.callout-light { background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(245, 166, 35, 0.02)); }

.disclaimer {
  margin-top: 30px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  padding-top: 18px;
}
.section-light .disclaimer {
  color: var(--ink-500);
  border-top-color: var(--line-light);
}
.section-cta .disclaimer { color: rgba(26,17,8,0.7); border-top-color: rgba(26,17,8,0.2); }

.micro {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 14px;
}
.section-dark .micro { color: rgba(255, 255, 255, 0.55); }

.bullets {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 10px;
}
.bullets li { position: relative; padding-left: 22px; line-height: 1.6; }
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.65em;
  width: 8px; height: 8px;
  background: var(--gold-500);
  border-radius: 2px; transform: rotate(45deg);
}
.section-dark .bullets li::before { background: var(--gold-400); }
.bullets-cols { grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 680px) { .bullets-cols { grid-template-columns: repeat(2, 1fr); gap: 18px 28px; } }

.bullets-light li { color: rgba(26,17,8,0.85); }
.bullets-light li::before { background: #1a1108; }

/* ---------- Pattern textures ---------- */

.bg-pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(245, 166, 35, 0.20) 0, transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(245, 166, 35, 0.12) 0, transparent 42%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 28px);
}
.bg-pattern-2 {
  background-image:
    radial-gradient(circle at 78% 28%, rgba(245, 166, 35, 0.18) 0, transparent 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 34px);
}
.bg-pattern-3 {
  background-image:
    radial-gradient(circle at 30% 75%, rgba(255, 214, 107, 0.16) 0, transparent 44%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 36px);
}
.bg-pattern-4 {
  background-image:
    radial-gradient(circle at 60% 35%, rgba(245, 166, 35, 0.14) 0, transparent 48%),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 30px);
}
.bg-pattern-5 {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.10) 0, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px);
}

/* ---------- Position box ---------- */

.position-box {
  background: linear-gradient(160deg, #fff 0%, #fff8e7 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lift);
}
.position-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 14px;
}
.position-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink-900);
}

/* ---------- Funnel ---------- */

.funnel {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .funnel { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .funnel { grid-template-columns: repeat(3, 1fr); } }
.funnel-step {
  position: relative;
  padding: 28px 26px 26px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.funnel-step:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.05);
}
.funnel-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.funnel-step h3 { color: #fff; }
.funnel-step p { color: rgba(231, 236, 245, 0.82); margin: 0; }

/* ---------- Services ---------- */

.services-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }

.service-tile {
  display: block;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  color: #fff;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.service-tile:hover {
  color: #fff;
  border-color: var(--gold-500);
  background: rgba(245, 166, 35, 0.06);
  transform: translateY(-2px);
}
.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.service-tile h3 {
  font-size: 16.5px; margin-bottom: 6px; color: #fff;
}
.service-tile p {
  font-size: 13.5px; color: rgba(231, 236, 245, 0.78); margin: 0;
  line-height: 1.5;
}

/* ---------- Metrics ---------- */

.metrics {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .metrics { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.metric:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.metric-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.metric h3 { font-size: 17px; margin-bottom: 8px; }
.metric p { color: var(--ink-700); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ---------- Phases ---------- */

.phases { list-style: none; padding: 0; margin: 0; counter-reset: phases; }
.phases li {
  position: relative;
  padding: 26px 26px 26px 32px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.phases li::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  border-radius: 4px 0 0 4px;
}
.phase-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.phases h3 { color: #fff; margin-bottom: 8px; }
.phases p  { color: rgba(231, 236, 245, 0.82); margin: 0 0 8px; }
.phase-window {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 6px;
}

/* ---------- Next steps ---------- */

.next-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) {
  .next-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}
.next-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #1a1108;
  color: #ffe7b0;
  box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; gap: 12px;
}
.next-card h3 { color: #ffd66b; margin-bottom: 6px; }
.next-card p { color: rgba(255, 231, 176, 0.85); margin-bottom: 8px; }
.next-card .btn-primary { background: var(--gold-500); color: #1a1108; }
.next-card .btn-primary:hover { background: var(--gold-400); }
.next-card .btn-ghost { color: #ffd66b; border-color: rgba(255, 214, 107, 0.45); }
.next-card .btn-ghost:hover { background: rgba(255, 214, 107, 0.08); color: #ffd66b; }
.next-contact { margin-top: 14px; font-size: 14px; }
.next-contact a { color: #ffd66b; }

/* ---------- Closing ---------- */

.section-closing { text-align: center; padding: clamp(80px, 9vw, 140px) 0; }
.closing { max-width: 820px; margin: 0 auto; }
.closing h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.closing .lede-light { margin-bottom: 32px; }

/* ---------- Footer ---------- */

.site-footer {
  background: #050b15;
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 40px;
  font-size: 14px;
}
.footer-row {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .footer-row { grid-template-columns: 320px 1fr; gap: 36px; align-items: start; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { background: rgba(245, 166, 35, 0.12); }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  font-size: 15px;
}
.footer-meta { margin: 0; }
.footer-meta a { color: var(--gold-400); }
.footer-legal {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer-copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 18px;
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal[data-reveal="fade-right"] { transform: translateX(-18px); }
.reveal[data-reveal="fade-left"]  { transform: translateX(18px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Print ---------- */

@media print {
  .site-header, .skip-link, .section-mask, .bg-pattern, .hero-bg, .hero-overlay, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 12px; }
  .section { padding: 28px 0; page-break-inside: avoid; }
  .section-dark, .section-cta, .section-closing { background: #fff !important; color: #000 !important; }
  .card-dark, .funnel-step, .phases li, .next-card { background: #fff !important; color: #000 !important; border-color: #ccc !important; }
  .btn { border: 1px solid #000 !important; color: #000 !important; background: #fff !important; box-shadow: none !important; }
  a { color: #000; }
}
