/* ═══════════════════════════════════════════
   JACQUELINE CARTER — MIDWIFERY WEBSITE
   Premium Dark Luxury · Midnight Blue + Mint
   ═══════════════════════════════════════════ */

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

:root {
  --midnight:     #0a1628;
  --midnight-lt:  #0d1b2a;
  --midnight-mid: #132740;
  --midnight-card:#162d47;
  --gold:         #c9a84c;
  --gold-dim:     #a8872e;
  --gold-light:   #e2c97e;
  --mint:         #7ecfb8;
  --mint-dim:     #5fb89f;
  --mint-light:   #a8e6cf;
  --cream:        #f5f0e8;
  --cream-dim:    #d4cfc5;
  --white:        #ffffff;
  --text-primary: #f0ebe0;
  --text-secondary:#a8a29e;
  --text-muted:   #6b6560;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--midnight);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─── */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section__title--gold {
  color: var(--gold);
  font-style: italic;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--midnight);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav__logo-mark {
  color: var(--gold);
}

.nav__logo-text {
  transition: color 0.3s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  color: var(--gold) !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 8px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 24px;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}

.mobile-menu__link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  padding: 12px 32px;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(19, 39, 64, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    var(--midnight);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201, 168, 76, 0.5) 60px, rgba(201, 168, 76, 0.5) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201, 168, 76, 0.5) 60px, rgba(201, 168, 76, 0.5) 61px);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__left { position: relative; z-index: 2; }

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero__headline--gold {
  color: var(--gold);
  font-style: italic;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
}

/* Hero right — image stack */
.hero__right {
  position: relative;
  z-index: 2;
}

.hero__image-stack {
  position: relative;
  height: 580px;
}

.hero__image {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero__image--main {
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
}

.hero__image--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--accent {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 45%;
  border: 3px solid rgba(201, 168, 76, 0.3);
}

.hero__image--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-accent-mark {
  position: absolute;
  bottom: 38%;
  left: 38%;
  z-index: 3;
  background: var(--midnight);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.hero__gold-line {
  position: absolute;
  bottom: 60px;
  left: 24px;
  right: 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 80%);
  opacity: 0.3;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--midnight-lt);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.services__header {
  text-align: center;
  margin-bottom: 72px;
}

.services__header .section__lead { margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--midnight-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--mint));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, var(--midnight-card), rgba(201, 168, 76, 0.04));
}

.service-card--featured::before { opacity: 1; }

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  padding: 4px 10px;
  border-radius: 2px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--midnight);
  position: relative;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.about__image-frame img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: 1;
  opacity: 0.6;
}

.about__content { position: relative; z-index: 2; }

.about__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__credentials {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.credential { display: flex; flex-direction: column; gap: 4px; }

.credential__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.credential__value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════
   APPROACH
   ═══════════════════════════════════════════ */
.approach {
  padding: 120px 0;
  background: var(--midnight-lt);
  position: relative;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.approach__header {
  text-align: center;
  margin-bottom: 72px;
}

.approach__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.approach__step {
  position: relative;
  padding: 32px 24px;
  border-radius: 8px;
  background: var(--midnight-card);
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.4s var(--ease-out);
}

.approach__step:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.approach__step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.approach__step-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.approach__step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════ */
.testimonial {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(19, 39, 64, 0.6) 0%, transparent 70%),
    var(--midnight);
  position: relative;
}

.testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -40px;
  left: -20px;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial__footer { position: relative; z-index: 1; }

.testimonial__author {
  font-size: 0.875rem;
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--midnight-lt);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 6px;
  overflow: hidden;
  background: var(--midnight-card);
  transition: border-color 0.3s;
}

.faq__item.open { border-color: rgba(201, 168, 76, 0.25); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.faq__question:hover { color: var(--gold); }

.faq__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  color: var(--gold);
}

.faq__item.open .faq__toggle {
  background: rgba(201, 168, 76, 0.1);
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--midnight);
  position: relative;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 440px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

.contact__detail-value:hover { color: var(--gold); }

/* Form */
.contact__form-wrap {
  background: var(--midnight-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 40px;
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group { display: flex; flex-direction: column; gap: 8px; }

.form__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  background: var(--midnight);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form__input::placeholder { color: var(--text-muted); }

.form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form success */
.contact__form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success__icon {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(126, 207, 184, 0.1);
  border: 1px solid rgba(126, 207, 184, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  background: var(--midnight);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand { display: flex; flex-direction: column; gap: 12px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer__logo-mark { color: var(--gold); }

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__disclaimer {
  font-size: 0.6875rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__right { display: none; }
  .hero__gold-line { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .approach__steps { grid-template-columns: repeat(2, 1fr); }
  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__image-frame img { height: 480px; }
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 24px 80px; min-height: auto; }
  .hero__headline { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__stat-divider { display: none; }

  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about__credentials { flex-direction: column; gap: 20px; }

  .approach { padding: 80px 0; }
  .approach__steps { grid-template-columns: 1fr; }

  .testimonial { padding: 80px 0; }

  .faq { padding: 80px 0; }

  .contact { padding: 80px 0; }
  .contact__form-wrap { padding: 24px; }
  .contact__form-row { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; }
  .footer__nav { gap: 16px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
