/* Components — reusable building blocks. */

/* ============================================================
   NAV / HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(245, 239, 229, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 72px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-link img,
.brand-link svg {
  height: 36px;
  width: auto;
}
.brand-link__suffix {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ella-charcoal);
  border-left: 1px solid var(--border-subtle);
  padding-left: var(--space-3);
  line-height: 1;
  display: none;
}
@media (min-width: 480px) {
  .brand-link__suffix { display: inline-flex; align-items: center; }
}

.nav-primary {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
.nav-primary__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-primary__link {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding-block: var(--space-2);
  transition: color var(--duration-base) var(--easing);
}
.nav-primary__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ella-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-base) var(--easing);
}
.nav-primary__link:hover { color: var(--ella-charcoal); }
.nav-primary__link:hover::after,
.nav-primary__link[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-primary__link[aria-current="page"] { color: var(--ella-charcoal); font-weight: 600; }

@media (min-width: 1024px) {
  .nav-primary { display: flex; }
}

/* Hamburger button */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-md);
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ella-charcoal);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--easing), opacity var(--duration-base) var(--easing);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--ella-charcoal);
  color: var(--white);
  padding: var(--space-8) var(--container-pad);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--duration-slow) var(--easing), opacity var(--duration-base) var(--easing);
  overflow-y: auto;
}
.nav-drawer[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer__link {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer__link:hover,
.nav-drawer__link[aria-current="page"] { color: var(--ella-gold); }
.nav-drawer .btn {
  margin-top: var(--space-6);
  align-self: stretch;
}

@media (min-width: 1024px) { .nav-drawer { display: none; } }

/* Header CTA visibility */
.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta { display: inline-flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--easing);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--ella-charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-lg);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--ella-charcoal);
  border-color: var(--ella-charcoal);
}
.btn-secondary:hover {
  background: var(--ella-charcoal);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--ella-charcoal);
  border-color: var(--white);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-base);
}

.btn-block { width: 100%; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ella-gold-dark);
  transition: gap var(--duration-base) var(--easing);
}
.btn-arrow:hover { gap: var(--space-3); color: var(--ella-charcoal); }
.section-charcoal .btn-arrow { color: var(--ella-gold); }
.section-charcoal .btn-arrow:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--text-on-dark);
  padding-block: clamp(5rem, 4rem + 8vw, 9rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,168,92,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30,58,95,0.4), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero h1 {
  color: var(--white);
  max-width: 22ch;
  margin-bottom: var(--space-6);
}
.hero h1 .accent { color: var(--ella-gold); }
.hero__lead {
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  line-height: var(--lh-loose);
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin-bottom: var(--space-10);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero__pips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4) var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.pip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.78);
}
.pip__icon {
  flex-shrink: 0;
  color: var(--ella-gold);
}

/* Compact hero variant for inner pages */
.hero-band {
  background: var(--gradient-charcoal);
  color: var(--text-on-dark);
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,168,92,0.12), transparent 60%);
  pointer-events: none;
}
.hero-band__inner { position: relative; z-index: 1; max-width: var(--container-narrow); }
.hero-band h1 {
  color: var(--white);
  font-size: var(--fs-6xl);
  margin-bottom: var(--space-4);
}
.hero-band h1 .accent { color: var(--ella-gold); }
.hero-band p {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
}

/* ============================================================
   GRIDS
   ============================================================ */

.grid {
  display: grid;
  gap: var(--space-6);
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

@media (min-width: 768px) {
  .grid { gap: var(--space-8); }
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--duration-base) var(--easing), box-shadow var(--duration-base) var(--easing), border-color var(--duration-base) var(--easing);
}
.card:hover {
  border-color: var(--ella-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.card p { color: var(--text-muted); }

/* Feature tile (icon + headline + body) */
.feature-tile {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--duration-base) var(--easing), border-color var(--duration-base) var(--easing), box-shadow var(--duration-base) var(--easing);
}
.feature-tile:hover {
  transform: translateY(-3px);
  border-color: var(--ella-gold);
  box-shadow: var(--shadow-md);
}
.feature-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-gold);
  color: var(--ella-charcoal);
}
.feature-tile h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
}
.feature-tile p {
  color: var(--text-muted);
  flex-grow: 1;
}

.section-charcoal .feature-tile {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.section-charcoal .feature-tile h3 { color: var(--white); }
.section-charcoal .feature-tile p { color: rgba(255,255,255,0.7); }

/* Problem tile (red-accent for pain points) */
.problem-tile {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-8);
}
.problem-tile h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--ella-charcoal);
}
.problem-tile p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* Step row (numbered) */
.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-6);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration-base) var(--easing);
}
.step-row:hover { border-color: var(--ella-gold); }
.step-row__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--gradient-gold);
  color: var(--ella-charcoal);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-lg);
  flex-shrink: 0;
}
.step-row h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.step-row p { color: var(--text-muted); font-size: var(--fs-sm); }

.section-charcoal .step-row {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-charcoal .step-row p { color: rgba(255,255,255,0.65); }

/* Tier card */
.tier-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  transition: border-color var(--duration-base) var(--easing), box-shadow var(--duration-base) var(--easing), transform var(--duration-base) var(--easing);
}
.tier-card:hover {
  border-color: var(--ella-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.tier-card[data-featured] {
  border-color: var(--ella-gold);
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--ella-pale) 100%);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.tier-card[data-featured]::before {
  content: 'Most popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--ella-charcoal);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.tier-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ella-gold-dark);
}
.tier-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--ella-charcoal);
  line-height: 1.1;
}
.tier-card__price small {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: var(--space-1);
}
.tier-card__pitch {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  min-height: 3em;
}
.tier-card__features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-5);
  margin-top: var(--space-2);
  flex-grow: 1;
}
.tier-card__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  align-items: start;
}
.tier-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--ella-gold);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M16.704 5.29a1 1 0 010 1.42l-7.5 7.5a1 1 0 01-1.41 0l-3.5-3.5a1 1 0 111.41-1.42L8.5 12.08l6.79-6.79a1 1 0 011.414 0z" clip-rule="evenodd"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M16.704 5.29a1 1 0 010 1.42l-7.5 7.5a1 1 0 01-1.41 0l-3.5-3.5a1 1 0 111.41-1.42L8.5 12.08l6.79-6.79a1 1 0 011.414 0z" clip-rule="evenodd"/></svg>') center/contain no-repeat;
  margin-top: 4px;
}

/* Feature row (alternating image + text) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-12);
}
.feature-row + .feature-row {
  border-top: 1px solid var(--border-subtle);
}
.feature-row__media {
  background: var(--gradient-card-gold);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-row__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,168,92,0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(30,58,95,0.10), transparent 50%);
}
.feature-row__media svg {
  position: relative;
  width: 96px;
  height: 96px;
  color: var(--ella-gold-dark);
}
.feature-row__body {
  max-width: 50ch;
}
.feature-row__body h2 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-4);
}
.feature-row__body p {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-6);
}
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  font-size: var(--fs-base);
  color: var(--text-primary);
  align-items: start;
}
.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--ella-gold);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/></svg>') center/contain no-repeat;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
  .feature-row[data-flip] .feature-row__media { order: 2; }
}

/* ============================================================
   FORMS
   ============================================================ */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field__label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ella-charcoal);
}
.field__label .req { color: var(--color-error); margin-left: 2px; }
.field__hint {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.field__error {
  font-size: var(--fs-xs);
  color: var(--color-error);
  font-weight: 500;
  display: none;
}
.field[data-error="true"] .field__error { display: block; }

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-base) var(--easing), box-shadow var(--duration-base) var(--easing);
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--ella-gold);
  box-shadow: 0 0 0 3px var(--ella-gold-soft);
}
.field[data-error="true"] .field__input,
.field[data-error="true"] .field__select,
.field[data-error="true"] .field__textarea {
  border-color: var(--color-error);
}
.field__textarea { min-height: 120px; resize: vertical; }
.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%2316181C"><path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 011.06.02L10 11.06l3.71-3.83a.75.75 0 111.08 1.04l-4.25 4.39a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z" clip-rule="evenodd"/></svg>');
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 18px 18px;
  padding-right: var(--space-10);
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
  font-size: var(--fs-sm);
  color: var(--text-primary);
}
.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ella-gold);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form__success svg {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  color: var(--color-success);
  margin-bottom: var(--space-4);
}
.form__success h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3);
}
.form__success p { color: var(--text-muted); }

.form[data-submitted="true"] > *:not(.form__success) { display: none; }
.form[data-submitted="true"] .form__success { display: block; }

.form__error-banner {
  display: none;
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-sm);
  color: var(--color-error);
}
.form[data-error="true"] .form__error-banner { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ella-charcoal);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-16) var(--space-8);
  border-top: 4px solid var(--ella-gold);
}
.site-footer h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ella-gold);
  margin-bottom: var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer-brand img,
.footer-brand svg {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
}
.footer-brand .footer-brand__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--ella-gold);
  margin-bottom: var(--space-3);
  font-size: var(--fs-sm);
}
.footer-brand .footer-brand__abn {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-3);
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-list a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--duration-base) var(--easing);
}
.footer-list a:hover { color: var(--ella-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.final-cta {
  background: var(--surface-authority);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,168,92,0.16), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(30,58,95,0.32), transparent 50%);
  color: var(--text-on-dark);
  padding-block: var(--section-y-lg);
  text-align: center;
}
.final-cta h2 {
  color: var(--white);
  font-size: var(--fs-6xl);
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: var(--space-4);
}
.final-cta h2 .accent { color: var(--ella-gold); }
.final-cta p {
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-lg);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.final-cta__sub {
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}
.final-cta__sub a { color: var(--ella-gold); font-weight: 500; }
.final-cta__sub a:hover { color: var(--white); }

/* ============================================================
   UTILITY: text alignment / accents
   ============================================================ */

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.accent-gold { color: var(--ella-gold); }
.accent-gold-dark { color: var(--ella-gold-dark); }

.divider-gold {
  width: 56px;
  height: 3px;
  background: var(--gradient-gold);
  border: 0;
  border-radius: var(--radius-pill);
  margin-block: var(--space-4) var(--space-6);
}
.text-center .divider-gold { margin-inline: auto; }

/* Trust strip / pills */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-xs);
  font-weight: 500;
}
.trust-pill svg { color: var(--ella-gold); }

/* Section header (title + lead) */
.section-header {
  max-width: var(--container-narrow);
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header h2 {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-4);
}
.section-header h2 .accent { color: var(--ella-gold-dark); }
.section-charcoal .section-header h2 .accent { color: var(--ella-gold); }
.section-header p {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
}
.section-charcoal .section-header p { color: rgba(255,255,255,0.72); }
