/* =========================================================
   Centre Ozé — Design System
   Palette : vert sauge + bronze (logo), fond crème
   Mobile-first, animations douces
   ========================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Tokens ---------- */
:root {
  /* Greens (sage) */
  --sage-900: #2c352a;
  --sage-800: #3c4838;
  --sage-700: #51614a;
  --sage-600: #687a5d;
  --sage-500: #88997a;   /* mur du cabinet */
  --sage-400: #a3b094;
  --sage-300: #c1cbb4;
  --sage-200: #dde3d2;
  --sage-100: #ebefe2;
  --sage-50:  #f4f6ee;

  /* Bronze / gold (logo) */
  --bronze:      #6f5f2b;
  --bronze-deep: #564a20;
  --bronze-soft: #8c7a3e;
  --gold:        #b89b53;

  /* Neutrals */
  --cream:  #f8f6ef;
  --paper:  #ffffff;
  --ink:    #2a2e26;
  --muted:  #6c7263;
  --line:   #e4e3d6;

  /* Fonts */
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radii & shadow */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(44, 53, 42, .06);
  --shadow-md: 0 14px 40px -18px rgba(44, 53, 42, .28);
  --shadow-lg: 0 30px 70px -30px rgba(44, 53, 42, .40);

  /* Spacing rhythm */
  --section-y: clamp(3.5rem, 9vw, 7.5rem);
  --gutter: clamp(1.15rem, 5vw, 2rem);
  --maxw: 1180px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--sage-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 6.4vw, 3.9rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 4.4vw, 2.7rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.65rem); letter-spacing: -0.012em; }
h4 { font-size: 1.12rem; font-family: var(--font-body); font-weight: 650; color: var(--sage-800); letter-spacing: 0; }

p { color: var(--ink); }
strong { color: var(--sage-800); font-weight: 650; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--bronze);
  opacity: .6;
}

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--sage-50); }
.section--sage { background: var(--sage-100); }
.section--deep { background: var(--sage-900); color: #e8ece1; }
.section--deep h1,
.section--deep h2,
.section--deep h3 { color: #fff; }
.section--deep .lead,
.section--deep p { color: #c5cdb9; }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(111, 95, 43, .8);
}
.btn-primary:hover { background: var(--bronze-deep); transform: translateY(-3px); }

.btn-green {
  background: var(--sage-700);
  color: #fff;
}
.btn-green:hover { background: var(--sage-800); transform: translateY(-3px); }

.btn-ghost {
  background: transparent;
  color: var(--sage-800);
  border: 1.5px solid var(--sage-300);
}
.btn-ghost:hover { border-color: var(--sage-700); background: var(--sage-50); transform: translateY(-3px); }

.btn-light {
  background: #fff;
  color: var(--sage-900);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 239, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(44, 53, 42, .5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.nav__brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav__brand img { height: 38px; width: auto; }

.nav__links { display: none; }
.nav__links a {
  position: relative;
  font-size: .94rem;
  font-weight: 500;
  color: var(--sage-800);
  padding: .4rem 0;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--bronze); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta {
  display: none;
  padding: .55rem 1.05rem;
  font-size: .88rem;
  gap: .4rem;
  flex-shrink: 0;
}
.nav__cta svg { width: 16px; height: 16px; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  border-radius: var(--r-sm);
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--sage-900);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 2rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--sage-900);
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
}
.mobile-menu.open a {
  animation: menuIn .5s var(--ease) forwards;
}
.mobile-menu.open a:nth-child(1) { animation-delay: .06s; }
.mobile-menu.open a:nth-child(2) { animation-delay: .12s; }
.mobile-menu.open a:nth-child(3) { animation-delay: .18s; }
.mobile-menu.open a:nth-child(4) { animation-delay: .24s; }
.mobile-menu.open a:nth-child(5) { animation-delay: .30s; }
.mobile-menu.open a:nth-child(6) { animation-delay: .36s; }
.mobile-menu a span { color: var(--bronze); font-size: 1rem; }
.mobile-menu .btn {
  margin-top: 1.8rem;
  opacity: 1;
  transform: none;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  border-bottom: none;
  justify-content: center;
  padding: 1.05rem 1.5rem;
}
.mobile-menu .btn svg { width: 18px; height: 18px; }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }

body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sage-50), var(--cream));
}
.hero__inner {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(3rem, 8vw, 5.5rem);
  align-items: center;
}
.hero__title { margin-bottom: 1.4rem; }
.hero__title em {
  font-style: normal;
  color: var(--bronze);
}
.hero__text { max-width: 46ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  padding: .8rem 1.15rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  text-align: right;
}
.hero__badge-top {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--sage-800);
}
.hero__badge-top sup { font-size: .62em; }
.hero__badge-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bronze);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 2.6rem;
}
.hero__stat {
  position: relative;
  padding: 1.15rem .9rem 1.1rem;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--sage-50), rgba(244, 246, 238, .35));
  border: 1px solid var(--sage-100);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.hero__stat::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 28px; height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
  border-radius: var(--r-pill);
  opacity: .85;
}
.hero__stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--sage-200);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.4vw, 2.15rem);
  color: var(--bronze);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: .4rem;
}
.hero__stat span {
  display: block;
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .03em;
  line-height: 1.3;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  gap: 1.25rem;
}
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar__media { aspect-ratio: 16 / 11; overflow: hidden; }
.pillar__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.pillar:hover .pillar__media img { transform: scale(1.06); }
.pillar__body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.pillar__body h3 { margin-bottom: .6rem; }
.pillar__body p { color: var(--muted); font-size: .96rem; flex: 1; }
.pillar__link {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--bronze);
}
.pillar__link svg { transition: transform .35s var(--ease); width: 16px; }
.pillar:hover .pillar__link svg { transform: translateX(5px); }

/* ---------- Feature / split rows ---------- */
.split {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.5rem);
  align-items: center;
}
.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body p + p { margin-top: 1rem; }
.split__body .btn { margin-top: 1.6rem; }

/* ---------- Lists ---------- */
.ticks { display: grid; gap: .85rem; margin-top: 1.4rem; }
.ticks li {
  position: relative;
  padding-left: 1.85rem;
  line-height: 1.55;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2351614a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ---------- Info cards grid ---------- */
.cards {
  display: grid;
  gap: 1.15rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--sage-100);
  color: var(--sage-700);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card h4 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* Service cards (médecine esthétique) */
.service {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service__media { aspect-ratio: 4 / 3; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service:hover .service__media img { transform: scale(1.05); }
.service__body { padding: 1.5rem; }
.service__tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bronze);
}
.service__body h3 { margin: .5rem 0 .6rem; }
.service__body p { color: var(--muted); font-size: .95rem; }
.service__price {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line);
  font-size: .9rem;
  color: var(--sage-800);
}
.service__price b { color: var(--bronze); font-size: 1.05rem; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: .75rem; }
.acc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.acc[open] { box-shadow: var(--shadow-sm); border-color: var(--sage-300); }
.acc__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--sage-900);
  cursor: pointer;
  list-style: none;
}
.acc__q::-webkit-details-marker { display: none; }
.acc__q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  position: relative;
}
.acc__q .plus::before,
.acc__q .plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--bronze);
  transition: transform .35s var(--ease), opacity .3s;
}
.acc__q .plus::before { width: 14px; height: 2px; }
.acc__q .plus::after { width: 2px; height: 14px; }
.acc[open] .acc__q .plus::after { transform: rotate(90deg); opacity: 0; }
.acc__a {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .45s var(--ease), padding .45s var(--ease);
}
.acc[open] .acc__a { padding: 0 1.4rem 1.4rem; max-height: 900px; }
.acc__a p + p { margin-top: .8rem; }

/* ---------- Pricing tables ---------- */
.pricing { display: grid; gap: 1.5rem; }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
}
.price-card--feature {
  background: var(--sage-900);
  color: #e8ece1;
  border-color: var(--sage-800);
}
.price-card__head {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.price-card--feature .price-card__head { border-color: rgba(255,255,255,.14); }
.price-card__head .ic {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--sage-100);
  color: var(--sage-700);
  flex-shrink: 0;
}
.price-card--feature .price-card__head .ic { background: rgba(255,255,255,.1); color: var(--sage-200); }
.price-card__head h3 { margin: 0; }
.price-card--feature .price-card__head h3 { color: #fff; }
.price-card__head p { font-size: .85rem; color: var(--muted); margin-top: .15rem; }
.price-card--feature .price-card__head p { color: var(--sage-300); }

.price-list { display: grid; gap: .2rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px dashed var(--line);
}
.price-card--feature .price-row { border-color: rgba(255,255,255,.12); }
.price-row:last-child { border-bottom: none; }
.price-row__name { font-weight: 500; }
.price-card--feature .price-row__name { color: #eef1e8; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); opacity: .6; }
.price-card--feature .price-row__dots { border-color: rgba(255,255,255,.2); }
.price-row__val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bronze);
  white-space: nowrap;
  font-weight: 500;
}
.price-card--feature .price-row__val { color: var(--gold); }
.price-note {
  margin-top: 1.2rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.price-card--feature .price-note { color: var(--sage-300); }

/* ---------- Doctors ---------- */
.docs { display: grid; gap: 1.5rem; }
.doc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.doc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.doc__media { aspect-ratio: 3 / 4; overflow: hidden; }
.doc__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doc__body { padding: 1.4rem 1.5rem 1.7rem; }
.doc__body h3 { font-size: 1.3rem; }
.doc__role { color: var(--bronze); font-weight: 600; font-size: .85rem; letter-spacing: .04em; margin-top: .2rem; }
.doc__body p { margin-top: .8rem; color: var(--muted); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 1.25rem; }
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--sage-300);
  position: absolute;
  top: .6rem; right: 1.2rem;
}
.quote p { font-size: 1rem; color: var(--sage-800); font-style: italic; }
.quote__author { margin-top: 1.2rem; font-weight: 600; color: var(--bronze); font-size: .9rem; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sage-900);
  color: #fff;
  padding: clamp(2.5rem, 7vw, 4.5rem);
  text-align: center;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(184,155,83,.18), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(136,153,122,.25), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::before { display: none; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: var(--sage-200); max-width: 50ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--sage-100), var(--cream));
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(2rem, 5vw, 3rem);
}
.page-hero .breadcrumb {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a:hover { color: var(--bronze); }
.page-hero h1 { margin-bottom: 1rem; max-width: 18ch; }
.page-hero .lead { max-width: 56ch; }

/* in-page nav (sticky chips) */
.subnav {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(248,246,239,.9);
  backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav__inner {
  display: flex;
  gap: .5rem;
  padding-block: .7rem;
  white-space: nowrap;
}
.subnav a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--sage-700);
  padding: .4rem .9rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  transition: all .25s;
  flex-shrink: 0;
}
.subnav a:hover { background: var(--sage-700); color: #fff; border-color: var(--sage-700); }

/* ---------- Prose ---------- */
.prose p { margin-bottom: 1.1rem; color: var(--ink); }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { margin: 2rem 0 .9rem; }
.prose h4 { margin: 1.6rem 0 .7rem; color: var(--bronze); }

/* ---------- Contact info ---------- */
.info-list { display: grid; gap: 1.4rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--sage-700);
}
.info-item h4 { margin-bottom: .2rem; }
.info-item p, .info-item a { color: var(--muted); font-size: .95rem; }
.info-item a:hover { color: var(--bronze); }
.map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Download cards ---------- */
.downloads { display: grid; gap: 1rem; }
.download {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.download:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.download .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--bronze);
}
.download__body { flex: 1; }
.download__body strong { display: block; color: var(--sage-900); font-size: .98rem; }
.download__body span { font-size: .82rem; color: var(--muted); }
.download .arrow { color: var(--bronze); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-900);
  color: #c5cdb9;
  padding-block: clamp(3rem, 7vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
}
.footer__brand img { height: 42px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { color: #9faa90; font-size: .9rem; max-width: 32ch; }
.footer h4 { color: #fff; margin-bottom: 1.1rem; font-size: .95rem; letter-spacing: .03em; }
.footer ul { display: grid; gap: .6rem; }
.footer a { color: #b3bda4; font-size: .92rem; transition: color .25s; }
.footer a:hover { color: var(--gold); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.footer__contact svg { width: 17px; flex-shrink: 0; margin-top: .2rem; color: var(--sage-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: .82rem;
  color: #8d977e;
}
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Floating mobile call ---------- */
.fab-call {
  position: fixed;
  right: 1rem; bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--bronze);
  color: #fff;
  padding: .9rem 1.3rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: .95rem;
  transform: translateY(120%);
  transition: transform .45s var(--ease), background .3s;
}
.fab-call.show { transform: translateY(0); }
.fab-call svg { width: 18px; height: 18px; }
.fab-call:active { background: var(--bronze-deep); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Decorative ---------- */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--sage-400);
  margin-block: 1rem;
}
.divider-leaf::before,
.divider-leaf::after {
  content: "";
  height: 1px;
  width: min(120px, 18vw);
  background: linear-gradient(90deg, transparent, var(--sage-300));
}
.divider-leaf::after { background: linear-gradient(90deg, var(--sage-300), transparent); }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .docs { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .downloads { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .nav__links { display: flex; gap: 1.8rem; align-items: center; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none; }
  .fab-call { display: none; }

  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing--3 { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
  .docs { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .quotes--3 { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
}

.services-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-grid { display: grid; gap: 2.2rem; }
.contact-media { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.contact-media img { display: block; width: 100%; height: 280px; object-fit: cover; transition: transform 1s var(--ease); }
.contact-media:hover img { transform: scale(1.05); }

/* ---------- Call card (contact phone-only) ---------- */
.call-card {
  position: relative;
  overflow: hidden;
  background: var(--sage-900);
  color: #e8ece1;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.call-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(184,155,83,.22), transparent 46%),
    radial-gradient(circle at 88% 95%, rgba(136,153,122,.30), transparent 52%);
  pointer-events: none;
}
.call-card > * { position: relative; }
.call-card .eyebrow { justify-content: center; color: var(--gold); }
.call-card .eyebrow::before { display: none; }
.call-card h2 { color: #fff; margin-bottom: .7rem; }
.call-card p { color: var(--sage-200); max-width: 40ch; margin-inline: auto; margin-bottom: 1.7rem; }
.call-card__icon {
  width: 66px; height: 66px;
  margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--gold);
  animation: pulse-ring 2.8s var(--ease) infinite;
}
.call-card__icon svg { width: 28px; height: 28px; }
.call-card__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 8vw, 3.1rem);
  color: var(--gold);
  letter-spacing: .01em;
  line-height: 1;
  margin-bottom: 1.6rem;
  transition: color .25s, transform .3s var(--ease);
}
.call-card__number:hover { color: #fff; transform: scale(1.03); }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,155,83,.5); }
  55% { box-shadow: 0 0 0 16px rgba(184,155,83,0); }
}

/* ---------- Mobile horizontal carousels ---------- */
.scroller-hint { display: none; }
@media (max-width: 859px) {
  .hscroll {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1);
    padding: .25rem var(--gutter) .9rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hscroll::-webkit-scrollbar { display: none; }
  .hscroll > * {
    scroll-snap-align: center;
    flex: 0 0 82%;
    min-width: 0;
  }
  .scroller-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .4rem;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroller-hint svg { width: 20px; height: 20px; color: var(--bronze); animation: nudge 1.6s var(--ease) infinite; }
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(7px); }
}

/* ---------- Reveal variants ---------- */
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal="blur"]  { filter: blur(10px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
[data-reveal="blur"].in { filter: blur(0); }

/* split rows slide in from their side (site-wide, no markup change) */
@media (min-width: 860px) {
  .split__media[data-reveal] { transform: translateX(-48px); }
  .split__body[data-reveal]  { transform: translateX(48px); }
  .split--reverse .split__media[data-reveal] { transform: translateX(48px); }
  .split--reverse .split__body[data-reveal]  { transform: translateX(-48px); }
  .split__media[data-reveal].in,
  .split__body[data-reveal].in { transform: none; }
}

/* ---------- Ambient animations ---------- */
.hero__badge { animation: floaty 5.5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__media > img { animation: kenburns 16s var(--ease) both; }
@keyframes kenburns {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.btn svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg,
.btn-green:hover svg { transform: translateX(2px) rotate(-6deg); }
.card__icon, .price-card__head .ic, .info-item .ic, .download .ic {
  transition: transform .4s var(--ease), background .3s, color .3s;
}
.card:hover .card__icon,
.download:hover .ic { transform: rotate(-6deg) scale(1.08); background: var(--sage-200); }
.cta-band::after { animation: drift 14s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(2%, -2%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
