:root {
  --cream: #F6F1E7;
  --cream-deep: #EFE9DB;
  --cream-input: #FBFAF6;
  --ink: #2C2E1B;
  --ink-soft: #4D4E30;
  --olive: #6E7A34;
  --olive-dark: #545B25;
  --olive-pale: #ECEDD5;
  --terracotta: #D96C42;
  --terracotta-dark: #C65A34;
  --peach: #F5E3D4;
  --muted: #5E6B62;
  --muted-soft: #7A857C;
  --muted-warm: #96907F;
  --muted-light: #A6ACA2;
  --disabled: #C2C7BE;
  --disabled-bg: #F1EDE3;
  --on-dark: #E4E3CE;
  --on-dark-soft: #BEBFA0;
  --on-dark-label: #B4B683;
  --on-dark-tick: #C0C77E;
  --on-dark-faint: #8B8B6C;
  --line: rgba(44, 46, 27, 0.08);
  --line-strong: rgba(44, 46, 27, 0.14);
  --header-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--terracotta); color: #fff; }

input, button, textarea { font-family: inherit; }
input::placeholder { color: #9AA39B; }

h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow { max-width: 820px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}

.btn-sm { padding: 12px 22px; font-size: 14.5px; }
.btn-lg { padding: 16px 30px; font-size: 16px; font-weight: 800; }
.btn-block { width: 100%; padding: 14px; font-size: 15px; font-weight: 800; margin-top: 24px; }

.btn-primary { background: var(--olive); color: #fff; }
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn-primary.btn-lg { box-shadow: 0 12px 26px rgba(110, 122, 52, .28); }
.btn-primary.btn-lg:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(44, 46, 27, 0.18);
  padding: 16px 26px;
  font-weight: 700;
}
.btn-ghost:hover { border-color: var(--olive); color: var(--olive-dark); }

.btn-accent { background: var(--terracotta); color: #fff; }
.btn-accent:hover { background: var(--terracotta-dark); }

.btn-outline {
  background: transparent;
  color: var(--olive-dark);
  border: 1px solid var(--olive);
}
.btn-outline:hover { background: var(--olive-pale); }

.link-button {
  background: transparent;
  border: none;
  color: var(--muted-soft);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}
.link-button:hover { color: var(--ink); }

.link-arrow {
  align-self: flex-start;
  color: var(--olive-dark);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 10px; }

/* ---------- Shared type ---------- */

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--olive);
}
.eyebrow-light { color: var(--on-dark-label); }

.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 14px;
  color: var(--ink);
}
.section-title-sm { font-size: clamp(26px, 3vw, 36px); line-height: 1.14; }
.section-title-light { color: #fff; }
.section-title em,
.hero-title em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}
.section-title-light em { color: #E9A87F; }

.body-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 18px;
}

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

.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head-split .section-title { max-width: 520px; }
.section-head-note {
  font-size: 15px;
  color: var(--muted-soft);
  max-width: 320px;
  line-height: 1.55;
}
.section-head-hint {
  font-size: 14px;
  color: var(--muted-warm);
  margin-top: 12px;
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-tile-olive { background: var(--olive-pale); color: var(--olive-dark); }
.icon-tile-peach { background: var(--peach); color: var(--terracotta-dark); }

.accent { color: var(--terracotta); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 241, 231, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .5px;
  flex-shrink: 0;
}

.brand-text { line-height: 1.1; }
.brand-name { display: block; font-weight: 800; font-size: 16px; color: var(--ink); }
.brand-role {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--olive);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
}
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--ink); }

/* ---------- Hero ---------- */

.hero { padding: 70px 0 96px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--olive-pale);
  color: var(--olive-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: 22px;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 22px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 44px;
}

.stat-value { font-size: 30px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.stat-value-lg { font-size: 40px; }
.stat-label {
  font-size: 13.5px;
  color: var(--muted-soft);
  font-weight: 600;
  margin-top: 2px;
}
.stat-divider { width: 1px; background: rgba(44, 46, 27, 0.12); }

.hero-media {
  position: relative;
  justify-self: end;
}

.hero-blob { position: absolute; z-index: 0; }
.hero-blob-peach {
  inset: -26px -26px auto auto;
  width: 340px;
  height: 400px;
  background: var(--peach);
  border-radius: 40px;
}
.hero-blob-olive {
  left: -30px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--olive-pale);
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: 440px;
  max-width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  border-radius: 16px;
}

.hero-badge-cert {
  top: 34px;
  left: -38px;
  background: #fff;
  padding: 13px 18px;
  box-shadow: 0 14px 34px rgba(44, 46, 27, .16);
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--olive-pale);
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-badge-title { display: block; font-weight: 800; font-size: 14px; line-height: 1.2; }
.hero-badge-sub { display: block; font-size: 12.5px; color: var(--muted-soft); font-weight: 600; line-height: 1.2; }

.hero-badge-result {
  bottom: 26px;
  right: -30px;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  box-shadow: 0 14px 34px rgba(44, 46, 27, .24);
}
.hero-badge-big { display: block; font-size: 22px; font-weight: 800; }
.hero-badge-note { display: block; font-size: 12px; color: var(--on-dark-soft); font-weight: 600; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- About ---------- */

.about { padding: 20px 0 96px; scroll-margin-top: var(--header-h); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-media { position: relative; }

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 26px;
}

.about-quote {
  position: absolute;
  right: -22px;
  bottom: -22px;
  background: var(--olive);
  color: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  max-width: 200px;
  box-shadow: 0 16px 34px rgba(110, 122, 52, .3);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(44, 46, 27, 0.07);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.credential-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--olive-pale);
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Audience ---------- */

.audience { padding: 0 0 96px; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.audience-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(44, 46, 27, 0.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(44, 46, 27, .09);
}
.audience-card h3 { font-size: 18px; font-weight: 800; margin-top: 18px; }
.audience-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted-soft);
  margin-top: 9px;
}

/* ---------- Services ---------- */

.services {
  padding: 60px 0 96px;
  background: var(--cream-deep);
  scroll-margin-top: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(44, 46, 27, 0.06);
  display: flex;
  flex-direction: column;
}
.service-card .icon-tile { width: 46px; height: 46px; border-radius: 12px; }
.service-card h3 { font-size: 19px; font-weight: 800; margin-top: 18px; }
.service-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted-soft);
  margin: 9px 0 16px;
  flex: 1;
}

.service-card-dark {
  background: var(--ink);
  color: #fff;
  justify-content: center;
  border: none;
}
.service-card-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
}
.service-card-dark p { color: var(--on-dark-soft); margin: 12px 0 18px; flex: 0; }
.service-card-dark .btn { align-self: flex-start; }

/* ---------- Process ---------- */

.process { padding: 80px 0 96px; scroll-margin-top: 70px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.process-num {
  font-family: 'Lora', serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}
.process-step h3 { font-size: 18px; font-weight: 800; margin-top: 12px; }
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted-soft);
  margin-top: 8px;
}

/* ---------- Tariffs ---------- */

.tariffs {
  padding: 60px 0 96px;
  background: var(--cream-deep);
  scroll-margin-top: 64px;
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}

.tariff-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid rgba(44, 46, 27, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tariff-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted-soft);
}

.tariff-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 14px;
}
.tariff-amount { font-size: 38px; font-weight: 800; color: var(--ink); }
.tariff-currency { font-size: 18px; font-weight: 700; color: var(--muted-soft); }
.tariff-note { font-size: 13.5px; color: var(--muted-warm); margin-top: 2px; }

.tariff-rule {
  height: 1px;
  border: none;
  background: var(--line);
  margin: 22px 0;
}

.tariff-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tariff-features li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.tick { color: var(--olive); font-weight: 800; }

.tariff-card-featured {
  background: var(--ink);
  color: #fff;
  border: none;
  box-shadow: 0 22px 46px rgba(44, 46, 27, .22);
}
.tariff-card-featured .tariff-name { color: var(--on-dark-label); }
.tariff-card-featured .tariff-amount { color: #fff; }
.tariff-card-featured .tariff-currency,
.tariff-card-featured .tariff-note { color: var(--on-dark-label); }
.tariff-card-featured .tariff-rule { background: rgba(255, 255, 255, 0.12); }
.tariff-card-featured .tariff-features li { color: var(--on-dark); }
.tariff-card-featured .tick { color: var(--on-dark-tick); }

.tariff-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--terracotta);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* ---------- Proof ---------- */

.proof { padding: 80px 0 96px; scroll-margin-top: 70px; }

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.proof-stats .stat-label { font-size: 14px; margin-top: 4px; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: center;
}

.proof-links {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(44, 46, 27, 0.1);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.chip-link:hover { border-color: var(--olive); color: var(--olive-dark); }

.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cert {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
}

/* ---------- Booking ---------- */

.booking { padding: 0 0 100px; scroll-margin-top: 70px; }

.booking-panel {
  background: var(--ink);
  border-radius: 32px;
  padding: 52px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.booking-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-dark-soft);
  margin-top: 18px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.booking-perks li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--on-dark);
  font-size: 14.5px;
}
.perk-tick {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-tick);
  flex-shrink: 0;
}

.booking-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-month { font-weight: 800; font-size: 16px; color: var(--ink); }

.cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(44, 46, 27, 0.12);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.cal-nav:hover:not(:disabled) { background: var(--cream); }
.cal-nav:disabled { color: var(--disabled); cursor: default; }

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-weekdays {
  margin-bottom: 6px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted-light);
  text-transform: uppercase;
}
.cal-weekdays .cal-weekend { color: #C9A38F; }

.cal-day {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(44, 46, 27, 0.08);
  cursor: pointer;
}
.cal-day:hover:not(:disabled):not(.is-selected) { background: var(--olive-pale); }
.cal-day:disabled {
  color: var(--disabled);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.cal-day.is-selected {
  background: var(--olive);
  color: #fff;
  font-weight: 800;
  border-color: var(--olive);
  box-shadow: 0 6px 16px rgba(110, 122, 52, .35);
}
.cal-day-empty { height: 42px; }

.field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin: 22px 0 10px;
}

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

.time-slot {
  padding: 13px 8px;
  text-align: center;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  border: 1px solid rgba(44, 46, 27, 0.10);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.time-slot:hover:not(:disabled):not(.is-selected) { background: var(--olive-pale); }
.time-slot:disabled {
  color: var(--disabled);
  background: var(--disabled-bg);
  cursor: default;
}
.time-slot.is-selected {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
  box-shadow: 0 6px 16px rgba(110, 122, 52, .3);
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chip {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--muted);
}
.service-chip:hover { border-color: var(--olive); }
.service-chip.is-selected {
  border-color: var(--olive);
  background: var(--olive-pale);
  color: var(--olive-dark);
}

.booking-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.booking-fields input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  background: var(--cream-input);
  transition: border-color .15s ease;
}
.booking-fields input:focus { border-color: var(--olive); }

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

.submit-btn {
  width: 100%;
  margin-top: 18px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-weight: 800;
  transition: background .2s ease, box-shadow .2s ease;
  background: var(--olive);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(110, 122, 52, .3);
}
.submit-btn:hover:not(:disabled) { background: var(--olive-dark); }
.submit-btn:disabled {
  background: #D8D6CC;
  color: #8C9187;
  cursor: default;
  box-shadow: none;
}

.form-error {
  font-size: 13.5px;
  color: var(--terracotta-dark);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-note {
  font-size: 12px;
  color: var(--muted-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.booking-success {
  text-align: center;
  padding: 26px 10px;
}
.success-mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--olive-pale);
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 30px;
}
.booking-success h3 {
  font-size: 23px;
  font-weight: 800;
  margin-top: 20px;
  color: var(--ink);
}
.booking-success > p {
  font-size: 15.5px;
  color: var(--muted-soft);
  margin-top: 10px;
  line-height: 1.6;
}
.success-summary {
  display: inline-block;
  margin: 18px auto 0;
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 16px;
  color: var(--olive-dark);
}
#reset-booking { margin-top: 24px; }

/* ---------- FAQ ---------- */

.faq { padding: 0 0 100px; }

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(44, 46, 27, 0.07);
  padding: 6px 24px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}

.faq-sign {
  font-size: 22px;
  font-weight: 400;
  color: var(--olive);
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease;
}
.faq-answer.is-open {
  max-height: 260px;
  opacity: 1;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-soft);
  margin-bottom: 18px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.brand-light .brand-name { color: #fff; font-size: 17px; }

.footer-about {
  font-size: 14.5px;
  line-height: 1.65;
  color: #ABAB8B;
  margin-top: 18px;
  max-width: 320px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--on-dark-label);
  margin-bottom: 16px;
}

.footer-links,
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
  color: var(--on-dark);
}
.footer-links a,
.footer-contacts a {
  color: var(--on-dark);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-contacts a:hover { color: #fff; }

.footer-rule {
  height: 1px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--on-dark-faint);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-media { justify-self: center; }
  .about-media { max-width: 520px; }
  .services-grid,
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .tariffs-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .booking-panel { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 44px 0 72px; }
  .hero-stats { gap: 22px; }
  .hero-portrait { height: 460px; }
  /* Декоративные пятна прижимаем к краям фото, чтобы не вылезали за экран. */
  .hero-blob-peach { inset: -20px 0 auto auto; width: 260px; height: 320px; }
  .hero-blob-olive { left: 0; bottom: 24px; width: 92px; height: 92px; }
  .hero-badge-cert { left: 0; }
  .hero-badge-result { right: 0; }
  .audience-grid,
  .services-grid,
  .process-grid,
  .credentials { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .about-quote {
    position: static;
    max-width: none;
    margin-top: 16px;
  }
  .booking { padding-bottom: 72px; }
  .booking-panel { padding: 32px 22px; border-radius: 24px; }
  .booking-card { padding: 20px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 0 32px; }
}

@media (max-width: 480px) {
  .brand-role { display: none; }
}

@media (max-width: 420px) {
  .cal-day, .cal-day-empty { height: 38px; }
  .booking-card { padding: 16px; }
  .cal-weekdays, .cal-grid { gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
