:root {
  --ivory: #faf8f5;
  --porcelain: #fffdf9;
  --cream: #f2ede6;
  --warm: #ead8c2;
  --linen: #e7e2d9;
  --stone: #cfc7b7;
  --taupe: #afa79a;
  --sage: #8fa288;
  --sage-soft: #e7ede3;
  --sage-deep: #6d7a6b;
  --gold: #c8b388;
  --gold-deep: #a98c4d;
  --ink: #24211d;
  --muted: #6f685f;
  --shadow: 0 28px 80px rgba(72, 62, 48, 0.11);
  --soft-shadow: 0 18px 50px rgba(72, 62, 48, 0.07);
  --max: 1200px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

.skip-link,
.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:focus {
  z-index: 20;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--porcelain);
  border: 1px solid var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 62px);
  background: rgba(250, 248, 245, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 179, 136, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 179, 136, 0.68);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy span {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-link,
.text-link,
.card-link {
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-link {
  border-bottom: 1px solid var(--gold);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200, 179, 136, 0.42);
  border-radius: 50%;
  background: var(--porcelain);
  color: var(--sage-deep);
  cursor: pointer;
}

.nav-toggle svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.6;
}

.nav-icon-close {
  display: none;
}

.mobile-only-link {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 64px) clamp(28px, 5vw, 58px);
}

.hero::before {
  position: absolute;
  inset: 7% auto auto -7rem;
  width: 18rem;
  height: 18rem;
  content: "";
  border: 1px solid rgba(200, 179, 136, 0.22);
  border-radius: 50%;
}

.hero-inner,
.brand-strip,
.mission-layout,
.section-heading,
.service-heading,
.journey,
.community,
.resource-heading,
.resource-grid,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 162px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-deep);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 5.7vw, 5.35rem);
}

.hero-title span {
  display: block;
}

.reveal-ready .hero-title span {
  opacity: 0;
  transform: translateY(0.28em);
  animation: title-rise 860ms cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
}

.reveal-ready .hero-title span:nth-child(1) {
  animation-delay: 100ms;
}

.reveal-ready .hero-title span:nth-child(2) {
  animation-delay: 220ms;
}

.reveal-ready .hero-title span:nth-child(3) {
  animation-delay: 340ms;
}

.reveal-ready .hero-title span:nth-child(4) {
  animation-delay: 460ms;
}

@keyframes title-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5.2vw, 4.65rem);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.8vw, 1.68rem);
  font-weight: 600;
  line-height: 1.2;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.hero-actions,
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 4px;
}

.button-primary {
  background: var(--sage-deep);
  color: var(--porcelain);
}

.button-secondary {
  background: var(--porcelain);
  border-color: rgba(200, 179, 136, 0.48);
  color: var(--sage-deep);
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.portrait-frame {
  position: absolute;
  inset: 0 0 34px 52px;
  padding: 14px;
  background: var(--porcelain);
  border: 1px solid rgba(200, 179, 136, 0.26);
  border-radius: 42px 42px 160px 42px;
  box-shadow: var(--shadow);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  min-height: 486px;
  object-fit: cover;
  border-radius: 30px 30px 142px 30px;
}

.vertical-note {
  position: absolute;
  left: 0;
  top: 44px;
  z-index: 3;
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ritual-card {
  position: absolute;
  right: -6px;
  bottom: 0;
  z-index: 4;
  width: min(74%, 310px);
  padding: 24px 26px;
  background: var(--porcelain);
  border: 1px solid rgba(200, 179, 136, 0.28);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.ritual-card span,
.resource-card span,
.service-number {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ritual-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.18;
}

.mini-image {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 4;
  width: min(38%, 180px);
  padding: 9px;
  background: var(--porcelain);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.mini-image img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(22px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(200, 179, 136, 0.24);
  border-radius: 26px;
  background: rgba(200, 179, 136, 0.24);
  box-shadow: var(--soft-shadow);
}

.brand-strip div {
  min-height: 122px;
  padding: 24px;
  background: rgba(255, 253, 249, 0.82);
}

.brand-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.brand-strip strong {
  display: block;
  max-width: 220px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
}

.sanctuary-intro {
  padding: clamp(44px, 6vw, 74px) clamp(20px, 5vw, 64px);
}

.sanctuary-inner {
  display: grid;
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sanctuary-inner p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.8vw, 3rem);
  line-height: 1.25;
}

.leaf-mark {
  position: relative;
  display: block;
  width: 84px;
  height: 34px;
  margin: 0 auto;
}

.leaf-mark::before,
.leaf-mark::after {
  position: absolute;
  top: 12px;
  width: 38px;
  height: 18px;
  content: "";
  border: 1px solid rgba(169, 140, 77, 0.58);
  border-radius: 100% 0 100% 0;
}

.leaf-mark::before {
  left: 6px;
  transform: rotate(-26deg);
}

.leaf-mark::after {
  right: 6px;
  transform: scaleX(-1) rotate(-26deg);
}

.section-pad {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

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

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.mission-media {
  position: relative;
}

.mission-media img,
.community-image img,
.journey-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.mission-media img {
  aspect-ratio: 4 / 5;
}

.mission-seal {
  position: absolute;
  right: clamp(14px, 4vw, 34px);
  bottom: clamp(14px, 4vw, 34px);
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(200, 179, 136, 0.36);
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.mission-seal span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.mission-seal p {
  margin: 6px 0 0;
  color: var(--sage-deep);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.mission-copy {
  max-width: 640px;
}

.mission-copy h2 {
  margin-bottom: 28px;
}

.mission-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
}

.story-signature {
  margin-top: 34px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(200, 179, 136, 0.36);
}

.story-signature span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-signature strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
}

.story-quote {
  padding: clamp(66px, 8vw, 108px) clamp(20px, 5vw, 64px);
  background: var(--porcelain);
}

.story-quote-inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.story-quote blockquote {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  border-left: 0;
}

.story-quote blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.05rem, 5.4vw, 5rem);
  line-height: 1.06;
}

.quote-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.quote-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(200, 179, 136, 0.32);
  border-radius: 999px;
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feeling-band {
  padding: clamp(66px, 8vw, 108px) clamp(20px, 5vw, 64px);
  background: var(--sage-deep);
  color: var(--porcelain);
}

.feeling-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.feeling-inner p {
  margin-bottom: 14px;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feeling-inner h2 {
  max-width: 790px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
}

.feeling-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.feeling-words span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 253, 249, 0.24);
  border-radius: 999px;
  color: rgba(255, 253, 249, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading,
.service-heading,
.resource-heading {
  margin-bottom: clamp(42px, 7vw, 76px);
}

.section-heading {
  max-width: 780px;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(200, 179, 136, 0.28);
  border-radius: 30px;
  background: rgba(200, 179, 136, 0.25);
}

.value-item {
  min-height: 250px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 253, 249, 0.74);
}

.value-item svg,
.service-card svg {
  width: 31px;
  height: 31px;
  margin-bottom: 28px;
  color: var(--sage-deep);
  stroke-width: 1.25;
}

.value-item p,
.service-card p,
.resource-card p,
.journey-copy p,
.steps p,
.community-copy p {
  color: var(--muted);
}

.services {
  background: #f6f1e9;
}

.service-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: clamp(30px, 4vw, 44px);
  background: var(--porcelain);
  border: 1px solid rgba(200, 179, 136, 0.26);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(72, 62, 48, 0.06);
}

.feature-service {
  background: var(--sage-soft);
}

.service-card .card-link {
  align-self: end;
  margin-top: 34px;
}

.for-you {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 7vw, 84px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.for-you-copy h2 {
  max-width: 650px;
}

.for-you-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(200, 179, 136, 0.26);
  border-radius: 30px;
  background: rgba(200, 179, 136, 0.24);
}

.for-you-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 126px;
  padding: 28px;
  background: var(--porcelain);
}

.for-you-list svg {
  width: 28px;
  height: 28px;
  color: var(--sage-deep);
  stroke-width: 1.3;
}

.for-you-list span {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.25;
}

.journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.journey-copy {
  max-width: 610px;
}

.journey-copy h2 {
  margin-bottom: 24px;
}

.journey-path {
  display: grid;
  gap: 28px;
}

.journey-image img {
  aspect-ratio: 16 / 10;
  min-height: 300px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border: 1px solid rgba(200, 179, 136, 0.26);
  border-radius: 28px;
  background: rgba(200, 179, 136, 0.24);
}

.steps li {
  min-height: 188px;
  padding: 28px;
  background: var(--porcelain);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.2;
}

.testimonials {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 64px);
  background: var(--sage-deep);
  color: var(--porcelain);
}

.testimonial-inner {
  max-width: 1030px;
  margin: 0 auto;
}

.testimonial-inner .eyebrow {
  color: rgba(255, 253, 249, 0.72);
}

.testimonial-inner h2 {
  max-width: 830px;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}

.testimonials blockquote {
  margin: 0;
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 1px solid rgba(255, 253, 249, 0.34);
}

.testimonials blockquote p {
  max-width: 820px;
  margin-bottom: 24px;
  color: rgba(255, 253, 249, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.3vw, 2.8rem);
  line-height: 1.28;
}

cite {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
}

.community.section-pad {
  padding-bottom: clamp(70px, 8vw, 104px);
}

.community-image img {
  aspect-ratio: 1.05 / 1;
}

.community-copy {
  max-width: 650px;
}

.community-copy h2 {
  margin-bottom: 24px;
}

.community-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
}

.community-list span {
  position: relative;
  padding-left: 24px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.community-list span::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--gold-deep);
}

.resources {
  background: var(--cream);
  padding-top: clamp(70px, 8vw, 104px);
}

.resource-heading {
  max-width: 760px;
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.resource-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 26px;
  min-height: 480px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(200, 179, 136, 0.24);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}

.resource-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(200, 179, 136, 0.28);
  border-radius: 22px;
}

.resource-cover::before {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 70px;
  height: 1px;
  content: "";
  background: rgba(169, 140, 77, 0.42);
}

.resource-cover span,
.resource-cover small {
  position: relative;
  z-index: 1;
  color: var(--sage-deep);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.resource-cover strong {
  position: relative;
  z-index: 1;
  max-width: 220px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.08;
}

.resource-cover-sage {
  background: var(--sage-soft);
}

.resource-cover-cream {
  background: var(--cream);
}

.resource-cover-gold {
  background: #ead8c2;
}

.resource-copy {
  padding: 0 6px 8px;
}

.resource-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-moments {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 64px);
  background: var(--porcelain);
}

.moments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.moments-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--soft-shadow);
}

.moments-grid img {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
}

.moments-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  background: rgba(255, 253, 249, 0.88);
  border-radius: 999px;
  color: var(--sage-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

.newsletter-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 78px);
  background: var(--porcelain);
  border: 1px solid rgba(200, 179, 136, 0.25);
  border-radius: 36px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.newsletter-form {
  justify-content: center;
  margin-top: 34px;
}

.newsletter-form input {
  width: min(100%, 390px);
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(175, 167, 154, 0.36);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
}

.form-note {
  min-height: 28px;
  margin-top: 18px;
  color: var(--sage-deep);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 44px clamp(20px, 5vw, 64px) 54px;
  border-top: 1px solid rgba(200, 179, 136, 0.2);
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy span {
    font-size: 1.18rem;
  }

  .brand-copy small {
    font-size: 0.52rem;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    background: var(--porcelain);
    border: 1px solid rgba(200, 179, 136, 0.28);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav-links a {
    padding: 15px 14px;
    border-radius: 14px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--cream);
  }

  .site-header.is-open .nav-links {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-open .nav-icon-menu {
    display: none;
  }

  .site-header.is-open .nav-icon-close {
    display: block;
  }

  .header-link {
    display: none;
  }

  .mobile-only-link {
    display: block;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-actions,
  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .newsletter-form .button,
  .newsletter-form input {
    width: 100%;
  }

  .hero-art {
    min-height: 610px;
  }

  .portrait-frame {
    inset: 0 0 72px 24px;
    border-radius: 34px 34px 110px 34px;
  }

  .hero-portrait {
    min-height: 520px;
    border-radius: 24px 24px 96px 24px;
  }

  .vertical-note {
    left: 0;
    top: 22px;
  }

  .mini-image {
    width: 34%;
  }

  .ritual-card {
    right: 0;
    width: 78%;
  }

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .mission-seal {
    width: 142px;
    height: 142px;
  }

  .newsletter-inner {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (min-width: 760px) {
  .brand-strip,
  .value-grid,
  .steps,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.04fr 0.82fr;
  }

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

  .mission-layout,
  .journey,
  .community {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .for-you {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

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

  .testimonial-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .moments-grid {
    grid-template-columns: 0.85fr 1.3fr 0.85fr;
    align-items: stretch;
  }

  .moments-grid figure:nth-child(2) {
    transform: translateY(-28px);
  }

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

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

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