/* ============================================================
   ELEVARE GROUP — Nadia Teleguz
   Palette: Black / White / Gold / Emerald
   Fonts: Cormorant (display) + Switzer (body)
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=switzer@300,400,500,600,700&f[]=cormorant@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --color-bg:          #0a0a0a;
  --color-surface:     #111111;
  --color-surface-2:   #181818;
  --color-surface-3:   #222222;
  --color-border:      #2a2a2a;
  --color-divider:     #1f1f1f;

  --color-text:        #f0ede6;
  --color-text-muted:  #9a9590;
  --color-text-faint:  #504c47;
  --color-text-on-gold: #0a0a0a;

  --color-gold:        #c9993d;
  --color-gold-light:  #e8bb60;
  --color-gold-dark:   #8f6a1e;
  --color-gold-subtle: rgba(201,153,61,0.12);

  --color-emerald:     #2d8a5e;
  --color-emerald-light: #3ab87c;
  --color-emerald-subtle: rgba(45,138,94,0.12);

  --color-white:       #ffffff;
  --color-black:       #000000;

  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body:    'Switzer', 'Helvetica Neue', sans-serif;

  --text-xs:    clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:    clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base:  clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:    clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:    clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:   clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:   clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero:  clamp(3rem,     0.5rem  + 7vw,    7rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1.25rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201,153,61,0.2);

  --transition: 220ms cubic-bezier(0.16,1,0.3,1);

  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

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

img, video { 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, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
}
p, li { text-wrap: pretty; max-width: 70ch; }
button { cursor: pointer; background: none; border: none; }

::selection { background: var(--color-gold-subtle); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-surface); }
::-webkit-scrollbar-thumb { background: var(--color-gold-dark); border-radius: 3px; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 4vw, var(--space-12));
}
.container--narrow {
  max-width: var(--content-narrow);
}
.container--default {
  max-width: var(--content-default);
}

.gold { color: var(--color-gold); }
.emerald { color: var(--color-emerald-light); }
.text-muted { color: var(--color-text-muted); }

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.section--sm {
  padding-block: clamp(var(--space-10), 5vw, var(--space-20));
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-block: var(--space-8);
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.gold-rule span {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── LABEL CHIP ─────────────────────────────────────────── */
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-gold-subtle);
  border: 1px solid rgba(201,153,61,0.3);
  color: var(--color-gold-light);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.85em 2.25em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  color: var(--color-text-on-gold);
  box-shadow: 0 2px 16px rgba(201,153,61,0.3);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  box-shadow: 0 4px 28px rgba(201,153,61,0.5);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.btn--outline:hover {
  background: var(--color-gold-subtle);
  box-shadow: 0 0 20px rgba(201,153,61,0.2);
  transform: translateY(-1px);
}
.btn--emerald {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-light) 100%);
  color: #fff;
  box-shadow: 0 2px 16px rgba(45,138,94,0.3);
}
.btn--emerald:hover {
  box-shadow: 0 4px 28px rgba(45,138,94,0.5);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}
.btn--lg { padding: 1em 2.75em; font-size: var(--text-base); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
.nav__logo-sub {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--color-text); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: var(--space-4); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  padding: var(--space-8);
  border-bottom: 1px solid var(--color-border);
  z-index: 99;
  flex-direction: column;
  gap: var(--space-6);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.nav__mobile a:hover { color: var(--color-gold); }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-12) var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 28ch;
  margin-top: var(--space-4);
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col ul a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--color-text); }
.footer__bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: none;
}
.footer__bottom a { color: var(--color-text-faint); text-decoration: none; }
.footer__bottom a:hover { color: var(--color-gold); }
.footer__disclaimer {
  margin-top: var(--space-8);
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-black);
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(201,153,61,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(45,138,94,0.06) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.hero__eyebrow span {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.hero__headline em {
  font-style: italic;
  color: var(--color-gold);
}
.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.hero__scroll-hint svg {
  color: var(--color-gold);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Split hero layout */
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: 100dvh;
  padding-top: 80px;
}
.hero--split .hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero__portrait-frame {
  position: relative;
  display: inline-block;
}
.hero__portrait-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201,153,61,0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero__portrait-frame::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  background: var(--color-gold-subtle);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero__portrait-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.hero__portrait-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--color-surface-2) 0%, var(--color-surface-3) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

/* Stats row */
.hero__stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}
.hero__stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: var(--space-1);
}

@media (max-width: 860px) {
  .hero--split .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero--split .hero__visual { justify-content: center; order: -1; }
  .hero--split .hero__eyebrow { justify-content: center; }
  .hero--split .hero__cta-group { justify-content: center; }
  .hero--split .hero__sub { margin-inline: auto; }
  .hero__stats { justify-content: center; }
  .hero__portrait-placeholder, .hero__portrait-img { max-width: 280px; }
}

/* ── SECTION HEADINGS ───────────────────────────────────── */
.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.section-eyebrow--center { justify-content: center; }
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.section-eyebrow--center::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--color-gold); }
.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 60ch;
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(201,153,61,0.4);
  box-shadow: var(--shadow-gold);
}
.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-subtle);
  border: 1px solid rgba(201,153,61,0.2);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--color-gold);
  flex-shrink: 0;
}
.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.card__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  padding-top: var(--space-4);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold-subtle);
  border: 1px solid rgba(201,153,61,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-gold);
  font-size: var(--text-sm);
}
.testimonial__name {
  font-weight: 600;
  font-size: var(--text-sm);
}
.testimonial__role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ── ANIMATE ON SCROLL ──────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-aos].aos-visible {
  opacity: 1;
  transform: none;
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding-top: 140px;
  padding-bottom: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,153,61,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 55ch;
  margin-inline: auto;
  margin-top: var(--space-5);
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
}
.process-step__num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-subtle);
  border: 1px solid rgba(201,153,61,0.25);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}
.process-step__content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.process-step__content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.8em 1em;
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,153,61,0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-faint); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--color-surface-2); }

/* ── GOLD BAND CTA ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(201,153,61,0.08) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.cta-band__sub {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}

/* ── RESPONSIVE MISC ────────────────────────────────────── */
@media (max-width: 640px) {
  .btn { padding: 0.8em 1.5em; }
  .btn--lg { padding: 0.9em 2em; }
}
