:root {
  --bg: #f7f1e8;
  --bg-strong: #ede4d6;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fffaf4;
  --line: rgba(99, 84, 67, 0.1);
  --text: #342d26;
  --text-soft: #776d61;
  --accent: #627250;
  --accent-deep: #4f5e42;
  --sage: #879171;
  --sage-soft: rgba(135, 145, 113, 0.22);
  --olive-wash: #bfc7b0;
  --olive-deep: #5a664b;
  --cream-block: #fbf6ef;
  --warm-block: #f2e8da;
  --shadow: 0 24px 64px rgba(101, 85, 67, 0.07);
  --radius-xl: 24px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1460px, calc(100vw - 1rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 254, 251, 0.92), transparent 28%),
    radial-gradient(circle at top right, rgba(196, 206, 191, 0.1), transparent 22%),
    linear-gradient(180deg, #fcf8f2 0%, #f3ecdf 48%, #faf5ee 100%);
  color: var(--text);
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 110px,
      rgba(147, 160, 137, 0.018) 111px
    );
  pointer-events: none;
  z-index: -1;
}

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

input,
button {
  font: inherit;
}

p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Forum", serif;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  line-height: 0.98;
  max-width: 12.5ch;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  line-height: 1.12;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.site-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(49, 45, 39, 0.34);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 40;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.guide-modal {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1rem 2rem 2rem;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 253, 0.8), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 243, 236, 0.96));
  box-shadow: 0 28px 90px rgba(49, 45, 39, 0.16);
}

.guide-modal-topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 252, 247, 0.72));
}

.guide-modal-copy,
.guide-modal-note {
  max-width: 44ch;
}

.guide-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.guide-actions-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.self-check-form {
  margin-top: 1rem;
}

.self-check-flow {
  display: grid;
  gap: 1rem;
}

.self-check-screen {
  display: grid;
  gap: 1rem;
}

.self-check-screen[hidden] {
  display: none !important;
}

.self-check-result-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.self-check-fieldset {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1rem 1.05rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 246, 0.72);
}

.self-check-fieldset legend {
  padding: 0 0.4rem;
  font-weight: 600;
  color: var(--text);
}

.self-check-fieldset label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-soft);
  line-height: 1.55;
  cursor: pointer;
}

.self-check-fieldset input {
  margin-top: 0.22rem;
}

.self-check-result {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.guide-modal-note {
  font-size: 0.92rem;
}

.modal-close {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0.35rem 0;
}

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

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 1.25rem auto 0;
  padding: 1rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(22px);
  box-shadow:
    0 18px 44px rgba(101, 85, 67, 0.12),
    0 2px 10px rgba(101, 85, 67, 0.08);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 0 0 auto;
}

.brand-mark {
  font-family: "Forum", serif;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 400;
}

.eyebrow,
.image-label,
.service-badge,
.discovery-meta {
  font-size: 0.88rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.84);
}

.lang-option {
  min-width: 2.8rem;
  min-height: 2.3rem;
  padding: 0.35rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.lang-option.is-active {
  background: var(--accent);
  color: #f7fbfd;
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.98rem 1.45rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f7fbfd !important;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(83, 97, 69, 0.18);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
}

.section {
  padding: 5.5rem 0;
}

.section-inner,
.section > .hero-head,
.section > .hero-story {
  width: min(100%, 1380px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.6vw, 2.4rem);
}

.section-cream,
.section-sage,
.section-warm,
.section-deep,
.section-olive {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: clip;
}

.section-cream {
  background: #faf4ec;
}

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

.section-warm {
  background: #efe3d5;
}

.section-deep {
  background: #e7dece;
}

.section-olive {
  background: #f4ecdf;
}

main section[id] {
  scroll-margin-top: 8rem;
}

.hero {
  padding-top: 5.6rem;
  display: grid;
  gap: 2.8rem;
}

.hero-head {
  display: grid;
  gap: 1.45rem;
  justify-items: center;
  text-align: center;
  max-width: 78rem;
  margin: 0 auto;
}

.hero-story {
  display: grid;
  grid-template-columns: minmax(470px, 1.08fr) minmax(300px, 0.72fr);
  gap: 4.4rem;
  align-items: start;
  max-width: 78rem;
  margin: 0 auto;
}

.approach-layout,
.about-layout,
.discovery-card {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-story-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 38rem;
  margin: 0;
  align-items: flex-start;
}

.hero-head .eyebrow {
  max-width: 54rem;
  font-size: 0.86rem;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

.hero-head h1 {
  max-width: 18.8ch;
  font-size: clamp(3.2rem, 5.1vw, 5.35rem);
  line-height: 0.96;
  text-align: center;
  text-wrap: balance;
}

.hero-copy {
  max-width: 37rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.92;
  color: var(--text);
  text-wrap: pretty;
}

.hero-lead {
  max-width: 30rem;
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  line-height: 1.45;
  color: var(--text);
  font-weight: 600;
}

.hero-key-points {
  display: grid;
  gap: 0.82rem;
  max-width: 34rem;
  padding-left: 1.05rem;
  margin: 0;
}

.hero-key-points li {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--text);
}

.hero-visual {
  justify-self: end;
  width: min(100%, 31rem);
}

.hero-support-line,
.services-note,
.service-note,
.call-note {
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff !important;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  border-color: rgba(127, 137, 119, 0.16);
  background: rgba(255, 253, 249, 0.82);
}

.button-tertiary {
  border-color: transparent;
  background: transparent;
  padding-inline: 0.4rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  align-self: start;
}

.hero-image-panel {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: calc(var(--radius-xl) + 8px);
  border: 0;
  box-shadow: 0 18px 44px rgba(101, 85, 67, 0.09);
  object-fit: cover;
  object-position: center 34%;
  background: #d9d5cc;
}

.section-quote {
  padding-top: 0;
}

.quote-card,
.contact-card,
.discovery-card,
.approach-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.quote-text {
  font-family: "Forum", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  color: var(--text);
  text-align: center;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: none;
  margin-bottom: 2.2rem;
  justify-items: start;
  text-align: left;
}

#services .section-heading,
#approach .section-heading,
#about .section-heading,
#testimonials .section-heading {
  padding-inline: clamp(1rem, 2.6vw, 2.4rem);
}

.section-heading.narrow {
  max-width: none;
}

.section-heading > .eyebrow,
.section-heading > h2,
.section-heading > p {
  max-width: 48rem;
}

.section-heading > p {
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  line-height: 1.72;
  color: var(--text-soft);
}

.pain-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.support-section__inner {
  display: grid;
  gap: 2.6rem;
}

.support-opening,
.support-closing {
  margin: 0;
  color: #f8f2ea;
}

.support-opening {
  max-width: none;
  font-family: "Forum", serif;
  font-size: clamp(2.3rem, 3.5vw, 3.2rem);
  line-height: 1.02;
  text-align: left;
  white-space: nowrap;
}

.support-closing {
  justify-self: end;
  font-family: "Forum", serif;
  font-size: clamp(2.3rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  text-align: right;
  font-style: normal;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2.25rem;
  row-gap: 2.8rem;
  max-width: none;
  margin: 0;
}

.pain-card {
  display: grid;
  gap: 0;
  min-height: 100%;
  padding: 1.8rem 1.6rem 1.75rem;
  border: 1px solid rgba(74, 53, 40, 0.08);
  border-radius: 12px;
  background: #f8f2ea;
  box-shadow: none;
  cursor: default;
}

.pain-card h3 {
  max-width: none;
  font-size: clamp(1.16rem, 1.62vw, 1.52rem);
  line-height: 1.24;
  white-space: normal;
  color: var(--text);
  font-weight: 700;
}

.pain-card p {
  max-width: 29ch;
  margin-top: 0.82rem;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.service-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.62);
  box-shadow: var(--shadow);
  align-content: start;
}

.offers-grid {
  align-items: start;
}

.offer-card {
  background: rgba(255, 251, 246, 0.5);
}

.offer-card-bodywork {
  background: rgba(255, 250, 244, 0.78);
}

.offer-card-primary {
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: 2.8rem;
  align-items: start;
  min-height: 0;
  margin-bottom: 3.6rem;
}

.offer-card-primary:has(.info-accordion[open]) {
  align-items: center;
}

.offer-card-primary-copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding: 0.8rem 0.45rem 0.3rem 0;
}

.offer-card-primary .service-media {
  min-height: 0;
  height: auto;
  aspect-ratio: 5 / 4;
  min-height: 31rem;
  padding: 0;
  align-self: start;
}

.offer-card-primary:has(.info-accordion[open]) .service-media {
  align-self: center;
}

.offers-secondary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2.4rem;
  margin-top: 0.4rem;
}

.offers-secondary-grid > .offer-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: start;
  min-height: 100%;
}

.offers-secondary-grid > .offer-card .service-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  padding: 0;
}

.offers-secondary-grid > .offer-card h3,
.offers-secondary-grid > .offer-card .service-overview,
.offers-secondary-grid > .offer-card > p,
.offers-secondary-grid > .offer-card .info-accordion,
.offers-secondary-grid > .offer-card .button {
  max-width: 34rem;
}

.offers-secondary-grid > .offer-card h3 {
  margin-top: 0.2rem;
}

.offers-secondary-grid > .offer-card .service-overview {
  max-width: none;
  min-height: 4.9rem;
}

.offers-secondary-grid > .offer-card > p {
  max-width: none;
  min-height: 6.4rem;
}

.offers-secondary-grid > .offer-card .info-accordion {
  margin-top: 1.05rem;
  align-self: start;
}

.offers-secondary-grid > .offer-card .button {
  margin-top: auto;
  width: fit-content;
  min-width: 15rem;
  align-self: start;
}

.offer-card-primary .button {
  width: fit-content;
  min-width: 16rem;
}

.service-overview {
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--text);
}

.service-helper {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 28ch;
}

.service-card a {
  color: inherit;
  font-weight: 600;
}

.accordion-stack {
  display: grid;
  gap: 0.7rem;
}

.info-accordion {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 251, 246, 0.64);
  overflow: hidden;
}

.info-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-weight: 600;
  color: var(--text);
}

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

.info-accordion summary::after {
  content: "+";
  float: right;
  color: var(--accent-deep);
}

.info-accordion[open] summary::after {
  content: "-";
}

.info-accordion p {
  padding: 0 1rem 1rem;
}

.accordion-list {
  display: grid;
  gap: 0.6rem;
  padding: 0 1rem 1rem 2rem;
}

.info-accordion-inline {
  margin-top: 0.15rem;
}

.service-list-label {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text);
}

.service-detail-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1rem;
  margin-top: -0.2rem;
}

.service-points {
  gap: 0.65rem;
}

.service-media,
.discovery-visual,
.about-portrait {
  min-height: 290px;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(74, 53, 40, 0.08);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  background-color: #d9d5cc;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--bg-overlay, none), var(--bg-image, none);
}

.service-media span,
.discovery-visual span,
.about-portrait span,
.video-placeholder span {
  display: inline-flex;
  max-width: 20ch;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(251, 254, 253, 0.8);
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.35;
}

.service-media-bodywork {
  --bg-overlay:
    linear-gradient(180deg, rgba(255, 252, 247, 0.02), rgba(49, 45, 39, 0.12));
  background-position: center 26%;
  background-size: cover;
  background-color: #e7dfd4;
}

.service-media-nutrition {
  --bg-overlay:
    linear-gradient(180deg, rgba(255, 252, 247, 0.04), rgba(49, 45, 39, 0.18));
  background-position: center 26%;
}

.service-media-integration {
  --bg-overlay:
    linear-gradient(180deg, rgba(255, 252, 247, 0.04), rgba(49, 45, 39, 0.18));
  background-position: center 18%;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  align-items: start;
}

.approach-panel {
  max-width: none;
  margin: 0;
  min-height: 100%;
  padding: 2rem 2rem 2.2rem;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.approach-support-copy {
  max-width: none;
  font-size: 1rem;
  line-height: 1.72;
}

.section-deep .section-heading,
.section-deep .approach-panel h3,
.section-deep .approach-panel p {
  color: var(--text);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.approach-list > div {
  padding: 1.8rem;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(99, 84, 67, 0.14);
  background: transparent;
  box-shadow: none;
}

.approach-list h3 {
  margin-bottom: 1rem;
}

.approach-list ul {
  display: grid;
  gap: 0.72rem;
  padding-left: 1rem;
}

.testimonial-note-card,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.76);
  box-shadow: var(--shadow);
}

.section-cta-center {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

.discovery-card {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  padding: 1.2rem;
  border-radius: calc(var(--radius-xl) + 4px);
}

.section-olive .discovery-card {
  border-color: rgba(247, 243, 235, 0.18);
  background: var(--olive-deep);
  box-shadow: 0 28px 72px rgba(57, 66, 47, 0.24);
}

.section-olive .discovery-card,
.section-olive .discovery-card p,
.section-olive .discovery-card h2,
.section-olive .discovery-card .eyebrow,
.section-olive .discovery-meta,
.section-olive .call-note {
  color: #f7f3eb;
}

.section-olive .button-primary {
  background: #f4e8d8;
  color: var(--text) !important;
}

.section-olive .button-primary:hover,
.section-olive .button-primary:focus-visible {
  background: #eadbc6;
}

.discovery-copy {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.discovery-visual {
  min-height: 360px;
  --bg-overlay:
    linear-gradient(180deg, rgba(255, 252, 247, 0.04), rgba(49, 45, 39, 0.16));
  background-position: center;
}

.testimonials-section {
  position: relative;
}

.testimonials-section .section-heading .eyebrow,
.testimonials-section .section-heading h2,
.testimonials-section .section-heading p {
  color: #f8f2ea;
}

.testimonial-videos {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.6rem;
  margin-bottom: 1.35rem;
  max-width: none;
}

.video-testimonial,
.written-testimonial {
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.7);
  box-shadow: var(--shadow);
}

.video-testimonial {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
}

.video-testimonial-portrait {
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
}

.story-placeholder-card {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.7);
  box-shadow: var(--shadow);
}

.story-placeholder-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 28rem;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(54, 74, 88, 0.08);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 20%, rgba(49, 45, 39, 0.3) 100%),
    radial-gradient(circle at 35% 20%, rgba(255, 252, 247, 0.8), transparent 18%),
    linear-gradient(135deg, #ebe2d5 0%, #d1d5c8 48%, #a8b29d 100%);
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 260px);
  margin: 0 auto;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(54, 74, 88, 0.08);
  background: #d9d5cc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.video-frame::after,
.video-placeholder::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  top: 50%;
  width: 4.5rem;
  height: 12rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.95), rgba(220, 227, 216, 0.7));
  border: 1px solid rgba(122, 132, 112, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
}

.testimonial-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 420px;
  background: #d9d5cc;
  object-fit: contain;
}

.testimonial-copy-block {
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.testimonial-tag {
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  border: 0;
  background:
    linear-gradient(180deg, rgba(38, 35, 30, 0.08), rgba(38, 35, 30, 0.18));
  cursor: pointer;
  transition: opacity 220ms ease, background-color 220ms ease;
}

.video-play-overlay:hover,
.video-play-overlay:focus-visible {
  background:
    linear-gradient(180deg, rgba(38, 35, 30, 0.12), rgba(38, 35, 30, 0.24));
}

.play-icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  display: block;
  border-radius: 50%;
  background: rgba(255, 251, 244, 0.9);
  box-shadow: 0 10px 32px rgba(38, 35, 30, 0.16);
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 0.85rem solid transparent;
  border-bottom: 0.85rem solid transparent;
  border-left: 1.35rem solid var(--text);
  transform: translate(-35%, -50%);
}

.video-frame.is-started .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}

.written-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.written-testimonial {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.written-quote {
  font-family: "Forum", serif;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.written-author {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.testimonial-note-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 720px;
}

.section-sage .testimonial-tag {
  background: rgba(248, 242, 234, 0.78);
}

.testimonial-caption {
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.testimonial-language {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.about-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: 3.4rem;
}

.about-portrait {
  order: 2;
  min-height: 0;
  aspect-ratio: 4 / 5;
  --bg-overlay:
    linear-gradient(180deg, rgba(255, 252, 247, 0.02), rgba(49, 45, 39, 0.08));
  background-position: center 14%;
}

.about-copy {
  order: 1;
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.about-intro {
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.86;
  color: var(--text);
}

.about-copy strong {
  color: var(--text);
  font-weight: 700;
}

.about-support-copy {
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.86;
}

.faq-groups {
  display: grid;
  gap: 1.8rem;
}

.faq-group {
  display: grid;
  gap: 1rem;
}

.faq-group h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.faq-stack {
  max-width: 860px;
  margin: 0;
}

.about-keywords {
  margin-top: 0.4rem;
}

.contact-card {
  padding: 2.2rem;
  border-radius: calc(var(--radius-xl) + 4px);
  text-align: center;
}

.contact-card > * + * {
  margin-top: 1rem;
}

.contact-actions {
  justify-content: center;
}

.contact-note {
  font-size: 0.95rem;
}

.site-footer {
  margin-top: 1.35rem;
  padding: 1.8rem;
  border-radius: 18px;
  background: rgba(255, 249, 241, 0.82);
}

.site-footer h3 {
  margin-bottom: 0.55rem;
}

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

.site-footer p {
  max-width: 64ch;
  margin: 0;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.footer-quote-block {
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-left: 1px solid rgba(137, 124, 108, 0.28);
  padding: 3.2rem 0 1.2rem clamp(1.8rem, 2.8vw, 2.8rem);
  min-height: 100%;
}

.footer-quote {
  font-family: "Forum", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.14;
  color: var(--text);
  font-style: italic;
}

.footer-quote-author {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-disclaimer {
  margin-top: 0;
  max-width: 64ch;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 980px) {
  .site-header {
    top: 0.75rem;
    flex-wrap: wrap;
    padding: 1rem 1.1rem;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.7rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(249, 243, 235, 0.96);
    box-shadow: var(--shadow);
  }

  .header-controls {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .services-grid,
  .discovery-card,
  .about-layout,
  .hero-story,
  .offer-card-primary,
  .approach-grid,
  .testimonial-videos,
  .video-testimonial-portrait,
  .written-testimonials,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .approach-list {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 1.5rem;
  }

  .hero-head,
  .hero-story-copy {
    justify-items: center;
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }

  .hero-head h1 {
    max-width: none;
    text-wrap: balance;
  }

  .pain-card h3 {
    white-space: normal;
  }

  .support-section__inner {
    gap: 2rem;
  }

  .support-opening {
    white-space: normal;
  }

  .support-closing {
    justify-self: start;
    text-align: left;
  }

  .offer-card-primary-copy {
    padding: 0;
  }

  .hero-image-panel {
    aspect-ratio: 5 / 4;
    max-height: none;
  }

  .offer-card-primary .service-media,
  .offers-secondary-grid > .offer-card .service-media,
  .about-portrait {
    aspect-ratio: auto;
    min-height: 24rem;
  }

  .offer-card-primary .service-media {
    min-height: 26rem;
  }

  .footer-quote-block {
    border-left: 0;
    border-top: 1px solid rgba(137, 124, 108, 0.28);
    padding: 1.3rem 0 0;
  }

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

  .testimonial-videos,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .about-support-copy,
  .approach-support-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: min(100vw - 1.35rem, 100%);
  }

  .modal-overlay {
    place-items: end center;
    padding: 0;
  }

  .guide-modal {
    width: 100%;
    max-height: 100dvh;
    border-radius: 28px 28px 0 0;
    padding: 0.9rem 1rem 1.3rem;
    border-bottom: 0;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 3.6rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
    max-width: none;
  }

  h2 {
    line-height: 0.95;
  }

  .site-shell {
    padding-bottom: 2rem;
  }

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

  .header-controls {
    gap: 0.6rem;
  }

  .lang-switch {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-image-panel {
    aspect-ratio: 4 / 5;
  }

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

  .quote-card,
  .contact-card,
  .approach-panel {
    padding: 1.4rem;
  }

  .service-card,
  .discovery-card,
  .pain-card {
    padding: 0.95rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .self-check-fieldset {
    padding: 0.9rem;
  }

  .guide-actions-inline {
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta,
  .menu-toggle {
    width: 100%;
  }
}
