/* ---------- Tokens ---------- */
:root {
  --cream: #f5efe6;
  --cream-2: #ece4d7;
  --paper: #faf6ef;
  --ink: #1f1a14;
  --ink-soft: #4a4138;
  --muted: #8a7e6e;

  --sage: #6f8567;
  --sage-dark: #4f6450;
  --forest: #2f4a37;

  --terracotta: #d9893e;
  --rust: #b06850;
  --sand: #c9a78a;
  --lilac: #c9b6c5;

  --line: #d9cfbf;
  --err: #c05a3a;

  --serif-display: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --serif-body: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--forest);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
img { display: block; max-width: 100%; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
}
.logo-text {
  font-family: var(--serif-display);
  font-size: 20px;
  color: var(--forest);
  line-height: 1;
  text-align: left;
}
.logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  cursor: pointer;
  transition: color 160ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: all 180ms ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 6px 16px -10px rgba(31,26,20,0.45);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 14px 28px -14px rgba(47,74,55,0.55);
}
.btn-primary svg { transition: transform 200ms ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.nav-links a.btn-nav {
  color: var(--cream);
  padding: 8px 16px 8px 18px;
  font-size: 13px;
  letter-spacing: 0.01em;
  gap: 6px;
  font-weight: 500;
  border-radius: 8px;
  margin-left: 4px;
}
.nav-links a.btn-nav:hover { color: var(--cream); }
.nav-links a.btn-nav::after { display: none; }
.btn-nav svg { width: 13px; height: 13px; opacity: 0.9; }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
}
.btn-terracotta {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-terracotta:hover {
  background: var(--rust);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--rust);
}
.hero h1 {
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.98;
  margin-bottom: 28px;
  color: var(--forest);
}
.hero h1 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.hero p.lede {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-value {
  font-family: var(--serif-display);
  font-size: 20px;
  color: var(--forest);
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 50% 48% 52% 48% / 56% 44% 56% 44%;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(47,74,55,0.35);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-blob-1 {
  position: absolute;
  width: 180px; height: 180px;
  background: var(--terracotta);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  top: -30px; left: -50px;
  z-index: -1;
  opacity: 0.95;
}
.hero-blob-2 {
  position: absolute;
  width: 130px; height: 130px;
  background: var(--sage);
  border-radius: 50% 50% 60% 40% / 60% 50% 50% 40%;
  bottom: -20px; right: -30px;
  z-index: -1;
  opacity: 0.9;
}
.hero-leaf {
  position: absolute;
  bottom: 40px; right: -10px;
  width: 90px;
  z-index: 2;
  color: var(--sage);
}

/* ---------- Section header ---------- */
.section-header {
  margin-bottom: 64px;
  max-width: 760px;
}
.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section-header h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-header h2 .underline {
  position: relative;
  display: inline-block;
}
.section-header h2 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--sage);
  opacity: 0.5;
  border-radius: 999px;
}
.section-header p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- About ---------- */
.about {
  padding: 100px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 52% 48% 50% 50% / 48% 50% 50% 52%;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(47,74,55,0.3);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 32px; }
.about-text .lede {
  font-size: 22px;
  color: var(--forest);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.4;
}
.about-text p {
  color: var(--ink-soft);
  font-size: 19px;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pillar { text-align: left; }
.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 50%;
  margin-bottom: 14px;
  color: var(--forest);
}
.pillar h4 {
  font-family: var(--serif-display);
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--forest);
}
.pillar p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Therapists ---------- */
.therapists {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, var(--paper) 12%, var(--paper) 88%, transparent 100%);
}
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.therapist-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 240ms ease, box-shadow 240ms ease;
  display: flex;
  flex-direction: column;
}
.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(47,74,55,0.3);
}
.therapist-photo {
  aspect-ratio: 4/5;
  border-radius: 52% 48% 50% 50% / 50% 50% 48% 52%;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.therapist-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.therapist-card:hover .therapist-photo img { transform: scale(1.04); }
.therapist-name {
  font-family: var(--serif-display);
  font-size: 32px;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.05;
}
.therapist-roles {
  font-style: italic;
  color: var(--rust);
  font-size: 19px;
  margin-bottom: 20px;
  line-height: 1.45;
}
.therapist-bio {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.therapist-bio .long { display: none; }
.therapist-bio.expanded .short { display: none; }
.therapist-bio.expanded .long { display: inline; }
.therapist-toggle {
  color: var(--rust);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}
.therapist-toggle:hover { color: var(--forest); }
.therapist-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.therapist-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: 13px;
}
.therapist-meta-row span:first-child {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.therapist-meta-row span:last-child {
  color: var(--forest);
  font-weight: 500;
  text-align: right;
}
.therapist-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Booking (ZnanyLekarz widgets) ---------- */
.booking {
  padding: 90px 0 110px;
  background: linear-gradient(180deg, transparent 0%, var(--cream-2) 14%, var(--cream-2) 86%, transparent 100%);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.booking-col {
  background: var(--cream);
  border-radius: 24px;
  padding: 28px 28px 20px;
  border: 1px solid var(--line);
  scroll-margin-top: 100px;
  transition: box-shadow 240ms ease, transform 240ms ease;
}
.booking-col:hover {
  box-shadow: 0 30px 60px -30px rgba(47,74,55,0.25);
}
.booking-col-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-name {
  font-family: var(--serif-display);
  font-size: 24px;
  color: var(--forest);
  line-height: 1.15;
}
.booking-role {
  font-family: var(--serif-body);
  font-size: 16px;
  font-style: italic;
  color: var(--rust);
  margin-top: 4px;
  line-height: 1.4;
}
.booking-widget {
  /* fallback styling for the unstyled <a> while widget loads */
  min-height: 400px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.booking-widget .zl-url {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  align-self: center;
  text-align: center;
}
.booking-widget iframe {
  width: 100% !important;
  border-radius: 12px;
}
.booking-note {
  margin-top: 32px;
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
}
.booking-note a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.booking-note a:hover { color: var(--forest); }

/* ---------- Services ---------- */
.services { padding: 110px 0; position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 32px 28px;
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid transparent;
  transition: all 240ms ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.service-card:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-3px);
}
.service-card:hover .service-title,
.service-card:hover .service-desc { color: var(--cream); }
.service-card:hover .service-leaf { color: var(--terracotta); }
.service-leaf {
  width: 32px;
  height: 32px;
  color: var(--rust);
  transition: color 220ms ease;
}
.service-title {
  font-family: var(--serif-display);
  font-size: 24px;
  color: var(--forest);
  line-height: 1.15;
  transition: color 220ms ease;
}
.service-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  transition: color 220ms ease;
}
.service-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}
.service-card:hover .service-tag { color: var(--sand); }

/* ---------- Process ---------- */
.process {
  padding: 110px 0;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.process h2 { color: var(--cream); }
.process .section-header p { color: rgba(245,239,230,0.78); }
.process .section-eyebrow { color: var(--terracotta); }
.process .section-eyebrow::before { background: var(--terracotta); }
.process h2 .underline::after { background: var(--terracotta); opacity: 0.7; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(245,239,230,0.06);
  border: 1px solid rgba(245,239,230,0.12);
  transition: background 220ms ease, border-color 220ms ease;
}
.process-step:hover {
  background: rgba(245,239,230,0.1);
  border-color: var(--terracotta);
}
.step-num {
  font-family: var(--serif-display);
  font-size: 56px;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 18px;
  display: block;
}
.process-step h4 {
  font-family: var(--serif-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.process-step p {
  font-size: 16px;
  color: rgba(245,239,230,0.78);
  line-height: 1.5;
  margin: 0;
}
.process-blob {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
}

/* ---------- Pricing ---------- */
.pricing { padding: 110px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 240ms ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(47,74,55,0.25);
  border-color: var(--sage);
}
.price-card.featured {
  background: var(--cream-2);
  border-color: var(--terracotta);
}
.price-card.featured::before {
  content: "Najczęściej wybierane";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--cream);
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.price-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
}
.price-title {
  font-family: var(--serif-display);
  font-size: 28px;
  color: var(--forest);
  line-height: 1.1;
}
.price-amount {
  font-family: var(--serif-display);
  font-size: 48px;
  color: var(--forest);
  line-height: 1;
  margin: 6px 0 4px;
}
.price-amount small {
  font-size: 16px;
  color: var(--muted);
  font-family: var(--serif-body);
  font-style: italic;
}
.price-desc {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}
.price-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink-soft);
}
.price-list li::before {
  content: "✓";
  color: var(--sage);
  font-family: var(--serif-display);
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-aside .section-header { margin-bottom: 0; }
.faq-aside .faq-help {
  margin-top: 32px;
  padding: 28px;
  background: var(--cream-2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.faq-help h4 {
  font-family: var(--serif-display);
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 8px;
}
.faq-help p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 16px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--serif-display);
  font-size: 22px;
  color: var(--forest);
  line-height: 1.25;
  transition: color 200ms ease;
}
.faq-q:hover { color: var(--rust); }
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 280ms ease, background 200ms ease;
}
.faq-item.open .faq-q-icon { background: var(--terracotta); color: var(--cream); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 320ms ease;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 4px 28px; }
.faq-a p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
}

/* ---------- Contact ---------- */
.contact { padding: 110px 0; position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 22px; }
.contact-info .quote {
  font-family: var(--serif-display);
  font-size: 28px;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 12px;
}
.contact-info .quote em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}
.contact-info p.intro {
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.detail-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.detail-value {
  font-family: var(--serif-display);
  font-size: 20px;
  color: var(--forest);
  line-height: 1.3;
  overflow-wrap: anywhere;
  min-width: 0;
}
.detail-value a:hover { color: var(--rust); }
.detail-value .small-link {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--rust);
  letter-spacing: 0;
  margin-top: 4px;
}
.detail-value .small-link:hover { color: var(--forest); text-decoration: underline; }

/* Form */
.form-card {
  background: var(--paper);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--line);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field label .label-hint {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 11px;
  color: var(--muted);
  opacity: 0.75;
  margin-left: 4px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--serif-body);
  font-size: 18px;
  color: var(--ink);
  transition: border-color 180ms ease, background 180ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--serif-body); }
.field.error input, .field.error textarea, .field.error select { border-color: var(--err); }
.field-err {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--err);
  margin-top: 6px;
}

/* Honeypot - hidden field for bots */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.therapist-choice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.choice-pill {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  transition: all 180ms ease;
  line-height: 1.3;
  width: 100%;
}
.choice-pill:hover { border-color: var(--sage); color: var(--forest); }
.choice-pill.selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.choice-pill small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 3px;
}
.mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 20px;
}
.mode-toggle button {
  padding: 10px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mode-toggle button.active { background: var(--forest); color: var(--cream); }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 24px;
}
.consent input { margin-top: 4px; accent-color: var(--forest); }
.consent label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  font-family: var(--sans);
  letter-spacing: 0;
  text-transform: none;
}

.form-error-banner {
  background: rgba(192, 90, 58, 0.08);
  border: 1px solid var(--err);
  color: var(--err);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 18px;
}

.form-success { text-align: center; padding: 40px 20px; }
.form-success .success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.form-success h3 { font-size: 30px; margin-bottom: 12px; }
.form-success p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--sand);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul li, .footer ul a {
  color: rgba(245,239,230,0.8);
  font-size: 16px;
  transition: color 180ms ease;
}
.footer ul a:hover { color: var(--terracotta); }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand .logo-text small { color: rgba(245,239,230,0.55); }
.footer-brand p {
  color: rgba(245,239,230,0.7);
  font-size: 16px;
  margin-top: 18px;
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(245,239,230,0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245,239,230,0.55);
  font-family: var(--sans);
}

/* ---------- Float CTA ---------- */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 70;
  background: var(--terracotta);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 36px -10px rgba(176, 104, 80, 0.6);
  transition: transform 200ms ease, background 200ms ease;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
}
.float-cta.show {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}
.float-cta:hover { background: var(--rust); transform: translateY(-2px); }
.float-cta .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
}
.float-cta .pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--cream);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { justify-self: center; max-width: 400px; }
  .services-grid, .pricing-grid, .therapist-grid, .process-steps, .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-pillars { grid-template-columns: 1fr; gap: 16px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .hero { padding: 50px 0 80px; }
  .hero h1 { font-size: clamp(40px, 10vw, 64px); }
  .hero-meta { gap: 24px; }
  .therapist-card { padding: 28px 24px; }
  .form-card { padding: 28px 24px; }
  .float-cta span:not(.pulse) { display: none; }
  .float-cta { padding: 16px; }
}
@media (max-width: 640px) {
  .services-grid, .pricing-grid, .therapist-grid, .process-steps, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .therapist-choice { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 36px; }
  .container { padding: 0 20px; }
  .form-card { padding: 24px 18px; }
}
