/* ===================================================================
   SOLIS — index.html stylesheet
   Fonts: Fraunces (display) + Inter (body)
   Palette: cream #F6F1EA · plum #3D1F2C · rust #B8624F
   =================================================================== */

/* --- Tokens --- */
:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --color-bg:        #F6F1EA;
  --color-surface:   #FFFFFF;
  --color-surface-alt: #EFE9E0;
  --color-brand:     #3D1F2C;
  --color-accent:    #B8624F;
  --color-accent-hover: #A3513F;
  --color-text:      #1E1218;
  --color-muted:     #7A6570;
  --color-border:    rgba(61,31,44,0.12);

  /* expose shorthand for inline style refs in the HTML */
  --muted:  var(--color-muted);
  --accent: var(--color-accent);

  --text-xs:   clamp(0.72rem,  0.68rem + 0.2vw,  0.8rem);
  --text-sm:   clamp(0.85rem,  0.8rem  + 0.25vw, 0.95rem);
  --text-base: clamp(1rem,     0.96rem + 0.2vw,  1.05rem);
  --text-lg:   clamp(1.1rem,   1rem    + 0.5vw,  1.35rem);
  --text-xl:   clamp(1.35rem,  1.1rem  + 1.1vw,  2rem);
  --text-2xl:  clamp(1.9rem,   1.3rem  + 2.5vw,  3.25rem);
  --text-3xl:  clamp(2.5rem,   1.5rem  + 4vw,    4.5rem);

  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;

  --shadow-card: 0 2px 12px rgba(61,31,44,0.08), 0 1px 3px rgba(61,31,44,0.06);
  --shadow-lift: 0 8px 32px rgba(61,31,44,0.12), 0 2px 8px rgba(61,31,44,0.08);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 180ms var(--ease-out);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  hanging-punctuation: first last;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; text-wrap: balance; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(184,98,79,0.18); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* --- Containers --- */
.container {
  width: min(100%, 72rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.container-narrow {
  width: min(100%, 52rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   TYPOGRAPHY HELPERS
   ===================================================================== */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.em {
  font-style: italic;
  color: var(--color-accent);
}

.tabnums { font-variant-numeric: tabular-nums; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-brand);
  color: #fff;
}
.btn--primary:hover { background: #5a2d3f; box-shadow: var(--shadow-card); }

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent:hover { background: var(--color-accent-hover); box-shadow: var(--shadow-lift); }

.btn--ghost {
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover { background: rgba(61,31,44,0.06); border-color: rgba(61,31,44,0.25); }

.btn--lg { padding: 0.85rem 1.75rem; font-size: var(--text-base); }

.arrow { flex-shrink: 0; }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,241,234,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark { width: 32px; height: 32px; }
.brand__word { color: var(--color-brand); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-brand); }
.nav__links .btn { color: #fff; }

@media (max-width: 700px) {
  .nav__links a:not(.btn) { display: none; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.hero__glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse 60% 50% at 70% 40%,
    rgba(184,98,79,0.12) 0%,
    rgba(61,31,44,0.05) 55%,
    transparent 75%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

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

.hero h1 {
  font-size: var(--text-3xl);
  color: var(--color-brand);
  max-width: 16ch;
}

.hero__sub {
  margin-top: 1.25rem;
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.hero__meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__meta-label { font-size: var(--text-xs); font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.hero__meta-num { font-size: var(--text-xl); font-family: var(--font-display); font-weight: 600; color: var(--color-brand); }

/* =====================================================================
   CALCULATOR CARD
   ===================================================================== */
.calc {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--color-border);
  position: relative;
}

.calc__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calc__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(184,98,79,0.1);
  color: var(--color-accent);
  border-radius: var(--radius-xl);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc__title {
  font-size: var(--text-xl);
  color: var(--color-brand);
}

/* --- Fields --- */
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }

.field__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brand);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.field__hint {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-muted);
}

.input-money {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input-money:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184,98,79,0.12);
}
.input-money__prefix {
  padding: 0.65rem 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  background: rgba(61,31,44,0.04);
  border-right: 1.5px solid var(--color-border);
  user-select: none;
}
.input-money input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: none;
  background: transparent;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-brand);
  outline: none;
}

/* --- Slider --- */
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--color-accent) var(--pct, 12%), var(--color-surface-alt, #EFE9E0) var(--pct, 12%));
  outline: none;
  cursor: pointer;
  margin-block: 0.35rem;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 2px 6px rgba(184,98,79,0.35);
  transition: transform var(--transition);
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 2px 6px rgba(184,98,79,0.35);
}

.slider-meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* --- Select --- */
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: '';
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-muted);
  border-bottom: 2px solid var(--color-muted);
  pointer-events: none;
}
.select-wrap select {
  width: 100%;
  padding: 0.65rem 2.25rem 0.65rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-brand);
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.select-wrap select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184,98,79,0.12);
}

/* --- Text inputs --- */
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
@media (max-width: 480px) { .input-row { grid-template-columns: 1fr; } }

.input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-brand);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input::placeholder { color: var(--color-muted); opacity: 0.7; }
.input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184,98,79,0.12);
}

/* --- Result display --- */
.calc__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(184,98,79,0.08), rgba(61,31,44,0.05));
  border: 1.5px solid rgba(184,98,79,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-block: 1.25rem;
}

.calc__result-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.calc__result-value {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.calc__result-period {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-muted);
}

.calc__result-yearly {
  margin-top: 0.35rem;
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.calc__result-arrow { color: var(--color-accent); flex-shrink: 0; opacity: 0.6; }

.calc__submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.calc__fine {
  margin-top: 0.85rem;
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-align: center;
  line-height: 1.5;
}

/* --- Success state --- */
.calc__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1rem;
}
.calc__success.active { display: flex; }

.calc__success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184,98,79,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.calc__success h3 {
  font-size: var(--text-xl);
  color: var(--color-brand);
}

.estimate {
  padding: 0.65rem 1.25rem;
  background: rgba(184,98,79,0.08);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-brand);
}

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust {
  background: var(--color-brand);
  padding-block: 1.1rem;
}

.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.trust__item svg { color: rgba(246,241,234,0.6); flex-shrink: 0; }

/* =====================================================================
   SECTION SHARED
   ===================================================================== */
section { padding-block: clamp(4rem, 8vw, 6.5rem); }

.section-head {
  max-width: 52ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: var(--text-2xl);
  color: var(--color-brand);
  margin-top: 0.75rem;
}
.section-head p {
  margin-top: 1rem;
  font-size: var(--text-lg);
  color: var(--color-muted);
}

/* =====================================================================
   PROCESS / HOW IT WORKS
   ===================================================================== */
.process { background: var(--color-surface); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  list-style: none;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 1.75rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.step__title {
  font-size: var(--text-lg);
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.step__body { font-size: var(--text-sm); color: var(--color-muted); }

/* =====================================================================
   REVIEW CARDS GRID
   ===================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(184,98,79,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card__title {
  font-size: var(--text-lg);
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.card__body { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: 1rem; }

.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 1rem;
  list-style: disc;
  font-size: var(--text-xs);
  color: var(--color-muted);
}
.card__list li::marker { color: var(--color-accent); }

/* =====================================================================
   BENEFITS
   ===================================================================== */
.benefits { background: var(--color-surface); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.benefit {
  padding: 1.5rem 0;
  border-top: 2px solid var(--color-border);
  transition: border-color var(--transition);
}
.benefit:hover { border-color: var(--color-accent); }

.benefit__num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.benefit__title {
  font-size: var(--text-lg);
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.benefit__body { font-size: var(--text-sm); color: var(--color-muted); }

/* =====================================================================
   VERTICALS / PILLS
   ===================================================================== */
.verticals {
  background: var(--color-brand);
  padding-block: 2.5rem;
}

.verticals__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(246,241,234,0.65);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.verticals__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.pill {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(246,241,234,0.2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(246,241,234,0.9);
  background: rgba(246,241,234,0.07);
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.pill:hover { background: rgba(246,241,234,0.15); border-color: rgba(246,241,234,0.4); }

/* =====================================================================
   QUALIFICATION
   ===================================================================== */
.qualify__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) { .qualify__grid { grid-template-columns: 1fr; } }

.qualify__col {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.qualify__col--fit {
  background: var(--color-surface);
}

.qualify__col--not {
  background: var(--color-bg);
}

.qualify__col h3 {
  font-size: var(--text-lg);
  color: var(--color-brand);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.qualify__col--not .dot { background: var(--color-muted); }

.qualify-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
}

.qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.qualify__col--fit .qualify-list li svg { color: var(--color-accent); flex-shrink: 0; margin-top: 1px; }
.qualify__col--not .qualify-list li svg { color: var(--color-muted); flex-shrink: 0; margin-top: 1px; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 780px) { .faq__grid { grid-template-columns: 1fr; } }

.faq__grid header h2 {
  font-size: var(--text-2xl);
  color: var(--color-brand);
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-brand);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--color-accent); }

.faq-body {
  padding-bottom: 1.1rem;
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 64ch;
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.cta-final {
  background: var(--color-brand);
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.cta-final .eyebrow { color: rgba(246,241,234,0.6); }

.cta-final h2 {
  font-size: var(--text-2xl);
  color: #fff;
}

.cta-final p {
  margin-top: 1rem;
  font-size: var(--text-lg);
  color: rgba(246,241,234,0.7);
  max-width: 52ch;
  margin-inline: auto;
}

.cta-final__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-final .btn--ghost {
  color: rgba(246,241,234,0.85);
  border-color: rgba(246,241,234,0.25);
}
.cta-final .btn--ghost:hover {
  background: rgba(246,241,234,0.1);
  border-color: rgba(246,241,234,0.5);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: 2.5rem;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

footer .brand { color: var(--color-brand); }

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}
.links a {
  font-size: var(--text-sm);
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.links a:hover { color: var(--color-brand); }

/* =====================================================================
   SCROLL REVEAL — initialised by JS
   ===================================================================== */
/* (handled above under .reveal / .reveal.visible) */
