:root {
  --cream: #f7f1e6;
  --bone: #fffaf0;
  --paper: #eee4d2;
  --linen: #e4d6be;
  --sage: #aebc9f;
  --moss: #657858;
  --forest: #243d31;
  --deep: #17261f;
  --coffee: #46352b;
  --clay: #9b6a4f;
  --taupe: #827266;
  --amber: #c99a45;
  --ink: #2e302a;
  --muted: #69675e;
  --line: rgba(70, 53, 43, 0.16);
  --line-light: rgba(255, 250, 240, 0.2);
  --shadow: 0 24px 70px rgba(36, 61, 49, 0.12);
  --radius: 8px;
  --max: 1160px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(101, 120, 88, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(70, 53, 43, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 72px 72px;
  font-family: var(--sans);
  line-height: 1.7;
}

main,
section,
.split-layout > *,
.botanical-feature > *,
.footer-grid > *,
.section-title,
.copy-stack,
.centered-copy,
.testimonial-grid > *,
.benefit-strip > *,
.outcome-grid > *,
.quiet-grid > *,
.process-grid > *,
.experience-grid > *,
.pillar-grid > *,
.line-list > * {
  min-width: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    radial-gradient(rgba(70, 53, 43, 0.12) 0.6px, transparent 0.6px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.5), rgba(247, 241, 230, 0.92));
  background-size: 12px 12px, auto;
  mix-blend-mode: multiply;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--coffee);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.55rem);
}

h3 {
  font-size: 1.2rem;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 0.7rem 0.95rem;
  color: var(--bone);
  background: var(--deep);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 30;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: transparent;
}

.nav-shell {
  width: min(calc(100vw - 32px), var(--max));
  min-height: 62px;
  margin: 0 auto;
  padding: 0 0.55rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(70, 53, 43, 0.14);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(36, 61, 49, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 650;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand svg {
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 auto;
  padding: 0.42rem;
  color: var(--forest);
  background: rgba(255, 250, 240, 0.5);
  border: 1px solid rgba(36, 61, 49, 0.2);
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.nav-links {
  display: none;
  position: absolute;
  top: 70px;
  right: 16px;
  left: 16px;
  padding: 0.55rem;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  padding: 0.82rem 0.9rem;
  color: var(--coffee);
  border-radius: 6px;
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--forest);
  background: rgba(101, 120, 88, 0.14);
}

.nav-toggle {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 2.8rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  padding: 0;
  color: var(--coffee);
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid rgba(70, 53, 43, 0.22);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  width: 1.08rem;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(620px, 72svh, 820px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 7rem 0 4.2rem;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: -18% -12%;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 32%, rgba(255, 250, 240, 0.28) 45%, transparent 58%),
    linear-gradient(172deg, transparent 0 54%, rgba(201, 154, 69, 0.12) 70%, transparent 86%);
  opacity: 0.75;
  transform: translateX(-5%);
  animation: lightSweep 15s ease-in-out infinite alternate;
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transform-origin: 58% 45%;
  animation: imageBreathe 18s ease-in-out infinite alternate;
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.96) 0%, rgba(247, 241, 230, 0.72) 38%, rgba(247, 241, 230, 0.08) 74%),
    linear-gradient(0deg, rgba(247, 241, 230, 0.42), rgba(247, 241, 230, 0.04) 56%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(calc(100vw - 32px), var(--max));
  margin: 0 auto;
}

.kicker,
.section-mark {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kicker {
  display: inline-flex;
  padding: 0.48rem 0.72rem;
  background: rgba(255, 250, 240, 0.5);
  border: 1px solid rgba(70, 53, 43, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin-top: 0.8rem;
  text-shadow: 0 12px 42px rgba(255, 250, 240, 0.3);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 760px;
  margin-top: 0.95rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 530px;
  margin-top: 1.12rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(36, 61, 49, 0.14);
}

.button-primary {
  color: #1f1a13;
  background: var(--amber);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d8ad5e;
}

.button-outline {
  color: var(--forest);
  background: rgba(255, 250, 240, 0.24);
  border-color: rgba(36, 61, 49, 0.28);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 250, 240, 0.58);
}

.button-secondary {
  width: 100%;
  color: var(--bone);
  background: var(--forest);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #315447;
}

.section {
  padding: 3.9rem 0;
}

.section-paper {
  background: var(--bone);
}

.section-light {
  background: var(--cream);
}

.section-testimonials {
  background:
    radial-gradient(circle at 14% 18%, rgba(174, 188, 159, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.64), rgba(238, 228, 210, 0.84)),
    var(--paper);
}

.section-botanical {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.55), rgba(238, 228, 210, 0.72)),
    var(--paper);
}

.section-sage,
.section-process {
  background:
    linear-gradient(135deg, rgba(174, 188, 159, 0.42), rgba(255, 250, 240, 0.58)),
    #e8ecde;
}

.section-earth,
.site-footer {
  color: rgba(255, 250, 240, 0.78);
  background:
    linear-gradient(135deg, rgba(201, 154, 69, 0.11), transparent 48%),
    var(--deep);
}

.section-earth h2,
.section-earth h3,
.site-footer h2 {
  color: var(--bone);
}

.section-earth .section-mark,
.site-footer .section-mark {
  color: #e5c37f;
}

.split-layout,
.botanical-feature,
.benefit-strip,
.pillar-grid,
.outcome-grid,
.quiet-grid,
.process-grid,
.experience-grid,
.testimonial-grid,
.access-note,
.footer-grid,
.footer-bottom {
  width: min(calc(100vw - 32px), var(--max));
  margin: 0 auto;
}

.split-layout,
.botanical-feature,
.footer-grid {
  display: grid;
  gap: 1.55rem;
}

.align-center {
  align-items: center;
}

.align-bottom {
  align-items: end;
}

.align-bottom .copy-stack {
  align-self: end;
  padding-bottom: 0.2rem;
}

.section-title {
  max-width: 700px;
}

.section-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 1rem;
}

.section-mark.centered {
  justify-content: center;
}

.section-mark svg,
.experience-icon svg {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.48rem;
  color: var(--forest);
  border: 1px solid currentColor;
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  transition: transform 220ms ease, background 220ms ease;
  animation: iconDrift 7s ease-in-out infinite;
}

.section-earth .section-mark svg,
.site-footer .section-mark svg {
  color: #e5c37f;
}

.copy-stack {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.section-earth .copy-stack {
  color: rgba(255, 250, 240, 0.74);
}

.benefit-strip,
.pillar-grid,
.outcome-grid,
.quiet-grid,
.process-grid,
.experience-grid,
.testimonial-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.benefit-strip article,
.pillar-grid article,
.process-grid article,
.experience-grid article,
.testimonial-grid article,
.access-note,
.legal-inner,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 18px 48px rgba(36, 61, 49, 0.07);
}

.benefit-strip article {
  min-height: 124px;
  display: grid;
  align-content: space-between;
  gap: 0.85rem;
  padding: 1rem;
}

.benefit-strip span,
.pillar-grid span,
.process-grid span {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1;
}

.benefit-strip p {
  color: var(--coffee);
  font-weight: 750;
  line-height: 1.45;
}

.material-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.material-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 760ms ease, filter 760ms ease;
}

.botanical-feature:hover .material-photo img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.035);
}

.feature-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.feature-copy p {
  color: var(--muted);
}

.statement {
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.statement.light {
  color: var(--bone);
}

.pillar-grid article {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  padding: 1rem;
}

.feature-pillars {
  width: 100%;
  margin: 0.75rem 0 0;
  gap: 0.72rem;
}

.feature-pillars article {
  min-height: 92px;
  padding: 0.86rem;
}

.feature-pillars h3 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.natural-list {
  display: grid;
  gap: 0.74rem;
  list-style: none;
}

.natural-list li {
  position: relative;
  padding-left: 1.3rem;
}

.natural-list li::before {
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--amber);
  border-radius: 50%;
}

.warning {
  padding: 1rem;
  color: var(--bone);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
}

.outcome-grid span,
.quiet-grid span,
.line-list span {
  padding: 0.9rem 1rem;
  color: var(--coffee);
  background: rgba(174, 188, 159, 0.2);
  border: 1px solid rgba(101, 120, 88, 0.18);
  border-radius: 999px;
  font-weight: 750;
  text-align: center;
}

.outcome-grid {
  align-items: stretch;
}

.outcome-grid span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.92rem;
  line-height: 1.1;
}

.outcome-grid span,
.quiet-grid span,
.line-list span,
.benefit-strip article,
.pillar-grid article,
.process-grid article,
.experience-grid article,
.testimonial-grid article {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.outcome-grid span:hover,
.quiet-grid span:hover,
.line-list span:hover,
.benefit-strip article:hover,
.pillar-grid article:hover,
.process-grid article:hover,
.experience-grid article:hover,
.testimonial-grid article:hover {
  border-color: rgba(101, 120, 88, 0.3);
  box-shadow: 0 20px 44px rgba(36, 61, 49, 0.1);
  transform: translateY(-3px);
}

.centered-copy {
  width: min(calc(100vw - 32px), 820px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.centered-copy p {
  max-width: 700px;
  color: var(--muted);
}

.line-list {
  display: grid;
  gap: 0.7rem;
}

.line-list span {
  text-align: left;
  border-radius: var(--radius);
}

.process-grid article {
  min-height: 158px;
  padding: 1rem;
}

.process-grid h3,
.experience-grid h3 {
  margin-bottom: 0.62rem;
}

.process-grid p,
.experience-grid dd,
.access-note p,
.legal-inner p {
  color: var(--muted);
}

.experience-grid article {
  padding: 1.05rem;
}

.testimonial-grid article {
  position: relative;
  min-height: 260px;
  padding: 1.05rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(255, 250, 240, 0.58)),
    rgba(255, 250, 240, 0.76);
}

.testimonial-grid span {
  width: 4.4rem;
  height: 4.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  background: #e1b515;
  border: 6px solid var(--bone);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(36, 61, 49, 0.12);
}

.testimonial-grid article::before {
  content: open-quote;
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  color: rgba(201, 154, 69, 0.45);
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.8;
}

.testimonial-grid h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.28;
}

.testimonial-grid p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.source-link {
  width: fit-content;
  color: var(--forest);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.experience-icon {
  margin-bottom: 1.15rem;
}

.experience-grid dl {
  display: grid;
  gap: 0.7rem;
}

.experience-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.experience-grid dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.experience-grid dd {
  max-width: 58%;
  font-weight: 800;
  text-align: right;
}

.access-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(232, 236, 222, 0.88);
}

.access-note h3 {
  margin-bottom: 0.52rem;
}

.legal-note {
  padding: 2.45rem 0;
  background: var(--linen);
}

.legal-inner {
  width: min(calc(100vw - 32px), 920px);
  margin: 0 auto;
  padding: 1.2rem;
  background: rgba(255, 250, 240, 0.74);
}

.legal-inner h2 {
  margin-bottom: 0.8rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
}

.legal-inner p + p {
  margin-top: 0.85rem;
}

.legal-inner a {
  display: inline-flex;
  margin-top: 0.92rem;
  color: var(--forest);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 3.8rem 0 1.7rem;
}

.footer-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-copy p {
  max-width: 590px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.08);
  border-color: var(--line-light);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 250, 240, 0.82);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  color: var(--bone);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(201, 154, 69, 0.86);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.45rem;
  color: #e5c37f;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: grid;
  gap: 0.65rem;
  color: rgba(255, 250, 240, 0.58);
  border-top: 1px solid var(--line-light);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
  will-change: opacity, transform;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-pending {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
}

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

.hero-content.is-visible .kicker,
.hero-content.is-visible h1,
.hero-content.is-visible .hero-lead,
.hero-content.is-visible .hero-copy,
.hero-content.is-visible .hero-actions {
  animation: heroRise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content.is-visible h1 {
  animation-delay: 40ms;
}

.hero-content.is-visible .hero-lead {
  animation-delay: 90ms;
}

.hero-content.is-visible .hero-copy {
  animation-delay: 140ms;
}

.hero-content.is-visible .hero-actions {
  animation-delay: 190ms;
}

.benefit-strip.is-visible article,
.pillar-grid.is-visible article,
.feature-copy.is-visible .feature-pillars article,
.outcome-grid.is-visible span,
.quiet-grid.is-visible span,
.process-grid.is-visible article,
.experience-grid.is-visible article,
.testimonial-grid.is-visible article,
.line-list.is-visible span {
  animation: itemRise 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--item-delay, 0ms);
}

.section-title.is-visible .section-mark svg,
.centered-copy.is-visible .section-mark svg,
.footer-copy.is-visible .section-mark svg {
  animation: iconDrift 7s ease-in-out infinite, ringPulse 900ms ease-out 120ms both;
}

@keyframes imageBreathe {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(-1.2%, -0.6%, 0);
  }
}

@keyframes lightSweep {
  from {
    opacity: 0.55;
    transform: translateX(-6%) translateY(1%);
  }

  to {
    opacity: 0.85;
    transform: translateX(4%) translateY(-1%);
  }
}

@keyframes iconDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes itemRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroRise {
  from {
    opacity: 0.76;
    transform: translate3d(0, 14px, 0) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 154, 69, 0.28);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(201, 154, 69, 0);
  }
}

@media (min-width: 680px) {
  .section {
    padding: 4.6rem 0;
  }

  .benefit-strip,
  .process-grid,
  .quiet-grid,
  .outcome-grid,
  .experience-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.16rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .split-layout,
  .botanical-feature,
  .footer-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.45rem;
    align-items: start;
  }

  .botanical-feature {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: 2rem;
    align-items: start;
  }

  .material-photo img {
    height: clamp(520px, 48vw, 620px);
    aspect-ratio: auto;
  }

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

  .feature-pillars article:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 82px;
  }

  .benefit-strip,
  .process-grid,
  .quiet-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pillar-grid:not(.feature-pillars),
  .outcome-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .outcome-grid {
    gap: 0.72rem;
  }

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

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

@media (max-width: 899px) {
  .nav-shell {
    justify-content: flex-start;
  }

  .nav-toggle {
    position: fixed;
    top: 17px;
    right: 16px;
  }

  .hero {
    min-height: clamp(590px, 76svh, 720px);
    padding-bottom: 2.5rem;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(247, 241, 230, 0.94), rgba(247, 241, 230, 0.52)),
      linear-gradient(0deg, rgba(247, 241, 230, 0.58), rgba(247, 241, 230, 0.04));
  }

  .outcome-grid span {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 9vw, 2.7rem);
  }

  h2 {
    max-width: calc(100vw - 32px);
    font-size: clamp(1.85rem, 8.4vw, 2.25rem);
    overflow-wrap: break-word;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, 320px);
  }

  .hero-content {
    width: min(calc(100vw - 48px), 360px);
  }

  .experience-grid dl div {
    display: grid;
    gap: 0.16rem;
  }

  .experience-grid dd {
    max-width: none;
    text-align: left;
  }
}

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

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

  .reveal,
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
