/* =========================================================================
   Surrey Senior Companions — stylesheet
   Brand: warm cream · navy · olive-green · gold. Classic, calm, trustworthy.
   Accessibility-first: large type, high contrast, generous spacing,
   big tap targets (audience = older people + their adult children).
   ========================================================================= */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Brand colour palette — "Warm Sand" (paper warmed; navy · olive · gold kept) */
  --cream:        #F4EAD9;   /* page background — warm sand */
  --cream-2:      #FBF2E2;   /* lighter cream, alt sections */
  --cream-hi:     #FDF6EC;   /* raised / header backdrop   */
  --ivory:        #FFFDF8;   /* warm white — cards         */
  --navy:         #1C3B5E;   /* primary — hands, headings  */
  --navy-700:     #16314E;
  --navy-900:     #102639;
  --green:        #5C7342;   /* olive/forest — "SENIOR"    */
  --green-700:    #4A5E33;
  --green-dark:   #3B4A1F;   /* deep olive panels & footer */
  --gold:         #C1922E;   /* accents, hearts, dividers  */
  --gold-2:       #D8B255;
  --gold-ink:     #8A6410;   /* AA-legible gold for text on cream (4.77:1) */
  --gold-glyph:   #9C7620;   /* darker gold for FUNCTIONAL glyphs on light bg (≥3:1, WCAG 1.4.11) */
  --text:         #24313B;   /* body text                  */
  --muted:        #56616B;   /* secondary text             */
  --line:         #E7D9BF;   /* hairlines on warm sand     */
  --line-soft:    #EFE4CE;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-script:  "Dancing Script", "Segoe Script", cursive;

  /* Rhythm */
  --container: 1180px;
  --gap:       clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.75rem, 8vw, 6.5rem);
  --radius:    16px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 10px rgba(28, 59, 94, 0.06);
  --shadow-md: 0 12px 34px rgba(28, 59, 94, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 38, 57, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* offset sticky header when jumping to anchors */
}
body {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 0.98rem + 0.4vw, 1.1875rem); /* ~17–19px */
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
/* <picture> ne doit pas créer de boîte : l'<img> reste l'enfant direct du conteneur,
   pour que les règles de mise en page existantes (height:100%, grid/flex) continuent de s'appliquer. */
picture { display: contents; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; }

/* Accessible focus ring */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--navy); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: 8px; z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------- Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); }
p a { font-weight: 700; }

/* ------------------------------------------------------------- Utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: var(--section-y); }
.section--cream2 { background: var(--cream-2); }
.section--tint  { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink); /* AA-contrast label text; decorative bar below stays gold */
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p.lead { margin-top: 0.9rem; color: var(--muted); font-size: 1.075em; }

.lead { font-size: 1.12em; color: var(--muted); }

/* Heart divider (echoes the brand’s heart motif) */
.heart-rule {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  color: var(--gold); margin: 0.9rem 0;
}
.heart-rule::before, .heart-rule::after {
  content: ""; height: 1px; width: min(90px, 18vw); background: var(--gold); opacity: 0.6;
}
.heart-rule svg { width: 20px; height: 20px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  line-height: 1; text-decoration: none;
  padding: 1.05rem 1.7rem; min-height: 54px;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
              box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-green { background: var(--green-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-green:hover { background: #2f3c18; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); } /* pressed feedback */
.btn-block { width: 100%; }

/* Trust chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cream-hi); border: 1px solid var(--line);
  color: var(--navy); font-weight: 700; font-size: 0.9rem;
  padding: 0.5rem 0.95rem; border-radius: 999px;
}
.chip svg { width: 17px; height: 17px; color: var(--green); }

/* =====================================================================
   Header / navigation
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 247, 238, 0.92);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
/* Blur on a pseudo-element: backdrop-filter directly on the header would make
   it the containing block for the fixed drawer + backdrop, trapping them in
   the header's 120px box. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(253,247,238,0.97); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.7rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex: none; text-decoration: none; }
.brand img { height: 54px; width: 54px; }
.brand .sr-only { position: absolute; }
/* Wordmark rendered as live text so the logo stays crisp on every screen */
.brand-word { font-family: var(--font-display); line-height: 1.05; text-transform: uppercase; }
.brand-word .bw1 { display: block; font-weight: 600; font-size: 1.16rem; letter-spacing: 0.18em; color: var(--navy); }
.brand-word .bw2 { display: block; font-weight: 600; font-size: 1.16rem; letter-spacing: 0.18em; color: var(--green-700); }
.brand-word .bw3 { display: block; font-weight: 600; font-size: 0.68rem; letter-spacing: 0.24em; color: var(--navy); margin-top: 0.1rem; }

.nav { display: flex; align-items: center; gap: 0.2rem; }
.nav a {
  text-decoration: none; color: var(--navy); font-weight: 700; font-size: 0.98rem;
  padding: 0.55rem 0.68rem; border-radius: 8px; white-space: nowrap; transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav a:hover { background: var(--cream); color: var(--green-700); }
.nav a.is-active { color: var(--green-700); }
.header-cta { display: inline-flex; align-items: center; gap: 0.9rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  font-weight: 700; text-decoration: none; color: var(--navy);
}
.header-phone svg { width: 18px; height: 18px; color: var(--green); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 50px; height: 50px; background: var(--navy); color: #fff;
  border: none; border-radius: 10px;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 85% 0%, var(--cream-2), var(--cream) 60%); }
.hero::before { /* soft botanical wash */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 90% 15%, rgba(193,146,46,0.10), transparent 70%),
    radial-gradient(45% 45% at 5% 90%, rgba(92,115,66,0.10), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
  padding-block: clamp(2.75rem, 6vw, 5rem);
}
.hero-copy .eyebrow { margin-bottom: 1.1rem; }
.hero h1 {
  font-size: clamp(2.4rem, 1.4rem + 4vw, 4rem); line-height: 1.05;
  letter-spacing: 0.01em; margin-bottom: 1.1rem;
}
.hero h1 .accent { color: var(--green-700); font-style: italic; }
/* Sous-titre du hero : dit le métier et le lieu dès le premier écran (visiteurs et moteurs). */
.hero-sub {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.2rem); line-height: 1.35;
  color: var(--green-700); margin: -0.35rem 0 1.05rem; max-width: 34rem;
}
.hero-copy > p { font-size: 1.14em; color: var(--text); max-width: 34rem; }
.hero-copy > p + p { margin-top: 0.9rem; color: var(--muted); font-size: 1.03em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.9rem 0 1.4rem; }
/* Reassurance chips sit on their own full-width row at the foot of the hero */
.chips--hero { grid-column: 1 / -1; justify-content: center; margin-top: 0.25rem; }

/* Hero visual — warm photos framed in gold-ringed cards */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-photo-card {
  position: relative; width: min(520px, 88vw);
  border-radius: 24px; overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.5);
  border: 2px solid rgba(193,146,46,0.35);
}
.hero-photo-card::after {
  content: ""; position: absolute; inset: 10px; border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.55); pointer-events: none;
}
.hero-photo-card img { display: block; width: 100%; height: auto; }
.leaf-accent { position: absolute; opacity: 0.5; color: var(--green); pointer-events: none; }
.leaf-accent.top-left { top: -8px; left: -14px; width: 120px; transform: rotate(-18deg); }
.leaf-accent.bottom-right { bottom: -10px; right: -8px; width: 110px; transform: rotate(150deg); }

/* =====================================================================
   Services
   ===================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2rem); align-items: stretch; }
.service-card {
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.service-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.4rem; }
.service-num {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-dark); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
}
.service-head h3 { margin-top: 0.15rem; }
.service-tagline { color: var(--green-700); font-weight: 700; font-size: 1.02em; margin: 0.2rem 0 1.2rem; }
.service-list { display: grid; gap: 0.9rem; margin-top: 0.4rem; }
.service-list li { display: grid; grid-template-columns: 22px 1fr; gap: 0.7rem; align-items: start; }
.service-list .tick { color: var(--gold-glyph); margin-top: 0.28rem; }
.service-list .tick svg { width: 18px; height: 18px; }
.service-list b { color: var(--navy); font-weight: 800; }
.service-list span.desc { color: var(--muted); font-size: 0.95em; display: block; }
.service-callout {
  margin-top: 1.4rem; padding: 1.1rem 1.25rem; background: var(--cream);
  border-radius: var(--radius-sm); border: 1px solid var(--line); color: var(--muted);
}
.service-callout b { color: var(--navy); }
.service-foot { margin-top: auto; padding-top: 1.5rem; }

/* Image that fills the shorter card so both service cards line up at the bottom */
.service-media {
  flex: 1 1 auto; min-height: clamp(200px, 22vw, 260px);
  margin-top: 1.4rem; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; display: block; }

/* Plain statement of what's NOT included — sets expectations right by the service lists */
.services-boundary {
  margin-top: clamp(1.5rem, 3vw, 2.25rem); margin-inline: auto; max-width: 56rem;
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.1rem 1.35rem; color: var(--muted);
}
.services-boundary svg { width: 22px; height: 22px; flex: none; color: var(--gold-glyph); margin-top: 2px; }
.services-boundary b { color: var(--navy); }

/* =====================================================================
   How it works (four gentle steps)
   ===================================================================== */
.how-steps {
  position: relative; list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2rem);
}
.how-steps::before { /* connector line behind the numbers (desktop only) */
  content: ""; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold)); opacity: 0.55;
}
.step { position: relative; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream-hi); border: 2px solid var(--gold); color: var(--gold-ink);
  font-family: var(--font-display); font-weight: 700; font-size: 1.7rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.step h3 { margin: 1.05rem 0 0.4rem; }
.step p { color: var(--muted); font-size: 0.98em; }

/* =====================================================================
   Peace of mind band (aimed at adult children)
   ===================================================================== */
.peace {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.06)),
    var(--navy);
  color: #fff; position: relative; overflow: hidden;
}
.peace::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(216,178,85,0.22), transparent 70%);
}
.peace .container { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.peace-photo {
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(216,178,85,0.4);
  box-shadow: var(--shadow-lg);
}
.peace-photo img { display: block; width: 100%; height: auto; }
.peace-heart {
  flex: none; width: 92px; height: 92px; border-radius: 50%;
  background: rgba(216,178,85,0.16); display: grid; place-items: center; color: var(--gold-2);
}
.peace-heart svg { width: 46px; height: 46px; }
.peace h2 { color: #fff; }
.peace .eyebrow { color: var(--gold-2); }
.peace p { color: rgba(255,255,255,0.9); margin-top: 0.7rem; max-width: 46rem; font-size: 1.08em; }

/* =====================================================================
   Why choose us
   ===================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.5rem); }
.why-item {
  background: var(--cream-hi); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; display: flex; gap: 0.9rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.why-item .tick {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-dark); color: #fff; display: grid; place-items: center;
}
.why-item .tick svg { width: 18px; height: 18px; }
.why-item h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.why-item p { font-size: 0.95em; color: var(--muted); margin-top: 0.2rem; }

/* =====================================================================
   Areas we cover
   ===================================================================== */
.areas-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.areas-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0; }
.area-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.42rem 0.8rem; font-weight: 700; font-size: 0.88rem; color: var(--navy); box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.area-pill svg { width: 14px; height: 14px; color: var(--gold-glyph); }
.areas-note { color: var(--muted); }
/* Photos of Surrey — high street with caption, aerial view below */
.areas-photos { display: grid; gap: 1.1rem; }
.areas-photo {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--cream-2);
}
.areas-photo img { display: block; width: 100%; height: auto; }
.areas-photo:last-child img { aspect-ratio: 16 / 7; object-fit: cover; }
.areas-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2.2rem 1.25rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(16,38,57,0.78));
  color: #fff; font-family: var(--font-display); font-size: 1.25rem; text-align: center;
}

/* =====================================================================
   About / Meet Trish
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo { position: relative; }
.about-photo img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 4px solid var(--ivory); aspect-ratio: 4/5; object-fit: cover;
}
.about-photo .photo-frame {
  position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%;
  border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1;
}
.about-photo .photo-caption {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -22px;
  background: var(--green-dark); color: #fff; padding: 0.6rem 1.4rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  white-space: nowrap; box-shadow: var(--shadow-md);
}
/* Compact type for this section so the full bio sits neatly beside the photo */
.about-copy { font-size: 0.96em; line-height: 1.55; }
.about-copy .signature { font-family: var(--font-script); font-size: 1.85rem; color: var(--green-700); margin-top: 0.4rem; line-height: 1; }
.about-copy p + p { margin-top: 0.65rem; }
.about-copy .quote {
  font-family: var(--font-display); font-size: 1.16em; font-style: italic;
  color: var(--navy); border-left: 3px solid var(--gold); padding-left: 1rem; margin: 0.95rem 0;
}

/* =====================================================================
   Prices
   ===================================================================== */
.prices-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 2.75rem); align-items: start; }
.price-card {
  background: var(--green-dark); color: #fff; border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); text-align: center;
  position: sticky; top: 100px;
}
.price-card .price-big { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.2rem, 8vw, 4.5rem); line-height: 1; }
.price-card .price-big small { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }
.price-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 1.4rem 0; }
.price-facts { display: grid; gap: 0.75rem; text-align: left; }
.price-facts li { display: grid; grid-template-columns: 20px 1fr; gap: 0.6rem; align-items: start; color: rgba(255,255,255,0.92); font-size: 0.98em; }
.price-facts svg { width: 16px; height: 16px; color: var(--gold-2); margin-top: 0.35rem; }
.price-card .btn { margin-top: 1.6rem; }

.price-detail h3 { margin-bottom: 0.6rem; }
.price-detail .lead { margin-bottom: 1.4rem; }
.detail-list { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.detail-list li { display: grid; grid-template-columns: 24px 1fr; gap: 0.75rem; align-items: start; }
.detail-list .tick { color: var(--green); margin-top: 0.2rem; }
.detail-list .tick svg { width: 20px; height: 20px; }
.detail-list b { color: var(--navy); }

/* Disclosure (Terms / FAQ) */
.disclosure { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream-hi); overflow: hidden; }
.disclosure + .disclosure { margin-top: 0.75rem; }
.disclosure > summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.35rem;
  font-weight: 800; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 1.05rem;
}
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary:hover { background: var(--cream-2); color: var(--green-700); } /* hover affordance */
.disclosure > summary .chev { flex: none; width: 22px; height: 22px; color: var(--gold-glyph); transition: transform 0.2s var(--ease); }
.disclosure[open] > summary .chev { transform: rotate(180deg); }
.disclosure .disclosure-body { padding: 0 1.35rem 1.35rem; }
.disclosure .disclosure-body ul { display: grid; gap: 0.7rem; }
.disclosure .disclosure-body li { display: grid; grid-template-columns: 20px 1fr; gap: 0.6rem; align-items: start; color: var(--text); }
.disclosure .disclosure-body svg { width: 17px; height: 17px; color: var(--green); margin-top: 0.35rem; }

/* =====================================================================
   Reviews
   ===================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.5rem); }
.review-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.9rem;
}
.review-card blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--navy); line-height: 1.4; }
.review-card .review-by { margin-top: auto; font-weight: 800; color: var(--green-700); font-size: 0.95em; }
.reviews-note {
  margin-top: 1.5rem; text-align: center; color: var(--muted); font-size: 0.9em;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-wrap { max-width: 52rem; margin-inline: auto; }

/* =====================================================================
   Contact
   ===================================================================== */
.contact { background: var(--navy); color: #fff; }
.contact .eyebrow { color: var(--gold-2); }
.contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-intro p { color: rgba(255,255,255,0.9); }
.contact-methods { display: grid; gap: 1rem; margin: 1.8rem 0; }
.contact-method {
  display: flex; align-items: center; gap: 1rem; text-decoration: none; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}
.contact-method:hover { background: rgba(255,255,255,0.12); transform: translateX(3px); }
.contact-method .ci {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(216,178,85,0.18); color: var(--gold-2);
}
.contact-method .ci svg { width: 22px; height: 22px; }
.contact-method > span:last-child { min-width: 0; } /* let the text column shrink so the long email wraps instead of clipping */
.contact-method .cm-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-2); font-weight: 800; }
.contact-method .cm-value { font-weight: 700; font-size: 1.05rem; overflow-wrap: anywhere; }
.contact-reassure {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem;
  color: var(--gold-2); font-weight: 800;
}
.contact-reassure svg { width: 20px; height: 20px; }

.contact-form {
  background: var(--cream-hi); color: var(--text); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 0.3rem; }
.contact-form .form-sub { color: var(--muted); font-size: 0.95em; margin-bottom: 1.3rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; font-size: 0.95rem; }
.field label .req { color: var(--gold-glyph); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--text);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; min-height: 52px; transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,59,94,0.14);
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; }
.form-status { margin-top: 1rem; font-weight: 700; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--green-700); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.86); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1.2fr; gap: clamp(1.75rem, 4vw, 3rem); }
.footer-brand .fb-word { font-family: var(--font-display); line-height: 1; }
.footer-brand .fb-word .l1 { display: block; font-size: 1.9rem; letter-spacing: 0.18em; color: #fff; }
.footer-brand .fb-word .l2 { display: block; font-size: 1.9rem; letter-spacing: 0.18em; color: var(--gold-2); }
.footer-brand .fb-word .l3 { display: block; font-size: 1.15rem; letter-spacing: 0.32em; color: #fff; }
.footer-brand p { margin-top: 1rem; max-width: 24rem; font-size: 0.96em; }
/* Cream disc behind the emblem so the navy hands & gold ring stay legible on the dark footer */
.footer-emblem {
  width: 76px; height: 76px; margin-bottom: 1rem;
  background: var(--cream-hi); border-radius: 50%; padding: 7px;
  box-shadow: 0 0 0 2px rgba(216,178,85,0.45);
}
.footer-col h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.86); text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
/* Icon-free contact list: each address fits on a single line */
.footer-contact li { min-width: 0; font-size: 0.94em; white-space: nowrap; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.footer-badges .fb { font-size: 0.78rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 0.3rem 0.75rem; }
.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.16);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.footer-bottom .script { font-family: var(--font-script); font-size: 1.5rem; color: var(--gold-2); }
.footer-bottom .legal { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* =====================================================================
   Floating WhatsApp button (V2 feature — wired & ready)
   ===================================================================== */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90; display: inline-flex; align-items: center; gap: 0.65rem;
  background: #25D366; color: #08301b; font-weight: 800; text-decoration: none;
  padding: 0.85rem 1.15rem; border-radius: 999px; box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 38px rgba(0,0,0,0.28); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .wa-text { font-size: 0.95rem; }

/* =====================================================================
   Reveal-on-scroll (progressive enhancement; disabled if reduced motion)
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Helpers
   ===================================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-2 { margin-top: 1rem; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Copy first on narrow screens so the H1 + primary CTA are near the top */
  .hero-visual { min-height: 0; margin-top: 0.5rem; }
  .hero-photo-card { width: min(440px, 88vw); }
  .services-grid { grid-template-columns: 1fr; }
  /* Cards stack here, so the alignment image no longer serves a purpose — hide it */
  .service-media { display: none; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; margin-inline: auto; }
  .prices-grid { grid-template-columns: 1fr; }
  .price-card { position: static; max-width: 420px; margin-inline: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .peace .container { grid-template-columns: 1fr; text-align: center; }
  .peace-heart { margin-inline: auto; }
  .peace p { margin-inline: auto; }
  .peace-photo { max-width: 440px; margin-inline: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Inline nav needs ~1130px alongside the logo, phone and CTA — below that,
   switch to the drawer menu so the "Free visit" button is never clipped. */
@media (max-width: 1140px) {
  /* The closed drawer sits off-screen right (translateX) and would otherwise
     let the page pan sideways into blank space; clip beats hidden because it
     doesn't turn <html> into a scroll container. */
  html { overflow-x: hidden; overflow-x: clip; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    background: var(--cream-hi); box-shadow: var(--shadow-lg);
    padding: 5.5rem 1.5rem 2rem; transform: translateX(105%);
    /* visibility keeps closed-menu links out of the keyboard tab order */
    visibility: hidden;
    transition: transform 0.28s var(--ease), visibility 0.28s var(--ease); z-index: 105;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav a { padding: 0.9rem 1rem; font-size: 1.1rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; white-space: normal; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(16,38,57,0.4); z-index: 104;
    opacity: 0; visibility: hidden; transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 760px) {
  /* Logo + phone + "Free visit" + burger = ~397px, wider than a 375px phone.
     The hero already carries the primary CTA, so drop the header button here. */
  .header-cta .btn { display: none; }
  .header-cta { gap: 0.6rem; }
  /* Comfortable 44px+ tap target for the icon-only phone link on mobile */
  .header-phone { padding: 0.6rem; min-width: 44px; min-height: 44px; justify-content: center; border-radius: 10px; }
  .header-phone .hp-num { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 1.1rem; }
  /* Keep the reassurance chips side by side (2 x 2) on phones */
  .chips--hero { display: grid; grid-template-columns: repeat(2, minmax(0, max-content)); justify-content: center; }
  .chips--hero .chip { font-size: 0.8rem; padding: 0.45rem 0.7rem; }
  .chips--hero .chip svg { width: 15px; height: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .wa-float .wa-text { display: none; }
  .wa-float { padding: 0.9rem; }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}

/* =====================================================================
   Reduced motion & print
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .wa-float, .nav-toggle, .contact-form { display: none; }
  body { background: #fff; }
  .peace, .contact, .price-card, .site-footer { background: #fff !important; color: #000 !important; }
}

/* Lien légal discret en pied de page (notice de confidentialité) */
.footer-bottom .legal-link {
  color: rgba(255,255,255,0.7); text-decoration: underline;
  text-underline-offset: 3px; margin-left: 0.55rem; white-space: nowrap;
}
.footer-bottom .legal-link:hover,
.footer-bottom .legal-link:focus-visible { color: #fff; }

/* =====================================================================
   Page 404
   ===================================================================== */
.nf-wrap {
  max-width: 40rem; margin-inline: auto; text-align: center;
  padding-block: clamp(3.5rem, 10vw, 7rem);
}
.nf-code {
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(5rem, 4rem + 12vw, 9rem); color: var(--green);
  opacity: 0.28; margin-bottom: 0.5rem;
}
.nf-wrap h1 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.7rem); margin-bottom: 0.75rem; }
.nf-wrap .nf-lead { color: var(--muted); font-size: 1.06rem; margin-bottom: 2rem; }
.nf-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-bottom: 2.75rem; }
.nf-links {
  border-top: 1px solid var(--line); padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.25rem; justify-content: center;
}
.nf-links a { color: var(--navy); font-weight: 700; text-decoration: none; text-underline-offset: 4px; }
.nf-links a:hover, .nf-links a:focus-visible { text-decoration: underline; }
