/* ============================================================
   Nounou des mille et une pattes — Redesign
   Editorial · Boutique · Warm
   ============================================================ */

/* --- Tokens --- */
:root {
  --bg: #F8F5F0;
  --bg-2: #EDE4D8;
  --bg-3: #E4D8C6;
  --ink: #1F1F1F;
  --ink-soft: #4A4A4A;
  --ink-mute: #7A7268;
  --sage: #7D8F69;
  --sage-deep: #5E7252;
  --gold: #C9A86A;
  --gold-deep: #A88846;
  --line: rgba(31, 31, 31, 0.10);
  --line-soft: rgba(31, 31, 31, 0.06);
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(28, 24, 18, .04), 0 8px 24px rgba(28, 24, 18, .05);
  --shadow-md: 0 4px 12px rgba(28, 24, 18, .06), 0 20px 50px rgba(28, 24, 18, .08);
  --shadow-lg: 0 20px 80px rgba(28, 24, 18, .18);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --container: 1240px;
  --container-narrow: 920px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --nav-h: 84px;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.005em; color: var(--ink); }
p { margin: 0; }

::selection { background: var(--gold); color: var(--ink); }

/* --- Layout --- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 32px; }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: 32px; }

/* --- Typography utilities --- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-deep);
}
.eyebrow.eyebrow-gold { color: var(--gold-deep); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 14px;
  opacity: .6;
}

h1, .h1 { font-size: clamp(44px, 6.8vw, 92px); line-height: 1.02; letter-spacing: -.02em; font-weight: 400; }
h2, .h2 { font-size: clamp(34px, 4.5vw, 58px); line-height: 1.08; letter-spacing: -.012em; font-weight: 400; }
h3, .h3 { font-size: clamp(24px, 2.5vw, 32px); line-height: 1.18; font-weight: 500; }
h4, .h4 { font-size: 20px; line-height: 1.3; font-weight: 500; }
h5, .h5 { font-size: 14px; line-height: 1.3; letter-spacing: .08em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; color: var(--ink); }

.lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--ink-soft); }

.serif-italic { font-family: var(--serif); font-style: italic; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline { color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: var(--bg); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover { gap: 16px; border-color: var(--ink); }
.link-arrow svg { width: 14px; height: 14px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-light .brand-name,
.nav.is-light .nav-links a,
.nav.is-light .nav-toggle { color: var(--white); }
.nav.is-light .brand-tag { color: rgba(255,255,255,.7); }
.nav.is-light .nav-cta { color: var(--white); border-color: rgba(255,255,255,.45); }
.nav.is-light .nav-cta:hover { background: var(--white); color: var(--ink); }

.nav.is-scrolled {
  background: rgba(248, 245, 240, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 24px rgba(28, 24, 18, .06);
  padding: 12px 0;
}
.nav.is-scrolled.is-light .brand-name,
.nav.is-scrolled.is-light .nav-links a,
.nav.is-scrolled.is-light .nav-toggle { color: var(--ink); }
.nav.is-scrolled.is-light .brand-tag { color: var(--ink-mute); }
.nav.is-scrolled.is-light .nav-cta { color: var(--ink); border-color: var(--ink); }
.nav.is-scrolled.is-light .nav-cta:hover { background: var(--ink); color: var(--bg); }

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 4px 12px rgba(0,0,0,.18);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink);
  transition: color .4s var(--ease);
}
.brand-tag {
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 5px;
  transition: color .4s var(--ease);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  position: relative;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 450;
  letter-spacing: .02em;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 8px;
  padding: 9px 18px !important;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform .3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav.is-open .nav-toggle span { background: transparent; }
.nav.is-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 16s ease-out forwards;
  z-index: -2;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,12,.35) 0%, rgba(15,14,12,0) 38%, rgba(15,14,12,.05) 60%, rgba(15,14,12,.75) 100%),
    linear-gradient(90deg, rgba(15,14,12,.35) 0%, rgba(15,14,12,0) 55%);
  z-index: -1;
}
.hero-content {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 32px 88px;
  width: 100%;
}
.hero-content .eyebrow { color: rgba(255,255,255,.85); }
.hero-content .eyebrow::before { background: rgba(255,255,255,.85); opacity: 1; }
.hero h1 {
  color: var(--white);
  max-width: 16ch;
  margin: 18px 0 22px;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,.18);
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 52ch;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  margin-bottom: 38px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.5);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--white);
  animation: scrollDot 2.2s var(--ease) infinite;
}
@keyframes scrollDot { 0% { top: -40%; } 100% { top: 140%; } }

/* sub-hero (interior pages) */
.hero-sub-page {
  min-height: 80vh;
  align-items: center;
}
.hero-sub-page .hero-content {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 88px;
}
.hero-sub-page h1 { font-size: clamp(40px, 5.4vw, 76px); }

/* --- Trust strip --- */
.trust {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 56px 0;
}
.trust-item {
  text-align: center;
  padding: 4px 28px;
  border-left: 1px solid var(--line-soft);
}
.trust-item:first-child { border-left: 0; }
.trust-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
}
.trust-num em { font-style: italic; color: var(--gold-deep); }
.trust-label {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* --- Sections --- */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-tight { padding: clamp(60px, 7vw, 100px) 0; }
.section-bg-2 { background: var(--bg-2); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.section-head .head-left { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); margin-top: 20px; max-width: 56ch; }

/* --- Intro block --- */
.intro-block {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.intro-block h2 { margin: 22px 0 28px; }
.intro-block p { color: var(--ink-soft); font-size: clamp(17px, 1.3vw, 19px); line-height: 1.65; max-width: 65ch; margin-inline: auto; }

/* --- Service cards (homepage) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.18) 100%);
}
.service-no {
  position: absolute;
  top: 22px;
  left: 22px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  letter-spacing: .04em;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.service-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.service-body h3 { font-size: 26px; }
.service-body p { color: var(--ink-soft); flex: 1; }
.service-body .link-arrow { align-self: flex-start; margin-top: 8px; }

/* --- Why-choose grid --- */
.why-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-stack {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-img-stack .img-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-img-stack .img-tag svg { width: 24px; height: 24px; color: var(--sage-deep); flex-shrink: 0; }
.why-img-stack .img-tag-text { font-size: 13px; line-height: 1.4; color: var(--ink); }
.why-img-stack .img-tag-text strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 500; margin-bottom: 2px; }

/* Duo of resident portraits (Yago & Socrate) */
.why-img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-img-duo .duo-item {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.why-img-duo .duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.why-img-duo .duo-item:hover img { transform: scale(1.05); }
.why-img-duo .duo-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.66));
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  text-align: center;
}
.why-img-duo .duo-cap {
  grid-column: 1 / -1;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.why-img-duo .duo-cap svg { width: 16px; height: 16px; color: var(--sage-deep); }

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
  margin-top: 48px;
}
.why-item .why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--sage-deep);
}
.why-item .why-icon svg { width: 20px; height: 20px; }
.why-item h4 { font-family: var(--serif); font-size: 19px; font-weight: 500; margin-bottom: 8px; }
.why-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* --- Pull quote --- */
.quote {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(70px, 8vw, 110px) 32px;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 96px;
  line-height: .6;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.28;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -.005em;
}
.quote-author {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* --- Final CTA --- */
.cta-final {
  position: relative;
  padding: clamp(90px, 10vw, 140px) 0;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--cta-img);
  z-index: -2;
  transform: scale(1.04);
}
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,14,12,.65), rgba(15,14,12,.75));
  z-index: -1;
}
.cta-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: 0 32px;
}
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,.82); margin: 22px auto 36px; max-width: 50ch; font-size: 18px; }

/* --- Footer --- */
.footer {
  background: #131211;
  color: rgba(255,255,255,.7);
  padding: 90px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr .8fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 8px 24px rgba(0,0,0,.3);
}
.footer-brand h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-brand p { color: rgba(255,255,255,.55); max-width: 36ch; line-height: 1.65; }
.footer-col h5 {
  color: var(--white);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.65); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: #131211; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a:hover { color: var(--white); }
.footer-credit { display: inline-flex; align-items: center; gap: 7px; }
.footer-credit a { color: var(--gold); font-weight: 500; letter-spacing: .03em; transition: color .25s var(--ease); }
.footer-credit a:hover { color: #e7cf9d; }

/* ============================================================
   PRÉSENTATION PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait .ribbon {
  position: absolute;
  top: 24px;
  left: -12px;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 10px 18px;
  font-weight: 500;
}
.about-text h2 { margin-bottom: 28px; }
.about-text .lede { margin-bottom: 24px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-sign {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-sign-line { width: 40px; height: 1px; background: var(--ink); }
.about-sign-name { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--ink); }
.about-sign-role { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }

/* Story blocks */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.story-row:last-child { margin-bottom: 0; }
.story-row.reverse { direction: rtl; }
.story-row.reverse > * { direction: ltr; }
.story-img { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-num { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold-deep); margin-bottom: 12px; display: block; }
.story-body h3 { margin-bottom: 16px; font-size: 32px; }
.story-body p { color: var(--ink-soft); margin-bottom: 14px; }

/* Compagnons (animal cards) */
.companions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.companion {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.companion:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.companion-img { aspect-ratio: 4/5; background-size: cover; background-position: center; }
.companion-body { padding: 22px 22px 26px; }
.companion-name { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.companion-role { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.companion-note { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.companion.memoriam .companion-img { filter: grayscale(.7) contrast(.96); }
.companion.memoriam .companion-role { color: var(--gold-deep); }

/* Certifications */
.certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.cert:hover { border-color: var(--gold); transform: translateY(-3px); }
.cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}
.cert-icon svg { width: 22px; height: 22px; }
.cert h4 { font-family: var(--serif); font-weight: 500; font-size: 22px; }
.cert-meta { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.cert p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   PENSION CANINE PAGE
   ============================================================ */
.pension-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.pension-intro .eyebrow { margin-bottom: 18px; }
.pension-intro h2 { margin-bottom: 26px; }
.pension-intro p { color: var(--ink-soft); margin-bottom: 16px; }
.pension-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.pension-stat { padding-right: 18px; }
.pension-stat:not(:first-child) { padding-left: 24px; border-left: 1px solid var(--line-soft); }
.pension-stat strong { display: block; font-family: var(--serif); font-size: 36px; font-weight: 500; line-height: 1; color: var(--ink); }
.pension-stat span { display: block; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; }

.pension-img-stack {
  position: relative;
  aspect-ratio: 1/1;
}
.pension-img-stack .img-a,
.pension-img-stack .img-b {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pension-img-stack .img-a { inset: 0 30% 25% 0; }
.pension-img-stack .img-b { inset: 40% 0 0 50%; box-shadow: var(--shadow-lg); }
.pension-img-stack img { width: 100%; height: 100%; object-fit: cover; }

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin-inline: auto;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card.featured h3 { color: var(--bg); }
.price-card.featured .price { color: var(--gold); }
.price-card.featured .price-list li { color: rgba(255,255,255,.85); }
.price-card.featured .price-list li svg { color: var(--gold); }
.price-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.price-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 12px; }
.price-card .price-sub { font-size: 13.5px; color: var(--ink-mute); margin-bottom: 28px; }
.price-card.featured .price-sub { color: rgba(255,255,255,.6); }
.price {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
}
.price-unit { font-size: 16px; letter-spacing: 0; color: var(--ink-mute); margin-left: 4px; font-family: var(--sans); }
.price-card.featured .price-unit { color: rgba(255,255,255,.7); }
.price-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.price-list li svg { width: 16px; height: 16px; color: var(--sage-deep); flex-shrink: 0; margin-top: 3px; }

.discount-strip {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}
.discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-size: 13.5px;
}
.discount-pill strong { color: var(--gold-deep); font-family: var(--serif); font-style: italic; font-size: 16px; }

/* Criteria list */
.criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
}
.criteria li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.criteria li svg { width: 22px; height: 22px; color: var(--sage-deep); flex-shrink: 0; margin-top: 2px; }
.criteria li.excluded svg { color: var(--gold-deep); }
.criteria li strong { display: block; font-family: var(--serif); font-style: italic; font-size: 17px; font-weight: 500; margin-bottom: 2px; }
.criteria li span { color: var(--ink-soft); font-size: 14px; }

/* Steps / timeline */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid var(--line-soft);
}
.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
}
.step h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* Info bar / horaires */
.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-cell {
  padding: 38px 36px;
  border-left: 1px solid var(--line-soft);
}
.info-cell:first-child { border-left: 0; }
.info-cell .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--sage-deep);
}
.info-cell .info-icon svg { width: 18px; height: 18px; }
.info-cell h5 { font-family: var(--serif); font-style: italic; font-size: 18px; letter-spacing: 0; text-transform: none; font-weight: 500; margin-bottom: 12px; color: var(--ink); }
.info-cell p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.info-cell strong { color: var(--ink); font-weight: 500; }

/* Period notice */
.notice {
  margin-top: 40px;
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 30px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.notice svg { width: 22px; height: 22px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
.notice h5 { font-family: var(--serif); font-style: italic; font-size: 18px; letter-spacing: 0; text-transform: none; font-weight: 500; margin-bottom: 6px; }
.notice p { color: var(--ink-soft); font-size: 14.5px; }

/* Tariff table */
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tariff-table thead { background: var(--ink); color: var(--bg); }
.tariff-table th, .tariff-table td {
  padding: 22px 26px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line-soft);
}
.tariff-table th { font-weight: 500; letter-spacing: .04em; }
.tariff-table tr:last-child td { border-bottom: 0; }
.tariff-table tbody td:first-child { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink); }
.tariff-table tbody td:not(:first-child) { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 500; }

/* Full-bleed photo band (lively dog photos) */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.photo-band figure { margin: 0; overflow: hidden; position: relative; }
.photo-band img {
  width: 100%;
  height: clamp(300px, 40vw, 540px);
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.photo-band figure:hover img { transform: scale(1.05); }
.photo-band figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

/* ============================================================
   GALERIE PAGE
   ============================================================ */
.gallery-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 20;
  background: rgba(248,245,240,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.gallery-nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 16px 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-nav a {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: .04em;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.gallery-nav a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.gallery-section { padding: clamp(60px, 8vw, 110px) 0; }
.gallery-section-head { text-align: center; margin-bottom: 56px; }
.gallery-section-head .eyebrow { margin-bottom: 16px; }
.gallery-section-head h2 { font-size: clamp(30px, 4vw, 50px); }
.gallery-section-head p { color: var(--ink-soft); margin-top: 16px; max-width: 54ch; margin-inline: auto; }

.masonry {
  columns: 4 260px;
  column-gap: 18px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  display: block;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 1s var(--ease);
}
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.5) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.masonry-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item:hover::after { opacity: 1; }
.masonry-item:hover figcaption { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(18,17,15,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}
.lightbox-cap {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.lb-btn {
  position: absolute;
  color: rgba(255,255,255,.8);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  transition: color .25s var(--ease);
}
.lb-btn:hover { color: #fff; }
.lb-btn svg { width: 30px; height: 30px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 10px; top: 50%; transform: translateY(-50%); }

/* --- Reveal animation --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-wrap { grid-template-columns: 1fr; gap: 60px; }
  .companions { grid-template-columns: repeat(2, 1fr); }
  .pension-intro { grid-template-columns: 1fr; gap: 60px; }
  .nav-links a { padding: 10px 11px; font-size: 13px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 70px; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 60px 32px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
    z-index: 1;
  }
  .nav-links a { font-size: 22px; font-family: var(--serif); }
  .nav-links a::after { display: none; }
  .nav.is-open { z-index: 80; background: var(--bg) !important; }
  .nav.is-open .nav-links { transform: translateX(0); background: var(--bg); }
  /* Links must stay dark on the cream overlay, even on is-light (hero) pages */
  .nav.is-light .nav-links a { color: var(--white); }
  .nav.is-open .nav-links a,
  .nav.is-open.is-light .nav-links a { color: var(--ink); }
  .nav.is-open .nav-cta,
  .nav.is-open.is-light .nav-cta { color: var(--ink); border-color: var(--ink); }
  .nav.is-light .nav-toggle { color: var(--white); }
  .nav.is-open.is-light .nav-toggle { color: var(--ink); }
  .nav-toggle { display: inline-flex; position: relative; z-index: 2; }
  .nav-cta { padding: 12px 24px !important; font-size: 16px; }
  /* Hide the sticky mobile call/booking bar while the menu is open */
  .nav.is-open ~ .mobile-cta { display: none !important; }

  .hero { min-height: 92vh; }
  .hero-content { padding-bottom: 56px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 36px 0; }
  .trust-item { padding: 22px; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--line-soft); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line-soft); }

  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .story-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 70px; }
  .story-row.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .criteria { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .info-cell { border-left: 0; border-top: 1px solid var(--line-soft); }
  .info-cell:first-child { border-top: 0; }
  .pension-intro-stats { grid-template-columns: 1fr; gap: 18px; }
  .pension-stat { padding: 18px 0; border-left: 0 !important; border-top: 1px solid var(--line-soft); padding-left: 0 !important; }
  .pension-stat:first-child { border-top: 0; padding-top: 0; }

  .photo-band { grid-template-columns: 1fr; }
  .photo-band img { height: clamp(260px, 60vw, 420px); }
  .masonry { columns: 2 160px; column-gap: 12px; }
  .masonry-item { margin-bottom: 12px; }
  .masonry-item figcaption { opacity: 1; transform: none; font-size: 11px; }
  .masonry-item::after { opacity: 1; }
}

@media (max-width: 560px) {
  .container, .container-narrow, .nav-inner, .hero-content { padding-inline: 22px; }
  .brand-text .brand-tag { display: none; }
  .brand-name { font-size: 17px; }
  .companions { grid-template-columns: 1fr; }
  .certs { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 50px; }
}

/* ============================================================
   REFINEMENTS — testimonials, FAQ, mobile CTA, nav phone, hero meta
   ============================================================ */

/* Hero scarcity microcopy */
.hero-meta {
  margin-top: 22px;
  font-size: 13px;
  font-style: italic;
  letter-spacing: .02em;
  color: rgba(255,255,255,.72);
}

/* Nav phone (desktop) */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
}
.nav-phone svg { width: 16px; height: 16px; }
.nav-phone::after { display: none !important; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 38px 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .stars { display: flex; gap: 4px; color: var(--gold); }
.testimonial .stars svg { width: 18px; height: 18px; }
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink);
}
.testimonial-author {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-mute);
  margin-top: auto;
}

/* FAQ accordions */
.faq-list { max-width: 840px; margin: 56px auto 0; }
.faq-block { margin-bottom: 8px; }
.faq-block + .faq-block { margin-top: 48px; }
.faq-block-title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 23px);
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq-item summary:hover { color: var(--sage-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--sage-deep);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 28px; color: var(--ink-soft); line-height: 1.75; max-width: 72ch; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ol, .faq-answer ul { margin: 0 0 12px; padding-left: 20px; }
.faq-answer li { margin-bottom: 8px; }
.faq-answer a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Sticky mobile CTA */
.mobile-cta { display: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media { animation: none !important; }
}

@media (max-width: 1100px) {
  .nav-phone { display: none; }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    transform: translateY(110%);
    transition: transform .4s var(--ease);
    box-shadow: 0 -6px 24px rgba(28,24,18,.10);
  }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta .btn { flex: 1; justify-content: center; padding: 14px 16px; }
  .mobile-cta .btn-ghost { color: var(--ink); border-color: var(--ink); backdrop-filter: none; }
  body.has-sticky-cta { padding-bottom: 80px; }
}
