/*
Theme Name: Elena Zolotareva
Theme URI: https://elenazolotoreva.com
Author: Built from design_handoff_landing
Description: Classic WordPress theme recreating the Elena Zolotareva psychologist landing page design. Real WP nav menu, blog integration (WP_Query), Customizer settings for booking/contact links, working contact form, RU/RO bilingual toggle.
Version: 1.0.2
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: elena-zolotoreva
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* =========================================================
   Елена Золотарёва — Psychologist landing page
   Design tokens from design_handoff_landing/README.md
   ========================================================= */

:root {
  --bg: #F6F0E7;
  --surface: #FBF7F0;
  --primary: #2C4A53;
  --footer-bg: #24404A;
  --gold: #BF9B6A;
  --terracotta: #C0895E;
  --heading: #2E2A24;
  --body: #5A544A;
  --muted: #6B6459;
  --subtle: #8A806F;
  --faint: #A99E8C;
  --border: #E7DECF;
  --border-card: #EADFCC;
  --border-btn: #E0D5C3;
  --outline: #D8C7AC;
  --dark-text: #EDE4D6;
  --dark-text-2: #D6CCBC;
  --footer-text: #C6BEB0;
  --footer-muted: #8FA0A2;
  --footer-muted-2: #9FADA9;
  --icon-tile: #F3E7D7;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;

  --container-max: 1180px;
  --section-pad-v: clamp(56px, 8vw, 108px);
  --section-pad-h: clamp(18px, 5vw, 68px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--heading);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: #D9C6A8; color: #2C2A24; }

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--gold); }

button { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-head h2 { margin: 12px 0 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--heading);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px var(--section-pad-h);
  background: rgba(246, 240, 231, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-brand { min-width: 0; }
.nav-brand-name { overflow-wrap: break-word; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-sub {
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #9A9080;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
}

.nav-links a { color: inherit; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border-btn);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
}

.lang-switch button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--subtle);
  padding: 5px 11px;
  border-radius: 999px;
}

.lang-switch button.active {
  background: var(--primary);
  color: var(--surface);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: var(--surface);
  background: var(--primary);
  padding: 15px 26px;
  box-shadow: 0 10px 24px rgba(44, 74, 83, 0.26);
}

.btn-secondary {
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--border-btn);
  padding: 14px 22px;
}

.btn-play-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--surface);
}

.nav-cta {
  font-size: 14px;
  padding: 11px 20px;
  box-shadow: none;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) var(--section-pad-h) clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  min-height: 660px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 26%;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 240, 231, 0.98) 0%, rgba(246, 240, 231, 0.95) 25%, rgba(246, 240, 231, 0.62) 43%, rgba(246, 240, 231, 0.16) 60%, rgba(246, 240, 231, 0) 80%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 240, 231, 0) 60%, rgba(246, 240, 231, 0.5) 82%, #F6F0E7 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 26px;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  max-width: 500px;
  margin: 0 0 28px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-top: 26px;
  border-top: 1px solid #E4DBCB;
}

.stat-rating { display: flex; flex-direction: column; gap: 6px; }

.stat-avatars { display: flex; align-items: center; gap: 8px; }

.avatar-dots { display: flex; }

.avatar-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.avatar-dot:not(:first-child) { margin-left: -10px; }

.stat-rating-num { font-weight: 700; font-size: 15px; color: var(--primary); }

.stat-rating-sub { font-size: 12px; color: var(--subtle); }

.stat-divider { width: 1px; height: 42px; background: #E4DBCB; }

.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.stat-label { font-size: 12px; color: var(--subtle); margin-top: 5px; }

/* Booking widget */

.booking-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.booking-card {
  width: 342px;
  max-width: 100%;
  background: rgba(251, 247, 240, 0.97);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: 0 26px 64px rgba(44, 44, 36, 0.22);
}

.booking-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.booking-month-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.booking-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-month-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.booking-weekdays,
.booking-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.booking-weekdays { margin-bottom: 6px; }

.booking-weekday {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--faint);
  padding: 4px 0;
}

.booking-day {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 13px;
  padding: 7px 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  color: #4A443B;
}

.booking-day.is-dim { color: #C9BEAC; cursor: default; }

.booking-day.is-selected {
  background: var(--primary);
  color: var(--surface);
  font-weight: 700;
}

.booking-time-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 16px 0 8px;
}

.booking-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.booking-time {
  border: 1px solid var(--border);
  background: #FFFFFF;
  color: #4A443B;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 0;
  border-radius: 9px;
  cursor: pointer;
}

.booking-time.is-selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--surface);
}

.booking-submit {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--surface);
  background: var(--primary);
  padding: 13px;
  border-radius: 11px;
}

.booking-sync-note {
  text-align: center;
  font-size: 11px;
  color: var(--faint);
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===================== FEATURE STRIP ===================== */

.feature-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 20px var(--section-pad-h);
}

.feature-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4A443B;
  font-weight: 500;
}

.feature-item .icon { color: var(--terracotta); }

/* =========================== ABOUT =========================== */

.about {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1.15fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: var(--section-pad-v) var(--section-pad-h);
}

.about-photo-wrap { position: relative; }

.about-photo-outline {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--outline);
  border-radius: 20px;
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(300px, 30vw, 420px);
  object-fit: cover;
  object-position: 55% center;
  border-radius: 20px;
}

.about h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; margin: 12px 0 18px; }

.about p {
  font-size: 16px;
  line-height: 1.62;
  color: var(--body);
  margin: 0 0 16px;
  max-width: 620px;
}

.about-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--surface);
  background: var(--primary);
  padding: 13px 26px;
  border-radius: 11px;
  margin-top: 8px;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: center;
}

.cred-card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 26px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cred-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #E2D3BE;
  color: var(--terracotta);
  margin-bottom: 15px;
}

.cred-num {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.cred-label { font-size: 12px; color: var(--subtle); margin-top: 6px; }

/* ===================== APPROACH DARK STRIP ===================== */

.approach {
  background: var(--primary);
  color: var(--dark-text);
  padding: clamp(36px, 5vw, 60px) var(--section-pad-h);
}

.approach-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: #F3E7D7;
  margin-bottom: 52px;
  font-weight: 700;
}

.approach-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.approach-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}

.approach-item .icon { color: var(--gold); }

.approach-item span:last-child { font-size: 14px; font-weight: 600; line-height: 1.4; }

.approach-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(237, 228, 214, 0.16);
}

/* ===================== REQUESTS ===================== */

.requests { padding: var(--section-pad-v) var(--section-pad-h); }

.requests-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.request-card {
  flex: 0 1 270px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 13px;
  padding: 13px 15px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.request-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(44, 44, 36, 0.07);
  border-color: #DFD0B8;
}

.request-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--icon-tile);
  color: var(--terracotta);
}

.request-label { font-size: 14px; font-weight: 600; color: #3A352E; line-height: 1.28; }

/* Blog teaser */

.blog-teaser { max-width: var(--container-max); margin: 60px auto 0; }

.blog-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.blog-teaser-head h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 8px 0 0;
}

.blog-teaser-head a { font-size: 14px; font-weight: 600; color: var(--primary); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.blog-card {
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  overflow: hidden;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(44, 44, 36, 0.08);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #EFE6D6, #E2D3BE);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  font-size: 12px;
}

.blog-card-body { padding: 20px 22px 24px; }

.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #7A7263;
  line-height: 1.5;
  margin: 0 0 14px;
}

.blog-card-link { font-size: 13px; font-weight: 600; color: var(--primary); }

/* =========================== VIDEO =========================== */

.video-section { padding: clamp(20px, 3vw, 40px) var(--section-pad-h) clamp(56px, 8vw, 100px); }

.video-inner { max-width: 1000px; margin: 0 auto; text-align: center; }

.video-inner h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; margin: 12px 0 10px; }

.video-lede {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 30px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(44, 44, 36, 0.16);
  background: linear-gradient(135deg, #DCE3DE, #C7D2CC);
  cursor: pointer;
  border: none;
  padding: 0;
}

.video-frame img { width: 100%; height: 100%; object-fit: cover; }

.video-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--faint);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(44, 74, 83, 0.86);
  color: var(--surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================== PROCESS =========================== */

.process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(56px, 8vw, 100px) var(--section-pad-h);
}

.process-head { text-align: center; margin-bottom: 50px; }
.process-head h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin: 12px 0 0; }

.steps-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.step-line {
  position: absolute;
  top: 19px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, #D8C7AC 0 6px, transparent 6px 12px);
  z-index: 0;
}

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

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 { font-size: 21px; margin: 0 0 6px; }
.step-meta { font-size: 12px; font-weight: 600; color: var(--terracotta); margin-bottom: 8px; }
.step p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

/* =========================== PRICING =========================== */

.pricing { padding: var(--section-pad-v) var(--section-pad-h); }

.pricing-head { text-align: center; margin-bottom: 46px; }
.pricing-head h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin: 12px 0 0; }

.pricing-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.price-card.is-highlighted { border: 1.5px solid var(--gold); }

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}

.price-name { font-size: 15px; font-weight: 600; color: var(--heading); }
.price-sub, .price-note { font-size: 12px; color: var(--subtle); }
.price-sub { margin-top: 3px; }
.price-note { margin-bottom: 18px; }

.price-amount {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  margin: 16px 0 4px;
  color: var(--gold);
}

.price-cta {
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--surface);
  background: var(--primary);
  padding: 12px;
  border-radius: 10px;
  margin-top: auto;
}

.extras-card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
}

.extras-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  text-align: left;
  margin: 0 0 16px;
}

.extras-category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}

.extras-category:not(:first-child) { margin-top: 20px; }

.extras-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #EFE6D6;
  font-size: 14px;
}

.extras-item span:first-child { color: #3A352E; }
.extras-item span:last-child { color: var(--primary); font-weight: 600; white-space: nowrap; }

.extras-note { font-size: 12px; color: var(--faint); text-align: center; margin: 20px 0 0; }

/* =========================== REVIEWS =========================== */

.reviews {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(56px, 8vw, 100px) var(--section-pad-h);
}

.reviews-head p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }
.reviews-head h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin: 12px 0 12px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: var(--container-max);
  margin: 40px auto 0;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 28px 26px;
}

.review-quote-mark {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.5;
  color: var(--outline);
  height: 26px;
}

.review-text { font-size: 15px; line-height: 1.6; color: #4A443B; margin: 0 0 20px; }

.review-person { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.review-name { font-size: 14px; font-weight: 700; color: var(--heading); }
.review-stars { font-size: 12px; color: var(--terracotta); }

.reviews-footnote { text-align: center; font-size: 13px; color: var(--faint); margin: 26px 0 0; }

/* =========================== FAQ =========================== */

.faq { padding: var(--section-pad-v) var(--section-pad-h); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 28px; }
.faq-head h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.1; margin: 12px 0 0; }

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 4px 20px;
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-chev { color: var(--terracotta); flex: none; transition: transform .25s ease; }

.faq-item p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }

/* =========================== PHILOSOPHY =========================== */

.philosophy {
  background: var(--primary);
  color: var(--dark-text);
  padding: clamp(56px, 8vw, 104px) var(--section-pad-h);
}

.philosophy-head { max-width: 900px; margin: 0 auto; text-align: center; }

.philosophy-head .eyebrow { color: var(--gold); }

.philosophy-head h2 {
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
  margin: 16px 0 30px;
}

.philosophy-body { max-width: 760px; margin: 0 auto; }
.philosophy-body p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--dark-text-2);
  margin: 0 0 18px;
  text-align: center;
}

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

.cta-section { padding: clamp(50px, 7vw, 96px) var(--section-pad-h); }

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(105deg, #EFE6D6 0%, #ECE1CE 45%, #E6D8C1 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  max-width: var(--container-max);
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(44, 44, 36, 0.10);
}

.cta-text {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(38px, 5vw, 64px);
}

.cta-title { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin: 0 0 14px; text-align: left; }

.cta-text > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  max-width: 400px;
  margin: 0 0 28px;
  text-align: left;
}

.cta-fineprint { font-size: 13px; color: var(--subtle); margin-top: 16px; overflow-wrap: break-word; }

.cta-img {
  position: relative;
  align-self: stretch;
  min-height: 340px;
}

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

.cta-img::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #ECE1CE 0%, rgba(236, 225, 206, 0.4) 20%, rgba(236, 225, 206, 0) 46%);
}

/* =========================== CONTACT FORM =========================== */

.contact-form-section {
  padding: 0 var(--section-pad-h) clamp(56px, 8vw, 108px);
}

.contact-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
}

.contact-form-card .section-head { margin-bottom: 26px; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .full { grid-column: 1 / -1; }

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--heading);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
}

.contact-form textarea { resize: vertical; min-height: 90px; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  margin-top: 4px;
}

.contact-form-note { font-size: 12px; color: var(--faint); margin-top: 12px; }

.form-status {
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  display: none;
}

.form-status.is-visible { display: block; }
.form-status.is-success { color: #3E6B4F; }
.form-status.is-error { color: #B4483B; }

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

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: clamp(44px, 6vw, 68px) var(--section-pad-h) 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(198, 190, 176, 0.16);
}

.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: #F1EADD;
}

.footer-brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin-top: 4px;
}

.footer-blurb { font-size: 13.5px; line-height: 1.6; color: var(--footer-muted-2); max-width: 300px; margin: 0; }

.footer-col-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin-bottom: 14px;
  overflow-wrap: break-word;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; min-width: 0; }
.footer-links a { color: var(--footer-text); overflow-wrap: break-word; }

.footer-social { display: flex; flex-wrap: wrap; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(198, 190, 176, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 22px;
  font-size: 12.5px;
  color: #7E8E90;
}

/* =========================== BREAKPOINTS =========================== */

@media (max-width: 1180px) {
  .about { grid-template-columns: 0.85fr 1.15fr; }
  .about .cred-grid { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  /* The 90deg scrim above is tuned for the desktop 2-column hero (text confined
     to the left ~50%, photo visible on the right). Once the layout collapses to
     one column, text spans the full width, including the low-opacity right side
     of that gradient — unreadable over the photo. Fade top-to-bottom instead,
     solid well before the heading starts. */
  .hero-bg::before {
    background: linear-gradient(180deg, rgba(246, 240, 231, 0.55) 0%, rgba(246, 240, 231, 0.92) 16%, #F6F0E7 32%);
  }
  .about { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .booking-wrap { justify-content: stretch; }
  .booking-card { position: static; margin-top: 20px; width: 100%; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 12px; }
  .approach-row .approach-divider { display: none; }
  .approach-row .approach-item:last-child { grid-column: 1 / -1; }
  .steps-row { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .step { text-align: center; }
  .step-num { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .cta-title { font-size: clamp(24px, 6vw, 34px); }
  .cta-title br { display: none; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .cta-section .btn { padding: 14px 16px; font-size: 14.5px; }
  .pricing-layout { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-text { padding: 32px 24px 28px; }
  .cta-img { min-height: 240px; }
  .cta-section .btn { width: 100%; box-sizing: border-box; padding: 15px 14px; font-size: 14.5px; white-space: normal; }
  .about3 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-sub, .nav-cta { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 27px; }
  .cta-title br { display: none; }
  .footer-grid { gap: 26px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}
