:root {
  --green-950: #132820;
  --green-900: #19362b;
  --green-700: #2f674d;
  --green-100: #e9f1e4;
  --clay-600: #b26b54;
  --brown-600: #8f6330;
  --gold-600: #b98539;
  --paper: #fbf5ec;
  --paper-strong: #fffaf2;
  --ink: #15231d;
  --muted: #617068;
  --line: #ded6ca;
  --sand: #f0e4d4;
  --shadow: 0 20px 70px rgba(20, 40, 32, 0.12);
  --caremeal-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: var(--caremeal-font);
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#fonctionnement {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--caremeal-font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.4vw, 18px);
  min-height: 76px;
  padding: 14px clamp(16px, 3vw, 46px);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(222, 214, 202, 0.82);
  backdrop-filter: blur(18px);
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 142px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--paper-strong);
  border: 1px solid rgba(222, 214, 202, 0.92);
  box-shadow: 0 12px 30px rgba(20, 40, 32, 0.12);
  overflow: hidden;
  padding: 5px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a,
.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 clamp(10px, 1vw, 16px);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.main-nav a {
  color: #33433a;
  white-space: nowrap;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
}

.header-cta {
  flex: 0 0 auto;
}

.main-nav a:hover,
.main-nav a.active {
  background: #efe7dc;
}

.header-cta {
  background: var(--green-900);
  color: white;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 33, 26, 0.88) 0%, rgba(15, 33, 26, 0.64) 34%, rgba(15, 33, 26, 0.1) 72%),
    linear-gradient(0deg, rgba(19, 40, 32, 0.18), rgba(19, 40, 32, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 92px);
  padding: 84px 0;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brown-600);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-brown {
  color: var(--brown-600);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 6.6rem);
  line-height: 0.98;
  white-space: nowrap;
}

.hero-subtitle {
  margin: 30px 0 0;
  max-width: 660px;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.16;
  font-weight: 900;
}

.hero-copy {
  margin: 30px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.74;
  font-weight: 650;
}

.hero-note {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  border: 2px solid transparent;
  min-height: 52px;
  padding: 0 24px;
  font-size: 1rem;
  cursor: pointer;
}

.button.primary {
  background: var(--green-700);
  color: white;
}

.button.secondary {
  background: rgba(255, 250, 242, 0.92);
  color: var(--green-950);
  border-color: rgba(255, 255, 255, 0.22);
}

.button.full {
  width: 100%;
}

.intro-strip,
.value-section,
.section,
.footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.intro-strip div {
  background: var(--paper-strong);
  padding: 24px;
}

.intro-strip span,
.steps span,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 0.85rem;
  font-weight: 950;
}

.intro-strip strong {
  display: block;
  margin-top: 14px;
  font-size: 1.08rem;
}

.intro-strip p,
.section p,
.check-list,
.form-status {
  color: var(--muted);
  line-height: 1.68;
}

.section {
  padding-block: clamp(48px, 6vw, 92px);
}

.objective-section {
  background: var(--paper-strong);
  color: var(--green-950);
  padding-block: clamp(50px, 6vw, 92px);
}

.objective-inner {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.objective-section .eyebrow {
  color: var(--brown-600);
}

.objective-section h2 {
  max-width: 740px;
  color: var(--green-950);
  font-size: clamp(2.25rem, 4.8vw, 5rem);
  line-height: 1.02;
}

.objective-copy {
  justify-self: end;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 650;
  line-height: 1.7;
}

.objective-copy p {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.objective-copy ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.objective-copy li {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.objective-copy strong {
  color: var(--green-950);
  font-weight: 900;
}

.objective-copy span {
  color: var(--muted);
}

.value-section {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.value-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.value-heading h2 {
  max-width: 980px;
  font-size: clamp(2rem, 4.4vw, 4.45rem);
  line-height: 1;
}

.value-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.24rem);
  line-height: 1.72;
  font-weight: 680;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.value-grid article {
  min-height: 285px;
  padding: clamp(20px, 2.2vw, 28px);
  background: #fffaf2;
}

.value-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-950);
  font-weight: 950;
}

.value-grid h3 {
  margin-top: 24px;
  max-width: 300px;
}

.value-grid p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.64;
}

.value-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-cta {
  width: min(1160px, calc(100% - 36px));
  display: flex;
  justify-content: center;
  margin: clamp(16px, 2.5vw, 30px) auto clamp(18px, 3vw, 38px);
}

.value-note {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold-600);
  color: #5d4b2d;
  font-weight: 800;
  line-height: 1.55;
}

.prep-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.prep-photo {
  margin: 0;
}

.prep-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.prep-content {
  max-width: 680px;
}

.prep-content h2 {
  max-width: 760px;
}

.prep-content > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.72;
  font-weight: 650;
}

.prep-content > .eyebrow,
.section-heading .eyebrow {
  color: var(--brown-600);
}

.prep-content > .eyebrow {
  margin: 0 0 12px;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: normal;
}

.prep-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.prep-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.prep-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.prep-list strong {
  color: var(--green-950);
  font-weight: 900;
}

.prep-list span {
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 7vw, 88px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.7rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.14;
}

.section-copy {
  font-size: 1.1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 16px;
}

.card-grid article,
.steps article,
.contact-form,
.safety-grid article,
.notice,
.about-card,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.card-grid article {
  padding: 26px;
}

.card-grid h3 {
  margin-top: 18px;
}

.section-heading {
  max-width: 820px;
}

.section-heading p {
  max-width: 720px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 78px);
}

.about-photo {
  position: sticky;
  top: 112px;
  margin: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center;
  background: #f3f0eb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.about-story {
  max-width: 820px;
}

.about-story h2 {
  max-width: 780px;
}

.about-card {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: none;
}

.about-card > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 850;
}

.about-card > p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
  line-height: 1.78;
  font-weight: 680;
}

.proof-section {
  padding-top: clamp(36px, 5vw, 72px);
}

.proof-section .section-heading {
  max-width: 960px;
  margin-bottom: clamp(38px, 4.8vw, 72px);
}

.proof-section h2 {
  line-height: 1.08;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  margin-top: 0;
}

.proof-strip article {
  min-height: clamp(210px, 17vw, 270px);
  padding: clamp(34px, 4.2vw, 58px);
  background: var(--paper-strong);
}

.proof-strip strong {
  display: block;
  color: var(--green-950);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 850;
}

.proof-number {
  display: inline-block;
  min-width: 2.6ch;
  font-variant-numeric: tabular-nums;
}

.proof-strip article > span:not(.proof-number) {
  display: block;
  max-width: 260px;
  margin-top: clamp(22px, 2vw, 32px);
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.58;
  font-weight: 650;
}

.testimonials-section {
  padding-top: clamp(42px, 5vw, 76px);
  padding-bottom: clamp(42px, 5vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-intro {
  max-width: 920px;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 34px);
  margin-top: 0;
}

.testimonial-card {
  min-height: 210px;
  padding: clamp(30px, 3.2vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.testimonial-name {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1;
  font-weight: 500;
}

.testimonial-role {
  margin: 0 0 clamp(34px, 3vw, 48px);
  color: var(--brown-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-quote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.58;
  font-weight: 400;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.steps article {
  padding: 24px;
  box-shadow: none;
}

.steps h3 {
  margin-top: 16px;
}

.aidant-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  margin-top: clamp(18px, 3vw, 42px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7efe1;
  box-shadow: var(--shadow);
}

.aidant-band .eyebrow {
  color: var(--brown-600);
}

.aidant-copy h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
}

.aidant-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  font-weight: 650;
}

.aidant-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.aidant-cards article {
  min-height: 210px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid #ddceb7;
  border-radius: 8px;
  background: var(--paper-strong);
}

.aidant-cards span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-950);
  font-weight: 950;
}

.aidant-cards h3 {
  margin-top: 20px;
  max-width: 260px;
}

.aidant-cards p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.professional {
  align-items: stretch;
}

.professional > div:first-child {
  padding-block: clamp(8px, 2vw, 22px);
}

.professional .eyebrow {
  margin-bottom: clamp(18px, 2.4vw, 32px);
}

.professional h2 {
  margin-bottom: clamp(28px, 3vw, 46px);
  line-height: 1.12;
}

.professional > div:first-child > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: clamp(28px, 3vw, 44px);
  line-height: 1.82;
}

.about-story > .eyebrow,
.testimonials-intro > .eyebrow,
.professional .eyebrow,
.general-contact .eyebrow {
  color: var(--brown-600);
}

.general-contact {
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.general-contact > div:first-child {
  padding-block: clamp(8px, 2vw, 22px);
}

.general-contact h2 {
  margin-bottom: clamp(24px, 3vw, 42px);
  line-height: 1.12;
}

.general-contact > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: clamp(28px, 3vw, 44px);
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  line-height: 1.75;
  font-weight: 650;
}

.notice {
  padding: 18px;
  box-shadow: none;
  background: #f7efe1;
  color: #5d4b2d;
  font-weight: 800;
  line-height: 1.55;
  margin-top: 0;
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
  box-shadow: none;
}

.form-row {
  margin-bottom: 16px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

textarea {
  resize: vertical;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
  margin: 12px 0 18px;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.form-status {
  min-height: 26px;
  margin: 14px 0 0;
  font-weight: 850;
}

.form-status.ok {
  color: var(--green-700);
}

.form-status.error {
  color: #9b3d34;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.safety-grid article {
  padding: 24px;
  box-shadow: none;
}

.final-cta {
  text-align: center;
  padding: clamp(34px, 6vw, 58px);
  margin-bottom: 54px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
}

.footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  #fonctionnement {
    scroll-margin-top: 150px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: 76svh;
  }

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

  .intro-strip,
  .card-grid,
  .proof-strip,
  .testimonial-grid,
  .steps,
  .safety-grid,
  .objective-inner,
  .prep-section,
  .value-heading,
  .value-grid,
  .about-section,
  .split,
  .aidant-band {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    padding: 12px 16px;
  }

  .brand {
    min-width: auto;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(15, 33, 26, 0.92), rgba(15, 33, 26, 0.66));
  }

  .hero-media img {
    object-position: 55% center;
  }

  .hero-content {
    margin-left: 18px;
    padding: 44px 0 46px;
  }

  h1 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 1.38rem;
    line-height: 1.16;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-note {
    margin-top: 20px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 26px;
    gap: 10px;
  }

  .button {
    min-height: 48px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px 6px;
    overflow: visible;
    padding-bottom: 0;
  }

  .main-nav a {
    min-height: 40px;
    padding: 6px 8px;
    white-space: normal;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .hero-actions,
  .footer,
  .form-row.two {
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions a {
    width: 100%;
  }

  .intro-strip {
    margin-top: 18px;
  }

  .objective-section {
    padding-block: 44px;
  }

  .objective-copy {
    max-width: none;
    font-size: 1rem;
    line-height: 1.62;
  }

  .objective-copy p {
    padding: 18px;
  }

  .objective-copy li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .prep-photo img {
    aspect-ratio: 16 / 11;
  }

  .prep-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .value-section {
    margin-top: 22px;
    padding: 26px 18px;
  }

  .value-heading {
    gap: 18px;
    padding-bottom: 24px;
  }

  .value-heading h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .value-grid {
    margin-top: 24px;
  }

  .value-grid article {
    min-height: auto;
    padding: 20px;
  }

  .value-grid h3 {
    margin-top: 20px;
  }

  .section {
    padding-block: 52px;
  }

  .aidant-band {
    padding-inline: 18px;
  }

  .aidant-cards {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.legal-hero {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 56px);
}

.legal-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(0.85rem, 3.8vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.legal-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.legal-meta {
  color: var(--brown-600);
  font-weight: 800;
  margin-top: 1.4rem;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.legal-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 1.1rem;
}

.legal-card a {
  color: var(--green-700);
  font-weight: 800;
}

@media (max-width: 760px) {
  .legal-page {
    padding-inline: 12px;
  }

  .legal-hero {
    padding-inline: 14px;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }
}
