/*
  ElZehra — Counselling & Coaching for Women
  Redesigned CSS
  
  Design system:
  - Palette: parchment warm base, sage green as the calm signal, dusty rose accent
  - Type: Cormorant Garamond (display/headlines) + DM Sans (body, warmer than Inter)
  - Signature: italic serif headlines in the hero + botanical orbs as calm atmosphere
*/

/* ================================
   1. DESIGN TOKENS
================================ */

:root {
  /* Palette */
  --bg:          #F7F2EB;      /* warm parchment */
  --bg-soft:     #EDE5D9;      /* deeper parchment */
  --bg-sage:     #EDF0EB;      /* sage-tinted surface */
  --text:        #2A2630;      /* near-black, warm */
  --muted:       #6E6A72;      /* subdued text */
  --accent:      #9B6A6C;      /* dusty rose */
  --accent-dk:   #7D5355;      /* darker rose */
  --sage:        #728C6A;      /* sage green */
  --sage-lt:     #A8BBA0;      /* light sage */
  --gold:        #C5A45E;      /* warm gold line */
  --card:        #FFFCF8;      /* card surface */
  --border:      #E2D5C7;      /* soft border */

  /* Typography */
  --ff-display:  "Cormorant Garamond", Georgia, serif;
  --ff-body:     "DM Sans", system-ui, sans-serif;

  /* Spacing */
  --container:   1160px;
  --section-v:   108px;

  /* Radius */
  --r-xl:  32px;
  --r-lg:  22px;
  --r-md:  14px;
  --r-sm:   8px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 20px 54px rgba(42, 38, 48, 0.08);
  --shadow-lift: 0 28px 64px rgba(42, 38, 48, 0.13);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.32s;
}

/* ================================
   2. RESET & BASE
================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 95% 5%,  rgba(114, 140, 106, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 5% 90%,  rgba(197, 164, 94, 0.10) 0%, transparent 60%);
  color: var(--text);
  line-height: 1.72;
  overflow-x: hidden;
  font-size: 1rem;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: rgba(155, 106, 108, 0.18); color: var(--text); }

/* ================================
   3. ACCESSIBILITY
================================ */

.skip-link {
  position: absolute;
  top: -120px;
  left: 20px;
  z-index: 9999;
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 20px; }

:focus-visible {
  outline: 2.5px solid rgba(155, 106, 108, 0.55);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

/* ================================
   4. LAYOUT UTILITIES
================================ */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: var(--section-v) 0;
  position: relative;
}

/* Heading block */
.section-head {
  max-width: 700px;
  margin-bottom: 56px;
}
.section-head.centered {
  text-align: center;
  margin-inline: auto;
}
.section-head p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sage);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 999px;
  flex-shrink: 0;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.eyebrow-light::before { background: rgba(255,255,255,0.4); }

/* Shared h2 display style */
h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 18px;
}

/* ================================
   5. BUTTONS
================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 36px rgba(155, 106, 108, 0.3);
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(155, 106, 108, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ================================
   6. HEADER / NAV
================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(247, 242, 235, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 213, 199, 0.6);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 252, 248, 0.93);
  box-shadow: 0 8px 30px rgba(42, 38, 48, 0.07);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  transition: color var(--dur) var(--ease);
}
.logo:hover .logo-text { color: var(--accent); }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(155, 106, 108, 0.07);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  margin-left: 8px;
  border-radius: var(--r-pill);
  background: var(--text);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  box-shadow: 0 4px 14px rgba(42,38,48,0.06);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 999px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ================================
   7. HERO
================================ */

.hero {
  min-height: 100svh;
  padding: calc(80px + 60px) 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background orbs — botanical calm */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.hero-orb-1 {
  width: 520px; height: 520px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(114,140,106,0.22), transparent 70%);
}
.hero-orb-2 {
  width: 380px; height: 380px;
  bottom: 60px; left: -60px;
  background: radial-gradient(circle, rgba(197,164,94,0.18), transparent 70%);
}
.hero-orb-3 {
  width: 280px; height: 280px;
  top: 40%; left: 45%;
  background: radial-gradient(circle, rgba(155,106,108,0.12), transparent 70%);
}
/* Leaf shapes (subtle botanical detail) */
.hero-leaf {
  position: absolute;
  opacity: 0.07;
}
.hero-leaf-1 {
  width: 340px; height: 500px;
  top: -80px; right: 120px;
  background: var(--sage);
  border-radius: 50% 0 50% 0 / 60% 0 60% 0;
  transform: rotate(-25deg);
}
.hero-leaf-2 {
  width: 220px; height: 340px;
  bottom: -60px; right: 40px;
  background: var(--sage);
  border-radius: 0 50% 0 50% / 0 60% 0 60%;
  transform: rotate(15deg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(114, 140, 106, 0.15);
  color: var(--sage);
  font-size: 0.68rem;
  flex-shrink: 0;
}

/* Hero card */
.hero-card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-lt), var(--gold), var(--accent));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.hcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(114,140,106,0.1);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  width: fit-content;
}
.hcard-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}

.hcard-quote {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

.hcard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hcard-chips span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: var(--r-pill);
}

.hcard-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hcard-initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-lt), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}
.hcard-meta strong {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.hcard-meta p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================================
   8. MIRROR SECTION
================================ */

.mirror-section {
  background: var(--bg-sage);
  border-top: 1px solid rgba(114,140,106,0.15);
  border-bottom: 1px solid rgba(114,140,106,0.15);
}

.mirror-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mirror-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mirror-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.mcard-icon {
  width: 44px; height: 44px;
  background: rgba(114,140,106,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 18px;
}
.mcard-icon svg { width: 22px; height: 22px; }

.mirror-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
}
.mirror-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================
   9. SERVICES
================================ */

.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(155,106,108,0.25);
}

.sc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(155,106,108,0.08);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.services-note {
  background: linear-gradient(135deg, rgba(114,140,106,0.08), rgba(197,164,94,0.07));
  border: 1px solid rgba(114,140,106,0.18);
  border-radius: var(--r-lg);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.services-note p {
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}
.services-note strong { color: var(--text); }

/* ================================
   10. PROCESS
================================ */

.process-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(155,106,108,0.16);
}

.step-content h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ================================
   11. ABOUT
================================ */

.about-section { background: var(--bg); }

.about-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-initial {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-lt) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.04em;
}

.about-card-info {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.about-card-info strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.about-card-info span {
  font-size: 0.88rem;
  color: var(--muted);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-badges span {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(114,140,106,0.1);
  border: 1px solid rgba(114,140,106,0.2);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.about-quote {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* About content side */
.about-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 16px;
}

.about-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.about-list li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ================================
   12. REVIEWS
================================ */

.reviews-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.review-card blockquote p {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.reviewer-initial {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-soft), var(--sage-lt));
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage);
  flex-shrink: 0;
}

.review-card footer cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.review-card footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================================
   13. FEES
================================ */

.fees-section { background: var(--bg); }

.fees-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.fees-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.fees-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.fees-content .btn { margin-top: 10px; }

.fees-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.fee-block { padding: 4px 0 20px; }
.fee-block:first-child { padding-top: 0; }

.fee-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.fee-price {
  font-family: var(--ff-display);
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.fee-sub {
  font-size: 0.87rem;
  color: var(--muted);
}

.fee-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}

.fee-block-sm {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fee-block-sm p {
  font-size: 0.87rem;
  color: var(--muted);
}

/* ================================
   14. FAQ
================================ */

.faq-section { background: var(--bg-soft); }

.faq-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 108px;
}
.faq-intro h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.faq-intro p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item.active { border-color: rgba(155,106,108,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--dur) var(--ease);
}
.faq-question:hover { color: var(--accent); }
.faq-item.active .faq-question { color: var(--accent); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item.active .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after { background: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 22px 22px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ================================
   15. CTA SECTION
================================ */

.cta-section { padding: var(--section-v) 0; }

.cta-inner {
  background: linear-gradient(140deg, #2A2630 0%, #3D3244 50%, #2A2630 100%);
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,164,94,0.2), transparent 70%);
  pointer-events: none;
}
.cta-inner::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,140,106,0.18), transparent 70%);
  pointer-events: none;
}

.cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.66);
  line-height: 1.72;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--r-lg);
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.cta-wa {
  background: #25D366;
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}
.cta-wa:hover { background: #20BA5A; }

.cta-email {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
}
.cta-email:hover { background: rgba(255,255,255,0.12); }

.cta-phone {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
}
.cta-phone:hover { background: rgba(255,255,255,0.12); }

.cta-link-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-wa .cta-link-icon { background: rgba(0,0,0,0.15); }
.cta-link-icon svg { width: 18px; height: 18px; }

/* ================================
   16. MOBILE STICKY CTA
================================ */

.mobile-sticky-cta { display: none; }

/* ================================
   17. FOOTER
================================ */

.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 10px;
  transition: color var(--dur) var(--ease);
}
.footer-logo:hover { color: var(--accent); }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-location { margin-top: 4px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--accent); }

.footer-crisis {
  padding: 18px 22px;
  background: rgba(155,106,108,0.07);
  border: 1px solid rgba(155,106,108,0.15);
  border-radius: var(--r-md);
  align-self: start;
}
.footer-crisis p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}
.footer-crisis strong { color: var(--text); }
.footer-crisis a {
  color: var(--accent);
  font-weight: 500;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.83rem;
  color: var(--muted);
}

/* ================================
   18. REVEAL ANIMATIONS
================================ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   19. RESPONSIVE — 1080px
================================ */

@media (max-width: 1080px) {
  :root { --section-v: 88px; }

  .hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 48px;
  }
  .mirror-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrapper { grid-template-columns: 360px 1fr; gap: 52px; }
  .fees-wrapper { grid-template-columns: 1fr 380px; gap: 48px; }
  .faq-wrapper { grid-template-columns: 280px 1fr; gap: 48px; }
}

/* ================================
   20. RESPONSIVE — 860px
================================ */

@media (max-width: 860px) {
  html { scroll-padding-top: 80px; }

  .container { width: min(100% - 32px, var(--container)); }

  /* Nav mobile */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(255,252,248,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: opacity var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                visibility var(--dur) var(--ease);
    z-index: 999;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .nav-link, .nav-cta {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.93rem;
  }
  .nav-cta { margin: 4px 0 0; text-align: center; }

  /* Hero */
  .hero { padding: calc(80px + 52px) 0 64px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content h1 { font-size: clamp(3.4rem, 13vw, 5.6rem); }
  .hero-card { max-width: 460px; }

  /* Layouts to single column */
  .about-wrapper,
  .fees-wrapper,
  .faq-wrapper,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro { position: static; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .step-number { flex-shrink: 0; margin-bottom: 0; }

  .reviews-grid { grid-template-columns: 1fr; }
}

/* ================================
   21. RESPONSIVE — 680px
================================ */

@media (max-width: 680px) {
  :root { --section-v: 68px; }

  body { padding-bottom: 76px; }

  .mirror-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .services-note {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 999;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: #fff;
    font-size: 0.93rem;
    font-weight: 600;
    box-shadow: 0 18px 42px rgba(155,106,108,0.38);
    text-decoration: none;
  }

  .cta-inner { padding: 36px 24px; }
}

/* ================================
   22. RESPONSIVE — 460px
================================ */

@media (max-width: 460px) {
  .container { width: min(100% - 24px, var(--container)); }

  .hero-content h1 { font-size: clamp(3rem, 15vw, 4.4rem); }

  .review-card { padding: 22px; }
  .about-card, .fees-card { padding: 26px; }
}

/* ================================
   23. REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hcard-badge::before { animation: none; }
}