:root {
  --ink: #173632;
  --ink-soft: #36534f;
  --muted: #596e69;
  --sage: #5f8f81;
  --sage-dark: #2f6e61;
  --sage-pale: #e4eee9;
  --cream: #f7f3ec;
  --cream-deep: #eee6da;
  --peach: #d9a78a;
  --peach-pale: #f4e3d8;
  --white: #fff;
  --line: rgba(23, 54, 50, 0.14);
  --shadow: 0 24px 70px rgba(34, 66, 60, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.shell {
  width: var(--shell);
  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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.emergency-note {
  color: var(--white);
  background: var(--ink);
  font-size: 0.8rem;
}

.emergency-note__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  gap: 9px;
  text-align: center;
}

.emergency-note__inner > span {
  color: var(--peach);
  font-size: 0.55rem;
}

.emergency-note p {
  margin: 0;
}

.emergency-note a {
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(18px);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(23, 54, 50, 0.07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  overflow: visible;
  fill: var(--peach-pale);
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  line-height: 1.08;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.brand__text > span {
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--sage);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-button[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 24px;
  gap: 14px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 12px 28px rgba(47, 110, 97, 0.18);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.button:hover {
  background: var(--ink);
  box-shadow: 0 15px 32px rgba(23, 54, 50, 0.2);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 9px 19px;
  font-size: 0.84rem;
}

.button--outline {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button--outline:hover {
  color: var(--white);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 92px;
}

.hero__wash {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -180px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 238, 233, 0.95) 0 45%, rgba(228, 238, 233, 0) 70%);
}

.hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  margin: 0 0 21px;
  gap: 11px;
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2,
.contact h2,
.reflection blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.5rem, 6.4vw, 6.4rem);
}

.hero h1 em {
  display: block;
  color: var(--sage);
  font-weight: 400;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 28px;
}

.hero__values {
  display: flex;
  flex-wrap: wrap;
  margin: 38px 0 0;
  padding: 0;
  gap: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.hero__values li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__values svg {
  width: 17px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-art {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 220px 220px 34px 34px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.45), transparent 55%),
    var(--sage-pale);
  box-shadow: var(--shadow);
}

.hero-art > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art__arch,
.hero-art__path,
.hero-art__stem,
.hero-art__leaf {
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-art__arch {
  opacity: 0.24;
  stroke-width: 2;
}

.hero-art__path {
  fill: rgba(255, 255, 255, 0.52);
  stroke-width: 3;
}

.hero-art__stem {
  stroke-width: 4;
}

.hero-art__leaf {
  fill: rgba(255, 255, 255, 0.5);
  stroke-width: 3;
}

.hero-art__leaf--left {
  fill: var(--peach-pale);
}

.hero-art__circle {
  fill: var(--peach);
  opacity: 0.75;
}

.hero-art__dot {
  fill: var(--sage-dark);
}

.hero-art__sun {
  position: absolute;
  top: 52px;
  right: 45px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.hero-art__card {
  position: absolute;
  right: 22px;
  bottom: 25px;
  left: 22px;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 20px 24px;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 16px 40px rgba(23, 54, 50, 0.1);
  backdrop-filter: blur(12px);
}

.hero-art__card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: var(--sage-dark);
  background: var(--peach-pale);
}

.hero-art__card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.17rem;
  line-height: 1.35;
}

.section {
  padding: 118px 0;
}

.section h2,
.contact h2 {
  font-size: clamp(2.55rem, 4.7vw, 4.7rem);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
  gap: clamp(60px, 10vw, 150px);
}

.intro-copy {
  padding-top: 41px;
  color: var(--muted);
}

.intro-copy__lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.5;
}

.intro-copy .text-link {
  margin-top: 16px;
}

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

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.55fr);
  gap: 70px;
}

.section-heading > p {
  margin: 0 0 9px;
  color: var(--muted);
}

.support-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.support-card {
  position: relative;
  min-height: 360px;
  padding: 34px 32px;
  overflow: hidden;
  border: 1px solid rgba(23, 54, 50, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.support-card:hover {
  background: var(--white);
  box-shadow: 0 22px 55px rgba(23, 54, 50, 0.1);
  transform: translateY(-6px);
}

.support-card__number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.support-card__icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-pale);
}

.support-card__icon svg {
  width: 42px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.support-card h3,
.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
}

.support-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.support-note {
  max-width: 680px;
  margin: 38px auto 0;
  color: var(--muted);
  font-size: 0.83rem;
  text-align: center;
}

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

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.7fr);
  gap: clamp(70px, 11vw, 160px);
}

.process__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process__intro > p:not(.section-label) {
  max-width: 480px;
  margin: 27px 0 30px;
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 58px 1fr;
  gap: 25px;
}

.process-list li:first-child {
  padding-top: 6px;
}

.process-list > li > span {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage-dark);
  font-family: var(--serif);
}

.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.reflection {
  padding: 96px 0;
  color: var(--white);
  background: var(--sage-dark);
}

.reflection__inner {
  display: grid;
  align-items: start;
  max-width: 970px;
  grid-template-columns: 72px 1fr;
  gap: 42px;
}

.reflection svg {
  width: 68px;
  fill: var(--peach);
}

.reflection blockquote {
  max-width: 850px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.faq {
  background: var(--cream);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.56fr) minmax(420px, 0.9fr);
  gap: clamp(60px, 10vw, 140px);
}

.faq__intro p:last-child {
  max-width: 380px;
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--sage-dark);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 45px 27px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 0.65fr);
  gap: clamp(60px, 10vw, 145px);
}

.section-label--light {
  color: var(--peach);
}

.contact__content > p:not(.section-label) {
  max-width: 520px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 14px;
  text-decoration: none;
}

.contact-email > span:first-child {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.contact-email svg {
  width: 22px;
  fill: none;
  stroke: var(--peach);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-email span:last-child {
  min-width: 0;
}

.contact-email small,
.contact-email strong {
  display: block;
}

.contact-email small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-email strong {
  overflow: hidden;
  font-size: clamp(0.8rem, 1.25vw, 1rem);
  text-overflow: ellipsis;
}

.contact__privacy {
  display: flex;
  align-items: flex-start;
  max-width: 470px;
  margin-top: 33px;
  gap: 11px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.78rem;
}

.contact__privacy svg {
  flex: 0 0 auto;
  width: 19px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact__privacy p {
  margin: 0;
}

.contact-card {
  padding: clamp(28px, 4vw, 45px);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 54, 50, 0.18);
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input {
  height: 51px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 128px;
  padding: 13px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--sage);
  outline: none;
  box-shadow: 0 0 0 4px rgba(95, 143, 129, 0.15);
}

.form-field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.checkbox {
  display: grid;
  align-items: start;
  margin: 7px 0 24px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
  grid-template-columns: 19px 1fr;
  gap: 10px;
}

.checkbox input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--sage-dark);
}

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

.form-status {
  min-height: 24px;
  margin: 12px 0 -8px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--cream);
}

.site-footer__top {
  display: grid;
  align-items: center;
  padding-bottom: 53px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
}

.site-footer__top > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
  text-align: center;
}

.site-footer__top nav {
  display: flex;
  gap: 22px;
}

.site-footer__top nav a,
.site-footer__bottom a {
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 650;
  text-decoration: none;
}

.site-footer__top nav a:hover,
.site-footer__bottom a:hover {
  color: var(--sage-dark);
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  gap: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-main {
  padding: 88px 0 120px;
}

.legal-card {
  max-width: 850px;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.legal-card h2 {
  margin: 42px 0 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

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

.legal-card .legal-updated {
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-card .button {
  margin-top: 35px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--sage-pale);
  text-align: center;
}

.not-found__inner {
  max-width: 650px;
}

.not-found strong {
  display: block;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 400;
  line-height: 0.8;
}

.not-found h1 {
  margin: 30px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
}

.not-found p {
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 118px 17px auto;
    display: flex;
    max-height: calc(100vh - 140px);
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--cream);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .button {
    margin-top: 20px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero__grid,
  .intro-grid,
  .section-heading,
  .process__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 62px;
  }

  .hero h1 {
    max-width: 750px;
  }

  .hero__visual {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .intro-grid,
  .section-heading,
  .process__grid,
  .faq__grid,
  .contact__grid {
    gap: 45px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: auto;
  }

  .support-card__icon {
    margin-bottom: 35px;
  }

  .process__intro {
    position: static;
  }

  .contact-card {
    max-width: 660px;
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  html {
    scroll-padding-top: 90px;
  }

  .emergency-note__inner {
    align-items: flex-start;
    padding: 7px 0;
    line-height: 1.4;
  }

  .emergency-note__inner > span {
    margin-top: 5px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .brand__text strong {
    font-size: 0.95rem;
  }

  .brand__text {
    font-size: 0.63rem;
  }

  .site-nav {
    inset: 118px 14px auto;
  }

  .hero {
    padding: 42px 0 70px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.4rem);
  }

  .hero__lead {
    margin-top: 22px;
  }

  .hero__actions {
    align-items: flex-start;
    margin-top: 28px;
    flex-direction: column;
    gap: 20px;
  }

  .hero__values {
    margin-top: 30px;
    gap: 11px 17px;
  }

  .hero-art {
    min-height: 455px;
    border-radius: 180px 180px 27px 27px;
  }

  .hero-art__card {
    right: 15px;
    bottom: 15px;
    left: 15px;
    min-height: 76px;
    padding: 16px;
  }

  .hero-art__card p {
    font-size: 1.02rem;
  }

  .section {
    padding: 82px 0;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .section-heading {
    gap: 25px;
  }

  .support-grid {
    margin-top: 40px;
  }

  .support-card {
    padding: 28px 25px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .process-list > li > span {
    width: 43px;
    height: 43px;
  }

  .reflection {
    padding: 72px 0;
  }

  .reflection__inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .reflection svg {
    width: 48px;
  }

  .reflection blockquote {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .faq-list summary {
    font-size: 1.12rem;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-email strong {
    font-size: 0.72rem;
  }

  .site-footer {
    padding-top: 52px;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top {
    display: flex;
    gap: 30px;
  }

  .site-footer__top nav {
    flex-wrap: wrap;
  }

  .site-footer__bottom {
    display: flex;
    gap: 12px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
