:root {
  --ink: #20201f;
  --ink-soft: #595754;
  --wine: #681f31;
  --wine-dark: #45131f;
  --wine-light: #8f344b;
  --cream: #f5f0e8;
  --cream-deep: #ebe3d8;
  --paper: #fffdf9;
  --gold: #c69152;
  --sage: #56705f;
  --line: rgba(32, 32, 31, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(58, 35, 27, 0.13);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--wine);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.topbar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--wine-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.topbar__promise span { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(45, 32, 27, 0.06);
}

.header__inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__mark { width: 40px; height: 40px; display: grid; place-items: center; }
.brand__mark svg { width: 100%; fill: var(--wine); }
.brand__mark svg path:last-child { fill: none; stroke: var(--cream); stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }

.brand__word {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 0.92;
  letter-spacing: 0.005em;
}

.brand__word small {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; text-transform: uppercase; }
.main-nav a { position: relative; font-size: 16px; font-weight: 700; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-dropdown { position: relative; }
.nav-dropdown__trigger { padding: 0; display: flex; align-items: center; gap: 7px; color: var(--ink); background: transparent; border: 0; font-size: 16px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.nav-dropdown__trigger svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.nav-dropdown__menu { position: absolute; z-index: 20; top: calc(100% + 18px); left: 50%; min-width: 230px; padding: 8px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(45,32,27,.13); visibility: hidden; opacity: 0; transform: translate(-50%, -8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.nav-dropdown__menu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 18px; }
.nav-dropdown__menu a { display: block; padding: 11px 13px; font-size: 13px; white-space: nowrap; transition: color .2s ease, background-color .2s ease; }
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus-visible { color: var(--wine); background: var(--cream); }
.nav-dropdown.is-open .nav-dropdown__menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.nav-dropdown.is-open .nav-dropdown__trigger svg { transform: rotate(180deg); }

@media (min-width: 861px) {
  .nav-dropdown:hover .nav-dropdown__menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
  .nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 25px;
  color: white;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover { background: var(--wine-dark); border-color: var(--wine-dark); transform: translateY(-2px); }
.button svg, .text-link svg, .service-card a svg, .footer__cta svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s ease; }
.button:hover svg, .text-link:hover svg, .service-card a:hover svg, .footer__cta:hover svg { transform: translateX(4px); }
.button--small { min-height: 44px; padding-inline: 19px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.header__actions { display: flex; align-items: center; gap: 9px; }
.button--phone { color: var(--wine); background: transparent; }
.button--phone:hover { color: white; background: var(--wine-dark); }
.button--phone svg { width: 15px; transform-origin: center; }
.button--phone:hover svg,
.hero__actions .text-link[href^="tel:"]:hover svg { animation: phone-ring .55s ease; }

@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(13deg); }
  50% { transform: rotate(-9deg); }
  75% { transform: rotate(6deg); }
}

.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 1.5px; margin: 5px auto; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.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(-6.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero__texture, .contact-section__texture {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.hero__grid { min-height: 680px; display: grid; grid-template-columns: 1fr 0.94fr; align-items: center; gap: 64px; padding-block: 66px 74px; }
.hero__content { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: #e7c49c; }

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 { max-width: 690px; font-size: clamp(48px, 5.15vw, 76px); }
h2 { font-size: clamp(40px, 4vw, 58px); }
h1 em, h2 em { color: var(--wine); font-weight: inherit; }

.hero__lead { max-width: 610px; margin: 29px 0 30px; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 30px; }
.hero__actions .button,
.hero__actions .text-link { font-size: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.hero__checks { margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px 25px; list-style: none; color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.hero__checks li { display: flex; align-items: center; gap: 7px; }
.hero__checks svg, .contact__copy li svg { width: 16px; fill: none; stroke: var(--wine); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero__visual { position: relative; align-self: stretch; min-height: 540px; display: flex; align-items: center; }
.hero__visual::before { content: ""; position: absolute; top: -66px; right: -50vw; bottom: -74px; left: 38%; background: var(--wine); }
.hero__image-wrap { position: absolute; inset: 10px -70px 10px 0; overflow: hidden; box-shadow: var(--shadow); }
.hero__image-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); pointer-events: none; }
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; transform: scale(1.035); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero__visual.is-visible .hero__image-wrap img { transform: scale(1); }
.hero__visual.is-visible:hover .hero__image-wrap img { transform: scale(1.015); }
.hero__image-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(68,35,30,.05), transparent 35%), linear-gradient(0deg, rgba(42,20,24,.2), transparent 45%); }

.hero__review-panel {
  position: relative;
  z-index: 3;
  width: calc(100% + 30px);
  margin-right: -30px;
  padding: 20px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255,253,249,.98);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.review-panel__top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.google-word { display: inline-flex; font-family: Arial, sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -1.6px; }
.google-word i { font-style: normal; }.google-blue { color: #4285f4; }.google-red { color: #ea4335; }.google-yellow { color: #fbbc05; }.google-green { color: #34a853; }
.review-panel__label { color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.review-panel__summary { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 22px; padding: 0 0 23px; }
.review-panel__summary > strong { color: var(--wine); font-family: var(--serif); font-size: 66px; font-weight: 400; line-height: 1; }
.review-stars { display: flex; gap: 3px; color: #e1a334; font-size: 22px; line-height: 1; letter-spacing: 0; }
.review-stars .star-partial { color: transparent; background: linear-gradient(90deg, #e1a334 80%, #d8d4cc 80%); background-clip: text; -webkit-background-clip: text; }
.review-panel__summary p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.review-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.review-quotes blockquote { min-height: 145px; margin: 0; padding: 18px; display: flex; flex-direction: column; background: var(--cream); border: 1px solid rgba(32,32,31,.07); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.review-quotes blockquote:hover { border-color: rgba(104,31,49,.2); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(55,39,31,.08); }
.review-stars--small { gap: 2px; font-size: 12px; }
.review-quotes p { margin: 12px 0; font-family: var(--serif); font-size: 16px; line-height: 1.35; }
.review-quotes cite { margin-top: auto; color: var(--ink-soft); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-panel__link { width: fit-content; margin-top: 25px; display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; color: var(--wine); border-bottom: 1px solid rgba(104,31,49,.3); font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.review-panel__link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.review-panel__link:hover svg { transform: translateX(4px); }

.hero__badge {
  position: absolute;
  z-index: 3;
  left: -42px;
  bottom: 45px;
  width: 250px;
  min-height: 84px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 16px 40px rgba(44, 24, 22, 0.17);
  backdrop-filter: blur(12px);
}

.hero__badge-icon { width: 45px; height: 45px; display: grid; place-items: center; color: white; background: var(--wine); }
.hero__badge-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hero__badge strong, .hero__badge small { display: block; }
.hero__badge strong { font-family: var(--serif); font-size: 16px; font-weight: 400; }
.hero__badge small { margin-top: 3px; color: var(--ink-soft); font-size: 8px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.hero__location { position: absolute; z-index: 3; top: 31px; right: -47px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; color: white; background: rgba(41, 30, 30, 0.72); backdrop-filter: blur(8px); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #e7c49c; }
.pulse::after { content: ""; position: absolute; inset: -4px; border: 1px solid #e7c49c; border-radius: 50%; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }

.confidence { color: white; background: var(--ink); }
.confidence__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.confidence__item { min-height: 104px; padding: 25px 30px; display: flex; align-items: center; gap: 18px; border-right: 1px solid var(--white-line); transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.confidence__item:first-child { border-left: 1px solid var(--white-line); }
.confidence__item > span { color: var(--gold); font-family: var(--serif); font-size: 27px; transition: color .3s ease, transform .3s ease; }
.confidence__item p { margin: 0; font-size: 12px; line-height: 1.6; text-transform: uppercase; letter-spacing: .08em; }
.confidence__item strong { display: block; color: white; font-size: 15px; }
.confidence__item:hover { position: relative; z-index: 1; background: var(--wine); transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,.18); }
.confidence__item:hover > span { color: var(--cream); transform: translateY(-3px); }

.section { padding-block: 120px; }
.section-heading--split { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 54px; }
.section-heading--split > p { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: 17px; }

.symptoms { background: var(--paper); }
.symptoms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 370px; padding: 35px 32px 30px; display: flex; flex-direction: column; border: 1px solid var(--line); background: white; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(55, 39, 31, .09); }
.service-card--featured { color: white; background: var(--wine); border-color: var(--wine); }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-card__icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--wine); background: var(--cream); transition: color .3s ease, background-color .3s ease, transform .3s ease; }
.service-card__icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-card--featured .service-card__icon { color: white; background: rgba(255,255,255,.12); }
.service-card:not(.service-card--featured):hover { border-color: rgba(104,31,49,.25); }
.service-card:not(.service-card--featured):hover .service-card__icon { color: white; background: var(--wine); transform: translateY(-3px) rotate(-3deg); }
.service-card--featured:hover .service-card__icon { color: var(--wine); background: var(--cream); transform: translateY(-3px) rotate(-3deg); }
.service-card__tag, .service-card__number { color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.service-card--featured .service-card__tag { color: #eacaa7; }
.service-card--featured .service-card__number { color: white; }
.service-card__number { font-family: var(--serif); font-size: 16px; }
.service-card h3 { margin: 35px 0 14px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.service-card p { margin: 0 0 26px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.service-card--featured p { color: white; }
.service-card a { width: fit-content; margin-top: auto; display: flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.service-card--featured a { border-color: rgba(255,255,255,.25); }

.method { position: relative; overflow: hidden; color: white; background: var(--wine-dark); }
.method__pattern { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 48%, rgba(255,255,255,.3) 49%, rgba(255,255,255,.3) 50%, transparent 51%), linear-gradient(-30deg, transparent 48%, rgba(255,255,255,.22) 49%, rgba(255,255,255,.22) 50%, transparent 51%); background-size: 80px 138px; }
.method__grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.method h2 em { color: #e7c49c; }
.method__intro > p:not(.eyebrow) { max-width: 480px; margin: 28px 0 34px; font-size: 17px; }
.button--light { color: var(--wine-dark); background: #f1dfca; border-color: #f1dfca; }
.button--light:hover { color: var(--wine-dark); background: white; border-color: white; }
.method__steps { margin: 0; padding: 0; list-style: none; }
.method__steps li { padding: 28px 0; display: grid; grid-template-columns: 66px 1fr; gap: 20px; border-top: 1px solid var(--white-line); transition: padding-left .3s ease, border-color .3s ease, background-color .3s ease; }
.method__steps li:last-child { border-bottom: 1px solid var(--white-line); }
.method__steps li:hover { padding-left: 12px; border-color: rgba(231,196,156,.75); background: rgba(255,255,255,.035); }
.method__step-number { color: #e7c49c; font-family: var(--serif); font-size: 27px; transition: color .3s ease, transform .3s ease; }
.method__steps li:hover .method__step-number { color: white; transform: translateY(-3px); }
.method__steps h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.method__steps p { margin: 0; font-size: 16px; }

.audiences { background: var(--cream); }
.audiences__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; }
.audiences__visual { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; padding: 48px; color: white; background: var(--wine); }
.audiences__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(48,8,17,.66), transparent 65%); }
.audiences__visual > p { position: relative; z-index: 3; margin: 0; font-family: var(--serif); font-size: 29px; line-height: 1.2; }
.audiences__arch { position: absolute; inset: 0; overflow: hidden; }
.audiences__arch > svg { position: absolute; width: 88%; right: -8%; bottom: -4%; fill: none; stroke: rgba(255,255,255,.19); stroke-width: 1; }
.arch-line { position: absolute; left: -20%; width: 150%; height: 1px; background: rgba(255,255,255,.1); transform: rotate(-25deg); }
.arch-line--1 { top: 23%; }.arch-line--2 { top: 48%; }
.arch-dot { position: absolute; z-index: 2; width: 10px; height: 10px; border-radius: 50%; background: #e7c49c; box-shadow: 0 0 0 7px rgba(231,196,156,.15); }
.arch-dot--1 { top: 26%; left: 33%; }.arch-dot--2 { top: 48%; left: 69%; }
.audiences__lead { max-width: 590px; margin: 25px 0 31px; color: var(--ink-soft); font-size: 17px; }
.audience-list article { padding: 19px 0; display: grid; grid-template-columns: 49px 1fr; gap: 18px; border-top: 1px solid var(--line); transition: transform .3s ease, padding-left .3s ease; }
.audience-list article:last-child { border-bottom: 1px solid var(--line); }
.audience-list article > span { width: 49px; height: 49px; display: grid; place-items: center; color: var(--wine); border: 1px solid rgba(104,31,49,.22); transition: color .3s ease, background-color .3s ease, transform .3s ease; }
.audience-list article:hover { padding-left: 6px; transform: translateX(3px); }
.audience-list article:hover > span { color: white; background: var(--wine); transform: rotate(-3deg); }
.audience-list svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.audience-list h3 { margin: 0 0 3px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.audience-list p { margin: 0; font-size: 17px; }

.zones { background: white; }
.zones__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 95px; align-items: center; }
.zones__content > p:not(.eyebrow) { max-width: 600px; margin: 25px 0 28px; color: var(--ink-soft); font-size: 17px; }
.arrondissements { display: flex; flex-wrap: wrap; gap: 8px; }
.arrondissements span { min-width: 92px; padding: 9px 12px; color: var(--ink-soft); background: var(--cream); border: 1px solid transparent; font-size: 14px; font-weight: 800; text-align: center; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
.arrondissements span:hover { color: white; background: var(--wine); border-color: var(--wine); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(104,31,49,.17); }
.arrondissements sup { font-size: 7px; }

.zones__map { position: relative; aspect-ratio: 1; overflow: hidden; color: white; background: var(--ink); border-radius: 50% 50% 47% 53% / 45% 47% 53% 55%; }
.zones__map::after { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(255,255,255,.1); border-radius: 48% 52% 46% 54%; transform: rotate(14deg); }
.map__rings i { position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.map__rings i:nth-child(1) { inset: 17%; }.map__rings i:nth-child(2) { inset: 29%; }.map__rings i:nth-child(3) { inset: 40%; }
.map__river { position: absolute; z-index: 1; width: 130%; height: 18%; left: -15%; top: 47%; border: solid #846078; border-width: 10px 0; transform: rotate(-12deg) skewX(-25deg); opacity: .45; }
.map__center { position: absolute; z-index: 4; left: 50%; top: 48%; width: 78px; height: 78px; display: grid; place-content: center; text-align: center; color: white; background: var(--wine); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 10px rgba(104,31,49,.24); animation: map-breathe 3.6s ease-in-out infinite; }
.map__center b { font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: .8; }.map__center small { margin-top: 8px; font-size: 7px; letter-spacing: .18em; }
.map__pin { position: absolute; z-index: 3; width: 7px; height: 7px; border-radius: 50%; background: #e7c49c; box-shadow: 0 0 0 5px rgba(231,196,156,.12); animation: map-pin-pulse 2.8s ease-out infinite; }
.map__pin--1 { top: 23%; left: 41%; }.map__pin--2 { top: 41%; right: 20%; }.map__pin--3 { bottom: 25%; left: 30%; }.map__pin--4 { bottom: 20%; right: 34%; }
.map__pin--2 { animation-delay: .7s; }.map__pin--3 { animation-delay: 1.4s; }.map__pin--4 { animation-delay: 2.1s; }
@keyframes map-pin-pulse { 0%, 45% { box-shadow: 0 0 0 4px rgba(231,196,156,.14); } 75%, 100% { box-shadow: 0 0 0 13px rgba(231,196,156,0); } }
@keyframes map-breathe { 0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 10px rgba(104,31,49,.24); } 50% { transform: translate(-50%, -50%) scale(1.035); box-shadow: 0 0 0 15px rgba(104,31,49,.12); } }
.zones__map > p { position: absolute; z-index: 4; bottom: 10%; left: 50%; width: 100%; margin: 0; transform: translateX(-50%); color: rgba(255,255,255,.52); font-size: 9px; text-align: center; letter-spacing: .1em; text-transform: uppercase; }
.zones__map > p strong { display: block; color: white; font-family: var(--serif); font-size: 16px; font-weight: 400; letter-spacing: 0; text-transform: none; }

.commitments { background: var(--cream); }
.section-heading--center { max-width: 780px; margin: 0 auto 58px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.commitments__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.commitments__grid article { position: relative; min-height: 255px; padding: 28px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease; }
.commitments__grid article::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--wine); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.commitments__grid article:hover { z-index: 2; background: white; transform: translateY(-4px); box-shadow: 0 16px 35px rgba(55,39,31,.1); }
.commitments__grid article:hover::before { transform: scaleX(1); }
.commitments__grid span { display: inline-block; color: var(--wine); font-family: var(--serif); font-size: 20px; transition: transform .3s ease; }
.commitments__grid article:hover span { transform: scale(1.14); }
.commitments__grid h3 { margin: 50px 0 10px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.commitments__grid p { margin: 0; font-size: 16px; }

.faq { background: white; }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.faq__intro { position: sticky; top: 125px; align-self: start; }
.faq__intro > p:not(.eyebrow) { margin: 24px 0 29px; font-size: 17px; }
.faq__intro .text-link { font-size: 15px; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item button { width: 100%; min-height: 79px; padding: 20px 6px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: var(--ink); background: transparent; border: 0; text-align: left; cursor: pointer; }
.accordion__item button span { font-family: var(--serif); font-size: 22px; transition: color .25s ease, transform .25s ease; }
.accordion__item button:hover span, .accordion__item.is-open button span { color: var(--wine); transform: translateX(4px); }
.accordion__item button i { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; transition: border-color .25s ease, background-color .25s ease, transform .25s ease; }
.accordion__item button:hover i { border-color: rgba(104,31,49,.35); background: var(--cream); transform: rotate(5deg); }
.accordion__item button i::before, .accordion__item button i::after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 1px; background: var(--wine); transition: transform .25s ease; }
.accordion__item button i::after { transform: rotate(90deg); }
.accordion__item.is-open button i::after { transform: rotate(0); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.accordion__panel > p { overflow: hidden; margin: 0; padding-right: 60px; font-size: 16px; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__panel > p { padding-bottom: 27px; }

.contact-section { position: relative; overflow: hidden; padding-block: 110px; color: white; background: var(--wine); }
.contact__grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: center; }
.contact__copy h2 em { color: #e7c49c; }
.contact__copy > p:not(.eyebrow) { max-width: 480px; margin: 26px 0 30px; }
.contact__copy ul { margin: 0; padding: 0; display: grid; gap: 11px; list-style: none; color: rgba(255,255,255,.82); font-size: 15px; font-weight: 700; text-transform: uppercase; }
.contact__copy li { display: flex; gap: 9px; align-items: center; }
.contact__copy li svg { stroke: #e7c49c; }

.diagnostic-form { padding: 38px; color: var(--ink); background: var(--paper); box-shadow: 0 26px 80px rgba(49, 8, 19, .25); transition-property: opacity, transform, box-shadow; }
.diagnostic-form.is-visible:hover { box-shadow: 0 32px 90px rgba(49,8,19,.32); }
.form__header { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.form__header span { font-family: var(--serif); font-size: 24px; }.form__header small { color: var(--ink-soft); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.diagnostic-form label { position: relative; display: block; margin-bottom: 15px; color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.diagnostic-form input:not([type="checkbox"]), .diagnostic-form select, .diagnostic-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--ink); background: white; border: 1px solid rgba(32,32,31,.19); border-radius: 0; outline: none; font-size: 14px; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.diagnostic-form input:not([type="checkbox"]), .diagnostic-form select { height: 47px; }
.diagnostic-form textarea { resize: vertical; min-height: 93px; }
.diagnostic-form input:focus, .diagnostic-form select:focus, .diagnostic-form textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(104,31,49,.08); }
.diagnostic-form label.has-error input, .diagnostic-form label.has-error select { border-color: #b42318; }
.field-error { position: absolute; left: 0; bottom: -14px; color: #b42318; font-size: 8px; letter-spacing: 0; text-transform: none; }
.checkbox { display: flex !important; align-items: flex-start; gap: 9px; margin: 2px 0 21px !important; color: var(--ink-soft) !important; font-size: 9px !important; font-weight: 600 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; cursor: pointer; }
.checkbox input { margin-top: 2px; accent-color: var(--wine); }
.button--form { width: 100%; }
.button:disabled { opacity: .6; cursor: wait; }
.form__status { min-height: 18px; margin: 10px 0 0; color: var(--wine); font-size: 10px; text-align: center; }
.form__status.is-info { color: var(--sage); }

.site-footer { padding-top: 75px; color: rgba(255,255,255,.65); background: #171716; }
.footer__main { display: grid; grid-template-columns: 1.5fr .75fr .9fr 1fr; gap: 55px; padding-bottom: 60px; }
.brand--footer { color: white; }.brand--footer .brand__mark svg { fill: var(--wine-light); }.brand--footer .brand__word small { color: rgba(255,255,255,.4); }
.footer__brand > p { max-width: 270px; margin: 21px 0 0; font-size: 16px; }
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer__col h3 { margin: 5px 0 14px; color: white; font-size: 19px; letter-spacing: .13em; text-transform: uppercase; }
.footer__col a { position: relative; font-size: 16px; transition: color .25s ease; }
.footer__col a:not(.footer__cta)::after, .footer__bottom a::after { content: ""; position: absolute; right: 0; bottom: -3px; left: 0; height: 1px; background: #e7c49c; transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.footer__col a:hover { color: white; }
.footer__col a:hover::after, .footer__bottom a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__contact p { margin: 0 0 14px; font-size: 16px; }
.footer__cta { display: flex; align-items: center; gap: 9px; padding-bottom: 4px; color: #e7c49c; border-bottom: 1px solid rgba(231,196,156,.3); font-weight: 800; }
.footer__bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; letter-spacing: .04em; }
.footer__bottom p { margin: 0; }.footer__bottom div { display: flex; gap: 22px; }
.footer__bottom a { position: relative; transition: color .25s ease; }
.footer__bottom a:hover { color: white; }

.mobile-cta { display: none; }

/* Inner pages */
.inner-hero { position: relative; overflow: hidden; padding-block: 88px 96px; background: var(--cream); }
.inner-hero::after { content: ""; position: absolute; top: 0; right: 0; width: 31%; height: 100%; background: var(--wine); clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%); }
.inner-hero__content { position: relative; z-index: 2; }
.breadcrumb { margin-bottom: 40px; display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.breadcrumb a { border-bottom: 1px solid transparent; transition: color .25s ease, border-color .25s ease; }
.breadcrumb a:hover { color: var(--wine); border-color: currentColor; }
.inner-hero h1 { max-width: 800px; }
.inner-hero__content > p:last-child { max-width: 670px; margin: 28px 0 0; color: var(--ink-soft); font-size: 18px; }

.contact-page { background: white; }
.contact-page__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-details__intro { max-width: 540px; margin: 25px 0 32px; font-size: 17px; }
.detail-list { display: grid; gap: 10px; }
.detail-card { min-height: 82px; padding: 15px; display: grid; grid-template-columns: 49px 1fr; align-items: center; gap: 16px; border: 1px solid var(--line); background: var(--paper); transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.detail-card:hover { border-color: rgba(104,31,49,.28); transform: translateX(5px); box-shadow: 0 10px 25px rgba(55,39,31,.07); }
.detail-card__icon { width: 49px; height: 49px; display: grid; place-items: center; color: white; background: var(--wine); }
.detail-card__icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.detail-card small, .detail-card strong { display: block; }
.detail-card small { margin-bottom: 3px; color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.detail-card strong { overflow-wrap: anywhere; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.contact-page__form { box-shadow: 0 24px 70px rgba(58,35,27,.12); }


/* About page */
.about-story { background: white; }
.about-story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 95px; align-items: center; }
.about-story__copy > p:not(.eyebrow) { max-width: 650px; margin: 25px 0 0; color: var(--ink-soft); font-size: 17px; }
.about-story__copy .text-link { margin-top: 29px; color: var(--wine); font-size: 13px; }
.about-signature { position: relative; min-height: 510px; padding: 54px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; background: var(--wine); box-shadow: var(--shadow); }
.about-signature::before { content: ""; position: absolute; width: 360px; height: 360px; top: -145px; right: -110px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.04), 0 0 0 110px rgba(255,255,255,.025); }
.about-signature__mark { position: absolute; top: 49px; left: 49px; width: 76px; }
.about-signature__mark svg { width: 100%; fill: rgba(255,255,255,.13); }
.about-signature__mark svg path:last-child { fill: none; stroke: #e7c49c; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.about-signature > p { position: relative; max-width: 430px; margin: 0 0 34px; font-family: var(--serif); font-size: 28px; line-height: 1.3; }
.about-signature dl { position: relative; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--white-line); }
.about-signature dl div { padding: 23px 14px 0 0; }
.about-signature dt { color: #e7c49c; font-family: var(--serif); font-size: 34px; line-height: 1; }
.about-signature dd { margin: 8px 0 0; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700; line-height: 1.45; letter-spacing: .07em; text-transform: uppercase; }
.about-values { background: var(--cream); }
.about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-values__grid article { min-height: 300px; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.35); transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease; }
.about-values__grid article:hover { position: relative; z-index: 1; background: white; transform: translateY(-5px); box-shadow: 0 18px 40px rgba(55,39,31,.09); }
.about-values__grid span { color: var(--wine); font-family: var(--serif); font-size: 22px; }
.about-values__grid h3 { margin: 60px 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.about-values__grid p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.about-audiences { background: white; }
.about-audiences__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-audiences__grid article { min-height: 270px; padding: 34px; border: 1px solid var(--line); transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.about-audiences__grid article:hover { border-color: rgba(104,31,49,.3); transform: translateY(-5px); box-shadow: 0 18px 40px rgba(55,39,31,.08); }
.about-audiences__grid strong { color: var(--wine); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.about-audiences__grid h3 { margin: 48px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.about-audiences__grid p { margin: 0; color: var(--ink-soft); }

/* FAQ page */
.faq-page { background: white; }
.faq-page__layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.faq-page__aside { position: sticky; top: 125px; }
.faq-page__aside nav { margin: 30px 0; display: grid; border-top: 1px solid var(--line); }
.faq-page__aside nav a { padding: 13px 3px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; font-weight: 700; transition: color .25s ease, padding-left .25s ease; }
.faq-page__aside nav a::after { content: "→"; color: var(--wine); }
.faq-page__aside nav a:hover { padding-left: 7px; color: var(--wine); }
.faq-page__aside > p:not(.eyebrow) { margin: 0 0 20px; color: var(--ink-soft); font-size: 15px; }
.faq-page__aside .button { min-height: 48px; }
.faq-page__group { scroll-margin-top: 120px; margin-bottom: 80px; }
.faq-page__group:last-child { margin-bottom: 0; }
.faq-page__number { margin: 0 0 6px; color: var(--wine); font-family: var(--serif); font-size: 20px; }
.faq-page__group > h2 { margin-bottom: 31px; font-size: clamp(32px, 3vw, 43px); }

/* Web presence page */
.web-find { background: white; }
.web-find__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.web-find__copy > p:not(.eyebrow) { max-width: 590px; margin: 25px 0 30px; color: var(--ink-soft); font-size: 17px; }
.web-address { display: flex; align-items: center; gap: 15px; }
.web-address > svg { width: 46px; height: 46px; padding: 11px; flex: 0 0 46px; color: white; background: var(--wine); fill: none; stroke: currentColor; stroke-width: 1.6; }
.web-address small, .web-address strong { display: block; }
.web-address small { color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.web-address strong { margin-top: 2px; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.web-map-card { padding: 18px 34px; color: white; background: var(--wine-dark); box-shadow: var(--shadow); }
.web-map-card a { min-height: 104px; padding: 20px 5px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--white-line); transition: padding-left .25s ease, color .25s ease; }
.web-map-card a:last-child { border-bottom: 0; }
.web-map-card a:hover { padding-left: 13px; color: #e7c49c; }
.web-map-card strong, .web-map-card small { display: block; }
.web-map-card strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.web-map-card small { margin-top: 3px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.web-map-card a > svg { width: 22px; flex: 0 0 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.web-map-card a:hover > svg { transform: translateX(5px); }
.web-reviews { background: var(--cream); }
.web-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.web-review-card { position: relative; min-height: 360px; padding: 34px; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.web-review-card:hover { border-color: rgba(104,31,49,.28); transform: translateY(-6px); box-shadow: 0 20px 45px rgba(55,39,31,.09); }
.web-review-card__index { position: absolute; top: 30px; right: 30px; color: var(--wine); font-family: var(--serif); font-size: 20px; }
.web-review-card > small { color: var(--wine); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.web-review-card h3 { margin: 62px 0 14px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.web-review-card p { margin: 0 0 28px; color: var(--ink-soft); }
.web-review-card > strong { margin-top: auto; display: flex; align-items: center; gap: 9px; color: var(--wine); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.web-review-card > strong svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.web-review-card:hover > strong svg { transform: translateX(4px); }
.web-reviews__note { margin: 24px 0 0; color: var(--ink-soft); font-size: 12px; text-align: center; }
.web-profiles { background: white; }
.web-profiles__grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.web-profiles__grid a { min-height: 92px; padding: 19px 24px; display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background-color .25s ease, padding-left .25s ease; }
.web-profiles__grid a:hover { padding-left: 30px; color: var(--wine); background: var(--cream); }
.web-profiles__grid strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.web-profiles__grid span { grid-column: 1; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.web-profiles__grid i { grid-column: 2; grid-row: 1 / 3; color: var(--wine); font-size: 18px; font-style: normal; }

/* Treatments page */
.treatments-overview { background: white; }
.treatments-overview__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 95px; align-items: start; }
.treatments-overview__copy { position: sticky; top: 125px; }
.treatments-overview__copy > p:not(.eyebrow) { max-width: 580px; margin: 24px 0 0; color: var(--ink-soft); font-size: 17px; }
.treatments-overview__copy .button { margin-top: 31px; }
.treatment-pillars { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.treatment-pillars article { min-height: 245px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.42); transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease; }
.treatment-pillars article:hover { position: relative; z-index: 1; background: var(--paper); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(55,39,31,.08); }
.treatment-pillars span { color: var(--wine); font-family: var(--serif); font-size: 20px; }
.treatment-pillars h3 { margin: 42px 0 10px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.treatment-pillars p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.treatment-solutions { background: var(--cream); }
.treatment-solutions__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.treatment-card { min-height: 500px; padding: 38px; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.treatment-card:hover { border-color: rgba(104,31,49,.3); transform: translateY(-6px); box-shadow: 0 20px 45px rgba(55,39,31,.09); }
.treatment-card--featured { color: white; background: var(--wine); border-color: var(--wine); }
.treatment-card__top { display: flex; align-items: flex-start; justify-content: space-between; }
.treatment-card__icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--wine); background: var(--cream); }
.treatment-card__icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.treatment-card__number { color: var(--wine); font-family: var(--serif); font-size: 22px; }
.treatment-card--featured .treatment-card__icon { color: var(--wine-dark); background: #f1dfca; }
.treatment-card--featured .treatment-card__number { color: #e7c49c; }
.treatment-card__label { margin: 38px 0 8px; color: var(--wine); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.treatment-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.treatment-card h3 + p { margin: 0 0 22px; color: var(--ink-soft); font-size: 16px; }
.treatment-card ul { margin: 0 0 26px; padding: 0; display: grid; gap: 8px; list-style: none; color: var(--ink-soft); font-size: 15px; }
.treatment-card li { position: relative; padding-left: 17px; }
.treatment-card li::before { content: ""; position: absolute; top: .68em; left: 0; width: 5px; height: 5px; background: var(--wine); border-radius: 50%; }
.treatment-card > a { width: fit-content; margin-top: auto; display: flex; align-items: center; gap: 9px; color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.treatment-card > a span { font-size: 17px; transition: transform .25s ease; }
.treatment-card:hover > a span { transform: translateX(4px); }
.treatment-card--featured .treatment-card__label, .treatment-card--featured h3 + p, .treatment-card--featured ul { color: rgba(255,255,255,.78); }
.treatment-card--featured li::before { background: #e7c49c; }
.treatment-card--featured > a { color: white; }

.treatment-assurance { background: white; }
.treatment-assurance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.treatment-assurance__visual { position: relative; min-height: 560px; margin: 0; overflow: hidden; background: var(--wine-dark); box-shadow: var(--shadow); }
.treatment-assurance__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(37,14,20,.62), transparent 48%); pointer-events: none; }
.treatment-assurance__visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.treatment-assurance__visual:hover img { transform: scale(1.025); }
.treatment-assurance__copy > p:not(.eyebrow) { margin: 25px 0 30px; color: var(--ink-soft); font-size: 17px; }
.treatment-assurance__list { border-top: 1px solid var(--line); }
.treatment-assurance__list article { padding: 22px 0; display: grid; grid-template-columns: 48px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.treatment-assurance__list article > span { color: var(--wine); font-family: var(--serif); font-size: 20px; }
.treatment-assurance__list h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.treatment-assurance__list p { margin: 0; color: var(--ink-soft); font-size: 14px; }

@media (max-width: 1080px) {
  .treatments-overview__grid, .treatment-assurance__grid { gap: 55px; }
}

@media (max-width: 860px) {
  .treatments-overview__grid, .treatment-assurance__grid { grid-template-columns: 1fr; }
  .treatments-overview__copy { position: static; }
  .treatment-assurance__visual { min-height: 480px; }
}

@media (max-width: 640px) {
  .treatment-pillars, .treatment-solutions__grid { grid-template-columns: 1fr; }
  .treatment-pillars article { min-height: 220px; padding: 27px; }
  .treatment-card { min-height: 0; padding: 28px 25px; }
  .treatment-card__label { margin-top: 31px; }
  .treatment-assurance__visual { min-height: 390px; }
}

/* Shared inner-page call to action */
.inner-cta { position: relative; overflow: hidden; padding-block: 85px; color: white; background: var(--wine); }
.inner-cta::before { content: ""; position: absolute; width: 460px; height: 460px; right: -100px; top: -280px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02); }
.inner-cta__grid { position: relative; display: grid; grid-template-columns: 1fr .78fr; gap: 90px; align-items: end; }
.inner-cta h2 em { color: #e7c49c; }
.inner-cta__grid > div:last-child > p { margin: 0 0 24px; color: rgba(255,255,255,.82); font-size: 16px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay, .reveal--delay-1 { transition-delay: .12s; }.reveal--delay-2 { transition-delay: .22s; }.reveal--delay-3 { transition-delay: .32s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .header__actions { display: none; }
  .hero__grid { grid-template-columns: 1fr .88fr; gap: 35px; }
  .hero__image-wrap { right: -35px; }
  .hero__review-panel { width: calc(100% + 15px); margin-right: -15px; padding: 20px 32px 32px; }
  .hero__badge { left: -20px; }
  .hero__location { right: -16px; }
  .section { padding-block: 95px; }
  .audiences__grid, .zones__grid, .contact__grid { gap: 60px; }
  .faq__grid { gap: 65px; }
  .about-story__grid, .inner-cta__grid { gap: 55px; }
  .faq-page__layout { gap: 65px; }
  .web-find__grid { gap: 60px; }
}

@media (max-width: 860px) {
  .topbar__promise { display: none !important; }
  .topbar__inner { justify-content: center; }
  .header__inner { height: 72px; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a { width: 100%; padding: 17px 4px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 24px; font-weight: 400; }
  .main-nav a::after { display: none; }
  .nav-dropdown { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-dropdown__trigger { width: 100%; padding: 17px 4px; justify-content: space-between; font-family: var(--serif); font-size: 24px; font-weight: 400; }
  .nav-dropdown__trigger svg { width: 18px; margin-right: 5px; }
  .nav-dropdown__menu { position: static; min-width: 0; max-height: 0; padding: 0; overflow: hidden; background: transparent; border: 0; box-shadow: none; visibility: hidden; opacity: 1; transform: none; transition: max-height .3s ease, visibility .3s; }
  .nav-dropdown.is-open .nav-dropdown__menu { max-height: 190px; visibility: visible; transform: none; }
  .nav-dropdown__menu a { padding: 13px 18px; border-top: 1px solid var(--line); border-bottom: 0; font-family: var(--sans); font-size: 14px; font-weight: 700; }

  .hero { min-height: auto; }
  .hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 48px; padding-block: 72px 0; }
  .hero__content { max-width: 720px; }
  .hero__visual { min-height: auto; padding-block: 55px; }
  .hero__visual::before { top: 0; right: -50vw; bottom: 0; left: -50vw; }
  .hero__image-wrap { inset: 0 -24px; }
  .hero__review-panel { width: calc(100% + 48px); margin-inline: -24px; padding: 24px 38px 38px; }
  .hero__badge { left: 18px; bottom: 25px; }
  .hero__location { right: 0; }
  .confidence__item { padding-inline: 18px; }

  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .symptoms__grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 290px; }
  .method__grid { grid-template-columns: 1fr; gap: 60px; }
  .audiences__grid { grid-template-columns: .75fr 1.25fr; gap: 45px; }
  .zones__grid { grid-template-columns: 1fr 370px; gap: 35px; }
  .commitments__grid { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .faq__intro { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__copy { max-width: 650px; }
  .footer__main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__contact { grid-column: 2 / -1; }

  .inner-hero::after { width: 20%; }
  .contact-page__grid { grid-template-columns: 1fr; gap: 55px; }
  .about-values__grid, .about-audiences__grid { grid-template-columns: 1fr 1fr; }
  .about-audiences__grid article:last-child { grid-column: 1 / -1; }
  .faq-page__layout { grid-template-columns: 1fr; gap: 60px; }
  .faq-page__aside { position: static; }
  .faq-page__aside nav { grid-template-columns: 1fr 1fr; column-gap: 25px; }
  .web-find__grid { grid-template-columns: 1fr; gap: 55px; }
  .web-reviews__grid { grid-template-columns: 1fr 1fr; }
  .web-review-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { padding-bottom: 62px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .topbar { font-size: 9px; }
  .topbar__inner { min-height: 31px; }
  .header__inner { height: 66px; }
  .brand__mark { width: 35px; height: 35px; }
  .brand__word { font-size: 22px; }
  .brand__word small { font-size: 7px; margin-top: 6px; }
  .main-nav { top: 97px; }

  .hero__grid { padding-top: 55px; gap: 39px; }
  h1 { font-size: clamp(43px, 12.3vw, 59px); line-height: .99; }
  h2 { font-size: clamp(37px, 10.5vw, 49px); }
  .hero__lead { margin-block: 23px 25px; font-size: 15px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; margin-top: 6px; }
  .hero__checks { flex-direction: column; gap: 8px; }
  .hero__visual { min-height: auto; padding-block: 34px; }
  .hero__image-wrap { inset-inline: -17px; }
  .hero__image-wrap img { object-position: 57% center; }
  .hero__review-panel { width: calc(100% + 34px); margin-inline: -17px; padding: 20px 22px 29px; }
  .review-panel__summary { padding: 0 0 20px; }
  .review-panel__summary > strong { font-size: 58px; }
  .review-quotes { grid-template-columns: 1fr; }
  .review-quotes blockquote { min-height: 112px; }
  .review-panel__link { margin-top: 20px; }
  .hero__badge { left: 0; bottom: 19px; width: 220px; min-height: 72px; padding: 12px; }
  .hero__badge-icon { width: 40px; height: 40px; }
  .hero__location { top: 16px; right: -2px; }

  .confidence__grid { grid-template-columns: 1fr; padding-block: 9px; }
  .confidence__item { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .confidence__item:first-child { border-left: 0; }
  .confidence__item:last-child { border-bottom: 0; }

  .section { padding-block: 78px; }
  .section-heading--split { margin-bottom: 38px; }
  .section-heading--split > p { font-size: 17px; }
  .symptoms__grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 330px; padding: 28px 25px; }

  .method__grid { gap: 45px; }
  .method__steps li { grid-template-columns: 54px 1fr; padding-block: 24px; }
  .method__intro > p:not(.eyebrow) { font-size: 17px; }
  .button--light { width: 100%; }

  .audiences__grid { grid-template-columns: 1fr; gap: 52px; }
  .audiences__visual { min-height: 440px; padding: 28px; }
  .audiences__visual > p { font-size: 25px; }
  .audience-list article { grid-template-columns: 44px 1fr; gap: 14px; }
  .audience-list article > span { width: 44px; height: 44px; }

  .zones__grid { grid-template-columns: 1fr; gap: 48px; }
  .arrondissements span { min-width: calc(25% - 6px); padding-inline: 5px; }
  .zones__map { width: min(100%, 420px); margin-inline: auto; }

  .section-heading--center { margin-bottom: 38px; }
  .commitments__grid { grid-template-columns: 1fr; }
  .commitments__grid article { min-height: 210px; }
  .commitments__grid h3 { margin-top: 36px; }

  .faq__grid { gap: 35px; }
  .accordion__item button { min-height: 72px; padding-block: 17px; }
  .accordion__item button span { font-size: 22px; line-height: 1.25; }
  .accordion__panel > p { padding-right: 15px; }

  .contact-section { padding-block: 78px; }
  .contact__grid { gap: 42px; }
  .diagnostic-form { margin-inline: -5px; padding: 25px 19px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__header span { font-size: 22px; }

  .site-footer { padding-top: 58px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__bottom { padding-block: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }

  .mobile-cta { position: fixed; z-index: 200; right: 0; bottom: 0; left: 0; display: block; padding: 8px 12px; background: rgba(255,253,249,.96); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
  .mobile-cta a { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 9px; color: white; background: var(--wine); font-size: 14px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
  .mobile-cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

  .inner-hero { padding-block: 58px 66px; }
  .inner-hero::after { display: none; }
  .breadcrumb { margin-bottom: 30px; }
  .inner-hero__content > p:last-child { font-size: 16px; }
  .contact-page__grid { gap: 44px; }
  .detail-card { grid-template-columns: 44px 1fr; padding: 13px; }
  .detail-card__icon { width: 44px; height: 44px; }
  .detail-card strong { font-size: 16px; }
  .about-story__grid, .inner-cta__grid { grid-template-columns: 1fr; }
  .about-story__grid { gap: 45px; }
  .about-signature { min-height: 460px; padding: 32px 25px; }
  .about-signature__mark { top: 30px; left: 25px; width: 64px; }
  .about-signature > p { font-size: 24px; }
  .about-signature dl { grid-template-columns: 1fr; }
  .about-signature dl div { padding-top: 15px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 10px; }
  .about-signature dd { margin: 0; }
  .about-values__grid, .about-audiences__grid { grid-template-columns: 1fr; }
  .about-values__grid article { min-height: 245px; padding: 28px; }
  .about-values__grid h3 { margin-top: 42px; }
  .about-audiences__grid article, .about-audiences__grid article:last-child { grid-column: auto; min-height: 235px; padding: 28px; }
  .about-audiences__grid h3 { margin-top: 35px; }
  .faq-page__layout { gap: 52px; }
  .faq-page__aside nav { grid-template-columns: 1fr; }
  .faq-page__group { margin-bottom: 60px; }
  .faq-page__group > h2 { margin-bottom: 22px; }
  .web-find__grid { gap: 42px; }
  .web-map-card { padding: 12px 22px; }
  .web-map-card a { min-height: 92px; }
  .web-reviews__grid { grid-template-columns: 1fr; }
  .web-review-card, .web-review-card:last-child { grid-column: auto; min-height: 320px; padding: 28px; }
  .web-profiles__grid { grid-template-columns: 1fr; }
  .inner-cta { padding-block: 70px; }
  .inner-cta__grid { gap: 30px; }
  .inner-cta .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
