/* ======================================================================
   Pedicure by Daantje — stylesheet
   Palet: zacht salie / eucalyptus / crème met een vleugje warm goud
   ====================================================================== */

:root {
  /* Kleuren */
  --paper: #fbfcfa;
  --bg: #f3f7f1;
  --cream: #eef3ea;
  --cream-warm: #f6f3ea;
  --sage: #8ca98f;
  --sage-soft: #b7cdb8;
  --sage-mist: #dce8da;
  --sage-deep: #5d8067;
  --forest: #2f4435;
  --forest-deep: #243528;
  --gold: #c6a86a;
  --gold-soft: #e3d2a8;
  --ink: #25302a;
  --ink-soft: #5c685f;
  --ink-faint: #8a958c;
  --line: #e0e8dd;
  --line-soft: #ebf1e8;
  --white: #ffffff;

  /* Typografie */
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Vorm & beweging */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(47, 68, 53, 0.05);
  --shadow-md: 0 14px 40px -16px rgba(47, 68, 53, 0.22);
  --shadow-lg: 0 30px 70px -24px rgba(47, 68, 53, 0.32);
  --shadow-glow: 0 20px 60px -20px rgba(140, 169, 143, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
  --container-narrow: 820px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--forest);
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

h1 em, h2 em {
  font-style: italic;
  color: var(--sage-deep);
}

p { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

.btn-primary {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 26px 60px -18px rgba(47, 68, 53, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--sage-deep);
  background: var(--white);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gold);
  color: #3a2f12;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-ghost {
  padding: 0;
  color: var(--sage-deep);
  font-weight: 600;
  border: none;
  background: none;
}
.btn-ghost:hover { color: var(--forest); gap: 14px; }

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(251, 252, 250, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line-soft), var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.brand-name { display: block; font-family: var(--font-serif); font-size: 1.18rem; font-weight: 600; color: var(--forest); line-height: 1.1; }
.brand-tag { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  display: block;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--forest); background: var(--cream); }
.nav-links a.active { color: var(--forest); background: var(--sage-mist); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  position: relative;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle::before { top: 15px; }
.nav-toggle::after { top: 27px; }
.nav-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }
.nav-toggle.is-open span { opacity: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(183, 205, 184, 0.55) 0%, transparent 60%),
    radial-gradient(50% 60% at 5% 90%, rgba(230, 240, 225, 0.9) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--paper) 100%);
}
.hero-blob {
  position: absolute;
  top: -10%; right: -8%;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 35% 35%, var(--sage-soft), var(--sage) 70%);
  filter: blur(10px);
  opacity: 0.4;
  border-radius: 47% 53% 62% 38% / 42% 47% 53% 58%;
  animation: blob 18s ease-in-out infinite;
  z-index: 0;
}
@keyframes blob {
  0%, 100% { border-radius: 47% 53% 62% 38% / 42% 47% 53% 58%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 60% 40% 38% 62% / 55% 58% 42% 45%; transform: rotate(12deg) scale(1.06); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede { max-width: 46ch; margin-bottom: 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-meta { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-num { font-family: var(--font-serif); font-size: 2rem; color: var(--sage-deep); line-height: 1; }
.hero-meta-label { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; letter-spacing: 0.04em; }

.hero-visual-wrap { position: relative; }
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 140px 140px 36px 36px;
  background:
    linear-gradient(180deg, rgba(47, 68, 53, 0) 40%, rgba(47, 68, 53, 0.35) 100%),
    url("../images/hero.jpg") center/cover no-repeat,
    linear-gradient(150deg, var(--sage-soft), var(--sage-deep));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: -26px;
  width: 124px; height: 124px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-badge-inner {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1.5px dashed var(--sage-soft);
  display: grid; place-items: center;
  text-align: center;
}
.hero-badge-text { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); line-height: 1.4; }
.hero-badge-year { font-family: var(--font-serif); font-size: 1.5rem; color: var(--sage-deep); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--forest);
  padding: 22px 0;
}
.trust-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 44px; list-style: none;
}
.trust-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem; font-weight: 500;
}
.trust-list svg { color: var(--gold-soft); flex-shrink: 0; }

/* ---------- Section heading ---------- */
.section-heading { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading h2 { margin-bottom: 16px; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-mist);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--sage-mist);
  color: var(--sage-deep);
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.98rem; }

/* ---------- Treatments ---------- */
.treatments { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.treatment {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.treatment:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-mist); }
.treatment-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.treatment-body p { font-size: 0.93rem; margin: 0; }
.treatment-meta { text-align: right; flex-shrink: 0; }
.treatment-price {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sage-deep);
  white-space: nowrap;
}
.treatment-time { display: block; font-size: 0.78rem; color: var(--ink-faint); margin-top: 4px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(47,68,53,0.05), rgba(47,68,53,0.5)),
    url("../images/about.jpg") center/cover no-repeat,
    linear-gradient(150deg, var(--sage-soft), var(--forest));
  box-shadow: var(--shadow-lg);
  display: flex; align-items: flex-end;
  padding: 40px;
  overflow: hidden;
}
.split-visual-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.split h2 { margin-bottom: 18px; }
.split p { margin-bottom: 16px; }
.split-stats { display: flex; gap: 40px; margin-top: 30px; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 2.4rem; color: var(--sage-deep); line-height: 1; }
.stat-label { display: block; font-size: 0.85rem; color: var(--ink-faint); margin-top: 6px; }

/* ---------- Reviews ---------- */
.reviews-bg {
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(183,205,184,0.35), transparent 60%),
    var(--cream);
}
.review {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.95rem; }
.review p { font-size: 1.02rem; color: var(--ink); font-style: italic; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 13px; }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}
.review-name { display: block; font-weight: 600; color: var(--forest); font-size: 0.95rem; }
.review-loc { display: block; font-size: 0.82rem; color: var(--ink-faint); }

/* ---------- CTA block ---------- */
.cta-block {
  position: relative;
  text-align: center;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(140,169,143,0.35), transparent 60%),
    linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  overflow: hidden;
}
.cta-block::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(198,168,106,0.3), transparent 70%);
  border-radius: 50%;
}
.cta-block .eyebrow { color: var(--gold-soft); position: relative; }
.cta-block .eyebrow::before { background: var(--gold); }
.cta-block h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-block-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; position: relative; }

/* ---------- Page header ---------- */
.page-header {
  padding: clamp(48px, 6vw, 88px) 0 clamp(32px, 4vw, 56px);
  background:
    radial-gradient(50% 80% at 90% 0%, rgba(183,205,184,0.4), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--paper));
}
.page-header h1 { margin-bottom: 18px; }
.page-header .lede { max-width: 60ch; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--sage-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row svg { color: var(--sage-deep); margin-top: 3px; flex-shrink: 0; }
.contact-row strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); font-weight: 600; margin-bottom: 2px; }
.contact-row a:hover { color: var(--sage-deep); }

.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line-soft); font-size: 0.95rem; }
.hours li:first-child { border-top: none; }
.hours .day { color: var(--ink-soft); }
.hours .time { color: var(--forest); font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; margin-top: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--forest); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(140,169,143,0.15);
}

/* ---------- Booking embed ---------- */
.booking-section { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.booking-intro { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.booking-embed {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  max-width: 1080px;
  margin: 0 auto;
}
.booking-embed-inner { width: 100%; border-radius: var(--radius-md); overflow: hidden; }
.booking-embed-inner.is-loaded { min-height: 620px; }
.booking-fallback { text-align: center; padding: 64px 24px; color: var(--ink-soft); }
.booking-fallback h3 { font-size: 1.5rem; margin-bottom: 12px; }
.booking-fallback .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item.is-open { border-color: var(--sage-mist); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  background: none; border: none; cursor: pointer; text-align: left;
}
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--sage-deep);
  border-radius: 2px; transition: transform 0.3s var(--ease);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding: 0 28px 26px; margin: 0; font-size: 0.98rem; }

/* ---------- Info note ---------- */
.info-note {
  margin-top: 56px;
  padding: 32px;
  background: var(--cream-warm);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md);
}
.info-note h3 { font-size: 1.3rem; margin-bottom: 8px; }
.info-note p { margin: 0; }

/* ---------- Steps ---------- */
.steps { list-style: none; max-width: 720px; margin: 0 auto; }
.steps li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.steps li:last-child { border-bottom: none; }
.step-num { font-family: var(--font-serif); font-size: 2.1rem; color: var(--sage-soft); line-height: 1; }
.steps h3 { font-size: 1.25rem; margin-bottom: 6px; }
.steps p { margin: 0; font-size: 0.97rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(255,255,255,0.72); padding: 72px 0 32px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: rgba(255,255,255,0.5); }
.site-footer .brand-mark { background: linear-gradient(140deg, var(--sage), var(--sage-deep)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid h4 { color: #fff; font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-grid ul { list-style: none; display: grid; gap: 11px; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-grid p { color: rgba(255,255,255,0.6); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
}
.float-btn:hover { transform: scale(1.08) translateY(-2px); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.phone { background: var(--sage-deep); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual-wrap { width: 100%; max-width: 440px; margin: 0 auto; order: -1; }
  .hero-visual { aspect-ratio: 16 / 11; border-radius: 80px 80px 28px 28px; }
  .split { grid-template-columns: 1fr; }
  .split-visual { aspect-ratio: 16 / 10; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 96px 24px 32px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 90;
  }
  .nav-links.is-open { transform: none; }
  .nav-links a { padding: 14px 18px; font-size: 1.05rem; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-cta .btn { display: none; }
  .treatments { grid-template-columns: 1fr; }
  .treatment { flex-direction: column; gap: 10px; }
  .treatment-meta { text-align: left; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-meta { gap: 24px; }
  .hero-badge { width: 100px; height: 100px; left: auto; right: 16px; bottom: 16px; }
  .hero-badge-inner { width: 80px; height: 80px; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .brand-tag { display: none; }
  section { padding: 56px 0; }
}
