@import url("./design-tokens.css");

@font-face {
  font-family: "Albert Sans";
  src: url("/assets/fonts/albert-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("/assets/fonts/caveat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --ivory: var(--color-ivory);
  --sand: var(--color-sand);
  --sand-soft: var(--color-sand-light);
  --ink: var(--color-ink);
  --ink-soft: var(--color-ink-muted);
  --sage: var(--color-sage);
  --sage-light: var(--color-sage-light);
  --sage-dark: var(--color-sage-dark);
  --sage-wash: #eff1e8;
  --clay: var(--color-clay);
  --clay-dark: var(--color-clay-dark);
  --clay-hover: #773c20;
  --earth: var(--color-earth);
  --wood-light: #8a7a63;
  --wood: #75664f;
  --wood-dark: #5e5140;
  --white: #fff;
  --shadow: 0 3px 16px rgb(58 52 44 / 9%);
  --shadow-raised: 0 12px 32px rgb(58 52 44 / 14%);
  --radius: var(--radius-card);
  --content: var(--width-content);
  --reading: var(--width-reading);
  --header-height: 76px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Albert Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Albert Sans", system-ui, sans-serif;
}

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

img {
  height: auto;
}

a {
  color: var(--sage-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--clay-dark);
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
  border-radius: 4px;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.25;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4.8vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 300;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 600;
}

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

.reading-width {
  max-width: var(--reading);
  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;
}

.svg-sprite {
  position: absolute;
  overflow: hidden;
}

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

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

.handwritten {
  margin-bottom: 0.35rem;
  color: var(--clay-dark);
  font-family: "Caveat", cursive;
  font-size: clamp(1.42rem, 2.3vw, 1.72rem);
  line-height: 1.2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 29px;
  border: 1.5px solid var(--clay-dark);
  border-radius: 999px;
  background: var(--clay-dark);
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--clay-hover);
  background: var(--clay-hover);
  color: var(--ivory);
  transform: translateY(-1px);
}

.button--secondary {
  border-color: var(--sage);
  background: transparent;
  color: var(--sage-dark);
}

.button--secondary:hover {
  border-color: var(--sage-dark);
  background: var(--sage-wash);
  color: var(--sage-dark);
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  border-bottom: 2px solid var(--clay);
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.text-link:hover {
  color: var(--clay-dark);
}

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid #e9e0d1;
  background: rgb(250 246 239 / 96%);
  backdrop-filter: blur(10px);
}

.site-nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--sage-dark);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.site-logo:hover {
  color: var(--sage-dark);
}

.site-logo svg {
  width: 29px;
  height: 29px;
  color: var(--clay);
}

.site-nav__links {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-link,
.nav-dropdown summary {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-dropdown[data-active="true"] > summary {
  color: var(--sage-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary svg {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  width: 270px;
  padding: 12px;
  border: 1px solid #e7dfd0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-raised);
  gap: 2px;
}

.nav-dropdown__panel::before {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  height: 20px;
  content: "";
}

.nav-dropdown__panel a {
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a[aria-current="page"] {
  background: var(--sage-wash);
  color: var(--sage-dark);
}

.button--nav {
  min-height: 42px;
  padding: 10px 21px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--sage-light);
  border-radius: 50%;
  background: transparent;
  color: var(--sage-dark);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.breadcrumbs {
  padding-top: 19px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  padding-inline: 8px;
  color: var(--sage-light);
  content: "/";
}

.breadcrumbs a {
  color: var(--sage-dark);
  text-decoration: none;
}

.review-banner {
  padding: 9px 0;
  border-bottom: 1px solid #ddc39f;
  background: #fff1d9;
  color: #6a472e;
  font-size: 0.87rem;
  line-height: 1.45;
}

/* Page foundations */
.page-hero {
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero--compact {
  padding-bottom: 32px;
}

.page-hero__inner {
  max-width: 820px;
}

.page-hero__eyebrow {
  margin-bottom: 12px;
}

.page-hero__lead {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--ink-soft);
}

.section {
  padding: 92px 0 100px;
}

.section--ivory {
  background: var(--ivory);
}

.section--sand {
  background: var(--sand-soft);
}

.section--sage {
  background: var(--sage-wash);
}

.section--white {
  background: var(--white);
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 46px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--start {
  margin-left: 0;
  text-align: left;
}

.section-heading p + h2 {
  margin-top: 3px;
}

.section-intro {
  max-width: var(--reading);
  margin: -25px auto 42px;
  color: var(--ink-soft);
  text-align: center;
}

.soil-divider {
  height: 48px;
  overflow: hidden;
  color: var(--sage);
}

.soil-divider--ivory {
  background: var(--ivory);
}

.soil-divider--sand {
  background: var(--sand-soft);
}

.soil-divider--sage {
  background: var(--sage-wash);
}

.soil-divider svg {
  width: 100%;
  height: 48px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.split--reverse .split__media {
  order: 2;
}

.split__copy > p:not(.handwritten) {
  margin: 17px 0 0;
  color: var(--ink-soft);
}

.field-photo {
  margin-bottom: 0;
}

.field-photo img,
.media-placeholder {
  width: 100%;
  min-height: 320px;
  max-height: 430px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.field-photo figcaption {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 1.35rem;
  text-align: center;
}

.sketch-frame {
  position: relative;
}

.sketch-frame::before {
  position: absolute;
  z-index: 1;
  inset: -7px;
  border: 1.6px solid var(--sage-dark);
  border-radius: 17px 14px 18px 13px;
  content: "";
  pointer-events: none;
  transform: rotate(-0.25deg);
}

.sketch-frame::after {
  position: absolute;
  z-index: 2;
  width: 31px;
  height: 30px;
  border-left: 1.7px solid var(--sage);
  content: "";
  pointer-events: none;
}

.sketch-frame--top-right::after {
  top: -35px;
  right: 16%;
  border-radius: 80% 0 0;
  box-shadow: -7px 9px 0 -6px var(--sage), 7px 12px 0 -6px var(--sage);
  transform: rotate(15deg);
}

.sketch-frame--top-left::after {
  top: -35px;
  left: 14%;
  border-radius: 0 80% 0 0;
  box-shadow: -7px 10px 0 -6px var(--sage), 7px 13px 0 -6px var(--sage);
  transform: rotate(-14deg);
}

.media-placeholder {
  display: grid;
  place-content: center;
  background: linear-gradient(145deg, var(--sage), var(--sage-light));
  color: var(--ivory);
  gap: 10px;
  text-align: center;
}

.media-placeholder__icon {
  width: 54px;
  height: 54px;
  margin: auto;
}

.media-placeholder span {
  max-width: 220px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wood-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.wood-tags--start {
  justify-content: flex-start;
}

.wood-tag,
.wood-label {
  position: relative;
  display: inline-block;
  padding: 8px 17px 8px 25px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, rgb(255 255 255 / 3%) 0 5px, rgb(0 0 0 / 5%) 5px 9px, transparent 9px 15px), linear-gradient(175deg, var(--wood-light), var(--wood) 55%, var(--wood-dark));
  box-shadow: 0 2px 6px rgb(58 52 44 / 25%);
  color: #f8f0e4;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.wood-tag::before,
.wood-label::before {
  position: absolute;
  top: 50%;
  left: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand-soft);
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 55%);
  content: "";
  transform: translateY(-50%);
}

.wood-tag:nth-child(odd) {
  transform: rotate(-1deg);
}

.wood-tag:nth-child(even) {
  transform: rotate(0.7deg);
}

.wood-label {
  align-self: flex-start;
  margin-bottom: 10px;
  padding-block: 6px;
  font-size: 0.76rem;
  transform: rotate(-1deg);
}

.feature-grid {
  display: grid;
  gap: 34px;
}

.feature-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature {
  text-align: center;
}

.feature__eyebrow {
  margin-bottom: 7px;
  font-size: 1.55rem;
}

.feature h3 + p {
  margin: 8px auto 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.sketch-icon {
  position: relative;
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 17px;
  place-items: center;
  color: var(--sage-dark);
}

.sketch-icon::before {
  position: absolute;
  inset: 1px;
  border: 1.4px solid var(--sage-light);
  border-radius: 48% 52% 45% 55%;
  content: "";
  transform: rotate(-4deg);
}

.sketch-icon .icon {
  width: 42px;
  height: 42px;
}

.card-grid {
  display: grid;
  gap: 25px;
}

.card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border-bottom: 3px solid var(--sage-light);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  border-bottom-color: var(--clay);
  box-shadow: var(--shadow-raised);
  transform: translateY(-3px);
}

.card--static:hover {
  border-bottom-color: var(--sage-light);
  box-shadow: var(--shadow);
  transform: none;
}

.card__media {
  display: grid;
  overflow: hidden;
  min-height: 165px;
  place-items: center;
  background: var(--sage);
  color: var(--ivory);
}

.card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.card:hover .card__media img {
  transform: scale(1.025);
}

.card__media--illustration,
.card__media--placeholder {
  background: linear-gradient(145deg, var(--sage), var(--sage-light));
}

.card__media--illustration .icon,
.card__media--placeholder .icon {
  width: 58px;
  height: 58px;
}

.card__media--placeholder {
  align-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.card__media--placeholder span {
  margin-top: 8px;
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.card__eyebrow {
  margin-bottom: 3px;
  font-size: 1.42rem;
}

.card h3 + p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.card .text-link {
  margin-top: auto;
  padding-top: 17px;
}

.card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
}

.card--featured .card__media {
  min-height: 290px;
}

.card--featured .card__media img {
  height: 100%;
}

.card--featured .card__body {
  justify-content: center;
  padding: 38px;
}

.card--featured h3 {
  font-size: 1.4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 28px;
}

.step {
  text-align: center;
}

.step__number {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 13px;
  border: 1.5px solid var(--sage-light);
  border-radius: 52% 48% 55% 45%;
  color: var(--sage-dark);
  font-family: "Caveat", cursive;
  font-size: 1.65rem;
  font-weight: 600;
  place-items: center;
  transform: rotate(-3deg);
}

.step p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.audience-pill {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 9px 19px 9px 13px;
  border-bottom: 3px solid var(--sage-light);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.audience-pill:hover {
  border-bottom-color: var(--clay);
  color: var(--sage-dark);
}

.audience-pill .icon {
  width: 29px;
  height: 29px;
  color: var(--sage-dark);
}

.faq {
  max-width: var(--reading);
  margin-inline: auto;
  border-top: 1px solid var(--sage-light);
}

.faq__item {
  border-bottom: 1px solid var(--sage-light);
}

.faq__item summary {
  position: relative;
  padding: 20px 46px 20px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--sage-dark);
  border-bottom: 1.5px solid var(--sage-dark);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq__answer {
  padding: 0 42px 22px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.faq__answer p {
  margin-bottom: 0;
}

.practitioner-section {
  padding-top: 76px;
  padding-bottom: 86px;
}

.practitioner-card {
  display: grid;
  max-width: 850px;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 35px;
  margin: 0 auto;
  padding: 38px 42px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.practitioner-card__portrait {
  display: grid;
  overflow: hidden;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sage), var(--sage-light));
  color: var(--ivory);
  place-content: center;
  text-align: center;
  flex-shrink: 0;
}

.practitioner-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practitioner-card__portrait .icon {
  width: 49px;
  height: 49px;
  margin: auto;
}

.practitioner-card__portrait span {
  max-width: 110px;
  margin-top: 7px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.practitioner-card h2 {
  font-size: 1.45rem;
  font-weight: 600;
}

.practitioner-card h2 + p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.preview-note {
  max-width: var(--reading);
  margin: 28px auto 0;
  padding: 13px 17px;
  border: 1px dashed #c08b4f;
  border-radius: 10px;
  background: #fff8e9;
  color: #6a472e;
  font-size: 0.88rem;
}

.wood-texture {
  background: repeating-linear-gradient(180deg, transparent 0 84px, rgb(30 24 16 / 35%) 84px 87px), repeating-linear-gradient(90deg, rgb(255 255 255 / 2.5%) 0 7px, rgb(0 0 0 / 4%) 7px 13px, transparent 13px 21px), linear-gradient(180deg, #6e5f4b, #75664f 40%, #695a47 75%, #6e5f4b);
}

.final-cta {
  padding: 86px 0 94px;
  color: var(--ivory);
  text-align: center;
}

.final-cta h2 {
  color: #f5efe3;
}

.final-cta .handwritten {
  color: var(--sand);
}

.final-cta__inner > p:not(.handwritten) {
  max-width: 590px;
  margin: 16px auto 0;
  color: #eee3d2;
}

.final-cta .button {
  margin-top: 28px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 26%);
}

.final-cta__soft-link {
  display: block;
  margin-top: 16px;
  color: #f6e4c8;
  font-size: 0.92rem;
}

.final-cta__soft-link:hover {
  color: var(--white);
}

/* Page-specific building blocks */
.home-hero {
  padding-top: 92px;
}

.home-highlight {
  margin: 38px auto 0;
  color: var(--ink-soft);
  font-family: "Caveat", cursive;
  font-size: 1.55rem;
  text-align: center;
}

.home-highlight a {
  color: var(--clay-dark);
}

.proof-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.proof-strip__copy p:not(.handwritten) {
  margin-top: 15px;
  color: var(--ink-soft);
}

.quote-placeholder {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  text-align: center;
}

.quote-placeholder .handwritten {
  font-size: 1.7rem;
}

.zone-map {
  position: relative;
  display: grid;
  min-height: 370px;
  border: 1.5px solid var(--sage-light);
  border-radius: 48% 52% 45% 55% / 6% 8% 7% 9%;
  background: var(--sage-wash);
  place-content: center;
  transform: rotate(-0.4deg);
}

.zone-map::before {
  position: absolute;
  top: 10%;
  bottom: 8%;
  left: 50%;
  width: 42px;
  border-right: 2px solid #7992a3;
  border-left: 1px solid #91a6b3;
  border-radius: 50%;
  content: "";
  transform: rotate(7deg);
}

.zone-map__places {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 60px;
}

.zone-map__place {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}

.zone-map__place::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ivory);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 2px var(--clay);
  content: "";
}

.zone-map__place:nth-child(2) {
  transform: translateX(70px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: start;
  gap: 52px;
}

.contact-form {
  padding: 38px 40px;
  border-bottom: 3px solid var(--sage-light);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 21px;
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.form-help {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1.5px solid #d8cfbf;
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 1rem;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sage-dark);
  outline: 3px solid rgb(110 127 85 / 18%);
}

.contact-form .button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff1d9;
  color: #6a472e;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.contact-next h2 {
  margin-bottom: 28px;
}

.contact-next .steps {
  grid-template-columns: 1fr;
  gap: 23px;
}

.contact-next .step {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 15px;
  text-align: left;
}

.contact-next .step__number {
  margin: 0;
}

.contact-details {
  margin-top: 35px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--sand-soft);
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.legal-copy {
  max-width: 760px;
  margin: 0 auto;
}

.legal-copy h2 {
  margin-top: 45px;
  font-size: 1.45rem;
  font-weight: 600;
}

.legal-copy h3 {
  margin-top: 27px;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy li + li {
  margin-top: 7px;
}

.missing-value {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  background: #fff1d9;
  color: #784d2a;
  font-weight: 600;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height) - 250px);
  padding: 70px 0 84px;
  place-items: center;
  text-align: center;
}

.not-found__code {
  margin: 0;
  color: var(--sage-light);
  font-family: "Caveat", cursive;
  font-size: clamp(6rem, 18vw, 9rem);
  font-weight: 600;
  line-height: 0.8;
}

.not-found h1 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.not-found__lead {
  max-width: 570px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  padding: 55px 0 48px;
  background: var(--earth);
  color: #d8cfc2;
  font-size: 0.88rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 7px;
  color: #ded5c8;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer__brand {
  margin-top: 0 !important;
  color: var(--ivory) !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer .handwritten {
  margin: 4px 0 8px;
  color: var(--sand);
  font-size: 1.35rem;
}

.site-footer p:not(.handwritten) {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav__links {
    gap: 14px;
  }

  .site-logo span {
    max-width: 120px;
  }

  .nav-link,
  .nav-dropdown summary {
    font-size: 0.86rem;
  }

  .button--nav {
    padding-inline: 16px;
  }

  .feature-grid--4,
  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--content));
  }

  .site-nav {
    min-height: var(--header-height);
  }

  .site-logo span {
    max-width: none;
  }

  .js .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    justify-content: initial;
    padding: 18px 24px 25px;
    border-top: 1px solid #e9e0d1;
    background: var(--ivory);
    box-shadow: 0 14px 25px rgb(58 52 44 / 12%);
    gap: 4px;
    overflow-y: auto;
  }

  .js .site-nav__links {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .js .site-nav__links[data-open="true"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-dropdown summary {
    width: 100%;
    padding: 12px 8px;
    font-size: 1rem;
  }

  .nav-dropdown summary {
    justify-content: space-between;
  }

  .nav-dropdown__panel {
    position: static;
    width: auto;
    padding: 2px 0 10px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown__panel::before {
    display: none;
  }

  .nav-dropdown__panel a {
    padding: 8px 10px;
  }

  .button--nav {
    width: 100%;
    margin-top: 8px;
  }

  .page-hero {
    padding: 57px 0 53px;
  }

  .section {
    padding: 68px 0 74px;
  }

  .split,
  .proof-strip,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .split--reverse .split__media {
    order: initial;
  }

  .feature-grid--3,
  .card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(calc(100% - 30px), var(--content));
  }

  .site-logo {
    font-size: 1rem;
  }

  .site-logo svg {
    width: 26px;
    height: 26px;
  }

  .review-banner {
    font-size: 0.8rem;
  }

  .breadcrumbs {
    overflow: hidden;
    padding-top: 14px;
    font-size: 0.77rem;
    white-space: nowrap;
  }

  .breadcrumbs ol {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero .button-row {
    max-width: 360px;
    margin-inline: auto;
    margin-top: 28px;
  }

  .page-hero {
    padding-top: 48px;
  }

  .wood-tags {
    gap: 10px;
  }

  .wood-tag {
    font-size: 0.77rem;
  }

  .feature-grid--2,
  .feature-grid--3,
  .feature-grid--4,
  .card-grid--2,
  .card-grid--3,
  .card-grid--4,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 38px;
  }

  .card--featured {
    display: flex;
  }

  .card--featured .card__media {
    min-height: 190px;
  }

  .card--featured .card__body {
    padding: 25px;
  }

  .field-photo img,
  .media-placeholder {
    min-height: 250px;
  }

  .practitioner-card {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    text-align: center;
  }

  .practitioner-card__portrait {
    margin: auto;
  }

  .practitioner-card .wood-tags {
    justify-content: center;
  }

  .practitioner-card .text-link {
    align-self: auto;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .final-cta {
    padding: 70px 0 78px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Encart Fiche de départ — porte de maturation, toujours secondaire face au devis */
.fiche-teaser {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}

.fiche-teaser > p:not(.handwritten) {
  margin: 14px auto 0;
}

.fiche-teaser .button {
  margin-top: 26px;
}
