/* ============ SR Bien-être — « Le Souffle » ============ */
:root {
  /* Ground & ink — soft, calming sage-green ("un vert apaisant") */
  --plaster: #edf1e8;
  --plaster-deep: #e2e9db;
  --surface: #f7faf3;
  --ink: #2a3128;
  --ink-soft: #626d5b;
  --line: #dae2d2;

  /* Calming green palette — the action colour is a fresh, soothing green */
  --sage: #8a9a83;
  --sage-deep: #4d6a4c;
  --terracotta: #4e8760;      /* CTA / accent green (token name kept) */
  --terracotta-deep: #3f7150;

  /* The spectrum — used ONLY as refracted light (membrane, logo mark) */
  --brand-grad: linear-gradient(120deg, #e78ab0 0%, #9a7cc4 34%, #4aa9d8 68%, #7fc48a 100%);

  /* Legacy aliases kept so downstream rules inherit the new system */
  --bg: var(--plaster);
  --bg-alt: var(--plaster-deep);
  --purple: var(--sage-deep);
  --purple-deep: var(--sage-deep);
  --pink: var(--terracotta);
  --teal: var(--sage-deep);

  --shadow-sm: 0 6px 20px rgba(48, 60, 42, .08);
  --shadow: 0 26px 60px rgba(48, 60, 42, .15);
  --radius: 20px;
  --radius-sm: 12px;
  --wrap: 1140px;
  --ff-head: "Fraunces", Georgia, serif;
  --ff-body: "Inter Tight", system-ui, -apple-system, sans-serif;
  --ff-script: "Petit Formal Script", cursive;

  --breath: 11s; /* one calm resting-breath cycle */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html { background: var(--bg); }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
/* When the WebGL world is live, the page floats over it: body goes transparent so
   the fixed background canvas shows, and content keeps its own legible grounds. */
html.source-on body { background: transparent; }
img { max-width: 100%; display: block; }
picture { display: contents; } /* let the inner <img> lay out as if direct child */
.icon-sprite { position: absolute; width: 0; height: 0; } /* hidden SVG symbol sprite */
a { color: inherit; }

/* ---- Thin line icons ---- */
.ic {
  width: 1.35em; height: 1.35em; fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.28em; flex: none;
}
.card-icon .ic { width: 26px; height: 26px; stroke: var(--accent); }
.trust-ic .ic { width: 27px; height: 27px; stroke: var(--sage-deep); }
.contact-ic .ic { width: 28px; height: 28px; stroke: var(--sage-deep); }
.reserve-points .ic { width: 20px; height: 20px; stroke: rgba(255,255,255,.85); }
.btn .ic { width: 18px; height: 18px; stroke-width: 1.6; }
.fab .ic { width: 17px; height: 17px; }

.container { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--purple); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; text-decoration: none;
  cursor: pointer; border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s;
  line-height: 1;
}
.btn { font-family: var(--ff-body); font-weight: 600; letter-spacing: .01em; }
.btn:hover { transform: translateY(-2px); }
/* base uses the deeper green so white label clears WCAG AA (4.5:1); hover darkens further */
.btn-primary { background: var(--terracotta-deep); color: #fff; box-shadow: 0 12px 26px rgba(63, 113, 80, .32); }
.btn-primary:hover { background: #34613f; box-shadow: 0 16px 32px rgba(63, 113, 80, .42); }
.btn-ghost { background: transparent; border-color: var(--sage); color: var(--sage-deep); }
.btn-ghost:hover { background: rgba(138, 154, 134, .12); }
.btn-ghost-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }

/* Visible keyboard focus for all interactive elements */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--sage-deep); outline-offset: 3px; border-radius: 6px;
}
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.28); }
.btn-whatsapp:hover { background: #1fb457; box-shadow: 0 16px 32px rgba(37,211,102,.38); }
.btn-whatsapp .ic { stroke: #fff; }
.btn-sm { padding: .6rem 1.1rem; font-size: .92rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .24em; font-size: .72rem; font-weight: 600;
  color: var(--sage-deep); margin: 0 0 1rem;
}
.eyebrow-light { color: rgba(255,255,255,.8); }
.grad-text { color: var(--sage-deep); font-style: italic; }

h1, h2, h3 { font-family: var(--ff-head); font-weight: 400; line-height: 1.08; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.45rem; font-weight: 500; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 233, .82); backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { display: grid; place-items: center; }
.brand-mark img { height: 42px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; }
.brand-name em { font-family: var(--ff-script); font-style: normal; color: var(--purple-deep); font-size: 1.35rem; }
.brand-tagline { font-size: .68rem; color: var(--ink-soft); letter-spacing: .02em; }

.nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.6rem; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; font-weight: 600; font-size: .98rem; color: var(--ink); transition: color .15s; }
.nav-menu a:hover { color: var(--purple-deep); }
.nav-cta { color: #fff !important; }
.nav-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: #25d366; color: #fff;
  transition: background .18s ease, transform .18s ease;
}
.nav-wa:hover { background: #1fb457; transform: translateY(-2px); }
.nav-wa .ic { stroke: #fff; width: 20px; height: 20px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ============ HERO — « Le Souffle » ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: min(78vh, 660px);
  display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 100% 0%, #e4ecdd 0%, transparent 55%),
    var(--plaster);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center;
  padding: clamp(2rem, 3.5vw, 3rem) 0;
}
.hero-copy { max-width: 27rem; }
.hero-title { margin: 0 0 1.4rem; }
.accent-word { font-style: italic; color: var(--terracotta-deep); }
.lead { font-size: 1.18rem; line-height: 1.6; color: var(--ink-soft); max-width: 40ch; margin: 0 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-values {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0; margin: 0; padding: 1.4rem 0 0; border-top: 1px solid var(--line);
}
.hero-values li {
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--sage-deep);
  padding-right: 1.1rem; margin-right: 1.1rem; position: relative;
}
.hero-values li::after {
  content: ""; position: absolute; right: -3px; top: 50%; width: 5px; height: 5px; border-radius: 50%;
  background: var(--terracotta); opacity: .5; transform: translateY(-50%);
}
.hero-values li:last-child { padding-right: 0; margin-right: 0; }
.hero-values li:last-child::after { display: none; }

/* editorial place-line, upper right */
.hero-place {
  grid-column: 2; justify-self: end; align-self: start; text-align: right; margin: 0;
  font-family: var(--ff-head); font-size: 1.4rem; line-height: 1.2; color: var(--ink);
  writing-mode: vertical-rl; transform: rotate(180deg); opacity: .9;
}
.hero-place span {
  display: block; font-family: var(--ff-body); font-size: .64rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--sage-deep); margin-bottom: .8rem;
}

/* La Membrane — glow used as the MOBILE fallback (hidden on desktop; poster used there) */
.membrane {
  display: none;
  position: absolute; z-index: 1; top: 50%; right: 4%; transform: translateY(-50%);
  width: min(46vw, 540px); aspect-ratio: 1; pointer-events: none;
  animation: breathe var(--breath) ease-in-out infinite;
  will-change: transform, opacity;
}
.membrane-svg { width: 100%; height: 100%; }

/* Desktop fallback poster — a still of the 3D scene, styled/masked like the live canvas */
.hero-poster {
  position: absolute; z-index: 1; top: 0; right: 0;
  width: min(66vw, 820px); height: 100%; object-fit: cover; object-position: 60% 50%;
  pointer-events: none; transition: opacity 1s ease;
  animation: breathe-poster var(--breath) ease-in-out infinite; will-change: transform;
  -webkit-mask-image: radial-gradient(115% 78% at 70% 52%, #000 50%, transparent 84%);
          mask-image: radial-gradient(115% 78% at 70% 52%, #000 50%, transparent 84%);
}
@keyframes breathe-poster { 0%,100% { transform: scale(1); } 50% { transform: scale(1.025); } }

/* La Source — WebGL scroll world (progressive enhancement, desktop/tablet).
   A single fixed background canvas the whole page scrolls over. */
.source-world {
  position: fixed; inset: 0; z-index: -1;
  width: 100vw; height: 100vh; height: 100dvh;
  opacity: 0; transition: opacity 1.4s ease; pointer-events: none;
}
.source-world.is-ready { opacity: 1; }

/* Hero opens straight onto the world; the flat fallbacks step aside. */
html.source-on .hero { background: transparent; }
html.source-on .membrane, html.source-on .hero-poster { opacity: 0; transition: opacity 1s ease; }
/* a soft plaster wash under the hero copy so the headline never fights the scene */
html.source-on .hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(237,241,232,.92) 0%, rgba(237,241,232,.62) 34%, rgba(237,241,232,0) 60%);
}

/* Mid-page sections keep a translucent plaster ground: text stays crisp while the
   rising cairn only whispers through behind the content. */
html.source-on #services,
html.source-on #cabinet { background: rgba(237, 241, 232, .72); }

/* The finale : let the risen dawn horizon read behind the closing content. */
html.source-on #contact { background: rgba(233, 238, 220, .80); }
html.source-on .site-footer { background: rgba(29, 38, 31, .74); }
@keyframes breathe {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .92; }
  50%      { transform: translateY(-50%) scale(1.055); opacity: 1; }
}
@keyframes breathe-m {
  0%, 100% { transform: translateX(50%) scale(1); opacity: .78; }
  50%      { transform: translateX(50%) scale(1.05); opacity: .9; }
}

/* scroll cue — the invitation to breathe */
.hero-scroll {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; text-decoration: none;
}
.hero-scroll-word {
  font-family: var(--ff-head); font-style: italic; font-size: 1.05rem; color: var(--sage-deep); letter-spacing: .01em;
}
.hero-scroll-dot {
  width: 1px; height: 44px; background: linear-gradient(var(--sage-deep), transparent);
  transform-origin: top; animation: drip var(--breath) ease-in-out infinite;
}
@keyframes drip { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: .9; } }

/* ============ OPENING RITUAL ============ */
.intro {
  position: fixed; inset: 0; z-index: 200; background: var(--plaster);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.intro.is-active { opacity: 1; visibility: visible; }
.intro.is-leaving { opacity: 0; }
.intro-inner { position: relative; width: min(90vw, 600px); height: 42vh; display: grid; place-items: center; }
.intro-line {
  position: absolute; top: calc(50% - 4.8rem); left: 50%; transform: translateX(-50%);
  height: 1px; width: 0; background: linear-gradient(90deg, transparent, var(--sage-deep), transparent);
  transition: width 1.7s cubic-bezier(.33,0,.2,1);
}
.intro.is-active .intro-line { width: min(58vw, 400px); }
.intro-word {
  position: absolute; left: 50%; top: 50%; margin: 0; width: max-content; max-width: 92vw; text-align: center;
  font-family: var(--ff-head); font-weight: 400; color: var(--ink);
  transform: translate(-50%, -46%); opacity: 0;
  transition: opacity .85s ease, transform .85s ease;
}
.intro-word--a { font-style: italic; font-size: clamp(2.4rem, 8vw, 4.2rem); }
.intro-word--b { font-size: clamp(1.7rem, 5vw, 3rem); line-height: 1.14; }
.intro-word--b i { font-style: italic; color: var(--terracotta-deep); }
.intro-word.show { opacity: 1; transform: translate(-50%, -50%); }
.intro-skip {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: none; border: 0; cursor: pointer; padding: .6rem 1rem;
  font-family: var(--ff-body); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage-deep); opacity: 0; transition: opacity .6s ease .5s;
}
.intro.is-active .intro-skip { opacity: .65; }
.intro-skip:hover { opacity: 1; }
body.intro-lock { overflow: hidden; }

/* breath indicator — a hairline that swells at the page edge */
.breath-line {
  position: fixed; left: 0; top: 0; bottom: 0; width: 2px; z-index: 40; pointer-events: none;
  background: linear-gradient(var(--terracotta), transparent 55%);
  transform-origin: top; opacity: .22;
  animation: breathline var(--breath) ease-in-out infinite;
}
@keyframes breathline { 0%,100% { transform: scaleY(.32); } 50% { transform: scaleY(1); } }

/* ============ TRUST STRIP ============ */
.trust { background: var(--bg-alt); border-block: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.6rem 0; }
.trust-item { display: flex; align-items: center; gap: .8rem; justify-content: center; }
.trust-ic { font-size: 1.7rem; line-height: 1; }
.trust-item p { margin: 0; font-size: .95rem; color: var(--ink-soft); line-height: 1.35; }
.trust-item strong { color: var(--ink); font-weight: 700; }

/* ============ SECTIONS ============ */
.section { padding: clamp(2.25rem, 4.5vw, 3.75rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.25rem; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; margin: .8rem 0 0; }

/* ---- Cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border-radius: var(--radius); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--purple));
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
/* per-card accent colours (were inline styles; moved to classes so the CSP can drop unsafe-inline) */
.card--a { --accent: #6b8e69; }
.card--b { --accent: #4f8a7a; }
.card--c { --accent: #5f9a86; }
.card--d { --accent: #7d9455; }
.card--e { --accent: #93a35f; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1rem;
  background: color-mix(in srgb, var(--accent) 15%, white);
}
.card h3 { color: var(--ink); margin-bottom: .7rem; }
.card ul { list-style: none; margin: 0; padding: 0; }
.card li { position: relative; padding-left: 1.4rem; margin-bottom: .5rem; color: var(--ink-soft); font-size: .96rem; }
.card li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.card-cta {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: .8rem;
  background: linear-gradient(160deg, #fff, #f6f1fa);
}
.card-cta p { margin: 0; color: var(--ink-soft); }
.card-price {
  margin: 1rem 0 0; padding-top: .9rem; border-top: 1px solid var(--line);
  font-size: .86rem; color: var(--ink-soft); line-height: 1.7;
}
.card-price strong { color: var(--accent); font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; }
.booking-hint {
  display: flex; align-items: center; gap: .6rem; justify-content: center; flex-wrap: wrap;
  max-width: 680px; margin: 2rem auto 0; padding: .85rem 1.3rem;
  font-size: .9rem; color: var(--ink-soft); line-height: 1.5; text-align: center;
  background: rgba(138, 154, 134, .14); border: 1px solid var(--line); border-radius: 14px;
}
.booking-hint .ic { width: 20px; height: 20px; stroke: var(--sage-deep); flex: none; }
.booking-hint strong { color: var(--sage-deep); font-weight: 700; }

/* ---- À propos ---- */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
/* grid items default to min-width:auto (min-content) which can force a track wider than
   the viewport on mobile — pin to 0 so content wraps instead of causing h-scroll */
.about-media, .about-copy { min-width: 0; }
.about-media img {
  border-radius: 50%; width: 320px; height: 320px; object-fit: cover; margin-inline: auto;
  box-shadow: var(--shadow); border: 6px solid #fff;
  outline: 3px solid transparent; background: linear-gradient(150deg, var(--sage), var(--terracotta)); padding: 5px;
}
.about-copy p { color: var(--ink-soft); margin: 1rem 0; }
.credentials {
  display: inline-flex; align-items: center; gap: .6rem; font-size: .92rem;
  flex-wrap: wrap; max-width: 100%;
  color: var(--sage-deep); background: rgba(138,154,134,.12);
  padding: .7rem 1.1rem; border-radius: 12px; margin: 1.3rem 0 0; line-height: 1.4;
}
.credentials .ic { width: 20px; height: 20px; stroke: var(--sage-deep); flex: none; }
.credentials strong { color: var(--ink); font-weight: 700; }
.about-copy h2 { margin-top: .3rem; }
blockquote {
  font-family: var(--ff-script); font-size: 2rem; color: var(--terracotta-deep);
  margin: 1.6rem 0; padding-left: 1.2rem; border-left: 2px solid var(--sage);
}
.about-values { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.about-values span {
  font-size: .84rem; font-weight: 700; color: var(--purple-deep);
  background: rgba(138,154,134,.16); padding: .4rem .9rem; border-radius: 999px;
}

/* ---- Galerie ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 300px; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }

/* ---- Réserver ---- */
.reserve {
  position: relative; overflow: hidden; color: #fff; border-radius: 0;
  background: radial-gradient(120% 140% at 85% 15%, #6a7d64 0%, #4a5a46 55%, #3a4738 100%);
}
.reserve > * { position: relative; z-index: 1; }
.reserve::after {
  content: ""; position: absolute; z-index: 0; top: 50%; right: -8%; transform: translateY(-50%);
  width: 46vw; max-width: 520px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, rgba(244,250,236,.55), rgba(160,196,150,.28) 45%, transparent 70%);
  filter: blur(20px); animation: breathe var(--breath) ease-in-out infinite; pointer-events: none;
}
.reserve-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.reserve h2 { color: #fff; }
.reserve-copy p { color: rgba(255,255,255,.9); margin: .6rem 0 1.2rem; font-size: 1.1rem; }
.reserve-points { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.reserve-points li { font-weight: 500; display: flex; align-items: center; gap: .6rem; }
.reserve-actions { display: flex; flex-direction: column; gap: .9rem; align-items: stretch; text-align: center; }
.reserve-actions .btn { width: 100%; }
.reserve-actions .btn-primary { background: #eef3e6; color: var(--terracotta-deep); box-shadow: 0 12px 26px rgba(0,0,0,.22); }
.reserve-actions .btn-primary:hover { background: #fff; }
.reserve-note { font-size: .85rem; color: rgba(255,255,255,.82); margin: .2rem 0 0; line-height: 1.5; }
.reserve-note strong { color: #fff; font-weight: 700; }

/* ---- Contact ---- */
.contact-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; max-width: 1060px; margin-inline: auto; }
.contact-item { flex: 1 1 150px; max-width: 210px; }
.contact-email { font-size: .82rem; word-break: break-word; }
.contact-item {
  background: var(--surface); border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center;
  text-decoration: none; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: .35rem; transition: transform .2s;
}
a.contact-item:hover { transform: translateY(-4px); }
.contact-ic { font-size: 1.8rem; }
.contact-label { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--ink-soft); font-weight: 700; }
.contact-val { font-family: var(--ff-head); font-size: 1.3rem; color: var(--ink); }
.contact-val small { font-family: var(--ff-body); font-size: .8rem; color: var(--ink-soft); }

/* ---- Map ---- */
.map-wrap { max-width: 1060px; margin: 2.5rem auto 0; text-align: center; }
.map-embed {
  width: 100%; height: 360px; display: block;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.map-directions { margin-top: 1rem; }

/* ============ FOOTER ============ */
.site-footer { background: #28322a; color: #c4ccbe; padding: 2.5rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.2rem; }
.footer-logo { height: 58px; width: auto; display: block; margin-bottom: .6rem; }
.footer-brand .brand-name { color: #fbf8f4; font-size: 1.5rem; }
.footer-brand .brand-name em { font-family: var(--ff-script); color: #9ec089; }
.footer-brand p { margin: .3rem 0 0; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #8c9384; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.site-footer nav a { text-decoration: none; color: #c4ccbe; font-size: .95rem; }
.site-footer nav a:hover { color: #fbf8f4; }
.footer-legal { width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,.09); padding-top: 1.2rem; margin: .5rem 0 0; font-size: .82rem; color: #808a78; }
.footer-legal-links { width: 100%; text-align: center; margin: .1rem 0 0; display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.footer-legal-links a { color: #9aa591; text-decoration: none; font-size: .82rem; }
.footer-legal-links a:hover { color: #fbf8f4; }

/* ============ 404 PAGE ============ */
.error-page { max-width: 640px; margin: 0 auto; padding: clamp(3rem, 9vw, 6rem) 0; text-align: center; }
.error-page h1 { font-size: clamp(2rem, 6vw, 3rem); margin: .3rem 0 1rem; }
.error-lead { color: var(--ink-soft); font-size: 1.12rem; max-width: 44ch; margin: 0 auto 2rem; }
.error-page .hero-actions { justify-content: center; }

/* ============ LEGAL PAGES ============ */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) 0; }
.legal .back { display: inline-block; margin-bottom: 1.5rem; color: var(--sage-deep); text-decoration: none; font-weight: 600; font-size: .95rem; }
.legal .back:hover { color: var(--terracotta-deep); }
.legal h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); margin: 0 0 .4rem; }
.legal .updated { color: var(--ink-soft); font-size: .9rem; margin: 0 0 2rem; }
.legal h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal a { color: var(--terracotta-deep); }
.legal .todo { background: #fff6e0; border: 1px solid #e8d28c; border-radius: var(--radius-sm); padding: .5rem .8rem; color: #7a5a00; font-size: .9rem; }

/* ---- Floating action button (mobile) ---- */
.fab {
  position: fixed; bottom: 18px; right: 18px; z-index: 40; display: none;
  align-items: center; gap: .5rem;
  background: var(--terracotta-deep); color: #fff; text-decoration: none; font-weight: 600;
  padding: .8rem 1.2rem; border-radius: 999px; box-shadow: 0 10px 24px rgba(63,113,80,.42);
  font-size: .95rem;
}
.fab-wa {
  position: fixed; bottom: 14px; left: 14px; z-index: 40; display: none;
  align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff; text-decoration: none;
  box-shadow: 0 10px 24px rgba(37,211,102,.42);
}
.fab-wa .ic { stroke: #fff; width: 24px; height: 24px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero { min-height: auto; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 4rem; }
  .hero-copy { max-width: none; margin-inline: auto; }
  .lead { max-width: 46ch; margin-inline: auto; }
  .hero-place { display: none; }
  .membrane {
    display: block;
    top: 8%; right: 50%; transform: translateX(50%); width: min(88vw, 460px);
    opacity: .8; animation: breathe-m var(--breath) ease-in-out infinite;
  }
  .hero-poster { display: none; }
  .breath-line { display: none; }
  .hero-scroll { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .about-values, .hero-values { justify-content: center; }
  blockquote { border-left: 0; border-top: 2px solid var(--sage); padding: 1rem 0 0; text-align: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reserve-inner { grid-template-columns: 1fr; text-align: center; }
  .reserve-points { justify-items: center; }
  .contact-grid { grid-template-columns: 1fr 1fr; max-width: 520px; }

  /* comfortable touch targets on mobile (>=44px) */
  .nav-toggle { display: flex; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; }
  .btn { min-height: 44px; }
  .btn-sm { min-height: 44px; }
  .nav-menu {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 0 1.25rem; box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  }
  .nav-menu.open { max-height: 420px; padding: .5rem 1.25rem 1.25rem; }
  .nav-menu li { border-top: 1px solid var(--line); }
  .nav-menu li:first-child { border-top: 0; }
  .nav-menu a { display: block; padding: .55rem 0; }
  .nav-menu li { padding: .3rem 0; }
  .nav-cta { margin-top: .4rem; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .fab { display: inline-flex; }
  .fab-wa { display: inline-flex; }
  .nav-wa-item { display: none; }
}
@media (max-width: 700px) {
  .trust-inner { grid-template-columns: 1fr; gap: .5rem; padding: 1.3rem 0; }
  .trust-item { justify-content: flex-start; max-width: 320px; margin-inline: auto; width: 100%; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 200px; }
  .map-embed { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 340px; }
  .brand-tagline { display: none; }
  .container { width: min(100% - 2rem, var(--wrap)); }
  h1 { font-size: clamp(2.1rem, 8.5vw, 2.8rem); }
  .lead { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .fab { bottom: 14px; right: 14px; padding: .7rem 1.05rem; font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ---- Service card description ---- */
.card-desc { color: var(--ink-soft); font-size: .95rem; line-height: 1.55; margin: 0 0 .95rem; }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .9rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--sage); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.3rem;
  font-family: var(--ff-head); font-size: 1.05rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; line-height: 1; color: var(--sage-deep);
  transition: transform .2s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--sage-deep); outline-offset: -3px; border-radius: var(--radius-sm); }
.faq-answer { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); line-height: 1.65; }
.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--sage-deep); font-weight: 600; }

/* ---- Service pages ---- */
.breadcrumb { font-size: .9rem; color: var(--ink-soft); padding: 1.4rem 0 0; }
.breadcrumb a { color: var(--sage-deep); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.svc-top { padding-top: 1.5rem; }
.svc-hero { max-width: 720px; }
.svc-hero h1 { font-size: clamp(2rem, 5.5vw, 3rem); margin: .35rem 0 1rem; line-height: 1.1; }
.svc-hero .lead { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.6; margin: 0 0 1.8rem; }
.prose { max-width: 720px; }
.prose h2 { margin: .2rem 0 .8rem; }
.prose p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }
.card p.card-desc { margin-bottom: 0; }
.steps { max-width: 720px; margin: 1.4rem 0 0; padding: 0; list-style: none; counter-reset: step; display: grid; gap: 1rem; }
.steps li { position: relative; padding-left: 3.2rem; color: var(--ink-soft); line-height: 1.6; min-height: 2.1rem; display: flex; align-items: center; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: color-mix(in srgb, var(--sage-deep) 14%, white); color: var(--sage-deep);
  font-family: var(--ff-head); font-weight: 600; display: grid; place-items: center;
}
.svc-pricing { max-width: 720px; margin: 0 auto; display: grid; gap: .9rem; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1rem 1.3rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.price-row .label { color: var(--ink); }
.price-row .price { font-family: var(--ff-head); font-weight: 600; color: var(--sage-deep); font-size: 1.15rem; white-space: nowrap; }
.card-link {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem;
  color: var(--sage-deep); font-weight: 600; font-size: .95rem; text-decoration: none;
}
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(3px); }
.card-link:hover { text-decoration: underline; }
