@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url("/assets/fonts/cormorant-garamond-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: block;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: block;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/great-vibes-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/great-vibes-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #f7f4ee;
  --ink: #24211d;
  --paper: #fbf8f1;
  --muted: #8f8a80;
  --soft: #eef1ef;
  --cloud: #f4f7f5;
  --mist: #e8edf0;
  --gold: #b89b5e;
  --red: #a9332a;
  --white: #ffffff;
  --line: rgba(36, 33, 29, 0.13);
  --dark-line: rgba(36, 33, 29, 0.14);
  --max: 1180px;
  --radius: 8px;
  --display-font: "Cormorant Garamond", Georgia, serif;
  --font-serif: var(--display-font);
  --body-font: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
  }

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

  .reveal-word {
    opacity: 0;
    transform: translateY(0.65em);
    filter: blur(6px);
    transition:
      opacity 760ms ease,
      transform 760ms ease,
      filter 760ms ease;
    transition-delay: calc(var(--word-index) * 42ms);
  }

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

  .transformation-list article,
  .format-grid article,
  .media-card,
  .media-note {
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  }

  .transformation-list article:hover,
  .format-grid article:hover,
  .media-card:hover,
  .media-note:hover {
    transform: translateY(-4px);
  }
}

img,
video {
  display: block;
  width: 100%;
}

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

section {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px max(18px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background:
    linear-gradient(to bottom, rgba(12, 11, 10, 0.82), rgba(12, 11, 10, 0.38), rgba(12, 11, 10, 0));
  backdrop-filter: blur(10px);
  transition:
    color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-past-hero {
  color: var(--ink);
  background:
    linear-gradient(to bottom, rgba(251, 248, 241, 0.96), rgba(251, 248, 241, 0.74), rgba(251, 248, 241, 0));
  box-shadow: 0 16px 46px rgba(62, 58, 51, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(222, 198, 142, 0.62);
  border-radius: 50%;
  font-family: var(--display-font);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(232, 224, 204, 0.34));
  box-shadow: 0 10px 28px rgba(62, 58, 51, 0.08);
}

.brand__mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(36, 33, 29, 0.14);
  border-radius: inherit;
}

.brand__mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.brand__text {
  font-family: var(--display-font);
  font-style: normal;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.015em;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
}

.site-header.is-past-hero .header-cta {
  border-color: rgba(36, 33, 29, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 36%, rgba(184, 155, 94, 0.11), transparent 26%),
    linear-gradient(135deg, #12110f 0%, #1a1816 46%, #23211e 100%);
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  left: 42%;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 34%;
  filter: saturate(1.16) contrast(1.06) brightness(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}

.hero__overlay {
  z-index: -1;
  background:
    radial-gradient(ellipse at 79% 44%, rgba(18, 17, 15, 0) 0%, rgba(18, 17, 15, 0.08) 34%, rgba(18, 17, 15, 0.62) 100%),
    linear-gradient(90deg, rgba(18, 17, 15, 1) 0%, rgba(18, 17, 15, 0.96) 34%, rgba(18, 17, 15, 0.72) 50%, rgba(18, 17, 15, 0.22) 70%, rgba(18, 17, 15, 0.34) 100%),
    linear-gradient(0deg, rgba(18, 17, 15, 0.62) 0%, rgba(18, 17, 15, 0.04) 34%, rgba(18, 17, 15, 0.42) 100%);
}

.hero__inner {
  width: min(var(--max), calc(100% - 36px));
  padding: 138px 0 58px;
  animation: heroReveal 900ms ease both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display-font);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-feature-settings: "kern";
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5vw, 5rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 3.15vw, 3.25rem);
}

h3 {
  line-height: 1.15;
  font-size: 1.45rem;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
}

.reveal-word {
  display: inline-block;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 12px;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
}

.hero-trust div {
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  color: #ead9a8;
  font-family: var(--display-font);
  font-size: clamp(1.85rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-trust span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button-primary {
  color: #282018;
  background: linear-gradient(135deg, #e7d5aa, #c5a66b);
  box-shadow: 0 16px 34px rgba(184, 155, 94, 0.2);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  border-color: var(--dark-line);
  background: var(--white);
  color: var(--ink);
}

.hero__footer {
  display: block;
  max-width: 820px;
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro,
.help-areas,
.selected,
.formats,
.faq {
  padding: clamp(84px, 11vw, 150px) max(18px, calc((100vw - var(--max)) / 2));
}

.intro {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(34px, 8vw, 96px);
  background: var(--white);
  color: var(--ink);
}

.intro p:last-child,
.image-statement p,
.section-heading p,
.media-note p,
.format-grid p,
.faq-list p,
.contact p {
  color: rgba(36, 33, 29, 0.66);
}

.selected .section-heading p,
.practice p {
  color: rgba(255, 255, 255, 0.68);
}

.intro p:last-child {
  align-self: end;
  color: rgba(21, 19, 18, 0.68);
  font-size: 1.08rem;
}

.help-areas {
  background: linear-gradient(180deg, #f4f7f5, #fffdf8);
  color: var(--ink);
}

.help-areas .section-heading p {
  color: rgba(36, 33, 29, 0.66);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.help-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(36, 33, 29, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 54px rgba(62, 58, 51, 0.06);
}

.help-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.help-grid h3 {
  margin-bottom: 10px;
}

.help-grid p {
  margin-bottom: 0;
  color: rgba(36, 33, 29, 0.64);
  font-size: 0.96rem;
}

.video-intro {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(84px, 11vw, 140px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(135deg, #f3f7f5, #fffdf8 58%, #e8edf0);
}

.video-intro__copy {
  max-width: 560px;
}

.image-statement {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 640px;
  background: linear-gradient(135deg, #f4f7f5, #fbf8f1 58%, #e8edf0);
}

.image-statement__media {
  overflow: hidden;
}

.image-statement__media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.image-statement__copy {
  align-self: center;
  max-width: 680px;
  padding: clamp(40px, 8vw, 110px);
}

.selected {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 155, 94, 0.1), transparent 28%),
    linear-gradient(135deg, #171513, #25231f 58%, #11100f);
  color: var(--white);
}

.selected__media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.selected__media img {
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.transformation-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.transformation-list article {
  display: grid;
  grid-template-columns: 56px minmax(126px, 0.34fr) minmax(260px, 1fr);
  gap: 18px 22px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.transformation-list span,
.format-grid span,
.media-note span {
  color: var(--gold);
  font-weight: 900;
}

.transformation-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

.transformation-list h3 {
  margin: 0;
  font-family: var(--display-font);
  font-style: italic;
  font-size: clamp(1.45rem, 1.7vw, 1.95rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.transformation-list a {
  grid-column: 3;
  color: var(--gold);
  font-weight: 900;
}

.practice {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(84px, 11vw, 140px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 155, 94, 0.16), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #11100f, #1f1d1a 58%, #2b2824);
  color: var(--white);
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #151412;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.video-frame video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-frame--intro video {
  aspect-ratio: 16 / 9;
  object-position: 50% 42%;
}

.media {
  padding: clamp(84px, 11vw, 150px) max(18px, calc((100vw - var(--max)) / 2));
  background: var(--white);
  color: var(--ink);
}

.media .section-heading p {
  color: rgba(21, 19, 18, 0.68);
}

.media-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.78fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.media-card,
.media-note {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.media-card {
  position: relative;
  background: var(--soft);
}

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

.media-card--tall img {
  object-position: 50% 50%;
}

.media-card:nth-child(2) img {
  object-position: 50% 50%;
}

.media-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(36, 33, 29, 0.58);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

.media-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(145deg, #eef1ef, #fbf8f1);
  color: var(--ink);
  border: 1px solid rgba(36, 33, 29, 0.1);
}

.formats {
  background: linear-gradient(180deg, #f4f7f5, #fbf8f1);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.format-grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(36, 33, 29, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 54px rgba(62, 58, 51, 0.07);
}

.format-grid .featured {
  background: var(--paper);
  color: var(--ink);
}

.format-grid .featured p {
  color: rgba(21, 19, 18, 0.68);
}

.format-grid strong {
  margin-top: auto;
  margin-bottom: 22px;
  font-family: var(--display-font);
  font-style: italic;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(34px, 8vw, 96px);
  background: var(--paper);
  color: var(--ink);
}

.faq .section-heading p,
.faq-list p {
  color: rgba(21, 19, 18, 0.68);
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border-top: 1px solid var(--dark-line);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 8vw, 96px);
  padding: clamp(84px, 11vw, 140px) max(18px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(232, 237, 240, 0.92), transparent 31%),
    radial-gradient(circle at 12% 72%, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(135deg, #fbf8f1 0%, #f1f5f3 52%, #e8edf0 100%);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(36, 33, 29, 0.06);
  border-radius: 12px;
}

.contact__copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(36, 33, 29, 0.1);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 28px 90px rgba(62, 58, 51, 0.12);
  backdrop-filter: blur(18px);
}

.form-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(36, 33, 29, 0.1);
}

.form-head span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(201, 171, 108, 0.38);
  font-weight: 900;
}

.form-head strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--display-font);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.form-head p {
  margin: 0;
  color: rgba(36, 33, 29, 0.58);
  font-size: 0.92rem;
}

.lead-form label {
  display: grid;
  gap: 9px;
}

.lead-form label span {
  color: rgba(36, 33, 29, 0.78);
  font-weight: 900;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 33, 29, 0.12);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(201, 171, 108, 0.72);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(201, 171, 108, 0.11);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form ::placeholder {
  color: rgba(36, 33, 29, 0.42);
}

.form-note {
  margin: 0;
  color: rgba(36, 33, 29, 0.54);
  font-size: 0.86rem;
}

.form-submit {
  min-height: 54px;
  margin-top: 2px;
  box-shadow: 0 14px 34px rgba(201, 171, 108, 0.16);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #f4f1ea;
  color: rgba(36, 33, 29, 0.58);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(36, 33, 29, 0.12);
    border-radius: var(--radius);
    background: rgba(251, 248, 241, 0.96);
    color: var(--ink);
    box-shadow: 0 18px 50px rgba(62, 58, 51, 0.12);
    backdrop-filter: blur(14px);
  }

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

  .nav a {
    padding: 13px;
  }

  .intro,
  .help-areas,
  .image-statement,
  .video-intro,
  .selected,
  .practice,
  .media-grid,
  .format-grid,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .transformation-list article {
    grid-template-columns: 54px minmax(130px, 0.35fr) minmax(0, 1fr);
  }

  .transformation-list a {
    grid-column: 3;
  }

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

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    display: block;
    padding-top: 118px;
    background:
      radial-gradient(circle at 55% 22%, rgba(184, 155, 94, 0.1), transparent 28%),
      linear-gradient(145deg, #171513, #25231f);
  }

  .hero__image {
    position: relative;
    inset: auto;
    left: auto;
    z-index: 0;
    width: calc(100% - 36px);
    height: 450px;
    margin: 0 auto;
    border: 1px solid rgba(36, 33, 29, 0.1);
    border-radius: var(--radius);
    object-position: 50% 0%;
    filter: saturate(1.16) contrast(1.06) brightness(1.18);
    box-shadow: 0 28px 80px rgba(62, 58, 51, 0.14);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(12, 11, 10, 0.18), rgba(12, 11, 10, 0.04) 44%, rgba(12, 11, 10, 0.22) 100%);
  }

  .hero__inner {
    width: min(var(--max), calc(100% - 30px));
    padding: 28px 0 34px;
  }

  h1 {
    font-size: clamp(2.5rem, 10vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-trust div {
    min-width: 0;
    padding: 14px 16px;
  }

  .button {
    width: 100%;
  }

  .intro,
  .help-areas,
  .video-intro,
  .selected,
  .formats,
  .faq,
  .practice,
  .media,
  .contact {
    padding-block: 72px;
  }

  .image-statement {
    min-height: auto;
  }

  .image-statement__media {
    min-height: 430px;
  }

  .image-statement__copy {
    padding: 34px 18px 72px;
  }

  .selected__media {
    min-height: 420px;
  }

  .transformation-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .transformation-list a {
    grid-column: auto;
  }

  .transformation-list h3 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.05;
  }

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

  .help-grid article {
    min-height: auto;
  }

  .help-grid span {
    margin-bottom: 18px;
  }

  .video-frame video {
    aspect-ratio: 9 / 12;
  }

  .video-frame--intro video {
    aspect-ratio: 9 / 12;
  }

  .video-frame--practice,
  .video-frame--practice video {
    aspect-ratio: 9 / 12;
  }

  .practice-action {
    justify-items: stretch;
  }

  .practice-action .button {
    width: 100%;
  }

  .media-card,
  .media-note {
    min-height: 390px;
  }

  .format-grid article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

.static-fallback {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 76% 30%, rgba(214, 192, 138, 0.14), transparent 28%),
    linear-gradient(135deg, #0b0a09, #1b1916 52%, #2a221b);
  color: #fff;
}

.static-fallback__hero {
  width: min(980px, 100%);
}

.static-fallback__hero p:first-child {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 14px;
  border: 1px solid rgba(229, 212, 165, 0.24);
  border-radius: 999px;
  color: #e5d4a5;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.static-fallback__hero h1 {
  max-width: 900px;
  color: #fff;
}

.static-fallback__hero a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 20px;
  padding: 14px 25px;
  border-radius: 999px;
  color: #241d14;
  background: linear-gradient(135deg, #e5d4a5, #d6c08a 54%, #a88f58);
  font-weight: 900;
}

/* Content integration sections */
.section-kicker {
  margin: 0 0 12px;
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-text-section {
  background: linear-gradient(135deg, #fffdf8, #f4efe6);
}

.intro-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.intro-text-grid p {
  margin: 0;
  color: rgba(36, 33, 29, 0.68);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.78;
}

.recognition-section {
  display: grid;
  gap: 34px;
  background:
    radial-gradient(circle at 14% 10%, rgba(214, 192, 138, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f4efe6);
}

.recognition-section .section-heading {
  text-align: center;
}

.recognition-section .section-heading h2 {
  color: var(--ink);
}

.recognition-pairs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.recognition-pairs article,
.request-card,
.story-card,
.results-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.recognition-pairs article {
  min-height: 170px;
  padding: clamp(20px, 2.4vw, 28px);
  border-color: rgba(36, 33, 29, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 241, 0.48)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 58px rgba(62, 58, 51, 0.08);
}

.recognition-pairs p {
  margin: 0;
  color: rgba(36, 33, 29, 0.82);
  font-family: var(--display-font);
  font-size: clamp(1.34rem, 1.8vw, 1.92rem);
  line-height: 1.1;
}

.recognition-pairs p + p {
  margin-top: 14px;
  color: var(--champagne-dark);
}

.recognition-note {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  max-width: 1060px;
  margin-inline: auto;
  padding-top: 12px;
  color: rgba(36, 33, 29, 0.68);
}

.recognition-note strong,
.about-manifesto strong,
.deep-note-section h2 {
  display: block;
  color: var(--champagne-light);
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.recognition-note strong {
  color: var(--champagne-dark);
  font-size: clamp(1.48rem, 2.15vw, 2.35rem);
  line-height: 1.2;
}

.request-section .section-heading p,
.request-section .section-heading h2 {
  color: var(--ink);
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.request-card {
  min-height: 280px;
  padding: clamp(22px, 2.8vw, 30px);
  border-color: rgba(36, 33, 29, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 241, 0.45)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 68px rgba(62, 58, 51, 0.09);
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}

.request-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 143, 88, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 241, 0.58)),
    rgba(255, 255, 255, 0.64);
}

.request-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--champagne-dark);
  font-family: var(--display-font);
  font-size: 2.4rem;
  line-height: 1;
}

.request-card__topic {
  margin: 0 0 13px;
  color: rgba(36, 33, 29, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.request-card h3 {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.request-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  list-style: none;
}

.request-card li::before,
.symptom-grid article::before,
.results-grid article::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--champagne);
  vertical-align: 0.12em;
}

.request-card strong {
  display: inline-flex;
  margin-top: 22px;
  color: var(--champagne-dark);
  font-weight: 900;
}

.practice-cta-section,
.deep-note-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 24%, rgba(214, 192, 138, 0.16), transparent 30%),
    linear-gradient(135deg, #fffdf8, #f2eadf);
}


.about-full-section {
  background: #fff;
}

.about-full-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.about-full-copy h3 {
  margin-top: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 500;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-tags span,
.request-nav-grid a {
  border: 1px solid rgba(36, 33, 29, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fffdf8;
  font-weight: 850;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 231, 0.72));
}

.about-stats strong {
  display: block;
  color: var(--champagne-dark);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.95;
}

.about-stats span {
  color: rgba(36, 33, 29, 0.64);
  font-weight: 800;
}

.about-manifesto {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 36px;
  margin-top: 34px;
}

.about-manifesto strong {
  grid-column: 1 / -1;
  max-width: 900px;
  color: var(--ink);
}

.doubts-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.doubt-list {
  display: grid;
  gap: 12px;
}

.doubt-list article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.stories-section {
  background: linear-gradient(135deg, #fffdf8, #f4efe6);
}

.story-grid {
  display: grid;
  gap: 16px;
}

.story-card {
  padding: clamp(22px, 3vw, 32px);
  border-color: rgba(36, 33, 29, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.story-card header span {
  color: var(--champagne-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 8px 0 22px;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 2.6vw, 2.75rem);
  font-weight: 500;
}

.story-states {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.story-states div {
  padding: 18px;
  border: 1px solid rgba(36, 33, 29, 0.1);
  border-radius: var(--radius);
  background: #fffdf8;
}

.story-states strong {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne-dark);
}

.section-actions {
  margin-top: 22px;
}

.results-grid,
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.results-grid article,
.symptom-grid article {
  padding: 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.symptom-grid article {
  border: 1px solid var(--line);
  background: #fffdf8;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-accordion article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  overflow: hidden;
}

.faq-accordion button {
  width: 100%;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-accordion button::after {
  content: "+";
  float: right;
  color: var(--champagne-dark);
}

.faq-accordion button[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-accordion button[aria-expanded="true"] + .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px 20px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 24px;
  background: #fffdf8;
  color: rgba(36, 33, 29, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a:last-child {
  color: var(--ink);
}

.cause-section .section-heading {
  margin-bottom: 0;
}

.request-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-nav-grid a span {
  margin-right: 8px;
  color: var(--champagne-dark);
}

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

  .request-grid,
  .results-grid,
  .symptom-grid,
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-text-grid,
  .recognition-note,
  .about-full-grid,
  .about-manifesto,
  .doubts-section,
  .practice-cta-section,
  .deep-note-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .recognition-pairs,
  .request-grid,
  .results-grid,
  .symptom-grid,
  .about-stats,
  .story-states {
    grid-template-columns: 1fr;
  }

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

  .practice-cta-section .button,
  .deep-note-section .button {
    width: 100%;
  }
}

/* Premium wellness multipage system */
:root {
  --paper: #fbf8f1;
  --milk: #fffdf8;
  --champagne: #dfc98d;
  --ink: #24211d;
  --soft-ink: rgba(36, 33, 29, 0.68);
  --dark: #171513;
  --dark-2: #24211d;
  --line: rgba(36, 33, 29, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --radius: 8px;
  --max: 1180px;
  --display-font: "Cormorant Garamond", Georgia, serif;
  --body-font: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
}

.site-header {
  grid-template-columns: auto 1fr auto;
  padding-inline: max(18px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: linear-gradient(to bottom, rgba(18, 17, 15, 0.76), rgba(18, 17, 15, 0.22), rgba(18, 17, 15, 0));
}

.site-header.is-past-hero {
  color: var(--ink);
  background: linear-gradient(to bottom, rgba(251, 248, 241, 0.96), rgba(251, 248, 241, 0.78), rgba(251, 248, 241, 0));
}

.brand {
  gap: 0;
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand__mark,
.brand__text {
  display: none;
}

.nav {
  gap: clamp(16px, 2.3vw, 36px);
}

.nav a,
.header-cta {
  font-size: 0.92rem;
  font-weight: 800;
}

.header-cta {
  color: inherit;
}

.hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 36%, rgba(223, 201, 141, 0.1), transparent 26%),
    linear-gradient(135deg, #12110f 0%, #1a1816 48%, #24211d 100%);
  color: #fff;
}

.hero__image {
  left: 43%;
  width: 57%;
  object-position: 52% 34%;
  filter: saturate(1.12) contrast(1.05) brightness(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
}

body:not([data-page="home"]) .hero__image {
  top: 88px;
  height: calc(100% - 88px);
  object-position: 50% 24%;
}

body:not([data-page="home"]):not([data-page="thank-you"]) .hero {
  min-height: 84svh;
}

.hero__overlay {
  background:
    radial-gradient(ellipse at 78% 44%, rgba(18, 17, 15, 0) 0%, rgba(18, 17, 15, 0.06) 34%, rgba(18, 17, 15, 0.62) 100%),
    linear-gradient(90deg, rgba(18, 17, 15, 1) 0%, rgba(18, 17, 15, 0.94) 34%, rgba(18, 17, 15, 0.7) 50%, rgba(18, 17, 15, 0.2) 72%, rgba(18, 17, 15, 0.38) 100%),
    linear-gradient(0deg, rgba(18, 17, 15, 0.62) 0%, rgba(18, 17, 15, 0.03) 36%, rgba(18, 17, 15, 0.36) 100%);
}

.hero__inner {
  width: min(var(--max), calc(100% - 36px));
  padding-top: 132px;
}

h1,
h2 {
  font-family: var(--display-font);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.7rem, 6.2vw, 7.2rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.5rem, 4.4vw, 5rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.25rem;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.hero__note {
  max-width: 620px;
  margin: 30px 0 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero__note h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.hero__note p {
  margin: 0;
}

body[data-page="thank-you"] .hero {
  min-height: 100svh;
}

body[data-page="thank-you"] .hero__inner {
  padding-top: 112px;
  padding-bottom: 44px;
}

body[data-page="thank-you"] h1 {
  font-size: clamp(3.1rem, 5.6vw, 6rem);
}

.button {
  min-height: 54px;
  border-radius: 999px;
}

.button-primary {
  background: linear-gradient(135deg, #ead9a8, #c7aa69);
  color: #221b13;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.section {
  padding: clamp(58px, 7.5vw, 104px) max(18px, calc((100vw - var(--max)) / 2));
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(223, 201, 141, 0.14), transparent 30%),
    linear-gradient(135deg, #131210, #24211d 58%, #171513);
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p,
.split-section p,
.video-copy p,
.about-section p,
.diagnostic-section p,
.application-section p,
.faq-section p,
.soft-cta p,
.wellness-grid p,
.testimonial-grid p {
  color: var(--soft-ink);
}

.section-dark .video-copy p,
.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wellness-grid .wellness-card,
.testimonial-grid article,
.faq-grid article {
  display: block;
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(62, 58, 51, 0.06);
}

.wellness-card img {
  height: 152px;
  margin: -6px 0 18px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: 50% 28%;
}

.wellness-grid a.wellness-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.wellness-grid a.wellness-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 155, 94, 0.42);
  box-shadow: 0 24px 70px rgba(62, 58, 51, 0.1);
}

.wellness-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--champagne);
  font-weight: 900;
}

.wellness-grid strong {
  display: inline-block;
  margin-top: 12px;
  color: var(--champagne);
  font-size: 0.9rem;
  font-weight: 900;
}

.split-section,
.about-section,
.video-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5.8vw, 68px);
  align-items: center;
}

.split-section {
  background: #fff;
}

.video-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(135deg, #f3f7f5, #fffdf8 58%, #e8edf0);
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  justify-self: center;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(184, 155, 94, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(251, 248, 241, 0.64)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 84px rgba(62, 58, 51, 0.14);
  backdrop-filter: blur(18px);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
  object-position: 50% 24%;
  background: #151412;
}

.video-frame--intro video {
  aspect-ratio: 16 / 9;
  object-position: 50% 42%;
}

.video-frame--practice {
  max-width: 480px;
  padding: 7px;
  justify-self: end;
  background:
    linear-gradient(135deg, rgba(234, 217, 168, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(234, 217, 168, 0.28);
}

.video-frame--practice video {
  aspect-ratio: 16 / 10;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 78px);
  height: clamp(58px, 7vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
}

.video-play::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
}

.video-frame:hover .video-play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.04);
}

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

.video-frame.is-loading .video-play {
  cursor: wait;
  opacity: 0.72;
}

.video-section.section-dark {
  grid-template-columns: 1fr;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 217, 168, 0.13), transparent 34%),
    linear-gradient(135deg, #131210, #24211d 58%, #171513);
  color: #fff;
}

.video-section.section-dark .video-copy {
  max-width: 760px;
  margin: 0 auto;
}

.video-section.section-dark .video-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.video-section.section-dark .video-frame {
  max-width: 900px;
}

.practice-band,
.soft-cta,
.final-cta,
.diagnostic-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.practice-band {
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.7fr);
  background:
    radial-gradient(circle at 14% 20%, rgba(234, 217, 168, 0.12), transparent 30%),
    linear-gradient(135deg, #15130f, #25221e 58%, #171513);
}

.practice-band h2 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.4vw, 5.1rem);
  line-height: 0.92;
}

.practice-band h2 span {
  display: block;
  width: fit-content;
  margin-top: 10px;
  padding: 7px 16px 10px;
  border: 1px solid rgba(234, 217, 168, 0.32);
  border-radius: 999px;
  color: #ead9a8;
  font-size: clamp(1.95rem, 3vw, 3.55rem);
  background: rgba(234, 217, 168, 0.08);
}

.practice-band h2 span::before {
  content: "";
}

.practice-band p {
  max-width: 760px;
}

.practice-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.practice-action {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.practice-action .button {
  width: fit-content;
}

.soft-cta,
.final-cta {
  padding-block: clamp(50px, 6.5vw, 84px);
  background: linear-gradient(135deg, #fffdf8, #f3f0e8);
}

.cta-row-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: center;
}

.cta-row-section h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
}

.cta-row-section .button-row {
  align-items: center;
  justify-content: flex-start;
}

.diagnostic-section {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  background:
    radial-gradient(circle at 88% 22%, rgba(184, 155, 94, 0.16), transparent 32%),
    linear-gradient(135deg, #fffdf8, #f5efe4);
}

.diagnostic-section p {
  max-width: 720px;
  margin-bottom: 22px;
}

.diagnostic-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

.diagnostic-cards article {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 231, 0.72));
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(62, 58, 51, 0.07);
}

.diagnostic-cards span {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 155, 94, 0.18));
}

.diagnostic-cards h3 {
  margin: 0;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.25;
}

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

.application-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  padding: clamp(22px, 3.4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(62, 58, 51, 0.08);
}

.application-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-field legend {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-choice label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(36, 33, 29, 0.14);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-choice label:has(input:checked) {
  border-color: rgba(184, 155, 94, 0.72);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(184, 155, 94, 0.14);
}

.contact-choice label:hover {
  transform: translateY(-1px);
}

.contact-choice input {
  width: auto;
  accent-color: var(--gold);
}

.application-form input,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 33, 29, 0.16);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.application-form textarea {
  resize: vertical;
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: rgba(184, 155, 94, 0.62);
  box-shadow: 0 0 0 4px rgba(184, 155, 94, 0.12);
}

.about-section {
  background: #fff;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.about-image img {
  height: 560px;
  object-fit: cover;
  object-position: 50% 22%;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 14px;
}

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

.faq-section {
  padding-block: clamp(52px, 7vw, 92px);
  background: #fff;
}

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

.faq-grid article {
  min-height: auto;
}

.faq-grid h3 {
  margin-top: 0;
}

.testimonial-grid article {
  min-height: auto;
}

.testimonial-grid img {
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(62, 58, 51, 0.12);
}

.testimonial-grid h3 {
  margin: 0 0 10px;
  font-family: var(--body-font);
  font-size: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: #f4f1ea;
  color: rgba(36, 33, 29, 0.62);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    top: 70px;
    color: var(--ink);
  }

  .wellness-grid,
  .diagnostic-cards,
  .faq-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .about-section,
  .video-section,
  .practice-band,
  .soft-cta,
  .final-cta,
  .cta-row-section,
  .diagnostic-section {
    grid-template-columns: 1fr;
  }

  .practice-band h2 span {
    width: fit-content;
  }

  .cta-row-section h2 {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .section {
    padding-block: 48px;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: 106px;
  }

  .hero__image {
    position: relative;
    inset: auto;
    left: auto;
    width: calc(100% - 36px);
    height: 430px;
    margin: 0 auto;
    border-radius: var(--radius);
    object-position: 50% 0%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  body:not([data-page="home"]) .hero__image {
    top: auto;
    height: 330px;
    object-position: 50% 14%;
  }

  .hero__inner {
    padding: 24px 0 38px;
  }

  body:not([data-page="home"]):not([data-page="thank-you"]) .hero {
    min-height: auto;
  }

  body[data-page="thank-you"] .hero {
    min-height: 100svh;
    padding-top: 84px;
  }

  body[data-page="thank-you"] .hero__inner {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  body[data-page="thank-you"] .hero__image {
    display: none;
  }

  body[data-page="thank-you"] h1 {
    font-size: clamp(2.72rem, 11vw, 3.65rem);
    line-height: 0.94;
  }

  body[data-page="thank-you"] .hero__note {
    margin-top: 20px;
    padding: 18px;
  }

  body[data-page="thank-you"] .hero__note h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  h1 {
    font-size: clamp(3.15rem, 13vw, 4.35rem);
  }

  body:not([data-page="home"]) h1 {
    font-size: clamp(2.65rem, 10.5vw, 3.55rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2.12rem, 9vw, 2.85rem);
  }

  .wellness-grid,
  .diagnostic-cards,
  .faq-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-row-section {
    text-align: left;
  }

  .diagnostic-section {
    gap: 20px;
  }

  .diagnostic-cards article {
    min-height: auto;
    padding: 16px;
  }

  .diagnostic-cards span {
    margin-bottom: 14px;
  }

  .practice-band h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .practice-band h2 span {
    font-size: clamp(1.55rem, 7vw, 2.35rem);
  }

  .cta-row-section h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem);
  }

  .about-image img {
    height: 390px;
  }
}

/* Targeted corrections after premium pass */
.hero-trust div {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.108), rgba(255, 255, 255, 0.048)),
    rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 54px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0);
  transition:
    transform 260ms cubic-bezier(0.2, 0.72, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
  will-change: transform;
}

.hero-trust div::before,
.hero-trust div::after {
  content: none !important;
}

.hero-trust div:hover {
  border-color: rgba(214, 192, 138, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 62px rgba(0, 0, 0, 0.24);
  transform: translate3d(0, -2px, 0);
}

.recognition-section .section-heading {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.recognition-section .section-heading h2 {
  max-width: 760px;
}

.recognition-pairs article:nth-child(6) p:first-child {
  color: rgba(36, 33, 29, 0.82);
}

.recognition-pairs article:nth-child(6) p:nth-child(2) {
  color: var(--gold-deep);
}

.recognition-note {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(20px, 3vw, 38px);
  max-width: 100%;
  padding: clamp(28px, 3.6vw, 48px);
  border: 1px solid rgba(68, 54, 36, 0.1);
  border-radius: var(--card-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(248, 239, 224, 0.36)),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 52px rgba(58, 47, 35, 0.07);
}

.recognition-note p {
  margin: 0;
  color: rgba(36, 33, 29, 0.74);
  font-family: var(--display-font);
  font-size: clamp(1.34rem, 1.72vw, 1.86rem);
  font-weight: 500;
  line-height: 1.34;
}

.recognition-note strong {
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(18px, 2.2vw, 28px) clamp(20px, 2.6vw, 34px);
  border-left-color: rgba(157, 125, 54, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(245, 234, 216, 0.28)),
    rgba(255, 255, 255, 0.2);
  box-shadow: none;
  font-size: clamp(1.7rem, 2.18vw, 2.55rem);
  line-height: 1.12;
}

.request-card {
  min-height: 282px;
  justify-content: flex-start;
  padding-top: clamp(26px, 2.6vw, 36px);
}

.request-card > span {
  display: none;
}

.request-card__topic {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 10px 14px;
  border: 1px solid rgba(157, 125, 54, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.54);
  color: var(--gold-deep);
  font-family: var(--display-font);
  font-size: clamp(1.18rem, 1.55vw, 1.58rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.request-card__description {
  margin: 0;
  color: rgba(36, 33, 29, 0.84);
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 1.9vw, 2.04rem);
  font-weight: 500;
  line-height: 1.12;
}


.request-card strong {
  margin-top: auto;
  padding-top: 28px;
}

.about-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
}

.diagnostic-section--full {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  background:
    radial-gradient(circle at 84% 12%, rgba(223, 201, 141, 0.16), transparent 30%),
    linear-gradient(135deg, #fbf7ef, #eadfce);
}

.diagnostic-lead {
  position: relative;
  margin: clamp(20px, 2.6vw, 30px) 0;
  padding: clamp(18px, 2.2vw, 28px);
  border-left: 2px solid var(--gold-readable);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  background: rgba(255, 253, 248, 0.52);
  color: rgba(36, 33, 29, 0.78) !important;
  font-family: var(--display-font);
  font-size: clamp(1.34rem, 1.8vw, 2rem);
  line-height: 1.22 !important;
}

.about-manifesto strong {
  display: grid;
  gap: 8px;
  max-width: 980px;
  margin: clamp(18px, 3vw, 36px) auto 0;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(157, 125, 54, 0.16);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 201, 141, 0.15), transparent 35%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(238, 226, 207, 0.36));
  color: var(--ink);
  text-align: center;
  box-shadow: 0 24px 70px rgba(58, 47, 35, 0.09);
}

.about-manifesto strong span:last-child {
  color: var(--gold-deep);
  font-style: italic;
}

.faq-panel {
  max-height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 280ms ease,
    opacity 220ms ease,
    visibility 0ms linear 280ms;
}

.faq-accordion button[aria-expanded="true"] + .faq-panel {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  transition:
    max-height 320ms ease,
    opacity 220ms ease;
}

.faq-panel p {
  padding: 0 20px 20px;
}

.application-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 90% 24%, rgba(223, 201, 141, 0.16), transparent 30%),
    linear-gradient(135deg, #f7efe4, #e8dcc9);
}

.application-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.application-form {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(248, 239, 224, 0.58)),
    rgba(255, 255, 255, 0.58);
}

.application-form input,
.application-form textarea {
  border-radius: 14px;
  border-color: rgba(68, 54, 36, 0.14);
  background: rgba(255, 253, 248, 0.78);
}

.request-nav-grid a {
  padding: 13px 18px;
  color: rgba(36, 33, 29, 0.82);
}

.request-nav-grid a:hover,
.request-nav-grid a:focus-visible {
  border-color: rgba(157, 125, 54, 0.28);
  background: rgba(255, 253, 248, 0.82);
  color: var(--gold-deep);
}

body:not([data-page="home"]) .hero__eyebrow {
  color: rgba(234, 217, 168, 0.95);
}

body:not([data-page="home"]) .hero h1 {
  max-width: 820px;
}

@media (max-width: 1040px) {
  .recognition-note {
    grid-template-columns: 1fr;
  }

  .about-stats {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .recognition-section .section-heading {
    text-align: left;
  }

  .recognition-note {
    padding: 20px;
  }

  .recognition-note strong {
    min-height: 0;
  }

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

  .request-card strong {
    margin-top: 22px;
    padding-top: 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Premium-upgrade: editorial luxury polish */
:root {
  --black-rich: #0f0e0c;
  --graphite: #1b1916;
  --warm-brown: #272019;
  --champagne: #d6c08a;
  --champagne-light: #e5d4a5;
  --champagne-dark: #a88f58;
  --soft-white: rgba(255, 255, 255, 0.78);
}

body {
  background:
    radial-gradient(circle at 16% -4%, rgba(214, 192, 138, 0.035), transparent 34%),
    linear-gradient(135deg, var(--paper), #f7f1e7 52%, #fbf8f1);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image:
    repeating-radial-gradient(circle at 17% 23%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
}

.site-header {
  background:
    linear-gradient(to bottom, rgba(15, 14, 12, 0.88), rgba(15, 14, 12, 0.42), rgba(15, 14, 12, 0));
  backdrop-filter: blur(16px);
}

.site-header.is-past-hero {
  background:
    linear-gradient(to bottom, rgba(251, 248, 241, 0.965), rgba(251, 248, 241, 0.8), rgba(251, 248, 241, 0));
  box-shadow: 0 18px 52px rgba(39, 32, 25, 0.08);
}

.brand {
  transition: opacity 300ms ease, transform 300ms ease;
}

.brand:hover {
  opacity: 0.86;
}

.nav a {
  position: relative;
  opacity: 0.76;
  transition: opacity 300ms ease, color 300ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne-light), transparent);
  opacity: 0;
  transform: scaleX(0.38);
  transition: opacity 300ms ease, transform 300ms ease;
}

.nav a:hover {
  opacity: 1;
}

.nav a:hover::after {
  opacity: 0.74;
  transform: scaleX(1);
}

.header-cta {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 212, 165, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.hero,
.section-dark,
.practice-band,
.video-section.section-dark {
  background:
    radial-gradient(circle at 78% 34%, rgba(214, 192, 138, 0.16), transparent 27%),
    radial-gradient(circle at 52% 100%, rgba(90, 61, 38, 0.18), transparent 38%),
    linear-gradient(135deg, #0b0a09 0%, var(--graphite) 48%, #2a221b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 74% 42%, rgba(229, 212, 165, 0.13), transparent 28%),
    linear-gradient(180deg, transparent 68%, rgba(15, 14, 12, 0.7) 100%);
}

.hero__image {
  filter:
    saturate(1.14)
    contrast(1.07)
    brightness(1.08)
    drop-shadow(-18px 0 32px rgba(229, 212, 165, 0.065));
}

.hero__overlay {
  background:
    radial-gradient(ellipse at 78% 44%, rgba(15, 14, 12, 0) 0%, rgba(15, 14, 12, 0.05) 34%, rgba(15, 14, 12, 0.68) 100%),
    linear-gradient(90deg, rgba(15, 14, 12, 1) 0%, rgba(15, 14, 12, 0.95) 34%, rgba(15, 14, 12, 0.68) 50%, rgba(15, 14, 12, 0.18) 72%, rgba(15, 14, 12, 0.42) 100%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.78) 0%, rgba(15, 14, 12, 0.06) 40%, rgba(15, 14, 12, 0.42) 100%);
}

.hero__inner {
  padding-top: 146px;
  padding-bottom: 70px;
}

.hero__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(229, 212, 165, 0.24);
  border-radius: 999px;
  background: rgba(229, 212, 165, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  max-width: none;
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: var(--champagne-light);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

body[data-page="home"] .hero__inner {
  width: min(1240px, calc(100% - 36px));
}

body[data-page="home"] .hero h1 {
  max-width: 780px;
  font-size: clamp(3.45rem, 5.45vw, 6.45rem);
  line-height: 0.99;
}

.hero__subtitle {
  max-width: 660px;
  margin: 0 0 16px;
  color: var(--champagne-light);
  font-size: clamp(1.18rem, 1.7vw, 1.62rem);
  font-weight: 500;
  line-height: 1.42;
}

h1 {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 34px);
  line-height: 0.96;
  letter-spacing: 0.002em;
}

.hero p:not(.hero__eyebrow) {
  max-width: 630px;
  color: var(--soft-white);
  line-height: 1.72;
}

.hero p.hero__subtitle {
  color: var(--champagne-light);
}

.hero__actions {
  gap: 14px;
  margin-top: clamp(34px, 4vw, 46px);
}

.hero-trust {
  gap: 14px;
  margin-top: clamp(28px, 4vw, 42px);
}

.hero-trust div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  contain: paint;
  min-width: 168px;
  min-height: 96px;
  padding: 19px 21px;
  border-color: rgba(255, 255, 255, 0.13);
  background-clip: padding-box;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 22% 16%, rgba(229, 212, 165, 0.12), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}

.hero-trust div:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(214, 192, 138, 0.32);
}

.hero-trust strong {
  color: var(--champagne-light);
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 0.9;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.button {
  min-height: 56px;
  padding: 14px 25px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    opacity 300ms ease;
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  color: #241d14;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, var(--champagne-light), var(--champagne) 54%, var(--champagne-dark));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 18px 40px rgba(168, 143, 88, 0.18);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 22px 54px rgba(168, 143, 88, 0.25);
  filter: brightness(1.025);
}

.button-primary:active,
.button-ghost:active,
.button-light:active {
  transform: translateY(0);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 212, 165, 0.42);
  background: rgba(255, 255, 255, 0.105);
}

.button-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 248, 241, 0.86));
  border-color: rgba(36, 33, 29, 0.12);
  box-shadow: 0 14px 36px rgba(62, 58, 51, 0.065);
}

.button-light:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 143, 88, 0.36);
  box-shadow: 0 18px 48px rgba(62, 58, 51, 0.1);
}

.section-dark .button-light,
.practice-band .button-light,
.final-cta .button-light,
.soft-cta .button-light {
  background: rgba(255, 255, 255, 0.74);
}

.wellness-grid .wellness-card,
.testimonial-grid article,
.faq-grid article,
.diagnostic-cards article,
.application-form,
.video-frame {
  border-color: rgba(36, 33, 29, 0.105);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 24px 70px rgba(62, 58, 51, 0.075);
}

.section-heading p,
.split-section p,
.video-copy p,
.about-section p,
.diagnostic-section p,
.application-section p,
.faq-section p,
.soft-cta p,
.wellness-grid p,
.testimonial-grid p {
  max-width: 720px;
  color: rgba(36, 33, 29, 0.64);
  line-height: 1.72;
}

.section-dark .video-copy p,
.section-dark p,
.practice-band p {
  color: rgba(255, 255, 255, 0.69);
}

.diagnostic-cards span,
.wellness-grid strong {
  background: linear-gradient(90deg, var(--champagne-dark), var(--champagne-light));
}

.wellness-grid strong {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow,
  .hero h1,
  .hero p,
  .hero__actions,
  .hero-trust {
    opacity: 0;
    animation: premiumFadeUp 780ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  }

  .hero h1 {
    animation-delay: 90ms;
  }

  .hero p {
    animation-delay: 170ms;
  }

  .hero__actions {
    animation-delay: 260ms;
  }

  .hero-trust {
    animation-delay: 340ms;
  }

  .hero__image {
    opacity: 0;
    animation: premiumImageIn 900ms ease 180ms forwards;
  }
}

@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premiumImageIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 1040px) {
  .nav a::after {
    display: none;
  }

  .hero__inner {
    padding-top: 126px;
  }

  .hero-trust div {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    font-size: clamp(1.42rem, 7vw, 1.82rem);
  }

  .hero {
    padding-top: 96px;
  }

  .hero__image {
    height: min(430px, 58svh);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(229, 212, 165, 0.08);
  }

  .hero__inner {
    width: min(var(--max), calc(100% - 32px));
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  body[data-page="home"] .hero h1 {
    max-width: 100%;
    font-size: clamp(2.82rem, 11vw, 4.05rem);
    line-height: 1.01;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-bottom: 13px;
    font-size: clamp(1.08rem, 4.8vw, 1.32rem);
    line-height: 1.42;
  }

  h1 {
    margin-bottom: 20px;
    line-height: 0.98;
  }

  .hero p:not(.hero__eyebrow) {
    line-height: 1.62;
  }

  .hero__actions {
    margin-top: 26px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-trust div {
    min-height: 84px;
    padding: 16px 18px;
  }

  .hero-trust strong {
    font-size: 2.12rem;
  }

  .button {
    min-height: 54px;
    padding-inline: 18px;
  }

  .section-heading p,
  .split-section p,
  .video-copy p,
  .about-section p,
  .diagnostic-section p,
  .application-section p,
  .faq-section p,
  .soft-cta p,
  .wellness-grid p,
  .testimonial-grid p {
    line-height: 1.64;
  }
}

/* Premium psychological practice polish */
:root {
  --ivory-premium: #fbf7ef;
  --cream-premium: #f6efe3;
  --sand-premium: #eee2cf;
  --beige-premium: #e8dcc9;
  --gold-readable: #9d7d36;
  --gold-deep: #7f6228;
  --card-radius: 18px;
  --premium-shadow: 0 22px 62px rgba(58, 47, 35, 0.105);
  --premium-shadow-hover: 0 30px 86px rgba(58, 47, 35, 0.16);
}

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

main > .section:nth-of-type(4n + 2):not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 192, 138, 0.13), transparent 28%),
    linear-gradient(135deg, var(--ivory-premium), var(--cream-premium));
}

main > .section:nth-of-type(4n + 3):not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(135deg, #f8f1e7, var(--sand-premium));
}

main > .section:nth-of-type(4n):not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 80% 80%, rgba(214, 192, 138, 0.1), transparent 30%),
    linear-gradient(135deg, var(--cream-premium), #f2e8d9);
}

.section-heading {
  margin-bottom: clamp(24px, 4vw, 46px);
}

.section-heading h2,
.split-section h2,
.video-copy h2,
.diagnostic-section h2,
.application-section h2,
.final-cta h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p,
.intro-text-grid p,
.split-section p,
.video-copy p,
.about-section p,
.diagnostic-section p,
.application-section p,
.faq-section p,
.soft-cta p,
.wellness-grid p,
.testimonial-grid p,
.request-card__description {
  line-height: 1.64;
}

.button,
.request-card,
.story-card,
.results-grid article,
.symptom-grid article,
.wellness-grid .wellness-card,
.testimonial-grid article,
.faq-grid article,
.faq-accordion article,
.diagnostic-cards article,
.application-form,
.video-frame,
.about-stats article,
.doubt-list article {
  border-radius: var(--card-radius);
}

.request-card,
.story-card,
.results-grid article,
.symptom-grid article,
.wellness-grid .wellness-card,
.testimonial-grid article,
.faq-grid article,
.faq-accordion article,
.diagnostic-cards article,
.application-form,
.video-frame,
.about-stats article,
.doubt-list article {
  border-color: rgba(68, 54, 36, 0.12);
  box-shadow: var(--premium-shadow);
  transition:
    transform 320ms cubic-bezier(0.2, 0.72, 0.2, 1),
    box-shadow 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
}

.request-card:hover,
.story-card:hover,
.wellness-grid .wellness-card:hover,
.testimonial-grid article:hover,
.faq-grid article:hover,
.diagnostic-cards article:hover,
.about-stats article:hover,
.doubt-list article:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(157, 125, 54, 0.28);
  box-shadow: var(--premium-shadow-hover);
}

.button:hover {
  transform: translate3d(0, -2px, 0);
}

.recognition-section {
  gap: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(214, 192, 138, 0.14), transparent 30%),
    linear-gradient(135deg, #fbf7ef, #eee2cf);
}

.recognition-pairs {
  gap: clamp(14px, 1.8vw, 22px);
}

.recognition-pairs article {
  min-height: 150px;
  padding: clamp(20px, 2.1vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 241, 0.42)),
    rgba(255, 255, 255, 0.52);
}

.recognition-note {
  position: relative;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.86fr);
  max-width: 1100px;
  padding: clamp(24px, 3vw, 38px) 0 0;
}

.recognition-note strong {
  position: relative;
  padding: clamp(20px, 2.6vw, 32px) clamp(22px, 3vw, 42px);
  border-left: 2px solid var(--gold-readable);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(245, 234, 216, 0.42)),
    rgba(255, 255, 255, 0.38);
  color: var(--gold-deep);
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1.02;
  box-shadow: 0 18px 48px rgba(58, 47, 35, 0.08);
}

.recognition-note strong::before {
  content: "“";
  position: absolute;
  top: -0.26em;
  left: 0.12em;
  color: rgba(157, 125, 54, 0.16);
  font-family: var(--display-font);
  font-size: 5.8rem;
  line-height: 1;
}

.request-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.7), transparent 26%),
    linear-gradient(135deg, #f7efe4, #eaddca);
}

.request-grid {
  gap: clamp(16px, 2vw, 24px);
}

.request-card {
  display: flex;
  min-height: 342px;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(214, 192, 138, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(248, 239, 224, 0.62));
}

.request-card > span {
  color: var(--gold-readable);
  font-size: clamp(2.2rem, 2.8vw, 3rem);
}

.request-card__topic {
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.request-card__description {
  margin: 0 0 18px;
  color: rgba(36, 33, 29, 0.64);
  font-size: 0.96rem;
}

.request-card h3 {
  margin-top: auto;
  color: rgba(36, 33, 29, 0.92);
}

.request-card strong {
  width: fit-content;
  margin-top: 24px;
  color: var(--gold-deep);
}

.practice-cta-section,
.deep-note-section,
.soft-cta,
.final-cta {
  background:
    radial-gradient(circle at 82% 22%, rgba(223, 201, 141, 0.18), transparent 30%),
    linear-gradient(135deg, #fbf7ef, #eadfce);
}

.deep-note-section h2 {
  position: relative;
  max-width: 900px;
  padding-left: clamp(18px, 2vw, 28px);
  border-left: 2px solid var(--gold-readable);
  color: var(--gold-deep);
  font-size: clamp(2.35rem, 4.2vw, 5rem);
  line-height: 0.98;
}

.diagnostic-section,
.about-full-section,
.faq-section,
.application-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.62), transparent 24%),
    linear-gradient(135deg, #fbf7ef, #f1e5d4);
}

.diagnostic-cards article,
.symptom-grid article,
.results-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(249, 240, 226, 0.55)),
    rgba(255, 255, 255, 0.42);
}

.symptoms-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(214, 192, 138, 0.12), transparent 28%),
    linear-gradient(135deg, #f8f1e7, #eadfce);
}

.cause-section {
  position: relative;
  background:
    radial-gradient(circle at 78% 20%, rgba(223, 201, 141, 0.12), transparent 30%),
    linear-gradient(135deg, #171513, #24211d 60%, #171513);
}

.cause-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.cause-section .section-heading h2 {
  color: #fff;
}

.cause-section .section-heading p {
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  border-left: 2px solid var(--gold-readable);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.74);
}

.stories-section {
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #f8f1e7, #e9ddca);
}

.story-grid {
  gap: clamp(18px, 2.3vw, 28px);
}

.story-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(248, 238, 222, 0.62)),
    rgba(255, 255, 255, 0.58);
}

.story-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(68, 54, 36, 0.1);
  padding-bottom: 18px;
}

.story-card header span {
  grid-column: 2;
  grid-row: 1;
  color: var(--gold-deep);
  text-align: right;
}

.story-card h3 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.story-states {
  gap: clamp(14px, 2vw, 22px);
}

.story-states div {
  background: rgba(255, 253, 248, 0.72);
}

.story-states div:first-child {
  border-color: rgba(36, 33, 29, 0.1);
}

.story-states div:last-child {
  border-color: rgba(157, 125, 54, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(238, 226, 207, 0.42));
}

.story-states strong {
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emotional-break-section {
  min-height: min(560px, 62svh);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(223, 201, 141, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(157, 125, 54, 0.11), transparent 34%),
    linear-gradient(135deg, #11100e, #211d18 58%, #151311);
}

.emotional-break-section > div {
  max-width: 980px;
}

.emotional-break-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 7.3rem);
  line-height: 0.93;
}

.emotional-break-section p {
  max-width: 680px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  color: rgba(234, 217, 168, 0.84);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  line-height: 1.68;
}

.results-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(223, 201, 141, 0.1), transparent 24%),
    linear-gradient(135deg, #181613, #25211c);
}

.results-grid article {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.2);
}

.results-grid article::before,
.symptom-grid article::before {
  background: var(--gold-readable);
}

.section-kicker,
.about-stats strong,
.story-card header span,
.request-nav-grid a span,
.faq-accordion button::after {
  color: var(--gold-deep);
}

@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    transition:
      opacity 760ms cubic-bezier(0.2, 0.72, 0.2, 1),
      transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
  }

  [data-animate] .request-card,
  [data-animate] .story-card,
  [data-animate] .symptom-grid article,
  [data-animate] .results-grid article,
  [data-animate] .diagnostic-cards article {
    transition-delay: calc(var(--stagger, 0) * 48ms);
  }
}

@media (max-width: 1040px) {
  .section {
    padding-block: clamp(50px, 8vw, 76px);
  }

  .cause-section .section-heading,
  .recognition-note {
    grid-template-columns: 1fr;
  }

  .request-card {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .section {
    padding-block: 48px;
  }

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

  .request-card h3 {
    margin-top: 20px;
  }

  .recognition-note strong {
    font-size: clamp(1.82rem, 9vw, 2.65rem);
  }

  .story-card header {
    grid-template-columns: 1fr;
  }

  .story-card header span,
  .story-card h3 {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .emotional-break-section {
    min-height: auto;
    padding-block: 72px;
  }
}

/* Final focused upgrade: recognition conclusion and request cards only. */
.recognition-note {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(48px, 4.8vw, 64px);
  align-items: center;
  max-width: 1120px;
  margin-top: clamp(12px, 2vw, 22px);
  margin-inline: auto;
  padding: clamp(44px, 4.8vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(125, 97, 48, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(214, 192, 138, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.78), rgba(239, 226, 207, 0.52)),
    rgba(248, 241, 229, 0.7);
  box-shadow:
    0 28px 80px rgba(58, 47, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.recognition-note::after {
  content: "";
  position: absolute;
  top: clamp(40px, 4vw, 56px);
  bottom: clamp(40px, 4vw, 56px);
  left: 46%;
  z-index: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(157, 125, 54, 0.34), transparent);
}

.recognition-note p,
.recognition-note strong {
  position: relative;
  z-index: 1;
}

.recognition-note p {
  max-width: 500px;
  margin: 0;
  color: rgba(36, 33, 29, 0.76);
  font-family: var(--display-font);
  font-size: clamp(1.62rem, 1.94vw, 1.94rem);
  font-weight: 500;
  line-height: 1.5;
}

.recognition-note p::first-line {
  color: rgba(36, 33, 29, 0.94);
  font-weight: 600;
}

.recognition-note strong {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--gold-deep);
  font-family: var(--display-font);
  font-size: clamp(2.38rem, 3.34vw, 3rem);
  font-weight: 600;
  line-height: 1.06;
  text-wrap: balance;
}

.recognition-note strong::before {
  content: "“";
  position: absolute;
  top: -0.48em;
  left: -0.2em;
  z-index: -1;
  color: rgba(157, 125, 54, 0.15);
  font-family: var(--display-font);
  font-size: clamp(5.8rem, 10vw, 8.8rem);
  font-weight: 500;
  line-height: 1;
}

.request-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 32px);
  align-items: stretch;
}

.request-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(34px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(125, 97, 48, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 0%, rgba(214, 192, 138, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(241, 229, 210, 0.7));
  box-shadow:
    0 24px 66px rgba(58, 47, 35, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  transition:
    transform 300ms cubic-bezier(0.2, 0.72, 0.2, 1),
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.request-card:nth-child(even) {
  background:
    radial-gradient(circle at 90% 8%, rgba(214, 192, 138, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(252, 247, 239, 0.94), rgba(235, 221, 199, 0.66));
}

.request-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: clamp(24px, 2.2vw, 30px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-readable), rgba(157, 125, 54, 0.1));
}

.request-card:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 125, 54, 0.36);
  background:
    radial-gradient(circle at 96% 0%, rgba(214, 192, 138, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(244, 232, 214, 0.78));
  box-shadow:
    0 32px 84px rgba(58, 47, 35, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.request-card > span {
  display: none;
}

.request-card__topic {
  display: block;
  width: auto;
  max-width: none;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(36, 33, 29, 0.94);
  font-family: var(--display-font);
  font-size: clamp(1.82rem, 2.25vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
  text-wrap: balance;
}

.request-card__description {
  max-width: 95%;
  margin: 0;
  color: rgba(36, 33, 29, 0.7);
  font-family: var(--display-font);
  font-size: clamp(1.32rem, 1.55vw, 1.56rem);
  font-weight: 500;
  line-height: 1.5;
}

.request-card strong {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: clamp(28px, 2.4vw, 36px);
  padding-top: 18px;
  border-top: 1px solid rgba(157, 125, 54, 0.18);
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.request-card strong::after {
  content: "→";
  display: inline-block;
  transition: transform 240ms ease;
}

.request-card:hover strong::after {
  transform: translateX(4px);
}

@media (max-width: 1040px) {
  .recognition-note {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recognition-note::after {
    position: static;
    display: block;
    width: 100%;
    height: 1px;
    order: 2;
    background: linear-gradient(90deg, rgba(157, 125, 54, 0.04), rgba(157, 125, 54, 0.32), rgba(157, 125, 54, 0.04));
  }

  .recognition-note p {
    order: 1;
  }

  .recognition-note strong {
    order: 3;
    padding-top: 2px;
  }

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

@media (max-width: 680px) {
  .recognition-note {
    gap: 24px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .recognition-note p {
    font-size: clamp(1.35rem, 6.8vw, 1.72rem);
    line-height: 1.48;
  }

  .recognition-note strong {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .request-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .request-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .request-card__topic {
    font-size: clamp(1.62rem, 8vw, 1.94rem);
  }

  .request-card__description {
    max-width: none;
    font-size: clamp(1.18rem, 5.6vw, 1.38rem);
  }
}

/* Luxury pass v58: cohesive tokens, decorative language, and refined rhythm. */
:root {
  --lux-charcoal: #12100e;
  --lux-charcoal-2: #1d1915;
  --lux-ivory: #fbf7ef;
  --lux-cream: #f4eadc;
  --lux-sand: #eadcca;
  --lux-almond: #dfd0bb;
  --lux-taupe: #766958;
  --lux-ink: #28231d;
  --lux-soft-text: rgba(40, 35, 29, 0.72);
  --lux-gold: #b69653;
  --lux-bronze: #80632c;
  --lux-border: rgba(92, 72, 39, 0.15);
  --lux-border-dark: rgba(234, 217, 168, 0.18);
  --lux-radius: 28px;
  --lux-radius-sm: 18px;
  --lux-shadow: 0 24px 70px rgba(48, 39, 29, 0.12);
  --lux-shadow-hover: 0 34px 92px rgba(48, 39, 29, 0.18);
  --lux-ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --lux-fast: 180ms;
  --lux-standard: 280ms;
  --lux-reveal: 640ms;
}

body {
  background:
    radial-gradient(circle at 10% -8%, rgba(182, 150, 83, 0.08), transparent 31rem),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.5), transparent 28rem),
    linear-gradient(135deg, var(--lux-ivory), #f3eadc 56%, var(--lux-ivory));
}

body::before {
  opacity: 0.024;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(46, 37, 27, 0.26) 1px, transparent 0),
    linear-gradient(115deg, rgba(255, 255, 255, 0.38), transparent 42%);
  background-size: 18px 18px, 100% 100%;
  mix-blend-mode: multiply;
}

html:focus-within {
  scroll-behavior: smooth;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid rgba(182, 150, 83, 0.82);
  outline-offset: 4px;
}

.site-header {
  border-bottom: 1px solid transparent;
  transition:
    color var(--lux-standard) ease,
    background var(--lux-standard) ease,
    border-color var(--lux-standard) ease,
    box-shadow var(--lux-standard) ease;
}

.site-header.is-past-hero {
  border-bottom-color: rgba(92, 72, 39, 0.08);
  box-shadow: 0 18px 46px rgba(48, 39, 29, 0.08);
}

.nav a {
  position: relative;
  padding-block: 8px;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  opacity: 0.42;
  transition: transform var(--lux-standard) var(--lux-ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  background:
    radial-gradient(circle at 78% 36%, rgba(182, 150, 83, 0.16), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(128, 99, 44, 0.12), transparent 26rem),
    linear-gradient(135deg, var(--lux-charcoal) 0%, var(--lux-charcoal-2) 50%, #26211b 100%);
}

.hero::before {
  opacity: 0.45;
  background:
    url("assets/ornament-flow.svg") right 8% top 15% / min(38vw, 520px) auto no-repeat,
    radial-gradient(circle at 75% 22%, rgba(232, 209, 155, 0.13), transparent 22rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: min(18vh, 170px);
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(251, 247, 239, 0.07));
}

body:not([data-page="home"]) .hero::before {
  opacity: 0.36;
  background:
    url("assets/ornament-contour.svg") right 8% top 18% / min(24vw, 280px) auto no-repeat,
    radial-gradient(circle at 82% 28%, rgba(232, 209, 155, 0.1), transparent 18rem);
}

.hero__eyebrow,
.section-kicker {
  color: #d7bc78;
  letter-spacing: 0.12em;
}

.hero h1,
.section-heading h2,
.diagnostic-section h2,
.application-section h2,
.final-cta h2,
.deep-note-section h2 {
  text-wrap: balance;
}

.hero p,
.section-heading p,
.diagnostic-section p,
.application-section p,
.story-card p,
.faq-panel p {
  text-wrap: pretty;
}

.hero p:not(.hero__eyebrow),
.section-heading p,
.diagnostic-section p,
.application-section p {
  max-width: 68ch;
}

.button {
  min-height: 52px;
  transition:
    transform var(--lux-standard) var(--lux-ease),
    box-shadow var(--lux-standard) ease,
    border-color var(--lux-standard) ease,
    background var(--lux-standard) ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #ead8a4, #c9a660 54%, #b8914d);
  box-shadow: 0 18px 42px rgba(128, 99, 44, 0.22);
}

.button-primary:hover {
  box-shadow: 0 22px 54px rgba(128, 99, 44, 0.3);
}

.section {
  position: relative;
  overflow: clip;
  padding-block: clamp(54px, 6.4vw, 86px);
}

.section-light,
.diagnostic-section,
.about-full-section,
.faq-section,
.application-section,
.stories-section {
  background:
    radial-gradient(circle at 92% 6%, rgba(182, 150, 83, 0.1), transparent 24rem),
    linear-gradient(135deg, var(--lux-ivory), var(--lux-cream));
}

main > .section:nth-of-type(4n + 2):not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.68), transparent 26rem),
    linear-gradient(135deg, #f8f0e4, #eadcca);
}

main > .section:nth-of-type(4n + 3):not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 86% 12%, rgba(182, 150, 83, 0.1), transparent 23rem),
    linear-gradient(135deg, #fbf7ef, #efe3d1);
}

.section-heading {
  position: relative;
}

.section-heading::before {
  content: "";
  display: block;
  width: clamp(70px, 9vw, 120px);
  height: 22px;
  margin-bottom: 14px;
  background: url("assets/ornament-flow.svg") left center / contain no-repeat;
  opacity: 0.42;
}

.section-dark .section-heading::before,
.results-section .section-heading::before {
  filter: brightness(1.45);
  opacity: 0.34;
}

.section-heading h2 {
  max-width: 920px;
  color: var(--lux-ink);
}

.section-heading p {
  color: var(--lux-soft-text);
  line-height: 1.72;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: #fff;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.request-card,
.story-card,
.diagnostic-cards article,
.symptom-grid article,
.results-grid article,
.faq-accordion article,
.application-form,
.request-nav-grid a {
  border-color: var(--lux-border);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
}

.request-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 104px;
  height: 86px;
  pointer-events: none;
  background: url("assets/ornament-arc.svg") center / contain no-repeat;
  opacity: 0.26;
  transition: transform var(--lux-standard) var(--lux-ease), opacity var(--lux-standard) ease;
}

.request-card:hover::after {
  transform: translate3d(4px, -3px, 0);
  opacity: 0.36;
}

.request-card:hover,
.story-card:hover,
.diagnostic-cards article:hover,
.request-nav-grid a:hover {
  box-shadow: var(--lux-shadow-hover);
}

.deep-note-section h2,
.about-manifesto strong,
.recognition-note strong {
  color: var(--lux-bronze);
}

.about-manifesto strong,
.deep-note-section h2 {
  position: relative;
}

.about-manifesto strong::before,
.deep-note-section h2::before,
.final-cta h2::before {
  content: "“";
  position: absolute;
  top: -0.5em;
  left: -0.12em;
  z-index: 0;
  color: rgba(128, 99, 44, 0.13);
  font-family: var(--display-font);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
}

.story-card {
  position: relative;
  background:
    radial-gradient(circle at 94% 8%, rgba(182, 150, 83, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(239, 225, 203, 0.66));
}

.story-card header {
  border-bottom-color: rgba(128, 99, 44, 0.15);
}

.story-states {
  position: relative;
  align-items: stretch;
}

.story-states::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(128, 99, 44, 0.22), transparent);
}

.story-states div {
  border-radius: var(--lux-radius-sm);
  line-height: 1.68;
}

.story-states div:last-child {
  box-shadow: inset 0 0 0 1px rgba(182, 150, 83, 0.1);
}

.faq-accordion {
  gap: 14px;
}

.faq-accordion article {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(241, 229, 210, 0.58));
}

.faq-accordion button {
  min-height: 62px;
  padding: 20px clamp(20px, 2.5vw, 30px);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  transition: color var(--lux-fast) ease, background var(--lux-fast) ease;
}

.faq-accordion button:hover,
.faq-accordion button:focus-visible {
  color: var(--lux-bronze);
  background: rgba(182, 150, 83, 0.055);
}

.faq-accordion button::after {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  float: right;
  border: 1px solid rgba(128, 99, 44, 0.18);
  border-radius: 50%;
  color: var(--lux-bronze);
  transition: transform var(--lux-standard) var(--lux-ease), border-color var(--lux-standard) ease;
}

.faq-accordion button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-panel {
  transition: grid-template-rows var(--lux-standard) var(--lux-ease);
}

.faq-panel p {
  padding: 0 clamp(20px, 2.5vw, 30px) 24px;
  color: var(--lux-soft-text);
  line-height: 1.76;
}

.diagnostic-section,
.final-cta,
.application-section {
  position: relative;
}

.diagnostic-section::after,
.final-cta::after,
.application-section::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 18px;
  width: min(28vw, 260px);
  height: min(28vw, 260px);
  pointer-events: none;
  background: url("assets/ornament-contour.svg") center / contain no-repeat;
  opacity: 0.18;
}

.diagnostic-cards article {
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 150, 83, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(241, 229, 210, 0.66));
}

.application-form {
  position: relative;
  max-width: 800px;
  border-radius: var(--lux-radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(182, 150, 83, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(241, 229, 210, 0.62));
}

.application-form input,
.application-form textarea {
  min-height: 52px;
  border-radius: 16px;
  border-color: rgba(92, 72, 39, 0.18);
  background: rgba(255, 253, 248, 0.88);
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: rgba(128, 99, 44, 0.58);
  box-shadow: 0 0 0 4px rgba(182, 150, 83, 0.12);
}

.contact-choice label {
  border-color: rgba(92, 72, 39, 0.16);
  background: rgba(255, 253, 248, 0.72);
}

.contact-choice label:hover,
.contact-choice label:focus-within {
  border-color: rgba(128, 99, 44, 0.34);
}

.emotional-break-section,
.results-section {
  background:
    url("assets/ornament-flow.svg") center top 12% / min(72vw, 820px) auto no-repeat,
    radial-gradient(circle at 50% 20%, rgba(182, 150, 83, 0.16), transparent 28rem),
    linear-gradient(135deg, #11100e, #211d18 58%, #151311);
}

.site-footer {
  background:
    radial-gradient(circle at 14% 0%, rgba(182, 150, 83, 0.1), transparent 26rem),
    linear-gradient(135deg, var(--lux-charcoal), #1f1b16);
}

@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    transition:
      opacity var(--lux-reveal) var(--lux-ease),
      transform var(--lux-reveal) var(--lux-ease);
  }

  [data-animate] .request-card,
  [data-animate] .story-card,
  [data-animate] .diagnostic-cards article,
  [data-animate] .faq-accordion article,
  [data-animate] .request-nav-grid a {
    transition-delay: calc(var(--stagger, 0) * 38ms);
  }

  .hero::before {
    animation: luxFloat 18s ease-in-out infinite alternate;
  }
}

@keyframes luxFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

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

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1040px) {
  .section {
    padding-block: clamp(48px, 7vw, 72px);
  }

  .request-card::after {
    width: 86px;
    height: 70px;
    opacity: 0.2;
  }

  .story-states::after {
    display: none;
  }
}

@media (max-width: 680px) {
  body::before {
    opacity: 0.016;
  }

  .site-header {
    padding-block: 14px;
  }

  .section {
    padding-block: 46px;
  }

  .section-heading::before {
    width: 82px;
    margin-bottom: 10px;
  }

  .hero::before,
  body:not([data-page="home"]) .hero::before {
    opacity: 0.18;
    background:
      radial-gradient(circle at 74% 22%, rgba(232, 209, 155, 0.12), transparent 16rem);
  }

  .button {
    min-height: 50px;
  }

  .request-card,
  .story-card,
  .diagnostic-cards article,
  .faq-accordion article,
  .application-form,
  .request-nav-grid a {
    border-radius: 22px;
    box-shadow: 0 16px 44px rgba(48, 39, 29, 0.1);
  }

  .request-card::after,
  .diagnostic-section::after,
  .final-cta::after,
  .application-section::after {
    display: none;
  }

  .faq-accordion button {
    min-height: 56px;
    padding-block: 17px;
  }

  .application-form {
    padding: 22px;
  }

  .contact-choice {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Premium refinement v59: restraint, typography consistency, and hierarchy. */
:root {
  --display-font: "Cormorant Garamond", Georgia, serif;
  --body-font: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--body-font);
}

h1,
h2,
h3,
.brand,
.brand__text,
.section-heading h2,
.request-card__topic,
.about-full-copy h3,
.emotional-break-section h2,
.about-manifesto strong,
.deep-note-section h2 {
  font-family: var(--display-font);
  text-rendering: optimizeLegibility;
}

.hero::before,
body:not([data-page="home"]) .hero::before {
  content: none !important;
  display: none !important;
  background: none !important;
  animation: none !important;
}

.brand {
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.012em;
  line-height: 0.95;
  color: #fff;
  background: linear-gradient(105deg, #fff, #ead9a8 58%, #fff8df);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-header.is-past-hero .brand {
  color: #221e18;
  background: linear-gradient(105deg, #221e18, #7f6228 58%, #31291f);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports (-webkit-background-clip: text) {
  .brand,
  .site-header.is-past-hero .brand {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.nav,
.header-cta,
.button {
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

.nav a {
  font-weight: 850;
  letter-spacing: 0.01em;
}

.nav a::after {
  background: linear-gradient(90deg, rgba(182, 150, 83, 0), rgba(221, 194, 130, 0.92), rgba(128, 99, 44, 0));
  opacity: 1;
}

.header-cta,
.button {
  font-weight: 950;
}

.header-cta {
  border-color: rgba(234, 217, 168, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(234, 217, 168, 0.07)),
    rgba(255, 255, 255, 0.08);
}

.site-header.is-past-hero .header-cta {
  border-color: rgba(128, 99, 44, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(232, 216, 184, 0.34)),
    rgba(255, 255, 255, 0.7);
}

.hero__eyebrow {
  max-width: max-content;
  padding: 9px 14px;
  border: 1px solid rgba(234, 217, 168, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #ead9a8;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
}

body[data-page="home"] .hero h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 5.45vw, 6.2rem);
  line-height: 0.92;
}

.hero__subtitle {
  color: #ead9a8;
  font-weight: 500;
}

.practice-cta-section {
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(22px, 3vw, 34px);
}

.practice-cta-section .section-heading {
  max-width: 780px;
}

.practice-cta-section .section-heading::before {
  display: none;
}

.practice-cta-section .section-kicker {
  margin-bottom: 12px;
}

.practice-cta-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4.4vw, 5.3rem);
  line-height: 0.94;
}

.practice-cta-section p {
  max-width: 62ch;
  color: rgba(40, 35, 29, 0.72);
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  line-height: 1.72;
}

.practice-cta-section .button {
  align-self: start;
  white-space: nowrap;
}

.about-full-section .section-heading h2 {
  max-width: 940px;
  font-size: clamp(2.7rem, 4.2vw, 5.15rem);
  line-height: 0.95;
}

.about-full-section .section-heading::before {
  width: clamp(88px, 10vw, 132px);
}

.about-stats {
  grid-template-columns: minmax(220px, 360px);
  max-width: 380px;
}

.about-stats div {
  min-height: 132px;
  justify-content: center;
}

.about-stats strong {
  color: var(--lux-bronze);
  font-family: var(--display-font);
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 500;
}

.emotional-break-section {
  min-height: min(620px, 68svh);
  padding-block: clamp(82px, 9vw, 128px);
}

.emotional-break-section > div {
  position: relative;
  max-width: 1060px;
  padding: clamp(36px, 5vw, 68px);
  border: 1px solid rgba(234, 217, 168, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 217, 168, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.24);
}

.emotional-break-section h2 {
  max-width: 900px;
  margin: 0 auto 28px;
  color: #fff7df;
  font-size: clamp(3.4rem, 6.4vw, 7.4rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  text-wrap: balance;
}

.emotional-break-section p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 500;
  line-height: 1.74;
}

.section-heading::before {
  opacity: 0.24;
}

.request-card::after {
  opacity: 0.14;
}

.request-card:hover::after {
  opacity: 0.2;
}

.diagnostic-section::after,
.final-cta::after,
.application-section::after {
  opacity: 0.1;
}

@media (max-width: 1040px) {
  .practice-cta-section {
    grid-template-columns: 1fr;
  }

  .practice-cta-section .button {
    align-self: start;
  }

  .about-stats {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .brand {
    font-size: 1.42rem;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.92;
  }

  .hero__eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.35;
    white-space: normal;
  }

  .practice-cta-section h2,
  .about-full-section .section-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.9rem);
  }

  .about-stats div {
    min-height: 112px;
  }

  .emotional-break-section {
    min-height: auto;
    padding-block: 64px;
  }

  .emotional-break-section > div {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .emotional-break-section h2 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
}

/* Refinement v60: tighter editorial rhythm and restored about hierarchy. */
.section {
  padding-block: clamp(46px, 5.7vw, 76px);
}

.section-heading {
  margin-bottom: clamp(24px, 3.2vw, 42px);
}

.section-heading h2 {
  margin-bottom: 14px;
}

.recognition-section .section-heading,
.request-section .section-heading,
.stories-section .section-heading,
.faq-section .section-heading {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.recognition-section .section-heading::before,
.request-section .section-heading::before,
.stories-section .section-heading::before,
.faq-section .section-heading::before {
  margin-inline: auto;
  background-position: center;
}

.intro-text-section {
  padding-block: clamp(42px, 5vw, 68px);
}

.intro-text-section .section-heading {
  max-width: 1180px;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.intro-text-section .section-heading::before {
  display: none;
}

.intro-text-section .section-heading h2 {
  max-width: none;
  font-size: clamp(2.5rem, 4.35vw, 5.15rem);
  line-height: 0.94;
  white-space: nowrap;
}

.intro-text-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.intro-text-grid p {
  max-width: 60ch;
  color: rgba(40, 35, 29, 0.74);
  font-family: var(--display-font);
  font-size: clamp(1.34rem, 1.65vw, 1.72rem);
  font-weight: 500;
  line-height: 1.46;
}

.recognition-pairs,
.story-grid,
.results-grid,
.diagnostic-cards,
.request-grid {
  gap: clamp(16px, 2vw, 26px);
}

.recognition-note {
  margin-top: 0;
}

.about-full-section {
  padding-block: clamp(52px, 6.2vw, 86px);
}

.about-full-section .section-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.about-full-section .section-heading h2 {
  font-size: clamp(2.58rem, 4vw, 4.85rem);
}

.about-full-copy > p,
.about-manifesto p {
  color: rgba(40, 35, 29, 0.75);
  font-family: var(--display-font);
  font-size: clamp(1.26rem, 1.45vw, 1.52rem);
  font-weight: 500;
  line-height: 1.54;
}

.about-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-points span {
  min-height: 96px;
  padding: 18px 18px 18px 20px;
  border-radius: 20px;
  border-color: rgba(128, 99, 44, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 150, 83, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.78), rgba(239, 225, 203, 0.48));
  color: rgba(40, 35, 29, 0.78);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.42;
  box-shadow: 0 16px 42px rgba(48, 39, 29, 0.075);
}

.about-points span::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--lux-bronze), rgba(128, 99, 44, 0));
}

.about-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
  gap: clamp(14px, 2vw, 22px);
}

.about-stats article {
  min-height: 138px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.about-stats div {
  min-height: 138px;
}

.about-stats strong {
  font-size: clamp(2.75rem, 4vw, 4.45rem);
  line-height: 0.92;
}

.results-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.72), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(182, 150, 83, 0.1), transparent 22rem),
    linear-gradient(135deg, #fbf7ef, #eadcca);
  color: var(--lux-ink);
}

.results-section .section-heading h2 {
  color: var(--lux-ink);
}

.results-section .section-heading p {
  color: rgba(40, 35, 29, 0.68);
}

.results-grid article {
  color: rgba(40, 35, 29, 0.78);
  border-color: rgba(128, 99, 44, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 150, 83, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(239, 225, 203, 0.58));
  box-shadow: 0 18px 52px rgba(48, 39, 29, 0.1);
}

.final-cta {
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, auto);
  gap: clamp(24px, 4vw, 58px);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.final-cta p {
  position: relative;
  max-width: 760px;
  margin: 0;
  padding: clamp(20px, 2.4vw, 30px) 0 0 clamp(20px, 2.2vw, 28px);
  border-left: 2px solid rgba(128, 99, 44, 0.38);
  color: rgba(40, 35, 29, 0.82);
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 1.85vw, 2rem);
  font-weight: 500;
  line-height: 1.42;
}

body[data-page="home"] .hero__inner {
  padding-top: clamp(118px, 12vh, 148px);
  padding-bottom: clamp(46px, 7vh, 68px);
}

body[data-page="home"] .hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 5.15vw, 5.95rem);
}

.hero p:not(.hero__eyebrow) {
  max-width: 620px;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .intro-text-section .section-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 1040px) {
  .intro-text-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .section {
    padding-block: 42px;
  }

  .intro-text-section .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .intro-text-grid {
    gap: 14px;
  }

  .intro-text-grid p,
  .about-full-copy > p,
  .about-manifesto p {
    font-size: clamp(1.18rem, 5.4vw, 1.36rem);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats article,
  .about-stats div {
    min-height: 116px;
  }

  .final-cta p {
    padding-left: 18px;
    font-size: clamp(1.24rem, 6vw, 1.54rem);
  }
}

/* Refinement v61: compact about facts, doubts flow, and optical alignment. */
.recognition-section .section-heading {
  transform: translateX(clamp(0px, 1vw, 16px));
}

.stories-section .section-heading {
  max-width: 900px;
}

.stories-section .section-heading p {
  max-width: 690px;
  margin-inline: auto;
  text-align: center;
}

.about-full-grid {
  gap: clamp(24px, 4.6vw, 58px);
}

.about-points,
.about-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-points {
  margin-top: 18px;
}

.about-tags {
  margin-top: 10px;
}

.about-points span,
.about-tags span {
  min-height: 72px;
  padding: 14px 15px 14px 17px;
  border: 1px solid rgba(128, 99, 44, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 150, 83, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.76), rgba(239, 225, 203, 0.46));
  color: rgba(40, 35, 29, 0.78);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.32;
  box-shadow: 0 12px 30px rgba(48, 39, 29, 0.06);
}

.about-points span::before,
.about-tags span::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 9px;
  background: linear-gradient(90deg, var(--lux-bronze), rgba(128, 99, 44, 0));
}

.about-stats {
  margin-top: 22px;
  gap: 12px;
}

.about-stats article {
  min-height: 108px;
  padding: 16px 18px;
}

.about-stats div {
  min-height: 108px;
}

.about-stats strong {
  font-size: clamp(2.35rem, 3.4vw, 3.75rem);
}

.about-stats span {
  margin-top: 6px;
  line-height: 1.28;
}

.about-manifesto {
  margin-top: 26px;
}

.doubts-section {
  position: relative;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 4.6vw, 54px);
  align-items: center;
  padding-block: clamp(46px, 5.6vw, 74px);
  background:
    radial-gradient(circle at 88% 10%, rgba(182, 150, 83, 0.12), transparent 24rem),
    linear-gradient(135deg, #fbf7ef, #eadcca);
}

.doubts-section::before {
  content: "";
  position: absolute;
  top: clamp(38px, 5vw, 62px);
  bottom: clamp(38px, 5vw, 62px);
  left: 47%;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(128, 99, 44, 0.22), transparent);
}

.doubts-section > div:first-child {
  max-width: 560px;
}

.doubts-section h2 {
  margin-bottom: 18px;
  color: var(--lux-ink);
  font-size: clamp(2.5rem, 4vw, 4.75rem);
  line-height: 0.96;
  text-wrap: balance;
}

.doubts-section > div:first-child p {
  margin-bottom: 0;
  color: rgba(40, 35, 29, 0.72);
  font-family: var(--display-font);
  font-size: clamp(1.24rem, 1.45vw, 1.5rem);
  font-weight: 500;
  line-height: 1.52;
}

.doubt-list {
  gap: 0;
  padding-top: 2px;
}

.doubt-list article {
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(128, 99, 44, 0.15);
  border-radius: 0;
  background: transparent;
  color: rgba(40, 35, 29, 0.86);
  font-size: clamp(1.45rem, 1.9vw, 2.08rem);
  line-height: 1.12;
}

.doubt-list p {
  margin: 20px 0 0;
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(128, 99, 44, 0.34);
  color: rgba(40, 35, 29, 0.76);
  font-family: var(--display-font);
  font-size: clamp(1.24rem, 1.45vw, 1.52rem);
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .doubts-section {
    grid-template-columns: 1fr;
  }

  .doubts-section::before {
    display: none;
  }

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

@media (max-width: 680px) {
  .recognition-section .section-heading {
    transform: none;
  }

  .about-points,
  .about-tags,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-points span,
  .about-tags span {
    min-height: auto;
  }

  .doubts-section {
    padding-block: 42px;
  }

  .doubt-list article {
    padding: 14px 0;
  }
}

/* Visual harmony v62: warmer palette, muted gold, softer borders and shadows. */
:root {
  --ink: #302b25;
  --paper: #faf5ec;
  --muted: #81776a;
  --gold: #a9874d;
  --line: rgba(86, 67, 38, 0.14);
  --dark-line: rgba(86, 67, 38, 0.16);
  --champagne: #c8ad72;
  --champagne-light: #e2cf9f;
  --champagne-dark: #967642;
  --gold-readable: #896b35;
  --gold-deep: #72592c;
  --lux-charcoal: #17130f;
  --lux-charcoal-2: #211b15;
  --lux-ivory: #faf5ec;
  --lux-cream: #f2e7d8;
  --lux-sand: #e7d6c0;
  --lux-almond: #d9c7ae;
  --lux-taupe: #746758;
  --lux-ink: #302b25;
  --lux-soft-text: rgba(48, 43, 37, 0.7);
  --lux-gold: #a9874d;
  --lux-bronze: #765e32;
  --lux-border: rgba(91, 69, 37, 0.14);
  --lux-border-dark: rgba(226, 207, 159, 0.16);
  --premium-shadow: 0 20px 54px rgba(49, 39, 29, 0.085);
  --premium-shadow-hover: 0 28px 72px rgba(49, 39, 29, 0.13);
  --lux-shadow: 0 22px 62px rgba(49, 39, 29, 0.095);
  --lux-shadow-hover: 0 30px 78px rgba(49, 39, 29, 0.14);
}

body {
  color: var(--lux-ink);
  background:
    radial-gradient(circle at 10% -8%, rgba(169, 135, 77, 0.07), transparent 31rem),
    radial-gradient(circle at 86% 8%, rgba(255, 251, 243, 0.48), transparent 28rem),
    linear-gradient(135deg, #faf5ec, #f1e5d5 56%, #faf5ec);
}

.hero,
.section-dark,
.video-section.section-dark,
.practice-band,
.emotional-break-section {
  background:
    radial-gradient(circle at 78% 34%, rgba(169, 135, 77, 0.13), transparent 27%),
    radial-gradient(circle at 52% 100%, rgba(94, 64, 40, 0.14), transparent 38%),
    linear-gradient(135deg, #17130f 0%, #211b15 52%, #2b231b 100%);
}

.hero__overlay {
  background:
    radial-gradient(ellipse at 78% 44%, rgba(23, 19, 15, 0) 0%, rgba(23, 19, 15, 0.06) 34%, rgba(23, 19, 15, 0.64) 100%),
    linear-gradient(90deg, rgba(23, 19, 15, 1) 0%, rgba(23, 19, 15, 0.94) 34%, rgba(23, 19, 15, 0.68) 50%, rgba(23, 19, 15, 0.18) 72%, rgba(23, 19, 15, 0.4) 100%),
    linear-gradient(0deg, rgba(23, 19, 15, 0.72) 0%, rgba(23, 19, 15, 0.05) 40%, rgba(23, 19, 15, 0.38) 100%);
}

.site-header {
  background:
    linear-gradient(to bottom, rgba(23, 19, 15, 0.86), rgba(23, 19, 15, 0.36), rgba(23, 19, 15, 0));
}

.site-header.is-past-hero {
  background:
    linear-gradient(to bottom, rgba(250, 245, 236, 0.96), rgba(250, 245, 236, 0.78), rgba(250, 245, 236, 0));
  box-shadow: 0 16px 42px rgba(49, 39, 29, 0.07);
}

.brand {
  background: linear-gradient(105deg, #fff8ea, #dfc996 58%, #f7ead0);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-header.is-past-hero .brand {
  background: linear-gradient(105deg, #302b25, #765e32 58%, #473b2e);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav a::after {
  background: linear-gradient(90deg, rgba(169, 135, 77, 0), rgba(194, 163, 99, 0.88), rgba(118, 94, 50, 0));
}

.hero__eyebrow,
.section-kicker,
.hero__subtitle,
.hero-trust strong,
.emotional-break-section h2 {
  color: #dfc996;
}

.hero p:not(.hero__eyebrow),
.section-dark p,
.emotional-break-section p,
.results-section.section-dark p {
  color: rgba(255, 248, 234, 0.7);
}

.section-heading h2,
.diagnostic-section h2,
.application-section h2,
.final-cta h2,
.request-card__topic,
.about-full-copy h3 {
  color: var(--lux-ink);
}

.section-heading p,
.diagnostic-section p,
.application-section p,
.request-card__description,
.about-full-copy > p,
.about-manifesto p,
.faq-panel p {
  color: var(--lux-soft-text);
}

.button-primary {
  color: #2f281d;
  border-color: rgba(255, 248, 234, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.24), rgba(255, 250, 238, 0) 48%),
    linear-gradient(135deg, #e2cf9f, #c3a262 54%, #a9874d);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 238, 0.36),
    0 16px 36px rgba(118, 94, 50, 0.18);
}

.button-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 238, 0.42),
    0 20px 46px rgba(118, 94, 50, 0.23);
}

.button-light,
.site-header.is-past-hero .header-cta {
  color: var(--lux-ink);
  border-color: rgba(91, 69, 37, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 251, 243, 0.88), rgba(235, 219, 194, 0.34));
}

.button-ghost,
.header-cta {
  border-color: rgba(226, 207, 159, 0.22);
  background: rgba(255, 248, 234, 0.07);
}

.button-ghost:hover,
.header-cta:hover {
  border-color: rgba(226, 207, 159, 0.34);
  background: rgba(255, 248, 234, 0.1);
}

.section-light,
.diagnostic-section,
.about-full-section,
.faq-section,
.application-section,
.stories-section,
.results-section,
.practice-cta-section,
.final-cta,
.soft-cta {
  background:
    radial-gradient(circle at 92% 6%, rgba(169, 135, 77, 0.09), transparent 24rem),
    linear-gradient(135deg, #faf5ec, #f1e5d5);
}

main > .section:nth-of-type(4n + 2):not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 251, 243, 0.62), transparent 26rem),
    linear-gradient(135deg, #f8efe2, #e6d5bd);
}

main > .section:nth-of-type(4n + 3):not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 86% 12%, rgba(169, 135, 77, 0.09), transparent 23rem),
    linear-gradient(135deg, #faf5ec, #ede0ce);
}

.request-card,
.story-card,
.diagnostic-cards article,
.symptom-grid article,
.results-grid article,
.faq-accordion article,
.application-form,
.request-nav-grid a,
.about-points span,
.about-tags span,
.about-stats article,
.doubt-list article {
  border-color: var(--lux-border);
  box-shadow: var(--lux-shadow);
}

.request-card,
.story-card,
.diagnostic-cards article,
.symptom-grid article,
.results-grid article,
.faq-accordion article,
.application-form,
.about-points span,
.about-tags span,
.about-stats article {
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 135, 77, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 251, 243, 0.86), rgba(235, 219, 194, 0.54));
}

.request-card:hover,
.story-card:hover,
.diagnostic-cards article:hover,
.request-nav-grid a:hover {
  box-shadow: var(--lux-shadow-hover);
}

.recognition-note,
.doubts-section,
.final-cta p {
  border-color: rgba(118, 94, 50, 0.2);
}

.recognition-note strong,
.about-manifesto strong,
.deep-note-section h2,
.about-stats strong,
.section-kicker,
.request-card strong,
.story-card header span,
.faq-accordion button::after {
  color: var(--lux-bronze);
}

.application-form input,
.application-form textarea,
.contact-choice label {
  color: var(--lux-ink);
  border-color: rgba(91, 69, 37, 0.16);
  background: rgba(255, 251, 243, 0.82);
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: rgba(118, 94, 50, 0.52);
  box-shadow: 0 0 0 4px rgba(169, 135, 77, 0.11);
}

.site-footer {
  background:
    radial-gradient(circle at 14% 0%, rgba(169, 135, 77, 0.1), transparent 26rem),
    linear-gradient(135deg, #17130f, #231d16);
}

/* Refinement v63: targeted premium corrections without layout restructuring. */
html,
body {
  min-height: 100%;
  background:
    radial-gradient(circle at 12% -10%, rgba(169, 135, 77, 0.07), transparent 30rem),
    linear-gradient(135deg, #faf5ec, #f1e5d5 58%, #faf5ec) !important;
}

body {
  overflow-x: hidden;
}

body::before {
  background:
    radial-gradient(circle at 78% 0%, rgba(169, 135, 77, 0.04), transparent 24rem),
    linear-gradient(180deg, rgba(250, 245, 236, 0.96), rgba(241, 229, 210, 0.92)) !important;
}

body::after {
  display: none !important;
}

.hero .button-primary,
.hero__actions .button-primary,
.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(226, 207, 159, 0.34);
  color: #2f271b;
  background:
    linear-gradient(180deg, rgba(255, 251, 239, 0.42), rgba(255, 251, 239, 0) 45%),
    linear-gradient(135deg, #ead9a8 0%, #c9a962 48%, #98763d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 244, 0.48),
    inset 0 -1px 0 rgba(94, 65, 31, 0.12),
    0 18px 42px rgba(105, 79, 38, 0.22);
  text-shadow: 0 1px 0 rgba(255, 248, 226, 0.28);
}

.hero .button-primary::before,
.hero__actions .button-primary::before,
.header-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.32), transparent 42%, rgba(255, 248, 226, 0.12));
  opacity: 0.72;
  transition: opacity 260ms ease;
}

.hero .button-primary:hover,
.hero__actions .button-primary:hover,
.header-cta:hover {
  border-color: rgba(226, 207, 159, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 251, 239, 0.5), rgba(255, 251, 239, 0) 45%),
    linear-gradient(135deg, #f0dfb3 0%, #cfaf69 48%, #a17e43 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 244, 0.56),
    inset 0 -1px 0 rgba(94, 65, 31, 0.14),
    0 22px 52px rgba(105, 79, 38, 0.26);
}

.hero .button-primary:hover::before,
.hero__actions .button-primary:hover::before,
.header-cta:hover::before {
  opacity: 0.92;
}

.site-header:not(.is-past-hero) .header-cta {
  color: #2f271b;
}

.recognition-section .section-heading {
  transform: translateX(clamp(8px, 1.45vw, 24px));
}

.request-card {
  border-color: rgba(118, 94, 50, 0.18);
  background:
    radial-gradient(circle at 94% 0%, rgba(169, 135, 77, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(255, 251, 243, 0.9), rgba(232, 216, 190, 0.58));
  box-shadow:
    0 20px 58px rgba(49, 39, 29, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.request-card:hover {
  border-color: rgba(118, 94, 50, 0.31);
  background:
    radial-gradient(circle at 94% 0%, rgba(169, 135, 77, 0.17), transparent 32%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(238, 224, 203, 0.72));
  box-shadow:
    0 28px 74px rgba(49, 39, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.request-card__topic {
  color: rgba(48, 43, 37, 0.78);
  font-size: clamp(1.38rem, 1.55vw, 1.64rem);
  line-height: 1.22;
}

.request-card__description {
  max-width: 100%;
  color: rgba(48, 43, 37, 0.94);
  font-size: clamp(1.68rem, 2vw, 2.08rem);
  line-height: 1.2;
}

.doubts-section h2 {
  max-width: 820px;
  line-height: 1;
}

.doubt-list {
  position: relative;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(118, 94, 50, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 135, 77, 0.11), transparent 38%),
    linear-gradient(145deg, rgba(255, 251, 243, 0.58), rgba(232, 216, 190, 0.28));
  box-shadow: 0 18px 50px rgba(49, 39, 29, 0.07);
}

.doubt-list::before {
  content: "“";
  position: absolute;
  top: -0.34em;
  left: clamp(18px, 2vw, 26px);
  color: rgba(118, 94, 50, 0.28);
  font-family: var(--display-font);
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  line-height: 1;
  pointer-events: none;
}

.doubt-list article {
  position: relative;
  padding-left: 30px;
  background: transparent;
  box-shadow: none;
}

.doubt-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--lux-bronze), rgba(118, 94, 50, 0));
}

.video-section.section-dark {
  align-items: center;
}

.video-section.section-dark .video-copy {
  max-width: 620px;
}

.video-section.section-dark .video-copy h2 {
  margin-bottom: 12px;
  color: #f8edd7;
  font-size: clamp(2.6rem, 4.4vw, 5.4rem);
  line-height: 0.96;
}

.video-section.section-dark .video-copy p {
  max-width: 54ch;
  color: rgba(255, 248, 234, 0.74);
  font-size: clamp(1rem, 1.05vw, 1.13rem);
  line-height: 1.62;
}

.video-section.section-dark .video-frame {
  width: min(100%, 860px);
  max-width: 860px;
  justify-self: center;
}

.video-section.section-dark .video-frame video {
  aspect-ratio: 16 / 8.4;
  max-height: min(58vh, 520px);
  object-fit: cover;
}

.video-frame--practice {
  max-width: 430px;
}

.video-frame--practice video {
  aspect-ratio: 16 / 9.3;
  max-height: min(52vh, 430px);
}

@media (max-width: 1040px) {
  .recognition-section .section-heading {
    transform: translateX(clamp(4px, 1vw, 12px));
  }

  .video-section.section-dark .video-frame video,
  .video-frame--practice video {
    aspect-ratio: 16 / 9;
    max-height: 46vh;
  }
}

@media (max-width: 680px) {
  .recognition-section .section-heading {
    transform: translateX(4px);
  }

  .request-card__topic {
    font-size: 1.22rem;
  }

  .request-card__description {
    font-size: clamp(1.45rem, 7vw, 1.82rem);
  }

  .doubt-list {
    padding: 22px 18px;
  }

  .video-section.section-dark .video-frame video,
  .video-frame--practice video {
    aspect-ratio: 16 / 10;
    max-height: 42vh;
  }
}

/* Refinement v64: final targeted copy, hover and typography corrections. */
body[data-page="home"] .hero h1 {
  max-width: 835px;
  font-size: clamp(3.08rem, 4.92vw, 5.72rem);
  line-height: 0.96;
}

.hero__subtitle {
  display: none;
}

.hero-trust div,
.hero-trust div:hover {
  transform: none !important;
}

.hero-trust div {
  isolation: auto;
  contain: none;
  overflow: hidden;
  will-change: auto;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, rgba(226, 207, 159, 0.055), rgba(255, 255, 255, 0.015));
  background-clip: padding-box;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.hero-trust div::before,
.hero-trust div::after {
  display: none !important;
  content: none !important;
}

.hero-trust div:hover {
  border-color: rgba(226, 207, 159, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(226, 207, 159, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 58px rgba(0, 0, 0, 0.22);
}

.recognition-section .section-heading {
  transform: translateX(clamp(14px, 2.05vw, 34px));
}

.request-card__topic {
  font-size: clamp(1.66rem, 1.95vw, 2.04rem);
  line-height: 1.14;
}

.practice-cta-section p {
  max-width: 66ch;
  color: rgba(48, 43, 37, 0.76);
  font-family: var(--display-font);
  font-size: clamp(1.24rem, 1.48vw, 1.52rem);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
}

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

.doubts-section > div:first-child {
  max-width: 700px;
}

.doubt-list--reassurance {
  display: block;
}

.doubt-list--reassurance::before {
  color: rgba(118, 94, 50, 0.2);
}

.doubt-list--reassurance p {
  margin: 0;
  padding: clamp(18px, 2.2vw, 28px) 0 0;
  border-left: 0;
  color: rgba(48, 43, 37, 0.82);
  font-family: var(--display-font);
  font-size: clamp(1.42rem, 1.85vw, 2.05rem);
  font-weight: 500;
  line-height: 1.42;
  text-wrap: pretty;
}

@media (max-width: 1040px) {
  .recognition-section .section-heading {
    transform: translateX(clamp(8px, 1.4vw, 18px));
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .hero h1 {
    font-size: clamp(2.68rem, 12.6vw, 3.7rem);
    line-height: 0.98;
  }

  .recognition-section .section-heading {
    transform: translateX(6px);
  }

  .request-card__topic {
    font-size: clamp(1.5rem, 7vw, 1.82rem);
  }

  .practice-cta-section p,
  .doubt-list--reassurance p {
    font-size: clamp(1.2rem, 5.6vw, 1.42rem);
  }
}

/* Hero reference pass v65: header, title accent and stable statistics only. */
body[data-page="home"] .site-header {
  padding-top: clamp(16px, 1.55vw, 28px);
  padding-bottom: clamp(12px, 1.2vw, 20px);
  color: rgba(255, 252, 244, 0.92);
  background:
    linear-gradient(to bottom, rgba(13, 12, 10, 0.9), rgba(13, 12, 10, 0.34), rgba(13, 12, 10, 0));
  box-shadow: none;
}

body[data-page="home"] .brand {
  color: #ead8a6;
  background: linear-gradient(105deg, #f8ecd0, #d4b672 56%, #fff3d2);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.62rem, 2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

body[data-page="home"] .nav a {
  color: rgba(255, 252, 244, 0.9);
  font-weight: 780;
  letter-spacing: 0.002em;
}

body[data-page="home"] .nav a::after {
  background: linear-gradient(90deg, rgba(179, 137, 62, 0), rgba(232, 202, 130, 0.95), rgba(179, 137, 62, 0));
}

body[data-page="home"] .header-cta {
  color: #241b10;
  border-color: rgba(255, 237, 181, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 246, 0.7), rgba(255, 237, 186, 0.08) 48%),
    linear-gradient(135deg, #fff1bd 0%, #d9ae5c 54%, #b78439 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 0 0 1px rgba(255, 221, 139, 0.14),
    0 12px 30px rgba(214, 162, 70, 0.32);
}

body[data-page="home"] .header-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 248, 0.82), rgba(255, 239, 194, 0.12) 48%),
    linear-gradient(135deg, #fff4c7 0%, #e0b966 54%, #bf8f43 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 0 1px rgba(255, 226, 151, 0.18),
    0 16px 38px rgba(214, 162, 70, 0.36);
}

body[data-page="home"] .hero {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 40%, rgba(169, 135, 77, 0.18), transparent 24%),
    radial-gradient(circle at 45% 92%, rgba(122, 75, 39, 0.14), transparent 34%),
    linear-gradient(135deg, #0c0b09 0%, #17140f 48%, #252017 100%);
}

body[data-page="home"] .hero__overlay {
  background:
    radial-gradient(ellipse at 78% 44%, rgba(12, 11, 9, 0) 0%, rgba(12, 11, 9, 0.08) 30%, rgba(12, 11, 9, 0.72) 100%),
    linear-gradient(90deg, rgba(12, 11, 9, 0.98) 0%, rgba(12, 11, 9, 0.94) 33%, rgba(12, 11, 9, 0.6) 52%, rgba(12, 11, 9, 0.15) 74%, rgba(12, 11, 9, 0.42) 100%),
    linear-gradient(180deg, rgba(12, 11, 9, 0.18) 0%, rgba(12, 11, 9, 0) 38%, rgba(12, 11, 9, 0.66) 100%);
}

body[data-page="home"] .hero__image {
  object-position: 78% 50%;
  filter: saturate(1.12) contrast(1.1) brightness(0.92);
}

body[data-page="home"] .hero__inner {
  width: min(1280px, calc(100% - 44px));
  padding-top: clamp(118px, 13vh, 158px);
  padding-bottom: clamp(28px, 5vh, 58px);
}

body[data-page="home"] .hero__eyebrow {
  max-width: min(100%, 680px);
  margin-bottom: clamp(28px, 3.2vw, 48px);
  padding: 12px 18px;
  border: 1px solid rgba(212, 174, 98, 0.52);
  border-radius: 18px;
  background: rgba(20, 18, 14, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 220, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.22);
  color: rgba(255, 252, 244, 0.92);
  font-family: var(--body-font);
  font-size: clamp(0.86rem, 1vw, 1.06rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

body[data-page="home"] .hero__eyebrow::before,
body[data-page="home"] .hero__eyebrow::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .hero h1 {
  display: grid;
  max-width: min(940px, 58vw);
  margin: 0 0 clamp(20px, 2.4vw, 34px);
  color: #fffaf0;
  font-family: var(--display-font);
  font-size: clamp(4rem, 5.62vw, 7.25rem);
  font-weight: 500;
  letter-spacing: 0.002em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero__title-main {
  display: block;
}

.hero__title-accent {
  position: relative;
  display: block;
  width: fit-content;
  max-width: min(960px, 66vw);
  margin-top: clamp(2px, 0.5vw, 8px);
  color: #d8b262;
  font-family: "Apple Chancery", "Snell Roundhand", "Cormorant Garamond", cursive;
  font-size: clamp(2.74rem, 4.18vw, 5.34rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.96;
  text-shadow: 0 0 20px rgba(216, 178, 98, 0.18);
}

.hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0.03em;
  bottom: -0.1em;
  width: min(13.5em, 92%);
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 178, 98, 0.95), rgba(248, 220, 142, 0.42), transparent);
  transform: rotate(-3deg);
  transform-origin: left center;
}

body[data-page="home"] .hero p:not(.hero__eyebrow) {
  max-width: 760px;
  color: rgba(255, 252, 244, 0.76);
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  line-height: 1.7;
}

body[data-page="home"] .hero__actions {
  gap: 20px;
  margin-top: clamp(24px, 3.1vw, 42px);
}

body[data-page="home"] .hero .button-primary {
  color: #21180d;
  border-color: rgba(255, 233, 171, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 246, 0.74), rgba(255, 237, 186, 0.08) 48%),
    linear-gradient(135deg, #fff0b7 0%, #d7ab5b 55%, #b8853b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 38px rgba(214, 162, 70, 0.31);
}

body[data-page="home"] .hero .button-ghost {
  color: rgba(255, 252, 244, 0.94);
  border-color: rgba(212, 174, 98, 0.54);
  background: rgba(12, 11, 9, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 247, 220, 0.06);
}

body[data-page="home"] .hero-trust {
  gap: 16px;
  margin-top: clamp(18px, 2.1vw, 30px);
}

body[data-page="home"] .hero-trust div,
body[data-page="home"] .hero-trust div:hover {
  transform: none !important;
}

body[data-page="home"] .hero-trust div {
  min-width: 0;
  width: clamp(150px, 13.3vw, 245px);
  min-height: clamp(94px, 7vw, 126px);
  padding: clamp(18px, 1.8vw, 28px);
  border: 1px solid rgba(212, 174, 98, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 247, 220, 0.055), rgba(255, 247, 220, 0.015)),
    rgba(12, 11, 9, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 220, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  contain: none !important;
  isolation: auto !important;
  will-change: auto !important;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

body[data-page="home"] .hero-trust div::before,
body[data-page="home"] .hero-trust div::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .hero-trust div:hover {
  border-color: rgba(232, 202, 130, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 247, 220, 0.075), rgba(255, 247, 220, 0.02)),
    rgba(12, 11, 9, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 220, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.2);
}

body[data-page="home"] .hero-trust strong {
  color: #e2c37c;
  font-family: var(--display-font);
  font-size: clamp(2.25rem, 3.2vw, 4.05rem);
  font-weight: 500;
  line-height: 0.9;
}

body[data-page="home"] .hero-trust span {
  margin-top: 8px;
  color: rgba(255, 252, 244, 0.78);
  font-size: clamp(0.68rem, 0.82vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__inner {
    width: min(1450px, calc(100% - 96px));
  }

  body[data-page="home"] .hero h1 {
    max-width: 990px;
  }
}

@media (max-width: 1180px) {
  body[data-page="home"] .hero h1 {
    max-width: 62vw;
    font-size: clamp(3.42rem, 5.6vw, 5.4rem);
  }

  .hero__title-accent {
    max-width: 72vw;
    font-size: clamp(2.38rem, 4.25vw, 4.2rem);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  body[data-page="home"] .hero__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(58vh, 560px);
    margin-top: 78px;
    object-position: 50% 18%;
    opacity: 0.92;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
  }

  body[data-page="home"] .hero__overlay {
    background:
      linear-gradient(180deg, rgba(12, 11, 9, 0.18) 0%, rgba(12, 11, 9, 0.74) 38%, rgba(12, 11, 9, 0.98) 100%);
  }

  body[data-page="home"] .hero__inner {
    position: relative;
    width: min(100% - 34px, 720px);
    padding-top: 22px;
    padding-bottom: 24px;
  }

  body[data-page="home"] .hero h1,
  .hero__title-accent {
    max-width: 100%;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(3rem, 10vw, 5.2rem);
  }

  .hero__title-accent {
    font-size: clamp(2.22rem, 8.4vw, 3.85rem);
  }

  body[data-page="home"] .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="home"] .hero-trust div {
    width: auto;
  }
}

@media (max-width: 520px) {
  body[data-page="home"] .site-header {
    padding-inline: 16px;
  }

  body[data-page="home"] .hero__image {
    height: 48vh;
    min-height: 320px;
    object-position: 54% 18%;
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: 18px;
    padding: 10px 13px;
    font-size: 0.72rem;
    letter-spacing: 0.025em;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.62rem, 12.6vw, 3.5rem);
    line-height: 0.96;
  }

  .hero__title-accent {
    margin-top: 6px;
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  body[data-page="home"] .hero__actions {
    gap: 12px;
  }

  body[data-page="home"] .hero-trust {
    grid-template-columns: 1fr;
  }

body[data-page="home"] .hero-trust div {
    min-height: 84px;
  }
}

/* Hero reference fit v66: compact approved first screen only. */
body[data-page="home"] .site-header {
  padding-top: clamp(12px, 1.2vw, 22px);
  padding-bottom: clamp(9px, 0.85vw, 15px);
  padding-inline: clamp(24px, 5vw, 72px);
}

body[data-page="home"] .brand {
  font-size: clamp(1.5rem, 1.72vw, 2.05rem);
}

body[data-page="home"] .nav {
  gap: clamp(22px, 2.6vw, 50px);
}

body[data-page="home"] .nav a {
  font-size: clamp(0.9rem, 0.84vw, 1rem);
  letter-spacing: 0;
}

body[data-page="home"] .header-cta {
  min-height: 46px;
  padding: 0 28px;
  font-size: 0.98rem;
}

body[data-page="home"] .hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 39%, rgba(155, 124, 73, 0.18), transparent 25%),
    radial-gradient(circle at 45% 96%, rgba(113, 72, 38, 0.11), transparent 31%),
    linear-gradient(135deg, #0c0b09 0%, #15120e 52%, #211c14 100%);
}

body[data-page="home"] .hero__overlay {
  background:
    radial-gradient(ellipse at 78% 42%, rgba(12, 11, 9, 0) 0%, rgba(12, 11, 9, 0.1) 31%, rgba(12, 11, 9, 0.76) 100%),
    linear-gradient(90deg, rgba(12, 11, 9, 0.99) 0%, rgba(12, 11, 9, 0.92) 34%, rgba(12, 11, 9, 0.54) 52%, rgba(12, 11, 9, 0.12) 75%, rgba(12, 11, 9, 0.42) 100%),
    linear-gradient(180deg, rgba(12, 11, 9, 0.12) 0%, rgba(12, 11, 9, 0) 42%, rgba(12, 11, 9, 0.72) 100%);
}

body[data-page="home"] .hero__image {
  width: min(48vw, 820px);
  height: min(89svh, 900px);
  top: auto;
  bottom: 0;
  left: auto;
  right: clamp(-18px, 1.4vw, 38px);
  object-position: 50% 54%;
  filter: saturate(1.12) contrast(1.08) brightness(0.9);
}

body[data-page="home"] .hero__inner {
  width: min(1460px, calc(100% - 132px));
  padding-top: clamp(86px, 12.4svh, 126px);
  padding-bottom: clamp(16px, 2.2svh, 30px);
}

body[data-page="home"] .hero__eyebrow {
  width: fit-content;
  max-width: min(100%, 610px);
  margin-bottom: clamp(24px, 3.1svh, 34px);
  padding: 10px 18px;
  border-color: rgba(199, 159, 86, 0.56);
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 239, 190, 0.055), rgba(255, 239, 190, 0.01)),
    rgba(18, 16, 13, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 213, 0.08),
    0 9px 24px rgba(0, 0, 0, 0.18);
  color: rgba(255, 250, 238, 0.9);
  font-size: clamp(0.82rem, 0.86vw, 0.98rem);
  font-weight: 650;
  letter-spacing: 0.018em;
  text-transform: none;
}

body[data-page="home"] .hero h1 {
  display: block;
  max-width: min(860px, 60vw);
  margin: 0 0 clamp(14px, 1.8svh, 22px);
  font-size: clamp(3.52rem, 5vw, 4.72rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: normal;
}

body[data-page="home"] .hero__title-main,
body[data-page="home"] .hero__title-main span,
body[data-page="home"] .hero__title-accent,
body[data-page="home"] .hero__title-accent span {
  display: block;
}

body[data-page="home"] .hero__title-main span,
body[data-page="home"] .hero__title-accent span {
  white-space: nowrap;
}

body[data-page="home"] .hero__title-accent {
  max-width: min(780px, 58vw);
  margin-top: clamp(4px, 0.85svh, 8px);
  color: #d2aa5d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.34rem, 3.42vw, 3.28rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-shadow: 0 0 13px rgba(210, 170, 93, 0.11);
}

body[data-page="home"] .hero__title-accent::after {
  left: 0.01em;
  bottom: -0.12em;
  width: min(7.8em, 54%);
  height: 0.055em;
  background: linear-gradient(90deg, rgba(204, 160, 82, 0.92), rgba(239, 207, 132, 0.42), transparent);
  transform: rotate(-2.4deg);
}

body[data-page="home"] .hero p:not(.hero__eyebrow) {
  max-width: min(720px, 53vw);
  margin-top: clamp(18px, 2.1svh, 24px);
  color: rgba(255, 250, 238, 0.78);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.55;
}

body[data-page="home"] .hero__actions {
  gap: 16px;
  margin-top: clamp(20px, 2.45svh, 28px);
}

body[data-page="home"] .hero .button-primary,
body[data-page="home"] .hero .button-ghost {
  min-height: 52px;
  padding: 0 26px;
  font-size: clamp(0.95rem, 0.95vw, 1.06rem);
}

body[data-page="home"] .hero-trust {
  gap: 12px;
  margin-top: clamp(15px, 2svh, 22px);
}

body[data-page="home"] .hero-trust div {
  width: clamp(150px, 14.5vw, 220px);
  min-height: clamp(78px, 10.4svh, 104px);
  padding: clamp(13px, 1.45vw, 21px);
  border-color: rgba(199, 159, 86, 0.28);
  border-radius: 10px;
}

body[data-page="home"] .hero-trust strong {
  font-size: clamp(1.92rem, 2.8vw, 3.35rem);
}

body[data-page="home"] .hero-trust span {
  margin-top: 5px;
  font-size: clamp(0.64rem, 0.7vw, 0.78rem);
  letter-spacing: 0.03em;
  line-height: 1.18;
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__inner {
    width: min(1540px, calc(100% - 110px));
    padding-top: clamp(98px, 12.2svh, 138px);
  }

  body[data-page="home"] .hero h1 {
    max-width: 980px;
    font-size: clamp(4rem, 4.45vw, 5.05rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(2.75rem, 3.05vw, 3.72rem);
  }
}

@media (max-height: 790px) and (min-width: 1100px) {
  body[data-page="home"] .site-header {
    padding-top: 11px;
    padding-bottom: 8px;
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(76px, 10.8svh, 92px);
    padding-bottom: 14px;
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: 20px;
    padding-block: 8px;
  }

  body[data-page="home"] .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(3.3rem, 4.62vw, 4.08rem);
    line-height: 1.03;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(2.12rem, 3.05vw, 2.72rem);
    line-height: 1.02;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  body[data-page="home"] .hero__actions {
    margin-top: 18px;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 48px;
  }

  body[data-page="home"] .hero-trust {
    margin-top: 14px;
  }

  body[data-page="home"] .hero-trust div {
    min-height: 78px;
    padding: 12px 16px;
  }

  body[data-page="home"] .hero-trust strong {
    font-size: clamp(1.88rem, 2.5vw, 2.8rem);
  }

  body[data-page="home"] .hero__image {
    height: min(86svh, 790px);
  }
}

@media (max-width: 1180px) {
  body[data-page="home"] .hero__inner {
    width: min(100% - 52px, 1040px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(680px, 63vw);
    font-size: clamp(3.02rem, 5.25vw, 4.12rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(650px, 64vw);
    font-size: clamp(2.02rem, 3.55vw, 2.86rem);
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: min(620px, 58vw);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .hero {
    min-height: auto;
    overflow: visible;
  }

  body[data-page="home"] .hero__image {
    width: 100%;
    height: min(54vh, 520px);
    margin-top: 72px;
    object-position: 52% 18%;
  }

  body[data-page="home"] .hero__inner {
    width: min(100% - 34px, 720px);
    padding-top: 18px;
    padding-bottom: 24px;
  }

  body[data-page="home"] .hero h1,
  body[data-page="home"] .hero__title-accent,
  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: 100%;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.84rem, 9.4vw, 4.9rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(2rem, 7.4vw, 3.35rem);
  }

  body[data-page="home"] .hero__title-main span,
  body[data-page="home"] .hero__title-accent span {
    display: inline;
    white-space: normal;
  }

  body[data-page="home"] .hero__title-main span + span::before,
  body[data-page="home"] .hero__title-accent span + span::before {
    content: " ";
  }
}

@media (max-width: 520px) {
  body[data-page="home"] .hero__image {
    height: 44vh;
    min-height: 292px;
  }

  body[data-page="home"] .hero__eyebrow {
    padding: 9px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.01em;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.38rem, 11.4vw, 3.16rem);
    line-height: 1;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(1.82rem, 9vw, 2.62rem);
    line-height: 1.08;
  }

  body[data-page="home"] .hero__title-accent::after {
    width: min(6.7em, 62%);
  }

body[data-page="home"] .hero p:not(.hero__eyebrow) {
    font-size: 0.94rem;
  }
}

/* Hero approved reference pass v67: visual scale and composition only. */
@media (min-width: 901px) {
  body[data-page="home"] .site-header {
    height: auto;
    padding-inline: clamp(54px, 5.1vw, 86px);
    padding-top: clamp(14px, 1.35vw, 24px);
    padding-bottom: clamp(10px, 1vw, 18px);
  }

  body[data-page="home"] .brand {
    font-size: clamp(1.72rem, 1.68vw, 2.18rem);
    line-height: 1;
  }

  body[data-page="home"] .nav {
    gap: clamp(28px, 2.85vw, 58px);
  }

  body[data-page="home"] .nav a {
    font-size: clamp(0.94rem, 0.86vw, 1.04rem);
    font-weight: 760;
  }

  body[data-page="home"] .header-cta {
    min-height: clamp(44px, 4.25vw, 54px);
    padding-inline: clamp(24px, 1.75vw, 32px);
    font-size: clamp(0.96rem, 0.9vw, 1.08rem);
  }

  body[data-page="home"] .hero {
    min-height: 100svh;
    background:
      radial-gradient(circle at 80% 38%, rgba(169, 132, 75, 0.24), transparent 27%),
      radial-gradient(circle at 88% 73%, rgba(114, 54, 27, 0.18), transparent 25%),
      radial-gradient(circle at 20% 92%, rgba(128, 82, 39, 0.1), transparent 30%),
      linear-gradient(135deg, #0a0908 0%, #15120e 50%, #211c14 100%);
  }

  body[data-page="home"] .hero__overlay {
    background:
      radial-gradient(ellipse at 76% 43%, rgba(226, 185, 104, 0.08) 0%, rgba(76, 47, 26, 0.09) 28%, rgba(11, 10, 8, 0.52) 76%),
      linear-gradient(90deg, rgba(10, 9, 8, 0.99) 0%, rgba(10, 9, 8, 0.9) 34%, rgba(10, 9, 8, 0.42) 53%, rgba(10, 9, 8, 0.04) 76%, rgba(10, 9, 8, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 9, 8, 0.08) 0%, rgba(10, 9, 8, 0) 38%, rgba(10, 9, 8, 0.73) 100%);
  }

  body[data-page="home"] .hero__image {
    width: min(49.5vw, 870px);
    height: min(91svh, 950px);
    right: clamp(-34px, 1.1vw, 26px);
    object-position: 50% 52%;
    filter: saturate(1.16) contrast(1.12) brightness(0.92);
  }

  body[data-page="home"] .hero__inner {
    width: min(1490px, calc(100% - clamp(108px, 10.2vw, 172px)));
    padding-top: clamp(88px, 10.2svh, 122px);
    padding-bottom: clamp(14px, 2svh, 24px);
  }

  body[data-page="home"] .hero__eyebrow {
    max-width: min(100%, 610px);
    margin-bottom: clamp(24px, 2.7svh, 36px);
    padding: clamp(8px, 0.78vw, 11px) clamp(16px, 1.25vw, 22px);
    border-radius: 18px;
    border-color: rgba(205, 164, 91, 0.58);
    background:
      linear-gradient(180deg, rgba(255, 238, 190, 0.07), rgba(255, 238, 190, 0.012)),
      rgba(14, 13, 11, 0.66);
    box-shadow:
      inset 0 1px 0 rgba(255, 246, 217, 0.08),
      0 8px 22px rgba(0, 0, 0, 0.16);
    color: rgba(255, 250, 238, 0.9);
    font-size: clamp(0.82rem, 0.82vw, 1rem);
    font-weight: 650;
    letter-spacing: 0.012em;
    text-transform: none;
  }

  body[data-page="home"] .hero h1 {
    max-width: min(800px, 53vw);
    margin-bottom: clamp(13px, 1.55svh, 20px);
    font-size: clamp(3.28rem, 4.18vw, 4.35rem);
    line-height: 1.06;
    letter-spacing: 0;
  }

  body[data-page="home"] .hero__title-main span,
  body[data-page="home"] .hero__title-accent span {
    white-space: nowrap;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(800px, 54vw);
    margin-top: clamp(2px, 0.45svh, 7px);
    color: #d4ad62;
    font-family: "Marck Script", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.58rem, 3.42vw, 3.88rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.012em;
    line-height: 0.96;
    text-shadow: 0 0 18px rgba(212, 173, 98, 0.16);
  }

  body[data-page="home"] .hero__title-accent::after {
    left: 0;
    bottom: -0.2em;
    width: min(8.6em, 46%);
    height: 0.22em;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 42' preserveAspectRatio='none'%3E%3Cpath d='M4 31 C58 11 126 11 182 19 C229 26 277 22 356 8' fill='none' stroke='%23d5aa5b' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M5 34 C74 18 154 18 218 23 C265 27 305 19 354 12' fill='none' stroke='%23f0d188' stroke-opacity='.32' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E")
      left center / 100% 100% no-repeat;
    transform: none;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: min(690px, 45vw);
    margin-top: clamp(18px, 2svh, 26px);
    color: rgba(255, 250, 238, 0.76);
    font-size: clamp(0.98rem, 0.98vw, 1.16rem);
    line-height: 1.54;
  }

  body[data-page="home"] .hero__actions {
    width: fit-content;
    gap: clamp(14px, 1.2vw, 22px);
    margin-top: clamp(22px, 2.45svh, 32px);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: clamp(48px, 4.65vw, 58px);
    padding-inline: clamp(24px, 2.1vw, 34px);
    font-size: clamp(0.95rem, 0.95vw, 1.08rem);
  }

  body[data-page="home"] .hero-trust {
    width: fit-content;
    gap: clamp(12px, 1.05vw, 18px);
    margin-top: clamp(14px, 1.85svh, 24px);
  }

  body[data-page="home"] .hero-trust div {
    width: clamp(158px, 12.5vw, 230px);
    min-height: clamp(76px, 8.6svh, 108px);
    padding: clamp(12px, 1.1vw, 20px) clamp(14px, 1.25vw, 22px);
    border-radius: 9px;
    border-color: rgba(205, 164, 91, 0.3);
    background:
      linear-gradient(145deg, rgba(255, 236, 184, 0.05), rgba(255, 236, 184, 0.01)),
      rgba(12, 11, 9, 0.32);
    box-shadow:
      inset 0 1px 0 rgba(255, 245, 213, 0.055),
      0 14px 28px rgba(0, 0, 0, 0.16);
  }

  body[data-page="home"] .hero-trust strong {
    font-size: clamp(1.95rem, 2.45vw, 3.1rem);
    line-height: 0.9;
  }

  body[data-page="home"] .hero-trust span {
    margin-top: 5px;
    font-size: clamp(0.62rem, 0.64vw, 0.76rem);
    letter-spacing: 0.026em;
    line-height: 1.14;
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__inner {
    padding-top: clamp(92px, 10.4svh, 122px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(850px, 51vw);
    font-size: clamp(3.7rem, 4.1vw, 4.8rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(3rem, 3.3vw, 4.08rem);
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: min(760px, 46vw);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .hero__inner {
    padding-top: clamp(74px, 9.8svh, 88px);
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: clamp(18px, 2.25svh, 24px);
    padding-block: 7px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(3.05rem, 4vw, 3.88rem);
    margin-bottom: 10px;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(2.35rem, 3.08vw, 2.98rem);
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.46;
  }

  body[data-page="home"] .hero__actions {
    margin-top: 17px;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 46px;
  }

  body[data-page="home"] .hero-trust {
    margin-top: 12px;
  }

  body[data-page="home"] .hero-trust div {
    min-height: 74px;
    padding-block: 11px;
  }

  body[data-page="home"] .hero-trust strong {
    font-size: clamp(1.78rem, 2.3vw, 2.62rem);
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .site-header {
    padding-inline: 34px;
  }

  body[data-page="home"] .hero__inner {
    width: min(100% - 68px, 1080px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(720px, 60vw);
    font-size: clamp(3rem, 4.7vw, 4rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(680px, 61vw);
    font-size: clamp(2.32rem, 3.6vw, 3.1rem);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__title-accent {
    font-family: "Marck Script", "Cormorant Garamond", Georgia, serif;
    font-style: normal;
  }
}

/* Hero reference pass v69: tighter reference composition and Great Vibes accent. */
@media (min-width: 901px) {
  body[data-page="home"] .site-header {
    padding-inline: clamp(54px, 4.95vw, 82px);
    padding-top: clamp(13px, 1.25vw, 22px);
    padding-bottom: clamp(9px, 0.9vw, 15px);
  }

  body[data-page="home"] .header-cta {
    min-height: clamp(44px, 4.25vw, 54px);
    min-width: 0;
    padding-inline: clamp(18px, 1.28vw, 25px);
    border-radius: 999px;
    font-size: clamp(0.94rem, 0.88vw, 1.04rem);
    letter-spacing: -0.01em;
  }

  body[data-page="home"] .hero {
    background:
      radial-gradient(circle at 72% 38%, rgba(218, 175, 96, 0.26), rgba(58, 42, 24, 0.13) 18%, transparent 36%),
      radial-gradient(circle at 90% 72%, rgba(137, 62, 31, 0.17), transparent 28%),
      radial-gradient(circle at 17% 90%, rgba(166, 117, 61, 0.08), transparent 31%),
      linear-gradient(135deg, #090807 0%, #14110d 49%, #201a12 100%);
  }

  body[data-page="home"] .hero__overlay {
    background:
      radial-gradient(ellipse at 75% 39%, rgba(236, 190, 102, 0.14) 0%, rgba(151, 102, 47, 0.08) 23%, rgba(10, 9, 7, 0.58) 70%),
      linear-gradient(90deg, rgba(9, 8, 7, 0.99) 0%, rgba(9, 8, 7, 0.92) 33%, rgba(9, 8, 7, 0.39) 53%, rgba(9, 8, 7, 0.02) 74%, rgba(9, 8, 7, 0.36) 100%),
      linear-gradient(180deg, rgba(9, 8, 7, 0.06) 0%, rgba(9, 8, 7, 0) 36%, rgba(9, 8, 7, 0.74) 100%);
  }

  body[data-page="home"] .hero__image {
    width: min(54.5vw, 960px);
    height: min(95svh, 1040px);
    right: clamp(-74px, -3.4vw, -30px);
    object-position: 50% 51%;
    filter: saturate(1.18) contrast(1.14) brightness(0.94);
  }

  body[data-page="home"] .hero__inner {
    width: min(1510px, calc(100% - clamp(72px, 7.1vw, 122px)));
    padding-top: clamp(76px, 9.2svh, 106px);
    padding-bottom: clamp(12px, 1.65svh, 22px);
  }

  body[data-page="home"] .hero__eyebrow {
    max-width: min(100%, 585px);
    margin-bottom: clamp(21px, 2.45svh, 31px);
    padding: clamp(8px, 0.74vw, 10px) clamp(16px, 1.18vw, 20px);
    border-radius: 17px;
    border-color: rgba(211, 171, 92, 0.6);
    background:
      linear-gradient(180deg, rgba(255, 236, 185, 0.075), rgba(255, 236, 185, 0.01)),
      rgba(12, 11, 9, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 247, 220, 0.08),
      0 8px 21px rgba(0, 0, 0, 0.18);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(760px, 50vw);
    margin-bottom: clamp(11px, 1.25svh, 17px);
    font-size: clamp(3.02rem, 3.86vw, 4.08rem);
    line-height: 1.055;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(790px, 52vw);
    margin-top: clamp(1px, 0.32svh, 5px);
    font-family: "Great Vibes", "Cormorant Garamond", Georgia, cursive;
    font-size: clamp(3.38rem, 4.55vw, 5.45rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.78;
    color: transparent;
    background: linear-gradient(105deg, #f7dc96 0%, #d2a45a 42%, #b98436 67%, #f1cf79 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 13px rgba(230, 184, 91, 0.24),
      0 7px 18px rgba(89, 52, 18, 0.2);
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: -0.04em;
  }

  body[data-page="home"] .hero__title-accent::after {
    bottom: -0.14em;
    width: min(8.15em, 45%);
    height: 0.19em;
    filter: drop-shadow(0 0 9px rgba(224, 177, 76, 0.24));
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: min(650px, 43vw);
    margin-top: clamp(17px, 1.75svh, 23px);
    font-size: clamp(0.96rem, 0.92vw, 1.08rem);
    line-height: 1.52;
  }

  body[data-page="home"] .hero__actions {
    margin-top: clamp(20px, 2.15svh, 29px);
  }

  body[data-page="home"] .hero-trust {
    margin-top: clamp(13px, 1.65svh, 21px);
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__inner {
    width: min(1570px, calc(100% - clamp(96px, 8.1vw, 154px)));
    padding-top: clamp(86px, 9.5svh, 114px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(800px, 49vw);
    font-size: clamp(3.58rem, 3.9vw, 4.6rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(870px, 52vw);
    font-size: clamp(4.25rem, 4.35vw, 5.65rem);
  }

  body[data-page="home"] .hero__image {
    width: min(55vw, 1010px);
    right: clamp(-70px, -2.1vw, -28px);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .hero__inner {
    padding-top: clamp(70px, 8.9svh, 82px);
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: clamp(17px, 2.05svh, 22px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(735px, 50vw);
    font-size: clamp(2.92rem, 3.72vw, 3.68rem);
    margin-bottom: 8px;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(3.05rem, 4.16vw, 4rem);
    line-height: 0.76;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  body[data-page="home"] .hero__actions {
    margin-top: 16px;
  }

  body[data-page="home"] .hero__image {
    width: min(55vw, 900px);
    height: min(96svh, 950px);
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .hero__inner {
    width: min(100% - 54px, 1120px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(690px, 58vw);
    font-size: clamp(2.86rem, 4.48vw, 3.78rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(690px, 61vw);
    font-size: clamp(2.98rem, 4.7vw, 4rem);
  }

  body[data-page="home"] .hero__image {
    width: min(56vw, 760px);
    right: -48px;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__title-accent {
    font-family: "Great Vibes", "Cormorant Garamond", Georgia, cursive;
    line-height: 0.82;
    letter-spacing: 0;
    background: linear-gradient(105deg, #f7dc96 0%, #d2a45a 46%, #b98436 72%, #f1cf79 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(230, 184, 91, 0.2);
  }
}

/* Hero reference pass v70: exact line rhythm and vertical balance. */
@media (min-width: 901px) {
  body[data-page="home"] .hero__inner {
    width: min(1530px, calc(100% - clamp(70px, 6.8vw, 118px)));
    padding-top: clamp(62px, 8.25svh, 96px);
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: clamp(20px, 2.2svh, 29px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(690px, 48vw);
    font-size: clamp(2.96rem, 3.78vw, 4rem);
    line-height: 1.035;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(800px, 52vw);
    font-size: clamp(3.42rem, 4.68vw, 5.5rem);
    line-height: 0.76;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: clamp(16px, 1.62svh, 22px);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .hero__inner {
    padding-top: clamp(48px, 6.6svh, 61px);
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: clamp(15px, 1.72svh, 20px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(660px, 48vw);
    font-size: clamp(2.72rem, 3.54vw, 3.52rem);
    line-height: 1.03;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(760px, 53vw);
    font-size: clamp(3.1rem, 4.34vw, 4.14rem);
    line-height: 0.74;
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: -0.08em;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: 13px;
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__inner {
    padding-top: clamp(75px, 8.4svh, 108px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(760px, 47vw);
    font-size: clamp(3.48rem, 3.72vw, 4.45rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(900px, 53vw);
    font-size: clamp(4.4rem, 4.62vw, 5.86rem);
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .hero h1 {
    max-width: min(610px, 57vw);
  }
}

/* Hero final reference pass v71: approved framed composition only. */
@media (min-width: 901px) {
  body[data-page="home"] .site-header {
    width: min(1280px, calc(100% - clamp(42px, 4.2vw, 66px)));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding-inline: clamp(36px, 3.4vw, 52px);
    padding-top: clamp(18px, 2.05vw, 30px);
    padding-bottom: clamp(10px, 1vw, 15px);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body[data-page="home"] .site-header.is-past-hero {
    background: rgba(11, 10, 8, 0.78);
    border: 1px solid rgba(198, 159, 85, 0.18);
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  body[data-page="home"] .brand {
    font-size: clamp(1.42rem, 1.36vw, 1.82rem);
    color: #eed18a;
    text-shadow: 0 0 16px rgba(217, 171, 82, 0.16);
  }

  body[data-page="home"] .nav {
    gap: clamp(22px, 2.3vw, 44px);
  }

  body[data-page="home"] .nav a {
    font-size: clamp(0.72rem, 0.72vw, 0.9rem);
    font-weight: 620;
    color: rgba(255, 250, 239, 0.88);
    letter-spacing: 0;
  }

  body[data-page="home"] .header-cta {
    width: clamp(104px, 7.9vw, 126px);
    min-height: clamp(40px, 3.25vw, 48px);
    padding-inline: 0;
    font-size: clamp(0.75rem, 0.74vw, 0.9rem);
    font-weight: 800;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.76),
      0 0 0 1px rgba(255, 224, 144, 0.2),
      0 0 22px rgba(220, 166, 70, 0.34),
      0 12px 28px rgba(214, 157, 54, 0.18);
  }

  body[data-page="home"] .hero {
    min-height: 100svh;
    background:
      radial-gradient(circle at 77% 38%, rgba(221, 169, 82, 0.23), rgba(123, 85, 42, 0.1) 20%, transparent 39%),
      radial-gradient(circle at 89% 79%, rgba(95, 42, 24, 0.16), transparent 30%),
      linear-gradient(135deg, #060606 0%, #100f0d 48%, #19150f 100%);
  }

  body[data-page="home"] .hero::after {
    content: "";
    position: absolute;
    inset: clamp(18px, 2vw, 32px) clamp(20px, 3vw, 44px) clamp(18px, 2.2vw, 32px);
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(190, 148, 71, 0.32);
    border-radius: 10px;
    box-shadow:
      inset 0 1px 0 rgba(255, 236, 185, 0.035),
      0 0 34px rgba(0, 0, 0, 0.18);
  }

  body[data-page="home"] .hero__overlay {
    background:
      radial-gradient(ellipse at 76% 39%, rgba(240, 190, 92, 0.18) 0%, rgba(150, 100, 43, 0.1) 23%, rgba(8, 7, 6, 0.5) 68%),
      radial-gradient(ellipse at 80% 47%, rgba(230, 169, 78, 0.12) 0%, transparent 29%),
      linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.92) 33%, rgba(7, 7, 6, 0.38) 54%, rgba(7, 7, 6, 0.04) 74%, rgba(7, 7, 6, 0.4) 100%),
      linear-gradient(180deg, rgba(7, 7, 6, 0.16) 0%, rgba(7, 7, 6, 0) 38%, rgba(7, 7, 6, 0.7) 100%);
  }

  body[data-page="home"] .hero__image {
    width: min(54vw, 940px);
    height: min(94svh, 1010px);
    right: clamp(-46px, -2.2vw, -22px);
    bottom: 0;
    object-position: 50% 50%;
    filter: saturate(1.2) contrast(1.16) brightness(0.94);
  }

  body[data-page="home"] .hero__inner {
    width: min(1280px, calc(100% - clamp(42px, 4.2vw, 66px)));
    padding-top: clamp(104px, 12.6svh, 132px);
    padding-bottom: clamp(24px, 3.6svh, 42px);
  }

  body[data-page="home"] .hero__eyebrow {
    max-width: min(100%, 482px);
    margin-bottom: clamp(19px, 2.45svh, 30px);
    padding: clamp(8px, 0.72vw, 10px) clamp(12px, 1.18vw, 18px);
    border-radius: 14px;
    border-color: rgba(205, 163, 82, 0.62);
    background:
      linear-gradient(180deg, rgba(255, 238, 192, 0.055), rgba(255, 238, 192, 0.01)),
      rgba(9, 9, 8, 0.66);
    color: rgba(255, 250, 239, 0.88);
    font-size: clamp(0.72rem, 0.73vw, 0.88rem);
    font-weight: 620;
    letter-spacing: 0.018em;
    line-height: 1.2;
  }

  body[data-page="home"] .hero h1 {
    max-width: min(690px, 47vw);
    margin-bottom: clamp(8px, 1.05svh, 14px);
    font-size: clamp(3.05rem, 3.64vw, 4rem);
    line-height: 1.045;
    letter-spacing: -0.006em;
  }

  body[data-page="home"] .hero__title-main span {
    white-space: nowrap;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(760px, 50vw);
    margin-top: clamp(0px, 0.2svh, 3px);
    font-family: "Great Vibes", "Cormorant Garamond", Georgia, cursive;
    font-size: clamp(3.42rem, 4.28vw, 5.08rem);
    line-height: 0.78;
    letter-spacing: 0;
    background: linear-gradient(105deg, #ffe299 0%, #e4ba66 34%, #b8853a 66%, #f3cf78 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 12px rgba(232, 184, 88, 0.26),
      0 7px 18px rgba(80, 45, 14, 0.22);
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: -0.07em;
  }

  body[data-page="home"] .hero__title-accent::after {
    left: 0.02em;
    bottom: -0.14em;
    width: min(6.45em, 38%);
    height: 0.18em;
    filter: drop-shadow(0 0 8px rgba(231, 181, 74, 0.24));
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: min(625px, 42vw);
    margin-top: clamp(19px, 2.25svh, 27px);
    color: rgba(255, 250, 239, 0.74);
    font-size: clamp(0.9rem, 0.91vw, 1.05rem);
    line-height: 1.52;
  }

  body[data-page="home"] .hero__actions {
    gap: clamp(12px, 1.15vw, 20px);
    margin-top: clamp(20px, 2.55svh, 31px);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: clamp(42px, 3.55vw, 50px);
    padding-inline: clamp(20px, 1.75vw, 30px);
    border-radius: 13px;
    font-size: clamp(0.75rem, 0.78vw, 0.9rem);
  }

  body[data-page="home"] .hero-trust {
    gap: clamp(10px, 0.9vw, 14px);
    margin-top: clamp(14px, 2.05svh, 23px);
  }

  body[data-page="home"] .hero-trust div {
    width: clamp(128px, 9.3vw, 172px);
    min-height: clamp(70px, 7.4svh, 92px);
    padding: clamp(11px, 0.9vw, 16px) clamp(12px, 1vw, 18px);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 236, 184, 0.045), rgba(255, 236, 184, 0.008)),
      rgba(7, 7, 6, 0.34);
  }

  body[data-page="home"] .hero-trust strong {
    font-size: clamp(1.55rem, 2.1vw, 2.55rem);
    line-height: 0.9;
  }

  body[data-page="home"] .hero-trust span {
    margin-top: 4px;
    font-size: clamp(0.56rem, 0.56vw, 0.68rem);
    line-height: 1.12;
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .hero__inner {
    width: min(1320px, calc(100% - clamp(56px, 5.6vw, 92px)));
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(116px, 12.2svh, 146px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(740px, 45vw);
    font-size: clamp(3.55rem, 3.45vw, 4.35rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(820px, 49vw);
    font-size: clamp(4.25rem, 4.12vw, 5.7rem);
  }

  body[data-page="home"] .hero__image {
    width: min(53vw, 1010px);
    right: clamp(-48px, -1.5vw, -18px);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .site-header {
    padding-top: 16px;
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(88px, 11.2svh, 98px);
    padding-bottom: 20px;
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: 17px;
  }

  body[data-page="home"] .hero h1 {
    max-width: min(635px, 46vw);
    font-size: clamp(2.82rem, 3.34vw, 3.42rem);
    margin-bottom: 7px;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(710px, 50vw);
    font-size: clamp(3.12rem, 4vw, 4.05rem);
    line-height: 0.75;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: min(600px, 42vw);
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.46;
  }

  body[data-page="home"] .hero__actions {
    margin-top: 18px;
  }

  body[data-page="home"] .hero-trust {
    margin-top: 14px;
  }

  body[data-page="home"] .hero-trust div {
    min-height: 70px;
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .hero__inner {
    width: calc(100% - 52px);
  }

  body[data-page="home"] .site-header {
    padding-inline: 26px;
  }

  body[data-page="home"] .hero h1 {
    max-width: min(610px, 53vw);
    font-size: clamp(2.78rem, 4.04vw, 3.46rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(650px, 55vw);
    font-size: clamp(3.02rem, 4.48vw, 4.05rem);
  }

  body[data-page="home"] .hero__image {
    width: min(57vw, 760px);
    right: -56px;
  }
}

/* Hero correction v72: remove failed frame and restore the approved first-reference composition. */
@media (min-width: 901px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-past-hero {
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    transform: none;
    padding-inline: clamp(54px, 5.1vw, 86px);
    padding-top: clamp(14px, 1.35vw, 24px);
    padding-bottom: clamp(10px, 1vw, 18px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .hero::after {
    display: none;
    content: none;
  }

  body[data-page="home"] .brand {
    font-size: clamp(1.72rem, 1.68vw, 2.18rem);
    line-height: 1;
    color: #efd38d;
  }

  body[data-page="home"] .nav {
    gap: clamp(28px, 2.85vw, 58px);
  }

  body[data-page="home"] .nav a {
    font-size: clamp(0.94rem, 0.86vw, 1.04rem);
    font-weight: 760;
    color: rgba(255, 250, 239, 0.86);
  }

  body[data-page="home"] .header-cta {
    width: auto;
    min-width: 0;
    min-height: clamp(44px, 4.25vw, 54px);
    padding-inline: clamp(24px, 1.75vw, 32px);
    font-size: clamp(0.96rem, 0.9vw, 1.08rem);
    line-height: 1;
    white-space: nowrap;
  }

  body[data-page="home"] .hero {
    min-height: 100svh;
    background:
      radial-gradient(circle at 80% 38%, rgba(169, 132, 75, 0.24), transparent 27%),
      radial-gradient(circle at 88% 73%, rgba(114, 54, 27, 0.18), transparent 25%),
      radial-gradient(circle at 20% 92%, rgba(128, 82, 39, 0.1), transparent 30%),
      linear-gradient(135deg, #0a0908 0%, #15120e 50%, #211c14 100%);
  }

  body[data-page="home"] .hero__overlay {
    background:
      radial-gradient(ellipse at 76% 43%, rgba(226, 185, 104, 0.1) 0%, rgba(76, 47, 26, 0.1) 28%, rgba(11, 10, 8, 0.52) 76%),
      linear-gradient(90deg, rgba(10, 9, 8, 0.99) 0%, rgba(10, 9, 8, 0.9) 34%, rgba(10, 9, 8, 0.42) 53%, rgba(10, 9, 8, 0.04) 76%, rgba(10, 9, 8, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 9, 8, 0.08) 0%, rgba(10, 9, 8, 0) 38%, rgba(10, 9, 8, 0.73) 100%);
  }

  body[data-page="home"] .hero__image {
    width: min(51vw, 900px);
    height: min(92svh, 970px);
    right: clamp(-34px, 1.1vw, 26px);
    bottom: 0;
    object-position: 50% 52%;
    filter: saturate(1.16) contrast(1.12) brightness(0.92);
  }

  body[data-page="home"] .hero__inner {
    width: min(1490px, calc(100% - clamp(108px, 10.2vw, 172px)));
    padding-top: clamp(88px, 10.2svh, 122px);
    padding-bottom: clamp(14px, 2svh, 24px);
  }

  body[data-page="home"] .hero__eyebrow {
    max-width: min(100%, 610px);
    margin-bottom: clamp(24px, 2.7svh, 36px);
    padding: clamp(8px, 0.78vw, 11px) clamp(16px, 1.25vw, 22px);
    border-radius: 18px;
    border-color: rgba(205, 164, 91, 0.58);
    background:
      linear-gradient(180deg, rgba(255, 238, 190, 0.07), rgba(255, 238, 190, 0.012)),
      rgba(14, 13, 11, 0.66);
    color: rgba(255, 250, 238, 0.9);
    font-size: clamp(0.82rem, 0.82vw, 1rem);
    font-weight: 650;
    letter-spacing: 0.012em;
    line-height: 1.22;
  }

  body[data-page="home"] .hero h1 {
    max-width: min(800px, 53vw);
    margin-bottom: clamp(10px, 1.45svh, 18px);
    font-size: clamp(3.28rem, 4.18vw, 4.35rem);
    line-height: 1.06;
    letter-spacing: 0;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(800px, 54vw);
    margin-top: clamp(2px, 0.45svh, 7px);
    font-family: "Great Vibes", "Cormorant Garamond", Georgia, cursive;
    font-size: clamp(3.5rem, 4.65vw, 5.45rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.78;
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: -0.06em;
  }

  body[data-page="home"] .hero__title-accent::after {
    left: 0;
    bottom: -0.16em;
    width: min(8.6em, 46%);
    height: 0.2em;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: min(690px, 45vw);
    margin-top: clamp(20px, 2.1svh, 28px);
    font-size: clamp(0.98rem, 0.98vw, 1.16rem);
    line-height: 1.54;
  }

  body[data-page="home"] .hero__actions {
    gap: clamp(14px, 1.2vw, 22px);
    margin-top: clamp(22px, 2.45svh, 32px);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: clamp(48px, 4.65vw, 58px);
    padding-inline: clamp(24px, 2.1vw, 34px);
    border-radius: 18px;
    font-size: clamp(0.95rem, 0.95vw, 1.08rem);
  }

  body[data-page="home"] .hero-trust {
    gap: clamp(12px, 1.05vw, 18px);
    margin-top: clamp(14px, 1.85svh, 24px);
  }

  body[data-page="home"] .hero-trust div {
    width: clamp(158px, 12.5vw, 230px);
    min-height: clamp(76px, 8.6svh, 108px);
    padding: clamp(12px, 1.1vw, 20px) clamp(14px, 1.25vw, 22px);
    border-radius: 9px;
  }

  body[data-page="home"] .hero-trust strong {
    font-size: clamp(1.95rem, 2.45vw, 3.1rem);
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__inner {
    width: min(1510px, calc(100% - clamp(116px, 10vw, 178px)));
    padding-top: clamp(92px, 10.4svh, 122px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(850px, 51vw);
    font-size: clamp(3.7rem, 4.1vw, 4.8rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(4.15rem, 4.35vw, 5.68rem);
  }

  body[data-page="home"] .hero__image {
    width: min(51.5vw, 980px);
    right: clamp(-38px, 0.8vw, 22px);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .hero__inner {
    padding-top: clamp(74px, 9.8svh, 88px);
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: clamp(18px, 2.25svh, 24px);
    padding-block: 7px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(3.05rem, 4vw, 3.88rem);
    margin-bottom: 8px;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(3.15rem, 4.2vw, 4rem);
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.46;
  }

  body[data-page="home"] .hero__actions {
    margin-top: 17px;
  }

  body[data-page="home"] .hero-trust {
    margin-top: 12px;
  }

  body[data-page="home"] .hero-trust div {
    min-height: 74px;
    padding-block: 11px;
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .site-header {
    padding-inline: 34px;
  }

  body[data-page="home"] .hero__inner {
    width: min(100% - 68px, 1080px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(720px, 60vw);
    font-size: clamp(3rem, 4.7vw, 4rem);
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(680px, 61vw);
    font-size: clamp(3.05rem, 4.95vw, 4.08rem);
  }

  body[data-page="home"] .hero__image {
    width: min(54vw, 760px);
    right: -26px;
  }
}

/* Hero targeted pass v73: requested five reference fixes only. */
@media (min-width: 901px) {
  body[data-page="home"] .header-cta {
    width: clamp(124px, 8.4vw, 148px);
    min-width: 0;
    min-height: clamp(44px, 4.25vw, 54px);
    padding-inline: 0;
    justify-content: center;
    font-size: clamp(0.9rem, 0.82vw, 1rem);
  }

  body[data-page="home"] .hero__image {
    width: min(56vw, 990px);
    height: min(96svh, 1040px);
    right: clamp(-62px, -2.4vw, -24px);
    object-position: 50% 51%;
  }

  body[data-page="home"] .hero__inner {
    width: min(1450px, calc(100% - clamp(104px, 9.8vw, 164px)));
    padding-top: clamp(68px, 8.8svh, 100px);
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: clamp(13px, 1.65svh, 22px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(760px, 51vw);
    font-size: clamp(3.05rem, 3.86vw, 4.12rem);
    line-height: 1.03;
    margin-bottom: 0;
  }

  body[data-page="home"] .hero__title-accent {
    max-width: min(790px, 54vw);
    margin-top: clamp(18px, 2.25svh, 30px);
    font-size: clamp(3.38rem, 4.58vw, 5.36rem);
    line-height: 0.78;
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: -0.055em;
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .header-cta {
    width: clamp(132px, 7.6vw, 152px);
  }

  body[data-page="home"] .hero__inner {
    width: min(1500px, calc(100% - clamp(112px, 9.2vw, 174px)));
    padding-top: clamp(78px, 9.2svh, 112px);
  }

  body[data-page="home"] .hero h1 {
    max-width: min(820px, 50vw);
    font-size: clamp(3.45rem, 3.72vw, 4.55rem);
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: clamp(18px, 2.1svh, 28px);
    font-size: clamp(4.05rem, 4.25vw, 5.62rem);
  }

  body[data-page="home"] .hero__image {
    width: min(56vw, 1050px);
    right: clamp(-66px, -2vw, -28px);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .hero__inner {
    padding-top: clamp(58px, 7.5svh, 70px);
  }

  body[data-page="home"] .hero__eyebrow {
    margin-bottom: 12px;
  }

  body[data-page="home"] .hero h1 {
    max-width: min(700px, 51vw);
    font-size: clamp(2.82rem, 3.55vw, 3.54rem);
    line-height: 1.02;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 16px;
    font-size: clamp(3rem, 4.08vw, 3.95rem);
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .header-cta {
    width: 132px;
  }

  body[data-page="home"] .hero h1 {
    max-width: min(690px, 60vw);
    font-size: clamp(2.72rem, 4.18vw, 3.42rem);
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 16px;
  }

  body[data-page="home"] .hero__image {
    width: min(59vw, 800px);
    right: -54px;
  }
}

/* Hero technical fix v74: button box model and Great Vibes clipping. */
@media (min-width: 901px) {
  body[data-page="home"] .header-cta {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: clamp(126px, 8vw, 146px);
    max-width: clamp(126px, 8vw, 146px);
    min-width: clamp(126px, 8vw, 146px);
    height: clamp(44px, 4.25vw, 54px);
    min-height: 0;
    padding: 0 14px;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    transform: none;
  }

  body[data-page="home"] .header-cta::before {
    inset: 2px;
  }

  body[data-page="home"] .hero h1,
  body[data-page="home"] .hero__title-accent,
  body[data-page="home"] .hero__title-accent span {
    overflow: visible;
  }

  body[data-page="home"] .hero__title-accent {
    box-sizing: content-box;
    line-height: 0.95;
    padding-top: 0.1em;
    padding-bottom: 0.26em;
    margin-bottom: -0.2em;
  }

  body[data-page="home"] .hero__title-accent span {
    line-height: inherit;
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: -0.18em;
  }

  body[data-page="home"] .hero__title-accent::after {
    bottom: 0.02em;
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .header-cta {
    width: clamp(132px, 7.5vw, 150px);
    max-width: clamp(132px, 7.5vw, 150px);
    min-width: clamp(132px, 7.5vw, 150px);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .header-cta {
    height: 46px;
  }

  body[data-page="home"] .hero__title-accent {
    line-height: 0.95;
    padding-top: 0.1em;
    padding-bottom: 0.25em;
    margin-bottom: -0.18em;
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .header-cta {
    width: 132px;
    max-width: 132px;
    min-width: 132px;
  }
}

/* Hero background fix v75: remove the visible portrait rectangle seam. */
@media (min-width: 901px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-past-hero {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .hero {
    background:
      radial-gradient(circle at 80% 38%, rgba(169, 132, 75, 0.24), transparent 27%),
      radial-gradient(circle at 88% 73%, rgba(114, 54, 27, 0.18), transparent 25%),
      radial-gradient(circle at 20% 92%, rgba(128, 82, 39, 0.1), transparent 30%),
      linear-gradient(135deg, #0a0908 0%, #15120e 50%, #211c14 100%);
  }

  body[data-page="home"] .hero__overlay {
    background:
      radial-gradient(ellipse at 76% 43%, rgba(226, 185, 104, 0.1) 0%, rgba(76, 47, 26, 0.1) 28%, rgba(11, 10, 8, 0.52) 76%),
      linear-gradient(90deg, rgba(10, 9, 8, 0.99) 0%, rgba(10, 9, 8, 0.9) 34%, rgba(10, 9, 8, 0.42) 53%, rgba(10, 9, 8, 0.04) 76%, rgba(10, 9, 8, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 9, 8, 0.08) 0%, rgba(10, 9, 8, 0) 38%, rgba(10, 9, 8, 0.73) 100%);
  }

  body[data-page="home"] .hero__image {
    top: 0;
    bottom: auto;
    height: 100svh;
    background: transparent;
    box-shadow: none;
    border: 0;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-past-hero {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .hero__image {
    border: 0;
    background: transparent;
    box-shadow: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 68%, transparent 100%);
  }
}

/* Hero refinement v76: accent rhythm, badge polish and portrait breathing room. */
@media (min-width: 901px) {
  body[data-page="home"] .hero__eyebrow {
    padding: clamp(10px, 0.86vw, 13px) clamp(18px, 1.45vw, 25px);
    border-width: 1px;
    border-color: rgba(217, 178, 101, 0.48);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 235, 187, 0.09), rgba(255, 235, 187, 0.018)),
      rgba(14, 13, 11, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 246, 215, 0.09),
      0 10px 24px rgba(0, 0, 0, 0.18),
      0 0 16px rgba(212, 163, 77, 0.08);
    font-family: var(--body-font);
    font-size: clamp(0.9rem, 0.9vw, 1.08rem);
    font-weight: 650;
    letter-spacing: 0.004em;
    line-height: 1.24;
    text-transform: none;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: clamp(9px, 1.18svh, 16px);
    margin-bottom: 0;
    padding-top: 0.12em;
    padding-bottom: 0.28em;
    line-height: 1.06;
    overflow: visible;
  }

  body[data-page="home"] .hero__title-accent span {
    display: block;
    line-height: inherit;
    overflow: visible;
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: 0.06em;
  }

  body[data-page="home"] .hero__title-accent::after {
    display: none;
    content: none;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: clamp(12px, 1.5svh, 20px);
  }

  body[data-page="home"] .hero__image {
    width: min(53vw, 998px);
    object-position: 50% 51.5%;
  }
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__image {
    width: min(53vw, 998px);
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  body[data-page="home"] .hero__eyebrow {
    padding-block: 9px;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 10px;
    padding-top: 0.12em;
    padding-bottom: 0.27em;
    line-height: 1.06;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: 12px;
  }
}

@media (max-width: 1220px) and (min-width: 901px) {
  body[data-page="home"] .hero__image {
    width: min(56vw, 760px);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .hero__eyebrow {
    padding: 11px 15px;
    border-color: rgba(217, 178, 101, 0.46);
    background:
      linear-gradient(180deg, rgba(255, 235, 187, 0.09), rgba(255, 235, 187, 0.018)),
      rgba(14, 13, 11, 0.68);
    font-family: var(--body-font);
    letter-spacing: 0.002em;
    line-height: 1.28;
    text-transform: none;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 0.12em;
    padding-bottom: 0.3em;
    line-height: 1.1;
    overflow: visible;
  }

  body[data-page="home"] .hero__title-accent span {
    display: block;
    line-height: inherit;
    overflow: visible;
  }

  body[data-page="home"] .hero__title-accent span + span {
    margin-top: 0.06em;
  }

  body[data-page="home"] .hero__title-accent::after {
    display: none;
    content: none;
  }
}

/* Intro balance v77: center the opening statement without changing its style. */
body[data-page="home"] .intro-text-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

body[data-page="home"] .intro-text-section .section-heading h2 {
  margin-inline: auto;
}

body[data-page="home"] .intro-text-section .intro-text-grid p {
  width: min(100%, 58ch);
}

/* Load background fix v78: prevent the light document fallback from flashing below the hero. */
html {
  background: #0a0908 !important;
}

body[data-page="home"] {
  background: #0a0908 !important;
}

body[data-page="home"] [data-site-root] {
  background: var(--paper) !important;
  min-height: 100%;
}

/* Request hierarchy v79: make request titles clearly primary without changing cards or layout. */
body[data-page="home"] .request-card__topic {
  margin-bottom: clamp(12px, 1.15vw, 18px);
  font-size: clamp(2.08rem, 2.48vw, 2.72rem);
  font-weight: 800;
  line-height: 1.08;
}

body[data-page="home"] .request-card__description {
  font-size: clamp(1.02rem, 1.06vw, 1.14rem);
  font-weight: 400;
  line-height: 1.62;
}

@media (max-width: 900px) {
  body[data-page="home"] .request-card__topic {
    font-size: clamp(1.82rem, 7.4vw, 2.28rem);
    line-height: 1.1;
  }

  body[data-page="home"] .request-card__description {
    font-size: clamp(0.98rem, 3.9vw, 1.08rem);
    line-height: 1.6;
  }
}

/* Header and request readability v80: adaptive section contrast plus clearer card copy. */
.site-header {
  border-bottom: 1px solid transparent;
  transition:
    color 320ms ease,
    background 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    backdrop-filter 320ms ease;
}

.site-header[data-theme="dark"] {
  color: rgba(255, 252, 244, 0.92);
  background:
    linear-gradient(to bottom, rgba(12, 10, 8, 0.34), rgba(12, 10, 8, 0.1), rgba(12, 10, 8, 0));
  box-shadow: none;
}

.site-header[data-theme="dark"].is-scrolled,
.site-header[data-theme="dark"].is-open {
  background: rgba(12, 10, 8, 0.46);
  border-bottom-color: rgba(224, 191, 120, 0.11);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header[data-theme="light"] {
  color: #302b25;
  background: rgba(250, 245, 236, 0.54);
  border-bottom-color: rgba(118, 94, 50, 0.08);
  box-shadow: 0 14px 38px rgba(49, 39, 29, 0.055);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header[data-theme="light"].is-scrolled,
.site-header[data-theme="light"].is-open {
  background: rgba(250, 245, 236, 0.72);
  border-bottom-color: rgba(118, 94, 50, 0.12);
  box-shadow: 0 18px 46px rgba(49, 39, 29, 0.075);
}

.site-header[data-theme="dark"] .brand {
  color: #ead8a6;
  background: linear-gradient(105deg, #fff5d9, #d4b672 56%, #fff0ca);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-header[data-theme="light"] .brand {
  color: #302b25;
  background: linear-gradient(105deg, #302b25, #765e32 58%, #473b2e);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-header[data-theme="dark"] .nav a {
  color: rgba(255, 252, 244, 0.9);
}

.site-header[data-theme="light"] .nav a {
  color: rgba(48, 43, 37, 0.9);
}

.site-header[data-theme="dark"] .nav a::after {
  background: linear-gradient(90deg, rgba(179, 137, 62, 0), rgba(232, 202, 130, 0.95), rgba(179, 137, 62, 0));
}

.site-header[data-theme="light"] .nav a::after {
  background: linear-gradient(90deg, rgba(118, 94, 50, 0), rgba(168, 135, 77, 0.86), rgba(118, 94, 50, 0));
}

.site-header[data-theme="dark"] .header-cta {
  color: #241b10;
  border-color: rgba(255, 237, 181, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 246, 0.7), rgba(255, 237, 186, 0.08) 48%),
    linear-gradient(135deg, #fff1bd 0%, #d9ae5c 54%, #b78439 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 12px 30px rgba(214, 162, 70, 0.26);
}

.site-header[data-theme="light"] .header-cta {
  color: #302718;
  border-color: rgba(168, 135, 77, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.86), rgba(239, 226, 205, 0.56)),
    rgba(250, 245, 236, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(49, 39, 29, 0.08);
}

body[data-page="home"] .request-card__topic {
  margin-bottom: clamp(14px, 1.2vw, 18px);
  font-size: clamp(2rem, 2.38vw, 2.58rem);
  font-weight: 800;
  line-height: 1.16;
}

body[data-page="home"] .request-card__description {
  font-size: clamp(0.98rem, 1.02vw, 1.06rem);
  font-weight: 400;
  line-height: 1.62;
}

@media (max-width: 1040px) {
  .site-header[data-theme] .nav {
    background: rgba(250, 245, 236, 0.96);
    color: #302b25;
  }

  .site-header[data-theme] .nav a {
    color: rgba(48, 43, 37, 0.9);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .request-card__topic {
    margin-bottom: 14px;
    font-size: clamp(1.76rem, 6.8vw, 2.18rem);
    line-height: 1.18;
  }

  body[data-page="home"] .request-card__description {
    font-size: clamp(0.98rem, 4vw, 1.04rem);
    line-height: 1.6;
  }
}

/* About composition v83: denser premium rhythm without removing content. */
body[data-page="home"] .about-full-section {
  padding-block: clamp(40px, 4.8vw, 66px);
}

body[data-page="home"] .about-full-section .section-heading {
  max-width: 860px;
  margin-bottom: clamp(18px, 2vw, 30px);
}

body[data-page="home"] .about-full-section .section-heading h2 {
  font-size: clamp(2.2rem, 3.35vw, 3.95rem);
  line-height: 0.98;
}

body[data-page="home"] .about-full-grid {
  align-items: center;
  gap: clamp(18px, 3.2vw, 42px);
}

body[data-page="home"] .about-full-grid .video-frame {
  max-width: 100%;
}

body[data-page="home"] .about-full-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body[data-page="home"] .about-full-copy h3 {
  margin-bottom: clamp(8px, 1vw, 14px);
}

body[data-page="home"] .about-full-copy > p {
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.22vw, 1.34rem);
  line-height: 1.48;
}

body[data-page="home"] .about-points,
body[data-page="home"] .about-tags {
  gap: clamp(14px, 1.4vw, 18px);
}

body[data-page="home"] .about-points {
  margin-top: clamp(14px, 1.5vw, 20px);
}

body[data-page="home"] .about-tags {
  margin-top: 0;
}

body[data-page="home"] .about-points span,
body[data-page="home"] .about-tags span {
  min-height: 56px;
  padding: 11px 13px 12px 15px;
  border-radius: 16px;
  line-height: 1.24;
}

body[data-page="home"] .about-points span::before,
body[data-page="home"] .about-tags span::before {
  width: 26px;
  margin-bottom: 7px;
}

body[data-page="home"] .about-stats {
  margin-top: clamp(16px, 1.9vw, 24px);
  gap: clamp(14px, 1.4vw, 18px);
}

body[data-page="home"] .about-stats article,
body[data-page="home"] .about-stats div {
  min-height: 88px;
}

body[data-page="home"] .about-stats article {
  padding: 13px 16px;
}

body[data-page="home"] .about-stats strong {
  font-size: clamp(2.5rem, 3.6vw, 4rem);
  line-height: 0.88;
}

body[data-page="home"] .about-stats span {
  margin-top: 4px;
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  line-height: 1.16;
}

body[data-page="home"] .about-manifesto {
  margin-top: clamp(18px, 2.1vw, 28px);
}

body[data-page="home"] .about-manifesto p {
  font-size: clamp(1.08rem, 1.18vw, 1.32rem);
  line-height: 1.48;
}

@media (max-width: 1040px) {
  body[data-page="home"] .about-full-section .section-heading {
    max-width: 760px;
  }

  body[data-page="home"] .about-full-grid {
    gap: 22px;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .about-full-section {
    padding-block: 38px;
  }

  body[data-page="home"] .about-full-section .section-heading {
    margin-bottom: 18px;
  }

  body[data-page="home"] .about-full-section .section-heading h2 {
    font-size: clamp(2.04rem, 10vw, 3rem);
    line-height: 1.02;
  }

  body[data-page="home"] .about-points,
  body[data-page="home"] .about-tags {
    gap: 12px;
  }

  body[data-page="home"] .about-points span,
  body[data-page="home"] .about-tags span {
    min-height: 0;
  }

  body[data-page="home"] .about-stats {
    gap: 12px;
  }
}

/* Recognition compact v84: one-screen desktop rhythm for "Можливо, вам знайомо". */
body[data-page="home"] .recognition-section {
  gap: clamp(26px, 2.8vw, 42px);
  padding-top: clamp(88px, 7.2vw, 112px);
  padding-bottom: clamp(44px, 4.8vw, 70px);
}

body[data-page="home"] .recognition-section .section-heading {
  max-width: 860px;
  margin-bottom: clamp(32px, 3.35vw, 56px);
  transform: none;
}

body[data-page="home"] .recognition-section .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.25rem, 4.3vw, 4.5rem);
  line-height: 1.08;
}

body[data-page="home"] .recognition-pairs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.45vw, 26px) clamp(22px, 1.7vw, 28px);
}

body[data-page="home"] .recognition-pairs article {
  min-height: clamp(170px, 10.2vw, 190px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 2vw, 34px) clamp(30px, 2.05vw, 36px);
}

body[data-page="home"] .recognition-pairs p {
  font-size: clamp(1.32rem, 1.42vw, 1.56rem);
  line-height: 1.34;
}

body[data-page="home"] .recognition-pairs p + p {
  margin-top: clamp(10px, 0.85vw, 14px);
}

body[data-page="home"] .recognition-note {
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 3vw, 48px);
  margin-top: clamp(36px, 3.1vw, 50px);
  padding: clamp(34px, 2.7vw, 46px) clamp(50px, 4vw, 70px);
  border: 1px solid rgba(118, 94, 50, 0.14);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 135, 77, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 251, 243, 0.82), rgba(235, 219, 194, 0.5));
  box-shadow: 0 18px 52px rgba(49, 39, 29, 0.085);
}

body[data-page="home"] .recognition-note p {
  margin: 0;
  font-size: clamp(1.06rem, 1.08vw, 1.18rem);
  line-height: 1.62;
}

body[data-page="home"] .recognition-note strong {
  padding: clamp(18px, 1.7vw, 26px) clamp(22px, 2.4vw, 36px);
  font-size: clamp(1.8rem, 2.35vw, 2.82rem);
  line-height: 1.06;
}

body[data-page="home"] .recognition-note strong::before {
  top: -0.22em;
  font-size: 2.2em;
}

@media (min-width: 1200px) and (max-height: 900px) {
  body[data-page="home"] .recognition-section {
    gap: 24px;
    padding-top: clamp(78px, 6.3vw, 96px);
    padding-bottom: clamp(36px, 3.8vw, 54px);
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-bottom: clamp(26px, 2.8vw, 44px);
  }

  body[data-page="home"] .recognition-pairs {
    gap: 20px 24px;
  }

  body[data-page="home"] .recognition-pairs article {
    min-height: 164px;
    padding: 26px 30px;
  }

  body[data-page="home"] .recognition-note {
    margin-top: 36px;
    padding: 32px 52px;
  }
}

@media (max-width: 1040px) {
  body[data-page="home"] .recognition-section {
    padding-top: clamp(64px, 8vw, 88px);
  }

  body[data-page="home"] .recognition-pairs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .recognition-note {
    grid-template-columns: 1fr;
    padding: clamp(28px, 4vw, 40px);
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .recognition-section {
    gap: 24px;
    padding-top: 54px;
    padding-bottom: 42px;
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-bottom: 24px;
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  body[data-page="home"] .recognition-pairs {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .recognition-pairs article {
    min-height: 0;
    padding: 24px 22px;
  }

  body[data-page="home"] .recognition-pairs p {
    font-size: clamp(1.28rem, 6.1vw, 1.58rem);
  }

  body[data-page="home"] .recognition-note {
    margin-top: 28px;
    padding: 26px 20px;
  }

  body[data-page="home"] .recognition-note strong {
    padding: 18px 20px;
    font-size: clamp(1.74rem, 8vw, 2.35rem);
  }
}

/* Request cards compact v85: stronger readability with less unused card height. */
body[data-page="home"] main > #requests.request-section,
body[data-page="home"] main > .section.request-section,
body[data-page="home"] .request-section {
  padding-top: clamp(58px, 5.8vw, 86px);
  padding-bottom: clamp(46px, 5.2vw, 76px);
}

body[data-page="home"] .request-section .section-heading {
  max-width: 980px;
  margin-bottom: clamp(36px, 3.1vw, 48px);
}

body[data-page="home"] .request-section .section-heading h2 {
  line-height: 1.08;
}

body[data-page="home"] .request-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.55vw, 26px) clamp(22px, 1.7vw, 28px);
  align-items: stretch;
}

body[data-page="home"] .request-card {
  min-height: clamp(300px, 18vw, 340px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(30px, 2.15vw, 38px) clamp(38px, 2.45vw, 46px);
}

body[data-page="home"] .request-card::before {
  margin-bottom: clamp(28px, 1.95vw, 34px);
}

body[data-page="home"] .request-card__topic {
  margin-bottom: clamp(16px, 1.15vw, 20px);
  font-size: clamp(2.125rem, 2.25vw, 2.5rem);
  font-weight: 800;
  line-height: 1.16;
}

body[data-page="home"] .request-card__description {
  max-width: 100%;
  margin: 0;
  color: rgba(48, 43, 37, 0.76);
  font-family: var(--body-font);
  font-size: clamp(1.0625rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.56;
}

body[data-page="home"] .request-card strong {
  margin-top: clamp(24px, 1.85vw, 30px);
  padding-top: clamp(18px, 1.35vw, 22px);
}

@media (min-width: 1200px) and (max-height: 900px) {
  body[data-page="home"] .request-section {
    padding-top: clamp(48px, 4.8vw, 70px);
    padding-bottom: clamp(38px, 4vw, 58px);
  }

  body[data-page="home"] .request-section .section-heading {
    margin-bottom: 36px;
  }

  body[data-page="home"] .request-grid {
    gap: 20px 24px;
  }

  body[data-page="home"] .request-card {
    min-height: 292px;
    padding: 28px 38px;
  }

  body[data-page="home"] .request-card::before {
    margin-bottom: 26px;
  }

  body[data-page="home"] .request-card strong {
    margin-top: 22px;
    padding-top: 18px;
  }
}

@media (max-width: 1040px) {
  body[data-page="home"] .request-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .request-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .request-section {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  body[data-page="home"] .request-section .section-heading {
    margin-bottom: 28px;
  }

  body[data-page="home"] .request-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body[data-page="home"] .request-card {
    padding: 26px 22px;
  }

  body[data-page="home"] .request-card::before {
    margin-bottom: 22px;
  }

  body[data-page="home"] .request-card__topic {
    margin-bottom: 14px;
    font-size: clamp(1.78rem, 8vw, 2.18rem);
    line-height: 1.18;
  }

  body[data-page="home"] .request-card__description {
    font-size: clamp(1rem, 4.25vw, 1.0625rem);
    line-height: 1.58;
  }

  body[data-page="home"] .request-card strong {
    margin-top: 22px;
  }
}

/* Mobile responsive audit v91: compact iPhone layout, no horizontal overflow, no scroll flash. */
html,
body,
[data-site-root] {
  width: 100%;
  max-width: 100%;
}

html,
body {
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  [data-site-root],
  main {
    max-width: 100%;
    overflow-x: clip;
  }

  section {
    scroll-margin-top: 92px;
  }

  .section,
  .intro,
  .help-areas,
  .selected,
  .formats,
  .faq {
    padding-inline: clamp(16px, 5.4vw, 24px);
    padding-block: clamp(56px, 14vw, 76px);
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 24px;
  }

  h1,
  h2,
  h3 {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  h1 {
    font-size: clamp(2.65rem, 12.2vw, 3.85rem);
    line-height: 0.98;
  }

  body:not([data-page="home"]) h1 {
    font-size: clamp(2.42rem, 11vw, 3.35rem);
    line-height: 1;
  }

  h2,
  .section-heading h2,
  .about-full-section .section-heading h2 {
    font-size: clamp(2.15rem, 9.4vw, 3rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.45rem, 6.6vw, 2rem);
    line-height: 1.16;
  }

  p,
  li,
  .section-heading p,
  .intro-text-grid p,
  .diagnostic-section p,
  .application-section p,
  .soft-cta p,
  .video-copy p {
    font-size: clamp(1rem, 4.25vw, 1.12rem);
    line-height: 1.62;
  }

  .site-header,
  body[data-page="home"] .site-header,
  .site-header[data-theme],
  .site-header[data-theme].is-scrolled,
  .site-header[data-theme].is-open {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) clamp(16px, 5vw, 22px) 10px;
    background: rgba(12, 10, 8, 0.88);
    border-bottom: 1px solid rgba(224, 191, 120, 0.12);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transform: none;
    z-index: 1000;
  }

  .site-header[data-theme="light"],
  .site-header[data-theme="light"].is-scrolled,
  .site-header[data-theme="light"].is-open {
    background: rgba(250, 245, 236, 0.92);
    border-bottom-color: rgba(118, 94, 50, 0.12);
    box-shadow: 0 12px 34px rgba(49, 39, 29, 0.08);
  }

  .brand,
  body[data-page="home"] .brand,
  .site-header.is-past-hero .brand {
    min-width: 0;
    max-width: calc(100vw - 96px);
    overflow: hidden;
    color: inherit;
    font-size: clamp(1.2rem, 6vw, 1.62rem);
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
  }

  .site-header[data-theme] .nav,
  .nav {
    top: calc(100% + 8px);
    left: clamp(14px, 4.5vw, 20px);
    right: clamp(14px, 4.5vw, 20px);
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    padding: 12px;
    background: rgba(250, 245, 236, 0.98);
    border-radius: 16px;
    color: #302b25;
  }

  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .hero,
  body[data-page="home"] .hero,
  body:not([data-page="home"]):not([data-page="thank-you"]) .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: calc(env(safe-area-inset-top, 0px) + 78px) clamp(16px, 5.4vw, 24px) 42px;
    overflow: clip;
  }

  body[data-page="home"] .hero {
    background:
      radial-gradient(circle at 62% 17%, rgba(205, 156, 65, 0.18), transparent 32%),
      linear-gradient(145deg, #0c0b09 0%, #181511 56%, #0d0c0a 100%);
  }

  .hero__image,
  body[data-page="home"] .hero__image,
  body:not([data-page="home"]) .hero__image {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    z-index: 0;
    width: 100%;
    height: clamp(300px, 82vw, 420px);
    max-height: 48svh;
    margin: 0 auto;
    border-radius: 18px;
    object-fit: cover;
    object-position: 52% 12%;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
  }

  body[data-page="home"] .hero__image {
    object-position: 54% 8%;
  }

  body[data-page="thank-you"] .hero {
    min-height: auto;
    padding-top: calc(env(safe-area-inset-top, 0px) + 92px);
  }

  body[data-page="thank-you"] .hero__image {
    display: none;
  }

  .hero__overlay,
  body[data-page="home"] .hero__overlay {
    background:
      linear-gradient(180deg, rgba(12, 10, 8, 0.08), rgba(12, 10, 8, 0.18)),
      linear-gradient(0deg, rgba(12, 10, 8, 0.44), rgba(12, 10, 8, 0.04) 48%, rgba(12, 10, 8, 0.2));
    pointer-events: none;
  }

  .hero__inner,
  body[data-page="home"] .hero__inner {
    width: 100%;
    padding: 24px 0 0;
    animation: none;
  }

  body[data-page="home"] .hero__eyebrow,
  .hero__eyebrow {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 10px 14px;
    white-space: normal;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.55rem, 11.4vw, 4rem);
    line-height: 1;
  }

  body[data-page="home"] .hero__title-main,
  body[data-page="home"] .hero__title-accent {
    max-width: 100%;
  }

  body[data-page="home"] .hero__title-main span,
  body[data-page="home"] .hero__title-accent span {
    display: inline;
  }

  body[data-page="home"] .hero__title-main span + span::before,
  body[data-page="home"] .hero__title-accent span + span::before {
    content: " ";
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 10px;
    font-size: clamp(2.2rem, 12vw, 3.8rem);
    line-height: 1.18;
  }

  body[data-page="home"] .hero__title-accent::after {
    display: none;
  }

  .hero p:not(.hero__eyebrow),
  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    max-width: 100%;
    font-size: clamp(1rem, 4.25vw, 1.12rem);
    line-height: 1.58;
  }

  .hero__actions,
  body[data-page="home"] .hero__actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .button,
  .hero .button,
  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost,
  .button-row .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
    text-align: center;
  }

  .hero-trust,
  body[data-page="home"] .hero-trust {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }

  .hero-trust div,
  body[data-page="home"] .hero-trust div {
    min-width: 0;
    min-height: auto;
    padding: 14px;
  }

  .hero-trust div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-trust strong,
  body[data-page="home"] .hero-trust strong {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-trust span,
  body[data-page="home"] .hero-trust span {
    font-size: clamp(0.76rem, 3.25vw, 0.9rem);
    line-height: 1.25;
  }

  .intro-text-grid,
  .recognition-note,
  .about-full-grid,
  .about-manifesto,
  .doubts-section,
  .practice-cta-section,
  .deep-note-section,
  .split-section,
  .about-section,
  .video-section,
  .practice-band,
  .soft-cta,
  .final-cta,
  .cta-row-section,
  .diagnostic-section,
  .diagnostic-section--full {
    grid-template-columns: 1fr;
    gap: clamp(20px, 6vw, 30px);
  }

  .intro-text-grid p,
  .split-section p,
  .diagnostic-lead,
  .recognition-note p,
  .recognition-note strong {
    max-width: 100%;
  }

  .recognition-pairs,
  .request-grid,
  .wellness-grid,
  .results-grid,
  .symptom-grid,
  .about-stats,
  .diagnostic-cards,
  .story-states,
  .faq-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .recognition-pairs article,
  .request-card,
  .wellness-grid .wellness-card,
  .story-card,
  .results-grid article,
  .symptom-grid article,
  .diagnostic-cards article,
  .about-stats article,
  .faq-grid article,
  .testimonial-grid article {
    min-width: 0;
    min-height: auto;
  }

  .recognition-note {
    padding: 20px;
  }

  .recognition-note strong,
  .about-manifesto strong,
  .deep-note-section h2 {
    font-size: clamp(2rem, 9.2vw, 3.15rem);
    line-height: 1.04;
  }

  .practice-cta-section,
  .deep-note-section,
  .soft-cta,
  .final-cta,
  .diagnostic-section {
    text-align: left;
  }

  .practice-band {
    align-items: start;
  }

  .practice-band h2 {
    font-size: clamp(2.3rem, 10.8vw, 3.35rem);
    line-height: 1;
  }

  .practice-band h2 span {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    white-space: normal;
  }

  .practice-action {
    width: 100%;
    justify-items: stretch;
  }

  .video-frame,
  .video-frame--intro,
  .video-frame--practice {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
  }

  .video-frame video,
  .video-frame--intro video,
  .video-frame--practice video {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .about-full-section {
    padding-top: clamp(56px, 13vw, 72px);
    padding-bottom: clamp(56px, 13vw, 72px);
  }

  .about-full-section .section-heading h2 {
    font-size: clamp(2.28rem, 10vw, 3.1rem);
  }

  .about-full-copy h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .about-tags,
  .about-points {
    gap: 10px;
  }

  .about-tags span,
  .about-points span {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
  }

  .about-manifesto {
    gap: 16px;
  }

  .about-manifesto strong {
    padding: 22px 18px;
  }

  .application-section {
    padding-inline: clamp(16px, 5.4vw, 24px);
  }

  .application-form {
    width: 100%;
    max-width: 100%;
    padding: clamp(18px, 5.6vw, 24px);
    border-radius: 18px;
    gap: 14px;
  }

  .contact-choice {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .contact-choice label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 15px 16px;
    border-radius: 16px;
    box-sizing: border-box;
    white-space: normal;
  }

  .contact-choice label span {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .contact-choice input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0;
  }

  .application-form input,
  .application-form textarea {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .application-form .button {
    width: 100%;
  }

  .breadcrumbs,
  .request-nav-grid {
    max-width: 100%;
  }

  .request-nav-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .request-nav-grid a {
    width: 100%;
  }

  .site-footer {
    padding-inline: clamp(16px, 5.4vw, 24px);
  }

  [data-animate],
  [data-animate].is-visible,
  .reveal-word,
  .hero .reveal-word,
  [data-animate].is-visible .reveal-word,
  .hero__image,
  body[data-page="home"] .hero__image {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Home testimonials carousel v156. Scoped to the replaced home-page section. */
body[data-page="home"] .home-reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-inline: 0;
  color: #302b25;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 251, 241, 0.94), transparent 30rem),
    radial-gradient(circle at 88% 78%, rgba(204, 165, 90, 0.14), transparent 32rem),
    linear-gradient(180deg, #fbf6ed 0%, #f2e7d8 100%);
}

body[data-page="home"] .home-reviews-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(185, 139, 67, 0.08), transparent),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.66), transparent 34rem);
}

.home-reviews-heading {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto clamp(30px, 4vw, 52px);
  text-align: center;
}

.home-reviews-heading .section-kicker {
  margin: 0 0 12px;
  color: #a27a3b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.home-reviews-heading h2 {
  margin: 0;
  color: #2b2620;
  font-family: var(--display-font);
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  text-wrap: balance;
}

.home-reviews-heading > p:last-child {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(48, 43, 37, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.65;
  text-wrap: balance;
}

.review-carousel-shell {
  position: relative;
  width: min(1500px, 100%);
  margin-inline: auto;
}

.review-carousel-stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
}

.review-carousel-stage:focus-visible {
  outline: 2px solid rgba(161, 119, 52, 0.48);
  outline-offset: -5px;
}

.review-card {
  position: absolute;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(780px, 64vw);
  height: 480px;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(135, 99, 46, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 172, 92, 0.14), transparent 42%),
    rgba(255, 253, 248, 0.93);
  box-shadow:
    0 34px 90px rgba(77, 55, 29, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translateX(-50%) scale(0.91);
  transform-origin: center center;
  opacity: 0.54;
  filter: brightness(0.8) saturate(0.82);
  transition:
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease-in-out,
    filter 760ms ease-in-out,
    box-shadow 760ms ease-in-out;
  will-change: transform, opacity;
  cursor: pointer;
}

.review-card.is-active {
  z-index: 3;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: none;
  cursor: default;
}

.review-card.is-previous {
  z-index: 1;
  transform: translateX(calc(-50% - min(47vw, 550px))) scale(0.91);
}

.review-card.is-next {
  z-index: 2;
  transform: translateX(calc(-50% + min(47vw, 550px))) scale(0.91);
}

.review-card > img {
  width: 280px;
  height: 280px;
  align-self: center;
  border-radius: 25px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 46px rgba(69, 50, 27, 0.16);
}

.review-card__content {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.review-card__content h3 {
  margin: 0 0 16px;
  color: #9b7131;
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1;
}

.review-card__content p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(66, 53, 41, 0.76);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.58;
  white-space: pre-line;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
}

.review-card__content button {
  margin-top: 24px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(159, 115, 48, 0.46);
  color: #7d5a29;
  background: transparent;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
}

.review-card__content button span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 240ms ease;
}

.review-card__content button:hover span,
.review-card__content button:focus-visible span {
  transform: translateX(4px);
}

.review-card:not(.is-active) .review-card__content button {
  pointer-events: none;
}

.review-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(125, 91, 40, 0.14);
  border-radius: 50%;
  color: #5b4934;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 14px 34px rgba(72, 53, 31, 0.16);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  cursor: pointer;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(72, 53, 31, 0.22);
  transform: translateY(-50%) scale(1.07);
}

.review-arrow--previous {
  left: clamp(16px, 4vw, 64px);
}

.review-arrow--next {
  right: clamp(16px, 4vw, 64px);
}

.review-carousel-controls {
  display: grid;
  width: min(520px, calc(100% - 48px));
  margin: 22px auto 0;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 18px;
  color: #9b7131;
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.review-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(118, 91, 52, 0.2);
}

.review-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #b88b39, #ead9a8);
  transform: scaleX(0.333333);
  transform-origin: left center;
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.review-modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

.review-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.review-modal[hidden] {
  display: none;
}

.review-modal.is-open {
  opacity: 1;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 10, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.review-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1080px, 94vw);
  height: min(760px, 88vh);
  min-height: 0;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(224, 187, 111, 0.24);
  border-radius: 36px;
  background:
    radial-gradient(circle at 94% 0%, rgba(210, 167, 82, 0.14), transparent 36%),
    linear-gradient(145deg, #fffaf1 0%, #f2e4d1 100%);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42);
  transform: translateY(24px) scale(0.975);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.review-modal.is-open .review-modal__panel {
  transform: none;
}

.review-modal__icon-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(103, 76, 39, 0.15);
  border-radius: 50%;
  color: #473a2c;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 10px 24px rgba(67, 49, 29, 0.12);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.review-modal__media {
  display: grid;
  min-height: 0;
  place-items: center;
}

.review-modal__media img {
  width: min(100%, 390px);
  aspect-ratio: 1;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 64px rgba(72, 51, 27, 0.2);
}

.review-modal__content {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.review-modal__content h3 {
  margin: 0 58px 18px 0;
  color: #9b7131;
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  font-weight: 600;
  line-height: 1;
}

.review-modal__text {
  min-height: 0;
  padding-right: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: rgba(57, 46, 36, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
  scrollbar-color: rgba(166, 124, 58, 0.54) transparent;
  scrollbar-width: thin;
  white-space: pre-line;
}

.review-modal__text::-webkit-scrollbar {
  width: 6px;
}

.review-modal__text::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(166, 124, 58, 0.48);
}

.review-modal__close {
  width: fit-content;
  min-width: 150px;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 26px;
  border: 1px solid rgba(126, 91, 39, 0.26);
  border-radius: 999px;
  color: #3b2e1e;
  background:
    linear-gradient(180deg, rgba(255, 255, 247, 0.7), rgba(255, 237, 190, 0.08)),
    linear-gradient(135deg, #f8e2a5, #c99a48);
  box-shadow: 0 12px 28px rgba(151, 106, 39, 0.2);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .review-carousel-stage {
    height: 540px;
  }

  .review-card {
    width: min(680px, 75vw);
    height: 500px;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 26px;
    padding: 24px;
  }

  .review-card.is-previous {
    transform: translateX(calc(-50% - 65vw)) scale(0.91);
  }

  .review-card.is-next {
    transform: translateX(calc(-50% + 65vw)) scale(0.91);
  }

  .review-card > img {
    width: 235px;
    height: 235px;
  }

  .review-modal__panel {
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 767px) {
  body[data-page="home"] main > .section.home-reviews-section {
    padding-block: 44px 48px;
  }

  .home-reviews-heading {
    width: calc(100% - 36px);
    margin-bottom: 24px;
    text-align: left;
  }

  .home-reviews-heading .section-kicker {
    margin-bottom: 9px;
    font-size: 0.7rem;
  }

  .home-reviews-heading h2 {
    font-size: clamp(43px, 12.4vw, 56px);
    line-height: 0.96;
    text-wrap: pretty;
  }

  .home-reviews-heading > p:last-child {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.52;
    text-wrap: pretty;
  }

  .review-carousel-stage {
    height: 592px;
  }

  .review-card {
    top: 8px;
    left: 24px;
    display: flex;
    width: calc(100% - 56px);
    height: 566px;
    gap: 0;
    padding: 18px;
    flex-direction: column;
    border-radius: 27px;
    transform: translateX(calc(-100% - 30px)) scale(0.96);
    opacity: 0;
    transition:
      transform 880ms cubic-bezier(0.22, 1, 0.36, 1) !important,
      opacity 720ms ease-in-out !important,
      filter 720ms ease-in-out !important,
      box-shadow 720ms ease-in-out !important;
  }

  .review-card.is-active {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  .review-card.is-previous {
    transform: translateX(calc(-100% - 30px)) scale(0.96);
    opacity: 0;
  }

  .review-card.is-next {
    transform: translateX(calc(100% - 16px)) scale(0.96);
    opacity: 0.56;
  }

  .review-card > img {
    width: 246px;
    height: 246px;
    align-self: center;
    border-radius: 21px;
  }

  .review-card__content {
    display: flex;
    min-height: 0;
    padding: 20px 3px 2px;
    flex: 1;
    justify-content: flex-start;
  }

  .review-card__content h3 {
    margin-bottom: 10px;
    font-size: 35px;
  }

  .review-card__content p {
    font-size: 15px;
    line-height: 1.48;
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }

  .review-card__content button {
    margin-top: auto;
    font-size: 14px;
  }

  .review-card__content button span {
    transition: transform 240ms ease !important;
  }

  .review-arrow {
    top: 54%;
    width: 44px;
    height: 44px;
    font-size: 1.08rem;
    transition:
      transform 220ms ease !important,
      box-shadow 220ms ease !important,
      background 220ms ease !important;
  }

  .review-arrow--previous {
    left: 3px;
  }

  .review-arrow--next {
    right: 3px;
  }

  .review-carousel-controls {
    width: calc(100% - 64px);
    margin-top: 14px;
    gap: 13px;
    font-size: 1.08rem;
  }

  .review-progress span {
    transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .review-modal {
    padding: 5vh 14px;
    transition: opacity 240ms ease !important;
  }

  .review-modal__panel {
    display: flex;
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    gap: 0;
    padding: 18px;
    flex-direction: column;
    border-radius: 28px;
    transform: translateY(18px) scale(0.98);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .review-modal.is-open .review-modal__panel {
    transform: none;
  }

  .review-modal__icon-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .review-modal__media {
    display: block;
    flex: 0 0 auto;
  }

  .review-modal__media img {
    width: 150px;
    height: 150px;
    border-radius: 21px;
  }

  .review-modal__content {
    display: flex;
    min-height: 0;
    padding-top: 16px;
    flex: 1;
    flex-direction: column;
  }

  .review-modal__content h3 {
    margin: 0 46px 12px 0;
    font-size: 40px;
  }

  .review-modal__text {
    min-height: 0;
    padding-right: 10px;
    flex: 1;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.58;
  }

  .review-modal__close {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    flex: 0 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section {
    padding-inline: clamp(24px, 5vw, 42px);
  }

  .hero__inner {
    width: min(var(--max), calc(100% - 48px));
  }

  .wellness-grid,
  .request-grid,
  .results-grid,
  .symptom-grid,
  .diagnostic-cards,
  .faq-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-text-grid,
  .about-full-grid,
  .about-manifesto,
  .doubts-section,
  .split-section,
  .video-section,
  .soft-cta,
  .final-cta,
  .diagnostic-section,
  .diagnostic-section--full {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate].is-visible,
  .reveal-word,
  .hero .reveal-word,
  [data-animate].is-visible .reveal-word {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Targeted mobile polish v92: compact application form, stable video taps, softer reveal. */
[data-site-root],
main {
  background: var(--paper);
}

body[data-page="home"] [data-site-root],
body[data-page="home"] main {
  background: var(--paper);
}

.contact-choice .contact-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  cursor: pointer;
}

.contact-choice .contact-option__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-choice .contact-option__radio {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(165, 128, 58, 0.62);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.78);
  box-shadow: inset 0 0 0 4px rgba(255, 252, 245, 0.95);
}

.contact-choice .contact-option__radio::after {
  position: absolute;
  inset: 6px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, #f1dca1, #b88b39);
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact-choice .contact-option__label {
  min-width: 0;
  color: inherit;
  font: inherit;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-choice .contact-option:has(.contact-option__input:checked) .contact-option__radio::after {
  opacity: 1;
  transform: scale(1);
}

.contact-choice .contact-option:has(.contact-option__input:focus-visible) {
  outline: 2px solid rgba(196, 151, 65, 0.42);
  outline-offset: 3px;
}

.video-frame video {
  pointer-events: auto;
  touch-action: manipulation;
}

.video-frame.is-playing .video-play {
  visibility: hidden;
  pointer-events: none;
}

body[data-page="home"] .about-points--merged {
  margin-top: clamp(14px, 1.5vw, 20px);
}

body[data-page="home"] .about-points--merged span {
  min-height: 54px;
}

@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0.98;
    transform: translateY(8px);
    transition: opacity 0.32s ease, transform 0.32s ease;
  }

  [data-animate].is-visible {
    opacity: 1;
    transform: none;
  }

  .reveal-word,
  .hero .reveal-word,
  [data-animate].is-visible .reveal-word {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 767px) {
  html,
  body,
  [data-site-root],
  main {
    background: var(--paper);
  }

  .application-section {
    padding-inline: clamp(16px, 5vw, 22px);
  }

  .application-section .section-heading {
    margin-bottom: 20px;
  }

  .application-section .section-heading h2 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    line-height: 1.02;
  }

  .application-section .section-heading p {
    max-width: 32rem;
    line-height: 1.48;
  }

  .application-form {
    width: 100%;
    max-width: 100%;
    padding: 22px;
    border-radius: 20px;
    gap: 18px;
  }

  .application-form label {
    gap: 8px;
  }

  .application-form label > span,
  .contact-field legend {
    margin-bottom: 8px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .application-form input,
  .application-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 14px 16px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.35;
  }

  .contact-field {
    margin: 0;
  }

  .contact-choice {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .contact-choice .contact-option {
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 15px;
  }

  .contact-choice .contact-option__radio {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
    box-shadow: inset 0 0 0 4px rgba(255, 252, 245, 0.95);
  }

  .contact-choice .contact-option__radio::after {
    inset: 5px;
  }

  .contact-choice .contact-option__label {
    font-size: 0.96rem;
  }

  .application-form .button {
    width: 100%;
    min-height: 56px;
    margin-top: 4px;
    padding-block: 14px;
    text-align: center;
  }

  .about-points--merged {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  [data-animate],
  [data-animate].is-visible,
  .reveal-word,
  .hero .reveal-word,
  [data-animate].is-visible .reveal-word {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Recognition desktop fit v97: tighter one-screen composition for "Можливо, вам знайомо". */
@media (min-width: 1041px) {
  body[data-page="home"] .recognition-section {
    gap: 0;
    padding-top: clamp(24px, 2.4vw, 40px);
    padding-bottom: clamp(28px, 2.6vw, 44px);
  }

  body[data-page="home"] .recognition-section .section-heading {
    max-width: 820px;
    margin-bottom: clamp(28px, 2.2vw, 40px);
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    font-size: clamp(48px, 4.15vw, 72px);
    line-height: 1;
  }

  body[data-page="home"] .recognition-pairs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: clamp(18px, 1.15vw, 24px) clamp(20px, 1.35vw, 28px);
  }

  body[data-page="home"] .recognition-pairs article {
    min-height: clamp(150px, 8.4vw, 176px);
    height: 100%;
    padding: clamp(22px, 1.45vw, 28px) clamp(24px, 1.65vw, 32px);
    justify-content: center;
  }

  body[data-page="home"] .recognition-pairs p {
    font-size: clamp(20px, 1.25vw, 24px);
    line-height: 1.38;
  }

  body[data-page="home"] .recognition-pairs p + p {
    margin-top: clamp(8px, 0.7vw, 12px);
  }

  body[data-page="home"] .recognition-note {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(48px, 3.45vw, 64px);
    max-width: 1120px;
    margin-top: clamp(32px, 2.3vw, 44px);
    padding: clamp(34px, 2.35vw, 42px) clamp(42px, 3.1vw, 56px);
  }

  body[data-page="home"] .recognition-note::after {
    content: none;
  }

  body[data-page="home"] .recognition-note p {
    max-width: 620px;
    color: rgba(36, 33, 29, 0.84);
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(17px, 1vw, 19px);
    font-weight: 400;
    line-height: 1.72;
  }

  body[data-page="home"] .recognition-note p::first-line {
    color: rgba(36, 33, 29, 0.92);
    font-weight: 500;
  }

  body[data-page="home"] .recognition-note strong {
    padding: 0;
    font-size: clamp(34px, 2.35vw, 44px);
    line-height: 1.08;
  }

  body[data-page="home"] .recognition-note strong::before {
    top: -0.36em;
    left: -0.14em;
    font-size: 2em;
  }
}

@media (min-width: 1200px) and (max-height: 900px) {
  body[data-page="home"] .recognition-section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-bottom: 30px;
  }

  body[data-page="home"] .recognition-pairs {
    gap: 18px 24px;
  }

  body[data-page="home"] .recognition-pairs article {
    min-height: 148px;
    padding: 21px 26px;
  }

  body[data-page="home"] .recognition-note {
    margin-top: 34px;
    padding: 34px 48px;
  }
}

/* Requests section v101: compact dark premium rhythm aligned with the hero identity. */
body[data-page="home"] main > #requests.request-section,
body[data-page="home"] main > .section.request-section,
body[data-page="home"] .request-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(46px, 4vw, 66px);
  padding-bottom: clamp(42px, 3.8vw, 62px);
  color: rgba(255, 250, 240, 0.92);
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 179, 103, 0.14), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(161, 109, 48, 0.12), transparent 34%),
    linear-gradient(137deg, #12100d 0%, #1a1510 48%, #0f0e0c 100%);
}

body[data-page="home"] .request-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 244, 218, 0.035), transparent 24%, transparent 76%, rgba(214, 173, 91, 0.04)),
    radial-gradient(circle at 50% -14%, rgba(255, 228, 166, 0.1), transparent 34%);
  opacity: 0.9;
}

body[data-page="home"] .request-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 12%, transparent 86%, rgba(0, 0, 0, 0.18));
  mix-blend-mode: screen;
  opacity: 0.45;
}

body[data-page="home"] .request-section .section-heading {
  max-width: 940px;
  margin-bottom: clamp(28px, 2.35vw, 38px);
}

body[data-page="home"] .request-section .section-heading h2 {
  color: rgba(255, 250, 241, 0.97);
  font-size: clamp(46px, 3.8vw, 68px);
  line-height: 1.02;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

body[data-page="home"] .request-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(16px, 1.25vw, 22px) clamp(18px, 1.45vw, 26px);
  align-items: stretch;
}

body[data-page="home"] .request-card {
  min-height: clamp(220px, 14.2vw, 270px);
  height: 100%;
  padding: clamp(22px, 1.55vw, 30px) clamp(24px, 1.75vw, 34px);
  border: 1px solid rgba(213, 176, 102, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 178, 96, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.078), rgba(255, 250, 236, 0.026)),
    rgba(18, 15, 12, 0.82);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 244, 214, 0.08);
  backdrop-filter: blur(14px);
}

body[data-page="home"] .request-card:nth-child(even) {
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 178, 96, 0.11), transparent 38%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.07), rgba(255, 250, 236, 0.022)),
    rgba(15, 13, 11, 0.86);
}

body[data-page="home"] .request-card::before {
  width: 38px;
  margin-bottom: clamp(14px, 1vw, 18px);
  background: linear-gradient(90deg, rgba(232, 201, 130, 0.95), rgba(156, 104, 44, 0.42));
  opacity: 0.95;
}

body[data-page="home"] .request-card:hover {
  border-color: rgba(232, 198, 126, 0.46);
  background:
    radial-gradient(circle at 94% 4%, rgba(224, 184, 99, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.095), rgba(255, 250, 236, 0.036)),
    rgba(19, 16, 13, 0.9);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(209, 164, 81, 0.1),
    inset 0 1px 0 rgba(255, 244, 214, 0.11);
}

body[data-page="home"] .request-card__topic {
  margin-bottom: clamp(12px, 0.9vw, 16px);
  color: rgba(255, 250, 241, 0.96);
  font-size: clamp(1.56rem, 1.55vw, 2.06rem);
  font-weight: 800;
  line-height: 1.12;
}

body[data-page="home"] .request-card__description {
  max-width: 100%;
  color: rgba(246, 239, 226, 0.74);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.94rem, 0.82vw, 1.04rem);
  font-weight: 400;
  line-height: 1.58;
}

body[data-page="home"] .request-card strong {
  margin-top: auto;
  padding-top: clamp(14px, 1vw, 18px);
  border-top: 1px solid rgba(213, 176, 102, 0.2);
  color: #d9b86e;
}

@media (min-width: 1200px) and (max-height: 900px) {
  body[data-page="home"] .request-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  body[data-page="home"] .request-section .section-heading {
    margin-bottom: 28px;
  }

  body[data-page="home"] .request-section .section-heading h2 {
    font-size: clamp(44px, 3.5vw, 60px);
    line-height: 1;
  }

  body[data-page="home"] .request-grid {
    gap: 16px 22px;
  }

  body[data-page="home"] .request-card {
    min-height: 218px;
    padding: 22px 28px;
  }
}

@media (max-width: 1040px) {
  body[data-page="home"] .request-section {
    padding-top: clamp(48px, 7vw, 70px);
    padding-bottom: clamp(48px, 7vw, 72px);
  }

  body[data-page="home"] .request-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  body[data-page="home"] .request-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .request-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  body[data-page="home"] .request-section .section-heading {
    margin-bottom: 26px;
  }

  body[data-page="home"] .request-section .section-heading h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  body[data-page="home"] .request-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .request-card {
    padding: 22px;
    border-radius: 20px;
  }
}

/* Manifesto and doubts v103: compact dark premium continuation. */
body[data-page="home"] .about-manifesto {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: clamp(16px, 1.75vw, 24px) clamp(22px, 2.4vw, 34px);
  margin-top: clamp(18px, 2vw, 28px);
  padding: clamp(22px, 2.5vw, 36px);
  border: 1px solid rgba(213, 176, 102, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 176, 95, 0.12), transparent 34%),
    radial-gradient(circle at 98% 100%, rgba(156, 104, 44, 0.1), transparent 32%),
    linear-gradient(137deg, rgba(18, 16, 13, 0.96), rgba(27, 22, 17, 0.94) 52%, rgba(15, 14, 12, 0.98));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 244, 214, 0.06);
}

body[data-page="home"] .about-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 244, 218, 0.03), transparent 30%, transparent 70%, rgba(214, 173, 91, 0.04)),
    radial-gradient(circle at 50% -18%, rgba(255, 228, 166, 0.08), transparent 38%);
}

body[data-page="home"] .about-manifesto p {
  margin: 0;
  color: rgba(246, 239, 226, 0.74);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.98rem, 1vw, 1.13rem);
  font-weight: 400;
  line-height: 1.62;
}

body[data-page="home"] .about-manifesto strong {
  gap: clamp(4px, 0.45vw, 8px);
  margin: 0 auto;
  padding: clamp(20px, 2.4vw, 34px) clamp(24px, 3vw, 44px);
  border: 1px solid rgba(213, 176, 102, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 201, 141, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.07), rgba(255, 250, 236, 0.025));
  color: #d9b86e;
  font-size: clamp(2.2rem, 3.15vw, 4.35rem);
  line-height: 0.98;
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.08);
}

body[data-page="home"] .about-manifesto strong::before {
  color: rgba(217, 184, 110, 0.14);
}

body[data-page="home"] .about-manifesto strong span:last-child {
  color: #f0d18a;
}

body[data-page="home"] main > .doubts-section.section-light,
body[data-page="home"] .doubts-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
  padding-top: clamp(42px, 4vw, 64px);
  padding-bottom: clamp(44px, 4.2vw, 66px);
  color: rgba(255, 250, 240, 0.92);
  background:
    radial-gradient(circle at 16% 18%, rgba(215, 179, 103, 0.12), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(161, 109, 48, 0.11), transparent 34%),
    linear-gradient(137deg, #12100d 0%, #1a1510 48%, #0f0e0c 100%);
}

body[data-page="home"] main > section.section.doubts-section.section-light:not(.section-dark):not(.hero) {
  background:
    radial-gradient(circle at 16% 18%, rgba(215, 179, 103, 0.12), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(161, 109, 48, 0.11), transparent 34%),
    linear-gradient(137deg, #12100d 0%, #1a1510 48%, #0f0e0c 100%);
}

body[data-page="home"] .doubts-section::before {
  top: clamp(34px, 4vw, 52px);
  bottom: clamp(34px, 4vw, 52px);
  left: 47.5%;
  background: linear-gradient(180deg, transparent, rgba(213, 176, 102, 0.22), transparent);
}

body[data-page="home"] .doubts-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 244, 218, 0.025), transparent 24%, transparent 76%, rgba(214, 173, 91, 0.035)),
    radial-gradient(circle at 54% -14%, rgba(255, 228, 166, 0.08), transparent 34%);
}

body[data-page="home"] .doubts-section > div:first-child {
  max-width: 610px;
}

body[data-page="home"] .doubts-section h2 {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.96);
  font-size: clamp(2.42rem, 3.65vw, 4.42rem);
  line-height: 0.96;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .doubt-list--reassurance {
  display: block;
  padding: clamp(24px, 2.55vw, 36px);
  border: 1px solid rgba(213, 176, 102, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 178, 96, 0.12), transparent 40%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.072), rgba(255, 250, 236, 0.025)),
    rgba(18, 15, 12, 0.82);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 244, 214, 0.08);
  backdrop-filter: blur(14px);
}

body[data-page="home"] .doubt-list--reassurance::before {
  top: -0.32em;
  left: clamp(16px, 1.8vw, 24px);
  color: rgba(217, 184, 110, 0.18);
}

body[data-page="home"] .doubt-list--reassurance p {
  margin: 0;
  padding: clamp(12px, 1.5vw, 20px) 0 0;
  color: rgba(246, 239, 226, 0.78);
  font-size: clamp(1.25rem, 1.55vw, 1.78rem);
  line-height: 1.42;
}

@media (min-width: 1200px) and (max-height: 900px) {
  body[data-page="home"] .about-manifesto {
    margin-top: 18px;
    padding: 24px 30px;
  }

  body[data-page="home"] .about-manifesto strong {
    padding: 20px 34px;
    font-size: clamp(2.12rem, 2.9vw, 3.7rem);
  }

  body[data-page="home"] main > .doubts-section.section-light,
  body[data-page="home"] .doubts-section {
    gap: 36px;
    padding-top: 38px;
    padding-bottom: 42px;
  }

  body[data-page="home"] .doubts-section h2 {
    font-size: clamp(2.35rem, 3.4vw, 3.9rem);
  }

  body[data-page="home"] .doubt-list--reassurance {
    padding: 26px 30px;
  }
}

@media (max-width: 1040px) {
  body[data-page="home"] .about-manifesto {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] main > .doubts-section.section-light,
  body[data-page="home"] .doubts-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body[data-page="home"] .doubts-section::before {
    display: none;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .about-manifesto {
    margin-top: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  body[data-page="home"] .about-manifesto strong {
    padding: 20px 18px;
    border-radius: 20px;
    font-size: clamp(2rem, 9vw, 3.05rem);
    line-height: 1.02;
  }

  body[data-page="home"] main > .doubts-section.section-light,
  body[data-page="home"] .doubts-section {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  body[data-page="home"] .doubts-section h2 {
    font-size: clamp(2.2rem, 10vw, 3.12rem);
    line-height: 1;
  }

  body[data-page="home"] .doubt-list--reassurance {
    padding: 22px 18px;
    border-radius: 22px;
  }

  body[data-page="home"] .doubt-list--reassurance p {
    font-size: clamp(1.12rem, 5.4vw, 1.42rem);
    line-height: 1.45;
  }
}

/* Manifesto v105: make the quote the upper focal point and blend into the dark doubts section. */
body[data-page="home"] main > section.section.about-full-section:not(.hero),
body[data-page="home"] main > .about-full-section {
  background:
    linear-gradient(180deg, rgba(250, 245, 236, 0) 0%, rgba(250, 245, 236, 0) 60%, rgba(28, 22, 16, 0.16) 74%, #12100d 100%),
    radial-gradient(circle at 92% 6%, rgba(182, 150, 83, 0.1), transparent 24rem),
    linear-gradient(135deg, var(--lux-ivory), var(--lux-cream));
}

body[data-page="home"] .about-manifesto strong {
  order: -1;
}

body[data-page="home"] .about-manifesto p {
  align-self: start;
}

body[data-page="home"] main > .doubts-section.section-light,
body[data-page="home"] .doubts-section {
  margin-top: -1px;
}

/* About/doubts correction v107: dark "Про мене", light manifesto quote and doubts. */
body[data-page="home"] main > section.section.about-full-section:not(.hero),
body[data-page="home"] main > .about-full-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(56px, 5.2vw, 82px);
  padding-bottom: clamp(46px, 4.6vw, 72px);
  color: rgba(255, 250, 241, 0.94);
  background:
    radial-gradient(circle at 16% 14%, rgba(215, 179, 103, 0.14), transparent 30%),
    radial-gradient(circle at 90% 72%, rgba(161, 109, 48, 0.12), transparent 34%),
    linear-gradient(137deg, #12100d 0%, #1a1510 48%, #0f0e0c 100%);
}

body[data-page="home"] main > .about-full-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 244, 218, 0.032), transparent 26%, transparent 74%, rgba(214, 173, 91, 0.038)),
    radial-gradient(circle at 50% -12%, rgba(255, 228, 166, 0.08), transparent 36%);
}

body[data-page="home"] .about-full-section .section-heading {
  margin-bottom: clamp(18px, 1.8vw, 28px);
}

body[data-page="home"] .about-full-section .section-heading h2 {
  color: rgba(255, 250, 241, 0.97);
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.3);
}

body[data-page="home"] .about-full-grid {
  gap: clamp(18px, 2.8vw, 38px);
}

body[data-page="home"] .about-full-grid .video-frame {
  border: 1px solid rgba(213, 176, 102, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 250, 236, 0.065), rgba(255, 250, 236, 0.024)),
    rgba(18, 15, 12, 0.82);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 244, 214, 0.08);
}

body[data-page="home"] .about-full-copy h3 {
  color: #f0d18a;
}

body[data-page="home"] .about-full-copy > p {
  color: rgba(246, 239, 226, 0.78);
}

body[data-page="home"] .about-points,
body[data-page="home"] .about-tags {
  gap: clamp(10px, 1vw, 14px);
}

body[data-page="home"] .about-points span,
body[data-page="home"] .about-tags span {
  min-height: 50px;
  padding: 10px 12px 11px 14px;
  border-color: rgba(213, 176, 102, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 178, 96, 0.1), transparent 40%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.07), rgba(255, 250, 236, 0.024)),
    rgba(18, 15, 12, 0.78);
  color: rgba(255, 250, 241, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.06);
}

body[data-page="home"] .about-points span::before,
body[data-page="home"] .about-tags span::before {
  width: 24px;
  background: linear-gradient(90deg, rgba(232, 201, 130, 0.9), rgba(156, 104, 44, 0.34));
}

body[data-page="home"] .about-stats {
  margin-top: clamp(14px, 1.55vw, 22px);
  gap: clamp(12px, 1.2vw, 16px);
}

body[data-page="home"] .about-stats article,
body[data-page="home"] .about-stats div {
  min-height: 78px;
  padding: 12px 15px;
  border-color: rgba(213, 176, 102, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 178, 96, 0.1), transparent 40%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.07), rgba(255, 250, 236, 0.024)),
    rgba(18, 15, 12, 0.82);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 244, 214, 0.07);
}

body[data-page="home"] .about-stats strong {
  color: #d9b86e;
}

body[data-page="home"] .about-stats span {
  color: rgba(246, 239, 226, 0.72);
}

body[data-page="home"] .about-manifesto {
  overflow: visible;
  isolation: auto;
  gap: clamp(14px, 1.6vw, 22px) clamp(22px, 2.4vw, 34px);
  margin-top: clamp(14px, 1.7vw, 22px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .about-manifesto::before {
  content: none;
}

body[data-page="home"] .about-manifesto p {
  color: rgba(246, 239, 226, 0.76);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.98rem, 1vw, 1.13rem);
  line-height: 1.64;
}

body[data-page="home"] .about-manifesto strong {
  order: 0;
  margin: clamp(8px, 1.2vw, 14px) auto 0;
  padding: clamp(22px, 2.6vw, 38px) clamp(26px, 3.2vw, 48px);
  border: 1px solid rgba(157, 125, 54, 0.16);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 201, 141, 0.15), transparent 35%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(238, 226, 207, 0.5));
  color: var(--gold-deep);
  font-size: clamp(2.2rem, 3.15vw, 4.15rem);
  line-height: 1;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

body[data-page="home"] .about-manifesto strong::before {
  color: rgba(118, 94, 50, 0.16);
}

body[data-page="home"] .about-manifesto strong span:last-child {
  color: var(--gold-deep);
}

body[data-page="home"] main > section.section.doubts-section.section-light:not(.section-dark):not(.hero),
body[data-page="home"] main > .doubts-section.section-light,
body[data-page="home"] .doubts-section {
  margin-top: 0;
  color: #302b25;
  background:
    radial-gradient(circle at 88% 10%, rgba(182, 150, 83, 0.12), transparent 24rem),
    linear-gradient(135deg, #fbf7ef, #eadcca);
}

body[data-page="home"] .doubts-section::before {
  background: linear-gradient(180deg, transparent, rgba(128, 99, 44, 0.2), transparent);
}

body[data-page="home"] .doubts-section::after {
  content: none;
}

body[data-page="home"] .doubts-section h2 {
  color: var(--lux-ink);
  text-shadow: none;
}

body[data-page="home"] .doubt-list--reassurance {
  border: 1px solid rgba(118, 94, 50, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 135, 77, 0.11), transparent 38%),
    linear-gradient(145deg, rgba(255, 251, 243, 0.68), rgba(232, 216, 190, 0.32));
  box-shadow: 0 18px 50px rgba(49, 39, 29, 0.07);
  backdrop-filter: none;
}

body[data-page="home"] .doubt-list--reassurance::before {
  color: rgba(118, 94, 50, 0.2);
}

body[data-page="home"] .doubt-list--reassurance p {
  color: rgba(48, 43, 37, 0.82);
}

@media (min-width: 1200px) and (max-height: 900px) {
  body[data-page="home"] main > section.section.about-full-section:not(.hero),
  body[data-page="home"] main > .about-full-section {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  body[data-page="home"] .about-full-section .section-heading {
    margin-bottom: 18px;
  }

  body[data-page="home"] .about-full-grid {
    gap: 28px;
  }

  body[data-page="home"] .about-points span,
  body[data-page="home"] .about-tags span {
    min-height: 46px;
    padding-block: 9px;
  }

  body[data-page="home"] .about-stats article,
  body[data-page="home"] .about-stats div {
    min-height: 72px;
  }

  body[data-page="home"] .about-manifesto strong {
    padding: 22px 38px;
    font-size: clamp(2.08rem, 2.9vw, 3.65rem);
  }
}

@media (max-width: 1040px) {
  body[data-page="home"] main > section.section.about-full-section:not(.hero),
  body[data-page="home"] main > .about-full-section {
    padding-top: 68px;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] main > section.section.about-full-section:not(.hero),
  body[data-page="home"] main > .about-full-section {
    padding-top: 62px;
    padding-bottom: 52px;
  }

  body[data-page="home"] .about-full-section .section-heading h2 {
    font-size: clamp(2.04rem, 10vw, 3rem);
  }

  body[data-page="home"] .about-manifesto strong {
    padding: 22px 18px;
    font-size: clamp(2rem, 9vw, 3.05rem);
  }
}

/* Hero statistics v109: four equal cards aligned to CTA width. */
body[data-page="home"] .hero__actions,
body[data-page="home"] .hero-trust {
  width: min(100%, 720px);
}

body[data-page="home"] .hero__actions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(12px, 1vw, 16px);
}

body[data-page="home"] .hero__actions .button {
  width: 100%;
  justify-content: center;
}

body[data-page="home"] .hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(86px, 1fr);
  gap: clamp(10px, 0.9vw, 12px);
  margin-top: clamp(16px, 1.7svh, 20px);
}

body[data-page="home"] .hero-trust div,
body[data-page="home"] .hero-trust div:hover {
  width: auto;
  min-width: 0;
  min-height: clamp(82px, 8.2svh, 92px);
  padding: clamp(12px, 1vw, 15px) clamp(13px, 1.05vw, 16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

body[data-page="home"] .hero-trust strong {
  font-size: clamp(1.72rem, 2.22vw, 2.72rem);
  line-height: 0.9;
}

body[data-page="home"] .hero-trust span {
  max-width: 100%;
  margin-top: 6px;
  font-size: clamp(0.56rem, 0.58vw, 0.7rem);
  line-height: 1.16;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (min-width: 1500px) {
  body[data-page="home"] .hero__actions,
  body[data-page="home"] .hero-trust {
    width: min(100%, 760px);
  }
}

@media (max-height: 790px) and (min-width: 1200px) {
  body[data-page="home"] .hero__actions,
  body[data-page="home"] .hero-trust {
    width: min(100%, 700px);
  }

  body[data-page="home"] .hero-trust div {
    min-height: 76px;
    padding-block: 11px;
  }

  body[data-page="home"] .hero-trust strong {
    font-size: clamp(1.58rem, 2vw, 2.36rem);
  }

  body[data-page="home"] .hero-trust span {
    font-size: clamp(0.52rem, 0.54vw, 0.64rem);
    line-height: 1.12;
  }
}

@media (max-width: 1199px) {
  body[data-page="home"] .hero__actions,
  body[data-page="home"] .hero-trust {
    width: min(100%, 640px);
  }

  body[data-page="home"] .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(86px, 1fr);
  }

  body[data-page="home"] .hero-trust div:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  body[data-page="home"] .hero__actions {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(86px, 1fr);
    gap: 10px;
    margin-top: 16px;
  }

  body[data-page="home"] .hero-trust div {
    min-height: 86px;
    padding: 12px;
  }

  body[data-page="home"] .hero-trust span {
    font-size: clamp(0.62rem, 2.75vw, 0.78rem);
    line-height: 1.14;
  }
}

@media (max-width: 359px) {
  body[data-page="home"] .hero-trust {
    grid-template-columns: 1fr;
  }
}

/* About architecture v112: light profile block + separate dark philosophy section. */
body[data-page="home"] main > section.section.about-full-section:not(.hero),
body[data-page="home"] main > .about-full-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(54px, 4.9vw, 76px);
  padding-bottom: clamp(34px, 3.6vw, 54px);
  color: #302b25;
  background:
    radial-gradient(circle at 85% 12%, rgba(198, 164, 95, 0.14), transparent 26rem),
    radial-gradient(circle at 10% 4%, rgba(255, 247, 231, 0.9), transparent 30rem),
    linear-gradient(135deg, #fffaf1 0%, #f4eadb 56%, #eadbc7 100%);
}

body[data-page="home"] main > .about-full-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 35%, rgba(176, 132, 67, 0.045)),
    radial-gradient(circle at 50% 0%, rgba(255, 252, 245, 0.82), transparent 34%);
}

body[data-page="home"] .about-full-section .section-heading {
  margin-bottom: clamp(18px, 2vw, 28px);
}

body[data-page="home"] .about-full-section .section-heading h2 {
  max-width: 820px;
  color: #302b25;
  text-shadow: none;
}

body[data-page="home"] .about-full-grid {
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

body[data-page="home"] .about-full-grid .video-frame {
  border: 7px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 250, 241, 0.72);
  box-shadow:
    0 22px 60px rgba(84, 65, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body[data-page="home"] .about-full-copy {
  display: grid;
  align-content: center;
}

body[data-page="home"] .about-full-copy h3 {
  margin-bottom: clamp(10px, 1vw, 14px);
  color: #84622f;
}

body[data-page="home"] .about-full-copy > p {
  max-width: 680px;
  color: rgba(48, 43, 37, 0.74);
}

body[data-page="home"] .about-points.about-points--merged {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  margin-top: clamp(16px, 1.7vw, 24px);
}

body[data-page="home"] .about-points.about-points--merged span {
  min-height: 58px;
  padding: 12px 13px;
  border-color: rgba(132, 98, 47, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 164, 95, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(247, 238, 222, 0.5));
  color: rgba(48, 43, 37, 0.84);
  box-shadow: 0 14px 34px rgba(84, 65, 42, 0.055);
}

body[data-page="home"] .about-points.about-points--merged span::before {
  width: 22px;
  background: linear-gradient(90deg, rgba(163, 119, 53, 0.76), rgba(218, 184, 111, 0.28));
}

body[data-page="home"] .about-stats {
  margin-top: clamp(18px, 2.4vw, 32px);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(132, 98, 47, 0.14);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.72), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(240, 226, 202, 0.44));
  box-shadow: 0 18px 50px rgba(84, 65, 42, 0.075);
}

body[data-page="home"] .about-stats article,
body[data-page="home"] .about-stats div {
  min-height: 94px;
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .about-stats article + article,
body[data-page="home"] .about-stats div + div {
  border-left: 1px solid rgba(132, 98, 47, 0.12);
}

body[data-page="home"] .about-stats strong {
  color: #84622f;
}

body[data-page="home"] .about-stats span {
  color: rgba(48, 43, 37, 0.74);
}

body[data-page="home"] main > section.section.about-philosophy-section:not(.hero),
body[data-page="home"] main > .about-philosophy-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(48px, 5vw, 74px);
  padding-bottom: clamp(48px, 5vw, 74px);
  color: rgba(255, 250, 241, 0.9);
  background:
    radial-gradient(circle at 78% 18%, rgba(219, 178, 96, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 84%, rgba(128, 82, 38, 0.18), transparent 26rem),
    linear-gradient(137deg, #12100d 0%, #1b1611 54%, #0f0e0c 100%);
}

body[data-page="home"] .about-philosophy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 244, 214, 0.05), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 50% -15%, rgba(255, 228, 166, 0.08), transparent 34%);
}

body[data-page="home"] .about-philosophy-inner {
  width: min(1060px, calc(100% - 48px));
  margin-inline: auto;
}

body[data-page="home"] .about-philosophy-section blockquote {
  position: relative;
  margin: 0 auto clamp(26px, 3vw, 40px);
  padding: 0 0 clamp(22px, 2.4vw, 32px);
  border-bottom: 1px solid rgba(218, 180, 101, 0.28);
  color: #e2c077;
  font-family: var(--display-font);
  font-size: clamp(2.5rem, 4.1vw, 5rem);
  font-weight: 500;
  line-height: 1.03;
  text-align: center;
  text-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

body[data-page="home"] .about-philosophy-section blockquote::before {
  content: "“";
  position: absolute;
  left: clamp(8px, 8vw, 150px);
  top: -0.55em;
  color: rgba(226, 192, 119, 0.22);
  font-size: 1.45em;
  line-height: 1;
}

body[data-page="home"] .about-philosophy-section blockquote span {
  display: block;
}

body[data-page="home"] .about-philosophy-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

body[data-page="home"] .about-philosophy-copy p {
  margin: 0;
  color: rgba(246, 239, 226, 0.78);
  font-size: clamp(1rem, 1.04vw, 1.14rem);
  line-height: 1.72;
}

body[data-page="home"] .about-philosophy-copy p + p {
  padding-left: clamp(22px, 3vw, 40px);
  border-left: 1px solid rgba(218, 180, 101, 0.24);
}

body[data-page="home"] main > section.section.doubts-section.section-light:not(.section-dark):not(.hero),
body[data-page="home"] main > .doubts-section.section-light,
body[data-page="home"] .doubts-section {
  margin-top: 0;
  padding-top: clamp(50px, 5vw, 76px);
  background:
    radial-gradient(circle at 88% 10%, rgba(182, 150, 83, 0.12), transparent 24rem),
    linear-gradient(135deg, #fbf7ef, #eadcca);
}

@media (min-width: 1200px) and (max-height: 900px) {
  body[data-page="home"] main > section.section.about-full-section:not(.hero),
  body[data-page="home"] main > .about-full-section {
    padding-top: 46px;
    padding-bottom: 40px;
  }

  body[data-page="home"] .about-full-section .section-heading {
    margin-bottom: 16px;
  }

  body[data-page="home"] .about-full-grid {
    gap: 30px;
  }

  body[data-page="home"] .about-points.about-points--merged span {
    min-height: 52px;
    padding-block: 10px;
  }

  body[data-page="home"] .about-stats {
    margin-top: 20px;
  }

  body[data-page="home"] .about-stats article,
  body[data-page="home"] .about-stats div {
    min-height: 84px;
  }

  body[data-page="home"] main > .about-philosophy-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  body[data-page="home"] .about-philosophy-section blockquote {
    margin-bottom: 28px;
    font-size: clamp(2.25rem, 3.25vw, 4rem);
  }
}

@media (max-width: 1040px) {
  body[data-page="home"] .about-points.about-points--merged {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-page="home"] main > section.section.about-full-section:not(.hero),
  body[data-page="home"] main > .about-full-section {
    padding-top: 54px;
    padding-bottom: 40px;
  }

  body[data-page="home"] .about-full-section .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  body[data-page="home"] .about-points.about-points--merged {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .about-stats {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .about-stats article + article,
  body[data-page="home"] .about-stats div + div {
    border-top: 1px solid rgba(132, 98, 47, 0.12);
    border-left: 0;
  }

  body[data-page="home"] .about-philosophy-inner {
    width: min(100%, calc(100% - 32px));
  }

  body[data-page="home"] .about-philosophy-section blockquote {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  body[data-page="home"] .about-philosophy-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-page="home"] .about-philosophy-copy p + p {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(218, 180, 101, 0.22);
    border-left: 0;
  }
}

/* Landing rhythm and dark application section v111. */
body[data-page="home"] main > .section:not(.hero) {
  padding-top: clamp(50px, 5vw, 78px);
  padding-bottom: clamp(50px, 5vw, 78px);
  margin-top: 0;
  margin-bottom: 0;
}

body[data-page="home"] main > .section + .section {
  margin-top: 0;
}

body[data-page="home"] main > .section.intro-text-section,
body[data-page="home"] main > .section.request-section,
body[data-page="home"] main > .section.practice-cta-section,
body[data-page="home"] main > .section.diagnostic-section,
body[data-page="home"] main > .section.about-full-section,
body[data-page="home"] main > .section.stories-section,
body[data-page="home"] main > .section.results-section,
body[data-page="home"] main > .section.doubts-section {
  padding-top: clamp(46px, 4.5vw, 70px);
  padding-bottom: clamp(46px, 4.5vw, 70px);
}

body[data-page="home"] main > .section.faq-section {
  padding-top: clamp(42px, 4vw, 64px);
  padding-bottom: clamp(40px, 3.8vw, 58px);
}

body[data-page="home"] main > .section.final-cta {
  padding-top: clamp(42px, 4vw, 64px);
  padding-bottom: clamp(34px, 3.2vw, 48px);
}

body[data-page="home"] main > .section.application-section {
  padding-top: clamp(42px, 4vw, 60px);
  padding-bottom: clamp(54px, 5vw, 82px);
}

body[data-page="home"] .faq-section .section-heading,
body[data-page="home"] .application-section .section-heading {
  margin-bottom: clamp(20px, 2.2vw, 30px);
}

body[data-page="home"] main > section.section.application-section:not(.hero),
body[data-page="home"] main > .application-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 250, 241, 0.94);
  background:
    radial-gradient(circle at 12% 0%, rgba(218, 180, 101, 0.13), transparent 31rem),
    radial-gradient(circle at 92% 76%, rgba(126, 88, 43, 0.18), transparent 27rem),
    linear-gradient(137deg, #12100d 0%, #1b1611 54%, #100f0d 100%);
}

body[data-page="home"] main > .application-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 245, 218, 0.045), transparent 18%, transparent 78%, rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 50% -18%, rgba(255, 227, 166, 0.075), transparent 34%);
}

body[data-page="home"] .application-section::after {
  opacity: 0.06;
  filter: sepia(1) saturate(0.72);
}

body[data-page="home"] .application-section .section-heading h2 {
  color: rgba(255, 250, 241, 0.98);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

body[data-page="home"] .application-section .section-heading p,
body[data-page="home"] .application-section p {
  color: rgba(246, 239, 226, 0.76);
}

body[data-page="home"] .application-section .section-heading::before {
  background: linear-gradient(90deg, transparent, rgba(218, 180, 101, 0.62), transparent);
}

body[data-page="home"] .application-form {
  color: rgba(255, 250, 241, 0.92);
  border-color: rgba(213, 176, 102, 0.24);
  background:
    radial-gradient(circle at 96% 0%, rgba(220, 178, 96, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.07), rgba(255, 250, 236, 0.025)),
    rgba(18, 15, 12, 0.82);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 244, 214, 0.08);
}

body[data-page="home"] .application-form label,
body[data-page="home"] .application-form label > span,
body[data-page="home"] .contact-field legend {
  color: rgba(255, 250, 241, 0.9);
}

body[data-page="home"] .application-form input,
body[data-page="home"] .application-form textarea {
  border-color: rgba(213, 176, 102, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 250, 236, 0.055), rgba(255, 250, 236, 0.018)),
    rgba(11, 10, 9, 0.62);
  color: rgba(255, 250, 241, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.045);
}

body[data-page="home"] .application-form input::placeholder,
body[data-page="home"] .application-form textarea::placeholder {
  color: rgba(246, 239, 226, 0.46);
}

body[data-page="home"] .application-form input:focus,
body[data-page="home"] .application-form textarea:focus {
  border-color: rgba(232, 201, 130, 0.56);
  box-shadow:
    0 0 0 4px rgba(218, 180, 101, 0.13),
    inset 0 1px 0 rgba(255, 244, 214, 0.06);
}

body[data-page="home"] .contact-choice .contact-option {
  border-color: rgba(213, 176, 102, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 250, 236, 0.052), rgba(255, 250, 236, 0.014)),
    rgba(12, 10, 9, 0.58);
  color: rgba(255, 250, 241, 0.82);
}

body[data-page="home"] .contact-choice .contact-option:hover,
body[data-page="home"] .contact-choice .contact-option:focus-within {
  border-color: rgba(232, 201, 130, 0.42);
  color: rgba(255, 250, 241, 0.94);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

body[data-page="home"] .contact-choice .contact-option:has(.contact-option__input:checked) {
  border-color: rgba(232, 201, 130, 0.6);
  background:
    radial-gradient(circle at 100% 0%, rgba(218, 180, 101, 0.16), transparent 46%),
    linear-gradient(145deg, rgba(255, 250, 236, 0.075), rgba(255, 250, 236, 0.02)),
    rgba(13, 11, 10, 0.72);
  color: rgba(255, 250, 241, 0.96);
}

body[data-page="home"] .contact-choice .contact-option__radio {
  border-color: rgba(232, 201, 130, 0.65);
  background: rgba(19, 16, 13, 0.92);
  box-shadow: inset 0 0 0 4px rgba(19, 16, 13, 0.95);
}

body[data-page="home"] .contact-choice .contact-option__radio::after {
  background: linear-gradient(135deg, #f0dca2, #b88b39);
}

body[data-page="home"] .application-form .button-primary {
  width: 100%;
  color: #21180d;
  border-color: rgba(255, 233, 171, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 246, 0.74), rgba(255, 237, 186, 0.08) 48%),
    linear-gradient(135deg, #fff0b7 0%, #d7ab5b 55%, #b8853b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 38px rgba(214, 162, 70, 0.28);
}

@media (max-width: 767px) {
  body[data-page="home"] main > .section:not(.hero) {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  body[data-page="home"] main > .section.faq-section {
    padding-top: 40px;
    padding-bottom: 36px;
  }

  body[data-page="home"] main > .section.final-cta {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  body[data-page="home"] main > .section.application-section {
    padding-top: 40px;
    padding-bottom: 52px;
  }

  body[data-page="home"] .application-form {
    padding: 22px;
  }
}

/* About architecture priority v112. */
body[data-page="home"] main > section.section.about-full-section:not(.hero),
body[data-page="home"] main > .section.about-full-section {
  color: #302b25;
  background:
    radial-gradient(circle at 85% 12%, rgba(198, 164, 95, 0.14), transparent 26rem),
    radial-gradient(circle at 10% 4%, rgba(255, 247, 231, 0.9), transparent 30rem),
    linear-gradient(135deg, #fffaf1 0%, #f4eadb 56%, #eadbc7 100%);
}

body[data-page="home"] main > section.section.about-philosophy-section:not(.hero),
body[data-page="home"] main > .section.about-philosophy-section {
  padding-top: clamp(48px, 5vw, 74px);
  padding-bottom: clamp(48px, 5vw, 74px);
  color: rgba(255, 250, 241, 0.9);
  background:
    radial-gradient(circle at 78% 18%, rgba(219, 178, 96, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 84%, rgba(128, 82, 38, 0.18), transparent 26rem),
    linear-gradient(137deg, #12100d 0%, #1b1611 54%, #0f0e0c 100%);
}

@media (max-width: 767px) {
  body[data-page="home"] main > section.section.about-philosophy-section:not(.hero),
  body[data-page="home"] main > .section.about-philosophy-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

/* Structural landing refinement v113. */
body[data-page="home"] main > .section {
  scroll-margin-top: 92px;
}

body[data-page="home"] main > .section:not(.hero) {
  padding-block: clamp(54px, 6.2vw, 86px);
}

body[data-page="home"] main > .section + .section {
  margin-top: 0;
}

body[data-page="home"] .intro-text-section {
  padding-block: clamp(46px, 5.4vw, 74px);
}

body[data-page="home"] .intro-text-section .section-heading {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

body[data-page="home"] .intro-text-grid {
  max-width: 1040px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
}

body[data-page="home"] .recognition-section {
  min-height: auto;
  padding-block: clamp(54px, 6vw, 82px);
}

body[data-page="home"] .recognition-section .section-heading {
  margin-bottom: clamp(22px, 3vw, 34px);
}

body[data-page="home"] .recognition-pairs {
  gap: 14px;
}

body[data-page="home"] .recognition-pairs article {
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
}

body[data-page="home"] .recognition-note {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(22px, 2.6vw, 32px);
}

body[data-page="home"] .request-section {
  padding-block: clamp(54px, 6vw, 82px);
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 153, 75, 0.16), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(130, 89, 42, 0.2), transparent 38%),
    linear-gradient(145deg, #11100d 0%, #1b1712 52%, #12100d 100%);
}

body[data-page="home"] .request-section .section-heading {
  max-width: 880px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

body[data-page="home"] .request-section .section-heading h2 {
  color: var(--cream);
  font-size: clamp(2.45rem, 4.1vw, 4.65rem);
  line-height: 0.98;
}

body[data-page="home"] .request-grid {
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] .request-card {
  min-height: 0;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(212, 173, 101, 0.28);
  background: linear-gradient(145deg, rgba(255, 251, 242, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .request-card__topic {
  color: #fff8ea;
}

body[data-page="home"] .request-card__description {
  color: rgba(255, 248, 235, 0.72);
}

body[data-page="home"] .start-options-section {
  color: #2b2620;
  background:
    radial-gradient(circle at 74% 8%, rgba(214, 178, 105, 0.15), transparent 32%),
    linear-gradient(180deg, #f8f1e6 0%, #f1e4d2 100%);
}

body[data-page="home"] .start-options-section .section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.start-options-grid {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 18px;
}

.start-option-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(84, 64, 38, 0.14);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 28px 70px rgba(84, 62, 34, 0.12);
}

.start-option-card--primary {
  border-color: rgba(182, 137, 62, 0.26);
  background:
    radial-gradient(circle at 12% 0%, rgba(211, 169, 89, 0.18), transparent 34%),
    rgba(255, 253, 248, 0.78);
}

.start-option-label {
  margin: 0;
  color: #9a7234;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.start-option-card h3 {
  margin: 0;
  color: #2b2620;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.start-option-card p {
  margin: 0;
  color: rgba(43, 38, 32, 0.72);
  line-height: 1.65;
}

.start-option-points {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.start-option-points span {
  padding: 12px 14px;
  border: 1px solid rgba(158, 118, 54, 0.18);
  border-radius: 16px;
  color: rgba(43, 38, 32, 0.84);
  background: rgba(255, 248, 234, 0.58);
  font-size: 0.92rem;
  line-height: 1.35;
}

.start-option-note {
  font-weight: 600;
}

body[data-page="home"] .about-full-section .about-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] .about-full-section .about-points span {
  min-height: 72px;
  padding: 16px 18px;
}

body[data-page="home"] .about-stats {
  margin-top: clamp(26px, 3.2vw, 38px);
}

body[data-page="home"] .doubts-section {
  padding-block: clamp(48px, 5.4vw, 72px);
}

body[data-page="home"] .results-section {
  padding-block: clamp(52px, 5.8vw, 78px);
  background:
    radial-gradient(circle at 15% 0%, rgba(212, 176, 105, 0.14), transparent 32%),
    linear-gradient(180deg, #fbf6ee 0%, #f4eadc 100%);
}

body[data-page="home"] .results-grid {
  max-width: 1120px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .results-grid article {
  min-height: 0;
  padding: 18px 20px;
}

body[data-page="home"] .stories-section {
  padding-block: clamp(54px, 6vw, 82px);
}

body[data-page="home"] .story-grid {
  gap: 18px;
}

body[data-page="home"] .story-card {
  padding: clamp(22px, 2.3vw, 30px);
}

body[data-page="home"] .work-formats-section {
  padding-block: clamp(54px, 6vw, 82px);
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 10%, rgba(215, 177, 99, 0.14), transparent 34%),
    linear-gradient(145deg, #191713 0%, #242019 54%, #14120f 100%);
}

body[data-page="home"] .work-formats-section .section-heading {
  max-width: 790px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

body[data-page="home"] .work-formats-section .section-heading h2 {
  color: var(--cream);
}

body[data-page="home"] .work-formats-section .section-heading p {
  color: rgba(255, 248, 235, 0.72);
}

.work-formats-grid {
  width: min(1060px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.work-format-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(213, 174, 101, 0.25);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 250, 239, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.work-format-card > span {
  color: #d6b56e;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-format-card h3 {
  margin: 0;
  color: #fff8ea;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
}

.work-format-card p {
  margin: 0;
  color: rgba(255, 248, 235, 0.72);
  line-height: 1.65;
}

.work-format-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-format-card em {
  padding: 8px 11px;
  border: 1px solid rgba(214, 181, 110, 0.22);
  border-radius: 999px;
  color: rgba(255, 244, 222, 0.82);
  font-size: 0.82rem;
  font-style: normal;
}

body[data-page="home"] .faq-section {
  padding-block: clamp(48px, 5.4vw, 72px);
}

body[data-page="home"] .final-cta {
  padding-block: clamp(48px, 5.4vw, 70px);
}

@media (max-width: 980px) {
  body[data-page="home"] .intro-text-grid,
  body[data-page="home"] .request-grid,
  body[data-page="home"] .results-grid,
  .start-options-grid,
  .work-formats-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .about-full-section .about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-page="home"] main > .section:not(.hero) {
    padding-block: 46px;
  }

  body[data-page="home"] .intro-text-grid,
  .start-options-grid,
  .work-formats-grid {
    width: min(100% - 32px, 100%);
  }

  body[data-page="home"] .recognition-pairs,
  body[data-page="home"] .request-grid,
  body[data-page="home"] .results-grid,
  body[data-page="home"] .story-grid {
    gap: 12px;
  }

  body[data-page="home"] .about-full-section .about-points,
  .start-option-points {
    grid-template-columns: 1fr;
  }

  .start-option-card,
  .work-format-card {
    padding: 22px;
    border-radius: 22px;
  }
}

/* Work formats visual refinement v114. */
body[data-page="home"] main > .work-formats-section,
body[data-page="home"] .work-formats-section {
  padding-block: clamp(50px, 5.4vw, 76px);
  color: #fff8ec;
  background:
    radial-gradient(circle at 18% 18%, rgba(193, 143, 56, 0.15), transparent 28rem),
    radial-gradient(circle at 86% 82%, rgba(105, 72, 34, 0.2), transparent 30rem),
    linear-gradient(145deg, #15130f 0%, #211d17 52%, #13110e 100%);
}

body[data-page="home"] .work-formats-section::before,
body[data-page="home"] .work-formats-section::after {
  pointer-events: none;
}

body[data-page="home"] .work-formats-section .section-heading {
  max-width: 760px;
  margin-bottom: clamp(22px, 2.6vw, 32px);
}

body[data-page="home"] .work-formats-section .section-heading h2 {
  color: #fff7e8;
  font-size: clamp(2.4rem, 3.8vw, 4.35rem);
  line-height: 0.98;
  opacity: 1;
}

body[data-page="home"] .work-formats-grid {
  width: min(1040px, calc(100% - 40px));
  align-items: stretch;
  gap: clamp(18px, 2vw, 24px);
}

body[data-page="home"] .work-format-card {
  min-height: 0;
  padding: clamp(26px, 2.7vw, 36px);
  gap: 14px;
  border: 1px solid rgba(205, 163, 87, 0.26);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 174, 92, 0.08), transparent 18rem),
    linear-gradient(145deg, rgba(39, 34, 27, 0.96), rgba(24, 21, 17, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 221, 0.06),
    0 24px 58px rgba(0, 0, 0, 0.24);
}

body[data-page="home"] .work-format-card--primary {
  border-color: rgba(230, 191, 111, 0.48);
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 181, 89, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(44, 37, 28, 0.98), rgba(25, 22, 17, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 221, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 38px rgba(209, 160, 71, 0.08);
}

body[data-page="home"] .work-format-card > span {
  color: #d9b56f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .work-format-card h3 {
  color: #fff8ec;
  font-size: clamp(2rem, 2.55vw, 2.85rem);
  line-height: 1.02;
  opacity: 1;
}

body[data-page="home"] .work-format-card p {
  color: rgba(255, 247, 232, 0.82);
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  line-height: 1.62;
}

body[data-page="home"] .work-format-card div {
  gap: 8px;
  margin-top: 2px;
}

body[data-page="home"] .work-format-card em {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-color: rgba(218, 179, 106, 0.32);
  color: rgba(255, 244, 222, 0.9);
  background: rgba(18, 16, 13, 0.42);
  font-size: 0.82rem;
  line-height: 1.15;
}

body[data-page="home"] .work-format-card .button {
  margin-top: auto;
  min-height: 52px;
}

body[data-page="home"] .work-format-card .button-light {
  color: #fff8ec;
  border-color: rgba(218, 179, 106, 0.48);
  background: rgba(16, 14, 12, 0.36);
}

body[data-page="home"] .work-format-card .button-light:hover,
body[data-page="home"] .work-format-card .button-light:focus-visible {
  color: #241a0d;
  background: linear-gradient(135deg, #fff0b7 0%, #d3a85a 58%, #b48338 100%);
}

@media (max-width: 980px) {
  body[data-page="home"] .work-formats-grid {
    width: min(760px, calc(100% - 36px));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] main > .work-formats-section,
  body[data-page="home"] .work-formats-section {
    padding-block: 44px;
  }

  body[data-page="home"] .work-formats-grid {
    width: min(100% - 32px, 100%);
    gap: 14px;
  }

  body[data-page="home"] .work-format-card {
    padding: 22px;
    border-radius: 22px;
  }

  body[data-page="home"] .work-format-card .button {
    width: 100%;
  }
}

/* Request landing pages refinement v116. */
body[data-page="zminy"],
body[data-page="stosunky"],
body[data-page="kontakt-iz-soboyu"],
body[data-page="vpevnenist-u-sobi"],
body[data-page="vnutrishnya-napruha"],
body[data-page="finansovi-obmezhennya"],
body[data-page="self-realization"],
body[data-page="relationships"],
body[data-page="self-esteem"],
body[data-page="anxiety"],
body[data-page="burnout"],
body[data-page="finance"],
body[data-page="emotional-dependency"] {
  background: #f7efe3;
}

body[data-page="zminy"] .hero,
body[data-page="stosunky"] .hero,
body[data-page="kontakt-iz-soboyu"] .hero,
body[data-page="vpevnenist-u-sobi"] .hero,
body[data-page="vnutrishnya-napruha"] .hero,
body[data-page="finansovi-obmezhennya"] .hero,
body[data-page="self-realization"] .hero,
body[data-page="relationships"] .hero,
body[data-page="self-esteem"] .hero,
body[data-page="anxiety"] .hero,
body[data-page="burnout"] .hero,
body[data-page="finance"] .hero,
body[data-page="emotional-dependency"] .hero {
  min-height: clamp(680px, 82svh, 820px);
}

body[data-page="zminy"] .hero__inner,
body[data-page="stosunky"] .hero__inner,
body[data-page="kontakt-iz-soboyu"] .hero__inner,
body[data-page="vpevnenist-u-sobi"] .hero__inner,
body[data-page="vnutrishnya-napruha"] .hero__inner,
body[data-page="finansovi-obmezhennya"] .hero__inner,
body[data-page="self-realization"] .hero__inner,
body[data-page="relationships"] .hero__inner,
body[data-page="self-esteem"] .hero__inner,
body[data-page="anxiety"] .hero__inner,
body[data-page="burnout"] .hero__inner,
body[data-page="finance"] .hero__inner,
body[data-page="emotional-dependency"] .hero__inner {
  max-width: 760px;
  padding-top: clamp(128px, 14vh, 168px);
  padding-bottom: clamp(70px, 8vh, 96px);
}

body[data-page="zminy"] .hero h1,
body[data-page="stosunky"] .hero h1,
body[data-page="kontakt-iz-soboyu"] .hero h1,
body[data-page="vpevnenist-u-sobi"] .hero h1,
body[data-page="vnutrishnya-napruha"] .hero h1,
body[data-page="finansovi-obmezhennya"] .hero h1,
body[data-page="self-realization"] .hero h1,
body[data-page="relationships"] .hero h1,
body[data-page="self-esteem"] .hero h1,
body[data-page="anxiety"] .hero h1,
body[data-page="burnout"] .hero h1,
body[data-page="finance"] .hero h1,
body[data-page="emotional-dependency"] .hero h1 {
  max-width: 860px;
  font-size: clamp(3.15rem, 4.75vw, 5.3rem);
  line-height: 1.02;
}

body[data-page="vpevnenist-u-sobi"] .hero h1,
body[data-page="finansovi-obmezhennya"] .hero h1,
body[data-page="emotional-dependency"] .hero h1 {
  max-width: 920px;
  font-size: clamp(2.85rem, 4.25vw, 4.85rem);
}

body[data-page="zminy"] .hero,
body[data-page="stosunky"] .hero,
body[data-page="kontakt-iz-soboyu"] .hero,
body[data-page="vpevnenist-u-sobi"] .hero,
body[data-page="vnutrishnya-napruha"] .hero,
body[data-page="finansovi-obmezhennya"] .hero,
body[data-page="self-realization"] .hero,
body[data-page="relationships"] .hero,
body[data-page="self-esteem"] .hero,
body[data-page="anxiety"] .hero,
body[data-page="burnout"] .hero,
body[data-page="finance"] .hero,
body[data-page="emotional-dependency"] .hero {
  min-height: clamp(640px, 84svh, 820px);
  padding-top: clamp(122px, 12vw, 164px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

body[data-page="zminy"] .hero__inner,
body[data-page="stosunky"] .hero__inner,
body[data-page="kontakt-iz-soboyu"] .hero__inner,
body[data-page="vpevnenist-u-sobi"] .hero__inner,
body[data-page="vnutrishnya-napruha"] .hero__inner,
body[data-page="finansovi-obmezhennya"] .hero__inner,
body[data-page="self-realization"] .hero__inner,
body[data-page="relationships"] .hero__inner,
body[data-page="self-esteem"] .hero__inner,
body[data-page="anxiety"] .hero__inner,
body[data-page="burnout"] .hero__inner,
body[data-page="finance"] .hero__inner,
body[data-page="emotional-dependency"] .hero__inner {
  width: min(940px, calc(100% - 64px));
}

body[data-page="zminy"] .hero__subtitle,
body[data-page="stosunky"] .hero__subtitle,
body[data-page="kontakt-iz-soboyu"] .hero__subtitle,
body[data-page="vpevnenist-u-sobi"] .hero__subtitle,
body[data-page="vnutrishnya-napruha"] .hero__subtitle,
body[data-page="finansovi-obmezhennya"] .hero__subtitle,
body[data-page="self-realization"] .hero__subtitle,
body[data-page="relationships"] .hero__subtitle,
body[data-page="self-esteem"] .hero__subtitle,
body[data-page="anxiety"] .hero__subtitle,
body[data-page="burnout"] .hero__subtitle,
body[data-page="finance"] .hero__subtitle,
body[data-page="emotional-dependency"] .hero__subtitle {
  max-width: 680px;
  color: #d9b56f;
  font-weight: 700;
}

body[data-page="zminy"] main > .section:not(.hero),
body[data-page="stosunky"] main > .section:not(.hero),
body[data-page="kontakt-iz-soboyu"] main > .section:not(.hero),
body[data-page="vpevnenist-u-sobi"] main > .section:not(.hero),
body[data-page="vnutrishnya-napruha"] main > .section:not(.hero),
body[data-page="finansovi-obmezhennya"] main > .section:not(.hero),
body[data-page="self-realization"] main > .section:not(.hero),
body[data-page="relationships"] main > .section:not(.hero),
body[data-page="self-esteem"] main > .section:not(.hero),
body[data-page="anxiety"] main > .section:not(.hero),
body[data-page="burnout"] main > .section:not(.hero),
body[data-page="finance"] main > .section:not(.hero),
body[data-page="emotional-dependency"] main > .section:not(.hero) {
  padding-block: clamp(52px, 5.6vw, 82px);
  scroll-margin-top: 92px;
}

.request-recognition-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(210, 170, 96, 0.16), transparent 26rem),
    linear-gradient(180deg, #fbf5ec 0%, #f1e4d3 100%);
}

.request-recognition-grid,
.symptom-grid,
.work-process-grid {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.request-recognition-grid article,
.symptom-grid article,
.work-process-grid article {
  min-height: 0;
  padding: 18px 20px;
  border: 1px solid rgba(94, 70, 40, 0.14);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.66);
  color: rgba(43, 38, 32, 0.84);
  box-shadow: 0 18px 48px rgba(84, 62, 34, 0.09);
}

.deep-reasons-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  color: #fff8ec;
  background:
    radial-gradient(circle at 82% 20%, rgba(205, 158, 76, 0.14), transparent 30rem),
    linear-gradient(145deg, #15130f 0%, #221e17 52%, #12100d 100%);
}

.deep-reasons-copy {
  max-width: 560px;
}

.deep-reasons-copy h2 {
  margin: 0 0 18px;
  color: #fff8ec;
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 1;
}

.deep-reasons-copy p:last-child {
  color: rgba(255, 247, 232, 0.78);
  line-height: 1.7;
}

.deep-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.deep-reasons-grid article {
  min-height: 0;
  padding: 18px 20px;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 20px;
  background: rgba(255, 250, 238, 0.065);
}

.deep-reasons-grid span {
  display: block;
  width: 26px;
  height: 2px;
  margin-bottom: 14px;
  background: #d9b56f;
}

.deep-reasons-grid p {
  margin: 0;
  color: rgba(255, 247, 232, 0.84);
}

.work-process-section,
.about-compact-section,
.request-start-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(209, 169, 91, 0.12), transparent 25rem),
    linear-gradient(180deg, #fbf6ee 0%, #f3e8d8 100%);
}

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

.work-process-grid span {
  color: #b78a3f;
  font-family: var(--font-serif);
  font-size: 1.7rem;
}

.work-process-grid h3 {
  margin: 12px 0 8px;
  color: #2b2620;
  font-size: 1rem;
}

.work-process-grid p {
  margin: 0;
  color: rgba(43, 38, 32, 0.66);
  line-height: 1.55;
}

.about-compact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(28px, 5vw, 66px);
}

.about-compact-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid rgba(255, 252, 245, 0.82);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(79, 55, 25, 0.16);
}

.about-compact-copy h2 {
  max-width: 720px;
  margin: 0 0 16px;
  color: #2b2620;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 1;
}

.about-compact-copy > p {
  max-width: 720px;
  color: rgba(43, 38, 32, 0.72);
  line-height: 1.7;
}

.about-compact-facts,
.about-compact-stats {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

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

.about-compact-facts span {
  padding: 13px 15px;
  border: 1px solid rgba(94, 70, 40, 0.14);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.58);
  font-weight: 700;
}

.about-compact-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.about-compact-stats article {
  padding: 16px;
  border: 1px solid rgba(94, 70, 40, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.5);
}

.about-compact-stats strong {
  display: block;
  color: #9b7131;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
}

.about-compact-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(43, 38, 32, 0.66);
  font-size: 0.86rem;
}

.request-start-grid {
  width: min(1020px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.request-start-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(94, 70, 40, 0.14);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 22px 56px rgba(84, 62, 34, 0.1);
}

.request-start-grid span {
  color: #a77b36;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.request-start-grid h3 {
  margin: 0;
  color: #2b2620;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1;
}

.request-start-grid p {
  margin: 0;
  color: rgba(43, 38, 32, 0.72);
  line-height: 1.62;
}

.request-start-grid .button {
  margin-top: auto;
}

body:not([data-page="home"]) .work-formats-section {
  padding-block: clamp(50px, 5.4vw, 76px);
  color: #fff8ec;
  background:
    radial-gradient(circle at 18% 18%, rgba(193, 143, 56, 0.15), transparent 28rem),
    radial-gradient(circle at 86% 82%, rgba(105, 72, 34, 0.2), transparent 30rem),
    linear-gradient(145deg, #15130f 0%, #211d17 52%, #13110e 100%);
}

body:not([data-page="home"]) .work-formats-section .section-heading h2 {
  color: #fff8ec;
}

body:not([data-page="home"]) .work-format-card {
  color: #fff8ec;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 174, 92, 0.08), transparent 18rem),
    linear-gradient(145deg, rgba(39, 34, 27, 0.96), rgba(24, 21, 17, 0.98));
}

body:not([data-page="home"]) .application-section {
  color: #fff8ec;
  background:
    radial-gradient(circle at 80% 10%, rgba(214, 174, 92, 0.12), transparent 28rem),
    linear-gradient(145deg, #15130f 0%, #211d17 52%, #13110e 100%);
}

@media (max-width: 1024px) {
  .request-recognition-grid,
  .symptom-grid,
  .work-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deep-reasons-section,
  .about-compact-section {
    grid-template-columns: 1fr;
  }

  .about-compact-media {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  body[data-page="zminy"] .hero,
  body[data-page="stosunky"] .hero,
  body[data-page="kontakt-iz-soboyu"] .hero,
  body[data-page="vpevnenist-u-sobi"] .hero,
  body[data-page="vnutrishnya-napruha"] .hero,
  body[data-page="finansovi-obmezhennya"] .hero,
  body[data-page="self-realization"] .hero,
  body[data-page="relationships"] .hero,
  body[data-page="self-esteem"] .hero,
  body[data-page="anxiety"] .hero,
  body[data-page="burnout"] .hero,
  body[data-page="finance"] .hero,
  body[data-page="emotional-dependency"] .hero {
    min-height: auto;
  }

  body[data-page="zminy"] .hero h1,
  body[data-page="stosunky"] .hero h1,
  body[data-page="kontakt-iz-soboyu"] .hero h1,
  body[data-page="vpevnenist-u-sobi"] .hero h1,
  body[data-page="vnutrishnya-napruha"] .hero h1,
  body[data-page="finansovi-obmezhennya"] .hero h1,
  body[data-page="self-realization"] .hero h1,
  body[data-page="relationships"] .hero h1,
  body[data-page="self-esteem"] .hero h1,
  body[data-page="anxiety"] .hero h1,
  body[data-page="burnout"] .hero h1,
  body[data-page="finance"] .hero h1,
  body[data-page="emotional-dependency"] .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
    line-height: 1.03;
  }

  .request-recognition-grid,
  .symptom-grid,
  .deep-reasons-grid,
  .work-process-grid,
  .about-compact-facts,
  .about-compact-stats,
  .request-start-grid {
    width: min(100% - 32px, 100%);
    grid-template-columns: 1fr;
  }

  .about-compact-media {
    width: min(100% - 32px, 420px);
    margin-inline: auto;
  }

  .request-start-grid .button,
  .about-compact-copy .button {
    width: 100%;
  }
}

/* Hero text and mobile menu refinement v117. */
body[data-page="home"] .hero h1 {
  max-width: min(980px, 61vw);
}

body[data-page="home"] .hero__title-accent {
  max-width: min(1000px, 68vw);
}

@media (max-width: 760px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header[data-theme],
  body[data-page="home"] .site-header[data-theme].is-open {
    min-height: 62px;
    padding-top: calc(env(safe-area-inset-top, 0px) + 8px);
    padding-bottom: 8px;
  }

  body[data-page="home"] .menu-toggle {
    width: 42px;
    height: 42px;
  }

  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    top: calc(100% + 6px);
    left: auto;
    right: clamp(12px, 4vw, 18px);
    width: min(232px, calc(100vw - 32px));
    max-width: min(232px, calc(100vw - 32px));
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  }

  body[data-page="home"] .nav a {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.96rem;
  }

  body[data-page="home"] .hero {
    min-height: 100svh;
    padding-top: calc(env(safe-area-inset-top, 0px) + 66px);
    padding-bottom: 28px;
    gap: 0;
  }

  body[data-page="home"] .hero__image {
    height: clamp(258px, 68vw, 336px);
    max-height: 39svh;
    object-position: 54% 3%;
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(14px, 3.8vw, 22px);
  }

  body[data-page="home"] .hero h1 {
    max-width: 100%;
    margin-bottom: clamp(12px, 3vw, 18px);
    font-size: clamp(2.28rem, 10.55vw, 3.38rem);
    line-height: 0.98;
  }

  body[data-page="home"] .hero__title-main,
  body[data-page="home"] .hero__title-accent {
    max-width: 100%;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 8px;
    font-size: clamp(2.05rem, 10.2vw, 3.42rem);
    line-height: 1.16;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    font-size: clamp(0.96rem, 3.8vw, 1.05rem);
    line-height: 1.48;
  }

  body[data-page="home"] .hero__actions {
    margin-top: 18px;
    gap: 10px;
  }

  body[data-page="home"] .hero-trust {
    margin-top: 14px;
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    padding-top: calc(env(safe-area-inset-top, 0px) + 62px);
    padding-bottom: 24px;
  }

  body[data-page="home"] .hero__image {
    height: clamp(230px, 66vw, 292px);
    max-height: 35svh;
    object-position: 54% 0%;
  }

  body[data-page="home"] .hero__inner {
    padding-top: 12px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.1rem, 10.2vw, 2.9rem);
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 6px;
    font-size: clamp(1.98rem, 10.6vw, 3.05rem);
    line-height: 1.13;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero__image {
    height: clamp(214px, 63vw, 264px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(1.98rem, 9.9vw, 2.62rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(1.82rem, 10vw, 2.76rem);
  }
}

/* Mobile-only hero composition pass v118. */
@media (max-width: 760px) {
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    left: auto !important;
    right: clamp(10px, 3.6vw, 16px) !important;
    width: min(160px, calc(100vw - 30px)) !important;
    max-width: min(160px, calc(100vw - 30px)) !important;
    padding: 7px !important;
    border-radius: 13px;
  }

  body[data-page="home"] .nav a {
    min-height: 44px;
    padding: 8px 11px;
    font-size: 0.9rem;
    line-height: 1.18;
  }

  body[data-page="home"] .hero {
    min-height: auto;
    padding-top: calc(env(safe-area-inset-top, 0px) + 62px);
    padding-bottom: 34px;
  }

  body[data-page="home"] .hero__image {
    width: min(100%, 420px);
    height: clamp(242px, 35svh, 328px);
    max-height: none;
    margin-top: 0;
    margin-bottom: 0;
    object-fit: contain;
    object-position: center top;
    border-radius: 18px;
    background:
      radial-gradient(circle at 58% 16%, rgba(205, 156, 65, 0.2), transparent 42%),
      rgba(12, 11, 9, 0.22);
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(10px, 2.6vw, 16px);
  }

  body[data-page="home"] .hero h1 {
    margin-bottom: 0;
    font-size: clamp(2.18rem, 9.65vw, 3.2rem);
    line-height: 1;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: clamp(5px, 1.4vw, 9px);
    font-size: clamp(1.92rem, 9.4vw, 3.02rem);
    line-height: 1.16;
  }

  body[data-page="home"] .hero p:not(.hero__eyebrow) {
    margin-top: clamp(94px, 18svh, 170px);
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    padding-top: calc(env(safe-area-inset-top, 0px) + 58px);
  }

  body[data-page="home"] .hero__image {
    height: clamp(226px, 34svh, 288px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.02rem, 9.35vw, 2.72rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(1.82rem, 9.6vw, 2.82rem);
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero__image {
    height: clamp(208px, 33svh, 252px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(1.9rem, 9.1vw, 2.48rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(1.72rem, 9.35vw, 2.54rem);
  }
}

/* Final mobile hero framing v119: wide photo, title-only first screen. */
@media (max-width: 760px) {
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    left: auto !important;
    right: clamp(16px, 5vw, 24px) !important;
    width: min(156px, calc(100vw - 32px)) !important;
    max-width: min(156px, calc(100vw - 32px)) !important;
    padding: 8px 10px !important;
  }

  body[data-page="home"] .nav a {
    min-height: 43px;
    padding: 7px 10px;
    font-size: 0.9rem;
  }

  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(285px, 76vw, 315px);
    min-height: auto;
    padding-top: calc(env(safe-area-inset-top, 0px) + 62px);
    padding-inline: 0;
    padding-bottom: 34px;
  }

  body[data-page="home"] .hero__image {
    width: min(calc(100vw - 40px), 430px);
    height: var(--home-mobile-photo-height);
    max-height: none;
    margin-inline: auto;
    border-radius: 18px;
    overflow: hidden;
    object-fit: cover;
    object-position: 50% 38%;
    background: transparent;
  }

  body[data-page="home"] .hero__inner {
    width: min(calc(100vw - 40px), 430px);
    margin-inline: auto;
    padding-top: clamp(14px, 4.2vw, 22px);
  }

  body[data-page="home"] .hero h1 {
    min-height: max(0px, calc(100svh - env(safe-area-inset-top, 0px) - 62px - var(--home-mobile-photo-height) - 22px));
    margin: 0;
    font-size: clamp(2.72rem, 12.3vw, 3.25rem);
    line-height: 1.1;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: clamp(4px, 1.6vw, 9px);
    font-size: clamp(2.22rem, 10.8vw, 2.72rem);
    line-height: 1.28;
  }

  body[data-page="home"] .hero__lead {
    margin-top: clamp(24px, 5vw, 34px);
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(285px, 75vw, 310px);
    padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
  }

  body[data-page="home"] .hero h1 {
    min-height: max(0px, calc(100svh - env(safe-area-inset-top, 0px) - 60px - var(--home-mobile-photo-height) - 20px));
    font-size: clamp(2.62rem, 12vw, 3rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(2.12rem, 10.6vw, 2.56rem);
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(270px, 73vw, 292px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.36rem, 11.2vw, 2.72rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(1.96rem, 10.2vw, 2.34rem);
  }
}

/* Mobile-only hero flow v120: photo, title, buttons, then explanation. */
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(360px, 98vw, 420px);
    min-height: 100svh;
    padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
    padding-inline: 0;
    padding-bottom: 30px;
  }

  body[data-page="home"] .hero__image {
    width: min(calc(100vw - 40px), 430px);
    height: var(--home-mobile-photo-height);
    object-fit: cover;
    object-position: 50% 42%;
    border-radius: 18px;
    margin-inline: auto;
  }

  body[data-page="home"] .hero__inner {
    width: min(calc(100vw - 40px), 430px);
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    padding-top: clamp(20px, 5vw, 24px);
  }

  body[data-page="home"] .hero h1 {
    order: 1;
    min-height: 0;
    margin: 0;
    font-size: clamp(2.72rem, 12.4vw, 3.18rem);
    line-height: 1.1;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: clamp(4px, 1.3vw, 8px);
    font-size: clamp(2.2rem, 10.3vw, 2.62rem);
    line-height: 1.3;
  }

  body[data-page="home"] .hero__actions {
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    width: 100%;
    margin-top: clamp(24px, 6vw, 30px);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    width: 100%;
    min-height: 60px;
    padding-inline: 18px;
    font-size: clamp(1.02rem, 4.4vw, 1.15rem);
    line-height: 1.2;
  }

  body[data-page="home"] .hero__lead {
    order: 3;
    margin-top: clamp(48px, 10vw, 64px);
  }

  body[data-page="home"] .hero-trust {
    order: 4;
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(370px, 97vw, 410px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.58rem, 11.7vw, 2.95rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(2.08rem, 10.1vw, 2.48rem);
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(330px, 94vw, 372px);
    padding-top: calc(env(safe-area-inset-top, 0px) + 58px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.34rem, 11vw, 2.68rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(1.92rem, 9.85vw, 2.28rem);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 58px;
    font-size: 1rem;
  }
}

/* Mobile-only hero rhythm v121: first screen ends on the second CTA. */
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(340px, 93vw, 390px);
    min-height: 100svh;
    padding-top: calc(env(safe-area-inset-top, 0px) + 56px);
    padding-inline: 0;
    padding-bottom: 0;
  }

  body[data-page="home"] .hero__image {
    width: min(calc(100vw - 40px), 430px);
    height: var(--home-mobile-photo-height);
    max-height: 390px;
    object-fit: cover;
    object-position: 50% 39%;
    margin-inline: auto;
  }

  body[data-page="home"] .hero__inner {
    width: min(calc(100vw - 40px), 430px);
    padding-top: clamp(18px, 4.9vw, 22px);
  }

  body[data-page="home"] .hero h1 {
    min-height: 0;
    font-size: clamp(2.34rem, 10.6vw, 2.95rem);
    line-height: 1.04;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: clamp(4px, 1.45vw, 7px);
    font-size: clamp(2.02rem, 9.35vw, 2.44rem);
    line-height: 1.21;
  }

  body[data-page="home"] .hero__actions {
    gap: 12px;
    margin-top: clamp(20px, 5.4vw, 26px);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: clamp(56px, 14vw, 60px);
  }

  body[data-page="home"] .hero__lead {
    margin-top: clamp(34px, 8.5vw, 44px);
  }

  body[data-page="home"] .hero-trust {
    margin-top: clamp(28px, 7.2vw, 38px);
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(340px, 91vw, 388px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.26rem, 10.55vw, 2.84rem);
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(1.96rem, 9.25vw, 2.34rem);
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(270px, 41svh, 330px);
    padding-top: calc(env(safe-area-inset-top, 0px) + 52px);
  }

  body[data-page="home"] .hero__inner {
    padding-top: 16px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.04rem, 9.75vw, 2.48rem);
    line-height: 1.03;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 4px;
    font-size: clamp(1.78rem, 8.8vw, 2.12rem);
    line-height: 1.17;
  }

  body[data-page="home"] .hero__actions {
    gap: 10px;
    margin-top: 18px;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 56px;
    font-size: 0.96rem;
  }

  body[data-page="home"] .hero__lead {
    margin-top: 32px;
  }
}

/* Final mobile first-screen fit v122: trim the photo bottom and tighten post-CTA flow. */
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(330px, 89vw, 380px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
  }

  body[data-page="home"] .hero__image {
    height: var(--home-mobile-photo-height);
    max-height: 380px;
    object-position: 50% 39%;
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(16px, 4.4vw, 20px);
  }

  body[data-page="home"] .hero__actions {
    gap: 11px;
    margin-top: clamp(16px, 4.7vw, 20px);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: clamp(54px, 13.4vw, 58px);
    padding-inline: 16px;
  }

  body[data-page="home"] .hero__lead {
    margin-top: clamp(18px, 5.4vw, 24px);
  }

  body[data-page="home"] .hero-trust {
    margin-top: clamp(28px, 7vw, 38px);
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(326px, 88vw, 378px);
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(246px, 38svh, 310px);
    padding-top: calc(env(safe-area-inset-top, 0px) + 50px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  }

  body[data-page="home"] .hero__inner {
    padding-top: 14px;
  }

  body[data-page="home"] .hero__actions {
    gap: 10px;
    margin-top: 16px;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 54px;
  }

  body[data-page="home"] .hero__lead {
    margin-top: 18px;
  }
}

/* Mobile viewport-safe hero v123: resilient for Safari, Meta and Telegram browser chrome. */
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(300px, min(84vw, 42svh), 360px);
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: calc(env(safe-area-inset-top, 0px) + clamp(48px, 7svh, 54px));
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(16px, 3.2svh, 22px));
  }

  body[data-page="home"] .hero__image {
    height: var(--home-mobile-photo-height);
    max-height: 360px;
    object-fit: cover;
    object-position: 50% 39%;
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(14px, 3.8vw, 18px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.18rem, 10.15vw, 2.78rem);
    line-height: 1.03;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: clamp(3px, 1.2vw, 6px);
    font-size: clamp(1.9rem, 9.05vw, 2.26rem);
    line-height: 1.18;
  }

  body[data-page="home"] .hero__actions {
    gap: clamp(9px, 2.6vw, 11px);
    margin-top: clamp(14px, 4svh, 18px);
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: clamp(52px, 7.2svh, 56px);
    padding-inline: 16px;
  }

  body[data-page="home"] .hero__lead {
    margin-top: clamp(16px, 4.6vw, 24px);
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(292px, min(82vw, 41svh), 352px);
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(228px, min(76vw, 36svh), 292px);
    padding-top: calc(env(safe-area-inset-top, 0px) + clamp(44px, 6.8svh, 50px));
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 16px);
  }

  body[data-page="home"] .hero__inner {
    padding-top: clamp(11px, 3.1vw, 14px);
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(1.96rem, 9.15vw, 2.32rem);
    line-height: 1.02;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 3px;
    font-size: clamp(1.7rem, 8.35vw, 1.98rem);
    line-height: 1.16;
  }

  body[data-page="home"] .hero__actions {
    gap: 9px;
    margin-top: 14px;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 52px;
    font-size: 0.94rem;
  }

  body[data-page="home"] .hero__lead {
    margin-top: 16px;
  }
}

/* Mobile hero polish v124: calmer portrait headroom and tighter post-CTA spacing. */
@media (max-width: 760px) {
  body[data-page="home"] .hero__image {
    object-position: 50% 35%;
  }

  body[data-page="home"] .hero__lead {
    margin-top: clamp(24px, 5.8vw, 32px);
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  body[data-page="home"] .hero__image {
    object-position: 50% 36%;
  }

  body[data-page="home"] .hero__lead {
    margin-top: 24px;
  }
}

/* Mobile dropdown menu polish v125. */
@media (max-width: 760px) {
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: clamp(12px, 4vw, 18px) !important;
    width: max-content !important;
    min-width: 148px !important;
    max-width: calc(100vw - 32px) !important;
    padding: 7px !important;
    border: 1px solid rgba(157, 116, 52, 0.62) !important;
    border-radius: 16px !important;
    background:
      linear-gradient(145deg, rgba(255, 249, 234, 0.98), rgba(229, 202, 145, 0.96)) !important;
    color: #2d251c !important;
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
    backdrop-filter: blur(14px);
  }

  body[data-page="home"] .nav a {
    min-height: 42px;
    padding: 8px 12px;
    color: #2d251c;
    font-size: 0.91rem;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    border-radius: 11px;
    transition:
      background-color 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  body[data-page="home"] .nav a::after {
    display: none;
  }

  body[data-page="home"] .nav a:hover,
  body[data-page="home"] .nav a:active,
  body[data-page="home"] .nav a:focus-visible {
    color: #211a12;
    background: rgba(157, 116, 52, 0.16);
    transform: translateY(-1px);
    outline: none;
  }
}

@media (max-width: 340px) {
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    right: 10px !important;
    min-width: 142px !important;
    max-width: calc(100vw - 20px) !important;
    padding: 6px !important;
  }

  body[data-page="home"] .nav a {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.88rem;
  }
}

/* Mobile vertical rhythm v126: tighter hero follow-up and compact recognition cards. */
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  body[data-page="home"] .hero__actions {
    margin-bottom: 0;
  }

  body[data-page="home"] .hero__lead {
    margin-top: clamp(20px, 5vw, 28px);
  }

  body[data-page="home"] .recognition-section {
    gap: 0;
    padding: clamp(28px, 7vw, 36px) clamp(24px, 6vw, 32px);
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-bottom: clamp(20px, 5.6vw, 26px);
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    font-size: clamp(3rem, 13.4vw, 3.55rem);
    line-height: 1;
  }

  body[data-page="home"] .recognition-pairs {
    gap: clamp(14px, 3.9vw, 18px);
  }

  body[data-page="home"] .recognition-pairs article {
    min-height: 0;
    padding: clamp(18px, 4.9vw, 22px) clamp(24px, 6.4vw, 28px);
    justify-content: flex-start;
  }

  body[data-page="home"] .recognition-pairs p {
    font-size: clamp(1.75rem, 8.1vw, 2rem);
    line-height: 1.22;
  }

  body[data-page="home"] .recognition-pairs p + p {
    margin-top: clamp(8px, 2.6vw, 11px);
  }

  body[data-page="home"] .recognition-note {
    margin-top: clamp(20px, 5vw, 28px);
    padding: 20px;
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  body[data-page="home"] .hero__lead {
    margin-top: 20px;
  }

  body[data-page="home"] .recognition-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-bottom: 18px;
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    font-size: clamp(2.86rem, 12.6vw, 3.28rem);
  }

  body[data-page="home"] .recognition-pairs {
    gap: 12px;
  }

  body[data-page="home"] .recognition-pairs article {
    padding: 16px 22px;
  }

  body[data-page="home"] .recognition-pairs p {
    font-size: clamp(1.58rem, 7.35vw, 1.82rem);
    line-height: 1.18;
  }

  body[data-page="home"] .recognition-pairs p + p {
    margin-top: 7px;
  }
}

/* Mobile correction v127: remove artificial hero gap and restore compact recognition sizing. */
@media (max-width: 760px) {
  body[data-page="home"] .hero {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
  }

  body[data-page="home"] .hero__lead {
    margin-top: clamp(20px, 4.8vw, 24px);
  }

  body[data-page="home"] .recognition-section {
    min-height: 0;
    gap: 0;
    padding: clamp(20px, 6vw, 28px) clamp(20px, 5.5vw, 24px);
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-top: 0;
    margin-bottom: clamp(16px, 4.8vw, 22px);
    padding-block: 0;
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    font-size: clamp(42px, 12vw, 50px);
    line-height: 1;
  }

  body[data-page="home"] .recognition-pairs {
    gap: clamp(10px, 3.4vw, 14px);
  }

  body[data-page="home"] .recognition-pairs article {
    height: auto;
    min-height: 0;
    padding: clamp(16px, 4.6vw, 20px) clamp(20px, 5.6vw, 24px);
    justify-content: flex-start;
  }

  body[data-page="home"] .recognition-pairs p {
    max-width: none;
    font-size: clamp(24px, 7vw, 29px);
    line-height: 1.18;
  }

  body[data-page="home"] .recognition-pairs p + p {
    margin-top: clamp(6px, 2.2vw, 10px);
    font-size: clamp(22px, 6.5vw, 27px);
    line-height: 1.2;
  }

  body[data-page="home"] .recognition-note {
    margin-top: clamp(16px, 4.8vw, 24px);
  }
}

/* Mobile stability v128: keep the header visually fixed and remove the last post-CTA void. */
@media (max-width: 760px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header[data-theme],
  body[data-page="home"] .site-header[data-theme="dark"],
  body[data-page="home"] .site-header[data-theme="dark"].is-open,
  body[data-page="home"] .site-header[data-theme].is-scrolled,
  body[data-page="home"] .site-header.is-past-hero {
    min-height: 62px;
    padding: calc(env(safe-area-inset-top, 0px) + 8px) clamp(16px, 5vw, 22px) 8px;
    color: rgba(255, 252, 244, 0.92);
    background: rgba(12, 10, 8, 0.88);
    border-bottom: 1px solid rgba(224, 191, 120, 0.12);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    transform: none;
    transition: none;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  body[data-page="home"] .menu-toggle {
    width: 42px;
    height: 42px;
    color: inherit;
    transform: none;
    transition: none;
  }

  body[data-page="home"] .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  body[data-page="home"] .hero__actions {
    order: 2;
    margin-bottom: 0;
  }

  body[data-page="home"] .hero__lead {
    order: 3;
    margin-top: clamp(20px, 5vw, 28px) !important;
  }

  body[data-page="home"] .hero-trust {
    order: 4;
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  body[data-page="home"] .hero__lead {
    margin-top: 20px !important;
  }
}

/* Mobile CTA stability v129: prevent Safari toolbar height changes from reflowing the first button. */
@media (max-width: 760px) {
  body[data-page="home"] .hero__actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    flex-shrink: 0;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    transform: none;
    scale: 1;
    font-size: clamp(0.9rem, 3.75vw, 1rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
    padding: 0 14px;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }

  body[data-page="home"] .hero .button-primary {
    min-height: 58px;
    height: 58px;
  }

  body[data-page="home"] .hero .button-ghost {
    min-height: 56px;
    height: 56px;
  }
}

@media (max-width: 360px) {
  body[data-page="home"] .hero .button-primary {
    min-height: 72px;
    height: 72px;
    white-space: normal;
  }
}

/* Mobile headline stability v130: keep hero typography independent from Safari toolbar height. */
@media (max-width: 760px) {
  body[data-page="home"] .hero h1 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: clamp(41px, 10.95vw, 48px);
    line-height: 1.1;
    letter-spacing: 0;
    transform: none;
    scale: 1;
  }

  body[data-page="home"] .hero__title-main,
  body[data-page="home"] .hero__title-accent {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transform: none;
    scale: 1;
  }

  body[data-page="home"] .hero__title-main span,
  body[data-page="home"] .hero__title-accent span {
    transform: none;
    scale: 1;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 5px;
    font-size: clamp(34px, 9.35vw, 40px);
    line-height: 1.25;
    letter-spacing: 0;
  }
}

@media (max-width: 360px) {
  body[data-page="home"] .hero h1 {
    font-size: clamp(37px, 10.55vw, 41px);
    line-height: 1.1;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(31px, 9.05vw, 34px);
    line-height: 1.25;
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  body[data-page="home"] .hero__lead {
    margin-top: 20px;
  }

  body[data-page="home"] .recognition-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-bottom: 16px;
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    font-size: clamp(40px, 11.4vw, 46px);
    line-height: 0.98;
  }

  body[data-page="home"] .recognition-pairs {
    gap: 10px;
  }

  body[data-page="home"] .recognition-pairs article {
    padding: 14px 20px;
  }

  body[data-page="home"] .recognition-pairs p {
    font-size: clamp(23px, 6.7vw, 27px);
    line-height: 1.16;
  }

  body[data-page="home"] .recognition-pairs p + p {
    margin-top: 6px;
    font-size: clamp(21px, 6.25vw, 25px);
    line-height: 1.18;
  }
}

/* Mobile recognition grid v131: fit all six "Можливо, вам знайомо" cards in a 2x3 layout. */
@media (max-width: 760px) {
  body[data-page="home"] .recognition-section {
    min-height: 0;
    padding: 20px 18px 20px;
    gap: 0;
    align-content: start;
    justify-content: stretch;
  }

  body[data-page="home"] .recognition-section .section-heading {
    max-width: 100%;
    margin: 0 0 16px;
    padding: 0;
    text-align: center;
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    width: min(100%, 290px);
    margin: 0 auto;
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1.02;
  }

  body[data-page="home"] .recognition-pairs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    column-gap: 10px;
    row-gap: 10px;
    margin: 0;
  }

  body[data-page="home"] .recognition-pairs article {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
  }

  body[data-page="home"] .recognition-pairs p {
    max-width: none;
    font-size: clamp(18px, 5vw, 20px);
    line-height: 1.18;
    letter-spacing: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  body[data-page="home"] .recognition-pairs p + p {
    margin-top: 6px;
    font-size: clamp(17px, 4.75vw, 19px);
    line-height: 1.18;
  }

  body[data-page="home"] .recognition-note {
    margin-top: 18px;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .recognition-section {
    padding: 14px 16px 16px;
  }

  body[data-page="home"] .recognition-section .section-heading {
    margin-bottom: 12px;
  }

  body[data-page="home"] .recognition-section .section-heading h2 {
    width: min(100%, 260px);
    font-size: clamp(36px, 10.1vw, 40px);
    line-height: 1;
  }

  body[data-page="home"] .recognition-pairs {
    column-gap: 8px;
    row-gap: 8px;
  }

  body[data-page="home"] .recognition-pairs article {
    padding: 10px;
  }

  body[data-page="home"] .recognition-pairs p {
    font-size: clamp(16px, 4.75vw, 18px);
    line-height: 1.16;
  }

  body[data-page="home"] .recognition-pairs p + p {
    margin-top: 5px;
    font-size: clamp(15px, 4.5vw, 17px);
    line-height: 1.16;
  }
}

/* Mobile recognition note text v132: improve readability without changing card styling. */
@media (max-width: 760px) {
  body[data-page="home"] .recognition-note {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 24px;
  }

  body[data-page="home"] .recognition-note p {
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1.5;
    letter-spacing: 0;
  }

  body[data-page="home"] .recognition-note strong {
    white-space: normal;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .recognition-note {
    gap: 14px;
    padding: 24px;
  }

  body[data-page="home"] .recognition-note p {
    font-size: clamp(20px, 5.3vw, 21px);
    line-height: 1.48;
  }
}

/* Mobile requests grid v133: keep all six request cards visible in a compact 2x3 layout. */
@media (max-width: 760px) {
  body[data-page="home"] main > #requests.request-section,
  body[data-page="home"] main > .section.request-section,
  body[data-page="home"] .request-section {
    padding: 24px 16px;
  }

  body[data-page="home"] .request-section .section-heading {
    max-width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }

  body[data-page="home"] .request-section .section-heading h2 {
    margin: 0;
    font-size: clamp(36px, 9.3vw, 42px);
    line-height: 1.02;
  }

  body[data-page="home"] .request-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 165px;
    gap: 10px 10px;
    align-items: stretch;
  }

  body[data-page="home"] .request-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 165px;
    padding: 14px;
    overflow: hidden;
  }

  body[data-page="home"] .request-card::before {
    width: 32px;
    margin-bottom: 8px;
  }

  body[data-page="home"] .request-card__topic {
    margin: 0 0 7px;
    font-size: clamp(20px, 5.2vw, 22px);
    line-height: 1.2;
  }

  body[data-page="home"] .request-card__description {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
  }

  body[data-page="home"] .request-card strong {
    margin-top: auto;
    padding-top: 10px;
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] main > #requests.request-section,
  body[data-page="home"] main > .section.request-section,
  body[data-page="home"] .request-section {
    padding: 20px 14px;
  }

  body[data-page="home"] .request-section .section-heading {
    margin-bottom: 16px;
  }

  body[data-page="home"] .request-section .section-heading h2 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.02;
  }

  body[data-page="home"] .request-grid {
    grid-auto-rows: 158px;
    gap: 8px;
  }

  body[data-page="home"] .request-card {
    height: 158px;
    padding: 12px;
  }

  body[data-page="home"] .request-card::before {
    width: 28px;
    margin-bottom: 6px;
  }

  body[data-page="home"] .request-card__topic {
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 1.16;
  }

  body[data-page="home"] .request-card__description {
    font-size: 13px;
    line-height: 1.3;
  }

  body[data-page="home"] .request-card strong {
    padding-top: 8px;
    font-size: 13px;
  }
}

/* Final cascade lock v141: keep this block last. */
@media (max-width: 760px) {
  body[data-page] .site-header[data-theme] .nav,
  body[data-page] .nav,
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: clamp(12px, 4vw, 18px) !important;
    width: max-content !important;
    min-width: 148px !important;
    max-width: min(175px, calc(100vw - 32px)) !important;
    padding: 7px !important;
  }

  body[data-page] .nav a,
  body[data-page="home"] .nav a {
    min-height: 42px !important;
    padding: 8px 12px !important;
    font-size: 0.91rem !important;
    white-space: nowrap !important;
  }

  body[data-page="home"] .hero {
    min-height: 100svh !important;
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 52px !important;
    height: 52px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    height: clamp(250px, 34svh, 330px) !important;
    object-position: var(--hero-image-position-mobile, 50% 18%) !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid article {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid span {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    font-size: 28px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid h3,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid p {
    grid-column: 2 !important;
    max-width: none !important;
    min-width: 0 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero__image {
    height: clamp(198px, 58vw, 220px) !important;
    min-height: 0 !important;
    max-height: 220px !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(33px, 9.25vw, 39px) !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(27px, 7.75vw, 32px) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 48px !important;
    height: 48px !important;
  }
}

/* Mobile application submit label v163. */
@media (max-width: 767px) {
  .application-form .button[type="submit"] {
    font-size: 18px !important;
    line-height: 1.2;
  }
}

@media (max-width: 760px) and (max-height: 740px) {
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero {
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    height: clamp(180px, 29svh, 218px) !important;
    min-height: 0 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__inner {
    gap: 0 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero h1 {
    font-size: clamp(28px, 8.35vw, 34px) !important;
    line-height: 1.02 !important;
    margin-bottom: 8px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__lead {
    font-size: 15px !important;
    line-height: 1.38 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__actions {
    gap: 7px !important;
    margin-top: 10px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero .button-primary,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero .button-ghost {
    min-height: 46px !important;
    height: 46px !important;
  }
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__lead + .hero__lead {
  margin-top: clamp(8px, 1vw, 12px);
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__lead--final {
  margin-top: clamp(14px, 1.4vw, 18px);
}

/* Final cascade lock v140.1: this must stay last. */
@media (max-width: 760px) {
  body[data-page] .site-header[data-theme] .nav,
  body[data-page] .nav,
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: clamp(12px, 4vw, 18px) !important;
    width: max-content !important;
    min-width: 148px !important;
    max-width: min(175px, calc(100vw - 32px)) !important;
    padding: 7px !important;
  }

  body[data-page] .nav a,
  body[data-page="home"] .nav a {
    min-height: 42px !important;
    padding: 8px 12px !important;
    font-size: 0.91rem !important;
    white-space: nowrap !important;
  }

  body[data-page="home"] .hero {
    min-height: 100svh !important;
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 52px !important;
    height: 52px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    height: clamp(250px, 34svh, 330px) !important;
    object-position: var(--hero-image-position-mobile, 50% 18%) !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid article {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid span {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    font-size: 28px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid h3,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid p {
    grid-column: 2 !important;
    max-width: none !important;
    min-width: 0 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero__image {
    height: clamp(198px, 58vw, 220px) !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(33px, 9.25vw, 39px) !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(27px, 7.75vw, 32px) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 48px !important;
    height: 48px !important;
  }
}

/* System mobile stability pass v138: shared menu, safe hero, request pages. */
@media (max-width: 760px) {
  .site-header,
  .site-header[data-theme],
  .site-header[data-theme="dark"],
  .site-header[data-theme="light"],
  .site-header[data-theme].is-open,
  .site-header[data-theme].is-scrolled,
  .site-header.is-past-hero {
    min-height: 62px !important;
    padding: calc(env(safe-area-inset-top, 0px) + 8px) clamp(16px, 5vw, 22px) 8px !important;
    color: rgba(255, 252, 244, 0.92) !important;
    background: rgba(12, 10, 8, 0.88) !important;
    border-bottom: 1px solid rgba(224, 191, 120, 0.12) !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14) !important;
    transform: none !important;
    transition: none !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    color: inherit !important;
    transform: none !important;
    transition: none !important;
  }

  .site-header[data-theme] .nav,
  .nav {
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: clamp(12px, 4vw, 18px) !important;
    width: max-content !important;
    min-width: 148px !important;
    max-width: min(175px, calc(100vw - 32px)) !important;
    padding: 7px !important;
    border: 1px solid rgba(157, 116, 52, 0.62) !important;
    border-radius: 16px !important;
    background:
      linear-gradient(145deg, rgba(255, 249, 234, 0.98), rgba(229, 202, 145, 0.96)) !important;
    color: #2d251c !important;
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .nav a {
    min-height: 42px !important;
    padding: 8px 12px !important;
    color: #2d251c !important;
    font-size: 0.91rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    border-radius: 11px !important;
    transition:
      background-color 180ms ease,
      color 180ms ease,
      transform 180ms ease !important;
  }

  .nav a::after {
    display: none !important;
  }

  .nav a:hover,
  .nav a:active,
  .nav a:focus-visible {
    color: #211a12 !important;
    background: rgba(157, 116, 52, 0.16) !important;
    transform: translateY(-1px);
    outline: none;
  }

  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(210px, min(58vw, 31svh), 292px);
    display: flex !important;
    flex-direction: column !important;
    min-height: 100svh !important;
    height: auto !important;
    padding: calc(env(safe-area-inset-top, 0px) + 62px) 20px calc(22px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  body[data-page="home"] .hero__image {
    order: 1 !important;
    width: min(calc(100vw - 40px), 430px) !important;
    height: var(--home-mobile-photo-height) !important;
    max-height: none !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
    object-fit: cover !important;
    object-position: var(--hero-image-position-mobile, 50% 30%) !important;
  }

  body[data-page="home"] .hero__inner {
    order: 2 !important;
    width: min(calc(100vw - 40px), 430px) !important;
    margin-inline: auto !important;
    padding: 12px 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body[data-page="home"] .hero h1 {
    margin: 0 !important;
    font-size: clamp(38px, 10.35vw, 46px) !important;
    line-height: 1.05 !important;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 4px !important;
    font-size: clamp(31px, 8.7vw, 38px) !important;
    line-height: 1.18 !important;
  }

  body[data-page="home"] .hero__actions {
    order: 2 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 9px !important;
    width: 100% !important;
    margin: 12px 0 0 !important;
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px)) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    padding: 0 13px !important;
    font-size: clamp(0.88rem, 3.65vw, 0.98rem) !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }

  body[data-page="home"] .hero__lead {
    order: 3 !important;
    margin-top: 22px !important;
    font-size: 0.96rem !important;
    line-height: 1.48 !important;
  }

  body[data-page="home"] .hero-trust {
    order: 4 !important;
  }
}

@media (max-width: 760px) and (max-height: 740px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(198px, min(55vw, 30svh), 245px);
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body[data-page="home"] .hero__inner {
    padding-top: 10px !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(34px, 9.7vw, 40px) !important;
    line-height: 1.04 !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(28px, 8.15vw, 33px) !important;
    line-height: 1.16 !important;
  }

  body[data-page="home"] .hero__actions {
    margin-top: 10px !important;
    gap: 8px !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 48px !important;
    height: 48px !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero__image {
    height: clamp(198px, 58vw, 220px) !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(33px, 9.25vw, 39px) !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(27px, 7.75vw, 32px) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 48px !important;
    height: 48px !important;
  }
}

/* Specificity lock v138.1: make the shared mobile system override older page-scoped patches. */
@media (max-width: 760px) {
  body[data-page] .site-header[data-theme] .nav,
  body[data-page] .nav,
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: clamp(12px, 4vw, 18px) !important;
    width: max-content !important;
    min-width: 148px !important;
    max-width: min(175px, calc(100vw - 32px)) !important;
    padding: 7px !important;
  }

  body[data-page] .nav a,
  body[data-page="home"] .nav a {
    min-height: 42px !important;
    padding: 8px 12px !important;
    font-size: 0.91rem !important;
  }

  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(210px, 58vw, 292px);
  }
}

@media (max-width: 760px) and (max-height: 740px) {
  body[data-page="home"] .hero__image {
    height: clamp(198px, 30svh, 245px) !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(33px, 9.25vw, 39px) !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(27px, 7.75vw, 32px) !important;
  }
}

@media (max-width: 360px) {
  .site-header[data-theme] .nav,
  .nav {
    right: 10px !important;
    min-width: 142px !important;
    max-width: min(166px, calc(100vw - 20px)) !important;
    padding: 6px !important;
  }

  .nav a {
    min-height: 40px !important;
    padding: 7px 10px !important;
    font-size: 0.88rem !important;
  }
}

@media (max-width: 760px) {
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) {
    --request-mobile-inline: 20px;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    min-height: auto !important;
    padding:
      calc(env(safe-area-inset-top, 0px) + 76px)
      var(--request-mobile-inline)
      calc(26px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    order: 1 !important;
    width: 100% !important;
    height: clamp(250px, 34svh, 330px) !important;
    margin: 0 !important;
    border-radius: 20px !important;
    object-fit: cover !important;
    object-position: var(--hero-image-position-mobile, 50% 18%) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__inner {
    order: 2 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__eyebrow {
    margin-bottom: 9px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.08em !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero h1 {
    margin: 0 0 10px !important;
    font-size: clamp(34px, 9.2vw, 44px) !important;
    line-height: 1.03 !important;
    letter-spacing: 0 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__subtitle,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__lead {
    max-width: none !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 9px !important;
    margin-top: 14px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__actions .button {
    width: 100% !important;
    min-height: 50px !important;
    height: auto !important;
    padding: 0 14px !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) main > .section:not(.hero) {
    padding: 34px var(--request-mobile-inline) !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .section-heading h2,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .deep-reasons-copy h2,
  .request-trust-copy h2,
  .request-first-step-section .section-heading h2 {
    font-size: clamp(40px, 11vw, 52px) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid {
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid article {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
    align-items: start !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid span {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-width: 34px;
    font-size: 28px !important;
    line-height: 1 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid h3 {
    grid-column: 2;
    margin: 0 !important;
    font-size: 21px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid p {
    grid-column: 2;
    margin: 0 !important;
    max-width: none !important;
    min-width: 0 !important;
    color: rgba(43, 38, 32, 0.68) !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .request-recognition-grid,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .deep-reasons-grid,
  .request-first-step-grid,
  .request-trust-stats {
    width: 100% !important;
  }
}

@media (max-width: 760px) and (max-height: 740px) {
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    height: clamp(208px, 31svh, 250px) !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero h1 {
    font-size: clamp(30px, 8.4vw, 38px) !important;
  }
}

/* Compact premium request-page template v137. */
body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) {
  --request-page-inline: max(18px, calc((100vw - 1120px) / 2));
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) main > .section:not(.hero) {
  padding-block: clamp(42px, 5vw, 70px);
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(96px, 9vw, 132px) var(--request-page-inline) clamp(46px, 5vw, 72px);
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__image {
  position: relative;
  inset: auto;
  z-index: 0;
  width: 100%;
  height: clamp(300px, 34vw, 480px);
  border-radius: 28px;
  object-fit: cover;
  object-position: center 36%;
  -webkit-mask-image: none;
  mask-image: none;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__overlay {
  z-index: -1;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__inner {
  width: auto;
  padding: 0;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero h1 {
  max-width: 760px;
  margin-bottom: clamp(12px, 1.6vw, 18px);
  font-size: clamp(2.7rem, 4.8vw, 5.4rem);
  line-height: 0.98;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__subtitle,
body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__lead {
  max-width: 640px;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .hero__actions {
  margin-top: clamp(20px, 2.4vw, 28px);
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .breadcrumbs {
  padding-block: 18px 0;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .section-heading {
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .request-recognition-grid,
body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .deep-reasons-grid {
  gap: 10px;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .request-recognition-grid article {
  min-height: 0;
  padding: 14px 16px;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .deep-reasons-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  padding-block: clamp(46px, 5vw, 72px);
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .deep-reasons-grid article,
body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .work-process-grid article {
  min-height: 0;
  padding: 16px;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .work-process-grid {
  gap: 10px;
}

.request-trust-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  background:
    radial-gradient(circle at 88% 0%, rgba(209, 169, 91, 0.12), transparent 25rem),
    linear-gradient(180deg, #fbf6ee 0%, #f3e8d8 100%);
}

.request-trust-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 9px solid rgba(255, 252, 245, 0.82);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(79, 55, 25, 0.14);
}

.request-trust-copy h2,
.request-first-step-section .section-heading h2 {
  margin: 0 0 14px;
  color: #2b2620;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.7vw, 4.2rem);
  line-height: 1;
}

.request-trust-copy > p {
  max-width: 700px;
  color: rgba(43, 38, 32, 0.72);
  line-height: 1.64;
}

.request-trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 22px;
}

.request-trust-stats article {
  padding: 14px 15px;
  border: 1px solid rgba(94, 70, 40, 0.14);
  border-radius: 17px;
  background: rgba(255, 253, 248, 0.5);
}

.request-trust-stats strong {
  display: block;
  color: #9b7131;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1;
}

.request-trust-stats span {
  display: block;
  margin-top: 5px;
  color: rgba(43, 38, 32, 0.66);
  font-size: 0.84rem;
}

.request-first-step-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(209, 169, 91, 0.1), transparent 24rem),
    linear-gradient(180deg, #fbf6ee 0%, #f3e8d8 100%);
}

.request-first-step-grid,
.request-format-note {
  width: min(1040px, calc(100% - 40px));
  margin-inline: auto;
}

.request-first-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-first-step-card,
.request-format-note {
  border: 1px solid rgba(94, 70, 40, 0.14);
  border-radius: 23px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 20px 50px rgba(84, 62, 34, 0.09);
}

.request-first-step-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 30px);
}

.request-first-step-card span,
.request-format-note span {
  color: #a77b36;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.request-first-step-card h3,
.request-format-note h3 {
  margin: 0;
  color: #2b2620;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  line-height: 1;
}

.request-first-step-card p,
.request-format-note p {
  margin: 0;
  color: rgba(43, 38, 32, 0.72);
  line-height: 1.58;
}

.request-first-step-card .button {
  margin-top: auto;
}

.request-format-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 20px 24px;
}

.request-format-note > div {
  max-width: 720px;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .story-grid,
body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .faq-accordion {
  width: min(900px, calc(100% - 40px));
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .story-grid {
  grid-template-columns: 1fr;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .faq-accordion article button {
  min-height: 0;
  padding: 16px 0;
}

body:is(
  [data-page="zminy"],
  [data-page="stosunky"],
  [data-page="kontakt-iz-soboyu"],
  [data-page="vpevnenist-u-sobi"],
  [data-page="vnutrishnya-napruha"],
  [data-page="finansovi-obmezhennya"],
  [data-page="self-realization"],
  [data-page="relationships"],
  [data-page="self-esteem"],
  [data-page="anxiety"],
  [data-page="burnout"],
  [data-page="finance"],
  [data-page="emotional-dependency"]
) .deep-note-section {
  padding-block: clamp(38px, 4.5vw, 62px);
}

@media (max-width: 1024px) {
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .deep-reasons-section,
  .request-trust-section {
    grid-template-columns: 1fr;
  }

  .request-trust-media {
    width: min(100%, 420px);
  }
}

@media (max-width: 760px) {
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) main > .section:not(.hero) {
    padding-block: 32px;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: calc(env(safe-area-inset-top, 0px) + 74px) 18px 30px;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    order: 1;
    width: min(100%, 420px);
    height: clamp(220px, 55vw, 290px);
    border-radius: 20px;
    object-position: center 34%;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__inner {
    order: 2;
    width: 100%;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero h1 {
    margin: 0 0 10px;
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__subtitle {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__lead {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__actions .button {
    width: 100%;
    min-height: 54px;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .request-recognition-grid,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .deep-reasons-grid,
  .request-first-step-grid,
  .request-trust-stats {
    width: min(100% - 32px, 100%);
    grid-template-columns: 1fr;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid {
    display: block;
    width: min(100% - 32px, 100%);
    overflow: hidden;
    border: 1px solid rgba(94, 70, 40, 0.14);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.52);
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 14px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid article + article {
    border-top: 1px solid rgba(94, 70, 40, 0.1);
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid h3 {
    margin-top: 0;
  }

  .request-trust-media,
  .request-trust-copy,
  .request-format-note,
  .request-first-step-grid,
  .request-trust-stats {
    width: min(100% - 32px, 100%);
    margin-inline: auto;
  }

  .request-format-note {
    display: grid;
    padding: 18px;
  }

  .request-format-note .button,
  .request-first-step-card .button,
  .request-trust-copy .button {
    width: 100%;
  }
}

/* About profile compact structure v136. */
body[data-page="home"] main > section.section.about-full-section:not(.hero),
body[data-page="home"] main > .about-full-section {
  padding-top: clamp(44px, 4.6vw, 68px);
  padding-bottom: clamp(36px, 4vw, 58px);
}

body[data-page="home"] .about-full-section .section-heading {
  margin-bottom: clamp(16px, 1.8vw, 24px);
}

body[data-page="home"] .about-full-grid {
  gap: clamp(22px, 3.8vw, 52px);
  align-items: center;
}

body[data-page="home"] .about-full-copy {
  gap: 0;
  align-content: center;
}

body[data-page="home"] .about-full-copy h3 {
  margin: 0 0 clamp(10px, 1vw, 14px);
}

body[data-page="home"] .about-full-copy > p {
  margin: 0;
  max-width: 680px;
  line-height: 1.64;
}

body[data-page="home"] .about-full-copy .about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .about-full-copy .about-stats article {
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid rgba(132, 98, 47, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 164, 95, 0.12), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(247, 238, 222, 0.5));
  box-shadow: 0 12px 30px rgba(84, 65, 42, 0.055);
}

body[data-page="home"] .about-full-copy .about-stats article + article {
  border-left: 1px solid rgba(132, 98, 47, 0.14);
}

body[data-page="home"] .about-full-copy .about-stats strong {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

body[data-page="home"] .about-full-copy .about-stats span {
  margin-top: 5px;
  font-size: 0.86rem;
  line-height: 1.28;
}

body[data-page="home"] .about-experience,
body[data-page="home"] .about-competencies {
  margin-top: clamp(16px, 1.8vw, 22px);
}

body[data-page="home"] .about-group-title {
  margin: 0 0 10px;
  color: #9b7131;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

body[data-page="home"] .about-experience-list {
  overflow: hidden;
  border: 1px solid rgba(132, 98, 47, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.48);
  box-shadow: 0 12px 30px rgba(84, 65, 42, 0.05);
}

body[data-page="home"] .about-experience-list span {
  position: relative;
  display: block;
  padding: 13px 18px 13px 42px;
  color: rgba(48, 43, 37, 0.84);
  font-weight: 700;
  line-height: 1.35;
}

body[data-page="home"] .about-experience-list span + span {
  border-top: 1px solid rgba(132, 98, 47, 0.1);
}

body[data-page="home"] .about-experience-list span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(163, 119, 53, 0.84), rgba(218, 184, 111, 0.34));
  transform: translateY(-50%);
}

body[data-page="home"] .about-competency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="home"] .about-competency-grid span {
  position: relative;
  min-height: 60px;
  padding: 14px;
  border: 1px solid rgba(132, 98, 47, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 164, 95, 0.1), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(247, 238, 222, 0.44));
  color: rgba(48, 43, 37, 0.84);
  font-size: clamp(0.94rem, 0.98vw, 1rem);
  font-weight: 700;
  line-height: 1.24;
}

body[data-page="home"] .about-competency-grid span::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(163, 119, 53, 0.8), rgba(218, 184, 111, 0.3));
}

@media (max-width: 980px) {
  body[data-page="home"] .about-full-copy .about-stats,
  body[data-page="home"] .about-competency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .about-full-copy .about-stats article:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] main > section.section.about-full-section:not(.hero),
  body[data-page="home"] main > .about-full-section {
    padding: 32px 20px 36px;
  }

  body[data-page="home"] .about-full-section .section-heading {
    margin-bottom: 18px;
  }

  body[data-page="home"] .about-full-grid {
    gap: 20px;
  }

  body[data-page="home"] .about-full-copy h3 {
    margin-bottom: 12px;
  }

  body[data-page="home"] .about-full-copy > p {
    line-height: 1.56;
  }

  body[data-page="home"] .about-full-copy .about-stats {
    gap: 10px;
    margin-top: 22px;
  }

  body[data-page="home"] .about-full-copy .about-stats article {
    padding: 16px;
  }

  body[data-page="home"] .about-full-copy .about-stats strong {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  body[data-page="home"] .about-experience,
  body[data-page="home"] .about-competencies {
    margin-top: 20px;
  }

  body[data-page="home"] .about-experience-list span {
    padding: 12px 16px 12px 38px;
  }

  body[data-page="home"] .about-experience-list span::before {
    left: 16px;
  }

  body[data-page="home"] .about-competency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-page="home"] .about-competency-grid span {
    min-height: 62px;
    padding: 12px;
    font-size: clamp(15px, 4.2vw, 16px);
    line-height: 1.24;
  }
}

/* Mobile requests cards v134: remove descriptions and align compact 2x3 cards. */
@media (max-width: 760px) {
  body[data-page="home"] main > #requests.request-section,
  body[data-page="home"] main > .section.request-section,
  body[data-page="home"] .request-section {
    padding: 22px 16px;
  }

  body[data-page="home"] .request-section .section-heading {
    margin: 0 0 18px;
  }

  body[data-page="home"] .request-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 136px;
    gap: 10px;
  }

  body[data-page="home"] .request-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 136px;
    min-height: 0;
    padding: 13px 14px;
  }

  body[data-page="home"] .request-card::before {
    flex: 0 0 auto;
    width: 32px;
    margin: 0 0 11px;
  }

  body[data-page="home"] .request-card__topic {
    margin: 0;
    font-size: clamp(19px, 5.05vw, 20.5px);
    line-height: 1.18;
  }

  body[data-page="home"] .request-card__description {
    display: none;
  }

  body[data-page="home"] .request-card strong {
    margin-top: auto;
    padding-top: 10px;
    font-size: 14px;
    line-height: 1.15;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] main > #requests.request-section,
  body[data-page="home"] main > .section.request-section,
  body[data-page="home"] .request-section {
    padding: 18px 14px;
  }

  body[data-page="home"] .request-section .section-heading {
    margin-bottom: 14px;
  }

  body[data-page="home"] .request-grid {
    grid-auto-rows: 132px;
    gap: 8px;
  }

  body[data-page="home"] .request-card {
    height: 132px;
    padding: 12px;
  }

  body[data-page="home"] .request-card::before {
    width: 28px;
    margin-bottom: 9px;
  }

  body[data-page="home"] .request-card__topic {
    font-size: 18px;
    line-height: 1.16;
  }

  body[data-page="home"] .request-card strong {
    padding-top: 8px;
    font-size: 13px;
  }
}

/* Final cascade lock v141: keep this block last. */
@media (max-width: 760px) {
  body[data-page] .site-header[data-theme] .nav,
  body[data-page] .nav,
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: clamp(12px, 4vw, 18px) !important;
    width: max-content !important;
    min-width: 148px !important;
    max-width: min(175px, calc(100vw - 32px)) !important;
    padding: 7px !important;
  }

  body[data-page] .nav a,
  body[data-page="home"] .nav a {
    min-height: 42px !important;
    padding: 8px 12px !important;
    font-size: 0.91rem !important;
    white-space: nowrap !important;
  }

  body[data-page="home"] .hero {
    min-height: 100svh !important;
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 52px !important;
    height: 52px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    height: clamp(250px, 34svh, 330px) !important;
    object-position: var(--hero-image-position-mobile, 50% 18%) !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid article {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid span {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    font-size: 28px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid h3,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .work-process-grid p {
    grid-column: 2 !important;
    max-width: none !important;
    min-width: 0 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero__image {
    height: clamp(198px, 58vw, 220px) !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(33px, 9.25vw, 39px) !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(27px, 7.75vw, 32px) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 48px !important;
    height: 48px !important;
  }
}

/* Final mobile request-page safety lock v144: must remain at EOF. */
@media (max-width: 760px) and (max-height: 740px) {
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    height: clamp(180px, 29svh, 218px) !important;
    min-height: 0 !important;
    max-height: 218px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero h1 {
    font-size: clamp(28px, 8.35vw, 34px) !important;
    line-height: 1.02 !important;
    margin-bottom: 8px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__lead {
    font-size: 15px !important;
    line-height: 1.38 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__actions {
    gap: 7px !important;
    margin-top: 10px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero .button-primary,
  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero .button-ghost {
    min-height: 46px !important;
    height: 46px !important;
  }
}

/* Local content, FAQ and footer refinements v149. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body[data-page] main > .application-section.section:not(.hero) {
  padding-bottom: clamp(44px, 4vw, 56px) !important;
}

.site-footer {
  display: block;
  padding:
    clamp(28px, 3.2vw, 42px)
    max(20px, calc((100vw - 1180px) / 2))
    calc(clamp(22px, 2.5vw, 32px) + env(safe-area-inset-bottom, 0px));
  color: rgba(255, 248, 232, 0.74);
}

.site-footer__inner {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.site-footer__social {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.site-footer__social h2 {
  margin: 0;
  color: #f3dfb0;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-link {
  display: inline-grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(218, 183, 111, 0.38);
  border-radius: 50%;
  color: #e5c77e;
  background: rgba(255, 247, 224, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 250, 235, 0.06);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link--telegram svg,
.social-link--youtube svg {
  fill: currentColor;
  stroke: none;
}

.social-icon__dot {
  fill: currentColor;
  stroke: none;
}

.social-link:focus-visible {
  outline: 2px solid #f3d797;
  outline-offset: 3px;
}

.site-footer__meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(229, 199, 126, 0.16);
}

.site-footer__meta p {
  margin: 0;
}

.site-footer__copyright {
  color: rgba(255, 248, 232, 0.82);
  white-space: nowrap;
}

.site-footer__disclaimer {
  justify-self: end;
  max-width: 780px;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: right;
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(243, 215, 151, 0.68);
    color: #f3d797;
    background: rgba(255, 247, 224, 0.085);
  }

  .social-link--instagram:hover {
    color: #e8a7bf;
  }

  .social-link--telegram:hover {
    color: #8cc9e8;
  }

  .social-link--youtube:hover {
    color: #ef9b93;
  }
}

@media (max-width: 680px) {
  body[data-page] .faq-accordion {
    width: 100%;
    gap: 12px;
  }

  .faq-accordion article {
    min-height: 0;
  }

  body[data-page] .faq-accordion article button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 21px 20px;
    font-size: clamp(1.06rem, 4.6vw, 1.16rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body[data-page] .faq-accordion article button[aria-expanded="true"] {
    padding-bottom: 14px;
  }

  body[data-page] .faq-accordion article button::after {
    display: inline-grid;
    float: none;
    flex: none;
    width: 40px;
    height: 40px;
    margin: 0;
    place-items: center;
    justify-self: end;
    font-size: 1.15rem;
  }

  .faq-panel {
    max-height: 0;
  }

  .faq-accordion button[aria-expanded="true"] + .faq-panel {
    max-height: 1000px;
  }

  .faq-panel p {
    margin: 0;
    padding: 0 20px 22px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  body[data-page] main > .application-section.section:not(.hero) {
    padding-bottom: 30px !important;
  }

  .site-footer {
    padding:
      24px
      20px
      calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer__social {
    gap: 12px;
  }

  .social-links {
    gap: 16px;
  }

  .social-link {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .site-footer__meta {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    text-align: center;
  }

  .site-footer__copyright {
    white-space: normal;
  }

  .site-footer__disclaimer {
    justify-self: center;
    max-width: 36rem;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
  }
}

/* Desktop request hero aligned with the approved home composition v150. */
@media (min-width: 901px) {
  body.request-page .site-header {
    padding-inline: clamp(54px, 4.95vw, 82px);
    padding-top: clamp(13px, 1.25vw, 22px);
    padding-bottom: clamp(9px, 0.9vw, 15px);
    color: rgba(255, 252, 244, 0.92);
    background:
      linear-gradient(
        to bottom,
        rgba(10, 9, 8, 0.94),
        rgba(10, 9, 8, 0.42) 66%,
        rgba(10, 9, 8, 0)
      );
    box-shadow: none;
  }

  body.request-page .brand {
    color: #ead8a6;
    background: linear-gradient(105deg, #f8ecd0, #d4b672 56%, #fff3d2);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(1.72rem, 1.68vw, 2.18rem);
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  body.request-page .nav {
    gap: clamp(28px, 2.85vw, 58px);
  }

  body.request-page .nav a {
    color: rgba(255, 252, 244, 0.88);
    font-size: clamp(0.94rem, 0.86vw, 1.04rem);
    font-weight: 760;
  }

  body.request-page .nav a::after {
    background:
      linear-gradient(
        90deg,
        rgba(179, 137, 62, 0),
        rgba(232, 202, 130, 0.95),
        rgba(179, 137, 62, 0)
      );
  }

  body.request-page .header-cta {
    min-height: clamp(44px, 4.25vw, 54px);
    min-width: 0;
    padding-inline: clamp(18px, 1.28vw, 25px);
    border-color: rgba(255, 237, 181, 0.72);
    color: #241b10;
    background:
      linear-gradient(180deg, rgba(255, 255, 246, 0.7), rgba(255, 237, 186, 0.08) 48%),
      linear-gradient(135deg, #fff1bd 0%, #d9ae5c 54%, #b78439 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.74),
      0 0 0 1px rgba(255, 221, 139, 0.14),
      0 12px 30px rgba(214, 162, 70, 0.28);
    font-size: clamp(0.94rem, 0.88vw, 1.04rem);
  }

  body.request-page .hero {
    position: relative;
    display: block;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(circle at 76% 40%, rgba(198, 149, 73, 0.22), transparent 29%),
      radial-gradient(circle at 90% 80%, rgba(119, 55, 28, 0.16), transparent 26%),
      radial-gradient(circle at 18% 92%, rgba(133, 86, 42, 0.08), transparent 32%),
      linear-gradient(135deg, #090807 0%, #14110d 50%, #211b13 100%);
  }

  body.request-page .hero__image {
    position: absolute;
    z-index: 0;
    inset: auto var(--hero-image-right-desktop, 0) auto auto;
    top: var(--hero-image-top-desktop, 8svh);
    width: min(var(--hero-image-width-desktop, 48vw), 900px);
    height: min(var(--hero-image-height-desktop, 89svh), 940px);
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: var(--hero-image-position-desktop, 50% 20%);
    filter:
      saturate(1.04)
      contrast(1.08)
      brightness(var(--hero-image-brightness-desktop, 0.72));
    -webkit-mask-image:
      linear-gradient(
        90deg,
        transparent 0,
        rgba(0, 0, 0, 0.5) 8%,
        #000 var(--hero-image-fade-desktop, 16%),
        #000 91%,
        transparent 100%
      );
    mask-image:
      linear-gradient(
        90deg,
        transparent 0,
        rgba(0, 0, 0, 0.5) 8%,
        #000 var(--hero-image-fade-desktop, 16%),
        #000 91%,
        transparent 100%
      );
  }

  body.request-page .hero__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
      radial-gradient(
        ellipse at 76% 44%,
        rgba(221, 177, 94, 0.055) 0%,
        rgba(45, 29, 17, 0.08) 29%,
        rgba(9, 8, 7, 0.4) 78%
      ),
      linear-gradient(
        90deg,
        rgba(9, 8, 7, 1) 0%,
        rgba(9, 8, 7, 0.97) 37%,
        rgba(9, 8, 7, 0.76) 52%,
        rgba(9, 8, 7, 0.2) 73%,
        rgba(9, 8, 7, 0.38) 100%
      ),
      linear-gradient(
        180deg,
        rgba(9, 8, 7, 0.2) 0%,
        rgba(9, 8, 7, 0) 44%,
        rgba(9, 8, 7, 0.76) 100%
      );
    pointer-events: none;
  }

  body.request-page .hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1490px, calc(100% - clamp(108px, 10vw, 172px)));
    min-height: 100svh;
    margin-inline: auto;
    padding: clamp(110px, 12svh, 142px) 0 clamp(36px, 5svh, 62px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
  }

  body.request-page .hero__eyebrow {
    width: fit-content;
    max-width: min(100%, 660px);
    margin: 0 0 clamp(22px, 2.8svh, 34px);
    padding: 10px 18px;
    border: 1px solid rgba(205, 164, 91, 0.54);
    border-radius: 999px;
    color: #e5cc91;
    background:
      linear-gradient(180deg, rgba(255, 238, 190, 0.06), rgba(255, 238, 190, 0.012)),
      rgba(17, 14, 11, 0.6);
    box-shadow:
      inset 0 1px 0 rgba(255, 246, 217, 0.07),
      0 9px 24px rgba(0, 0, 0, 0.16);
    font-family: var(--body-font);
    font-size: clamp(0.75rem, 0.82vw, 0.94rem);
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.22;
    text-transform: uppercase;
  }

  body.request-page .hero h1 {
    max-width: min(820px, calc(52vw - 82px));
    margin: 0 0 clamp(18px, 2.2svh, 26px);
    color: #fffaf0;
    font-family: var(--display-font);
    font-size: clamp(3.2rem, 4.55vw, 5.25rem);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.02;
    text-wrap: balance;
  }

  body.request-page .hero__subtitle {
    display: none;
  }

  body.request-page .hero__lead {
    max-width: min(700px, calc(52vw - 82px));
    margin: 0;
    color: rgba(255, 250, 238, 0.72);
    font-size: clamp(1.02rem, 1.08vw, 1.18rem);
    font-weight: 500;
    line-height: 1.65;
    text-wrap: pretty;
  }

  body.request-page .hero__actions {
    display: flex;
    width: fit-content;
    max-width: min(760px, calc(52vw - 82px));
    margin-top: clamp(24px, 3.1svh, 36px);
    flex-wrap: nowrap;
    gap: clamp(12px, 1.15vw, 18px);
  }

  body.request-page .hero__actions .button {
    width: auto;
    min-height: clamp(52px, 4.4vw, 58px);
    height: auto;
    padding-inline: clamp(22px, 1.8vw, 30px);
    border-radius: 999px;
    font-size: clamp(0.93rem, 0.9vw, 1.05rem);
    line-height: 1.15;
    white-space: nowrap;
  }

  body.request-page .hero__actions .button-primary {
    border-color: rgba(255, 233, 171, 0.72);
    color: #21180d;
    background:
      linear-gradient(180deg, rgba(255, 255, 246, 0.74), rgba(255, 237, 186, 0.08) 48%),
      linear-gradient(135deg, #fff0b7 0%, #d7ab5b 55%, #b8853b 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 16px 38px rgba(214, 162, 70, 0.28);
  }

  body.request-page .hero__actions .button-ghost {
    border-color: rgba(212, 174, 98, 0.5);
    color: rgba(255, 252, 244, 0.94);
    background: rgba(12, 11, 9, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 247, 220, 0.055);
  }
}

@media (min-width: 901px) and (max-width: 1220px) {
  body.request-page .hero__inner {
    width: min(100% - 68px, 1080px);
  }

  body.request-page .hero h1 {
    max-width: min(710px, 60vw);
    font-size: clamp(3rem, 4.75vw, 4.1rem);
  }

  body.request-page .hero__lead {
    max-width: min(620px, 56vw);
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  body.request-page .hero__inner {
    padding-top: clamp(88px, 11svh, 104px);
    padding-bottom: clamp(24px, 3.5svh, 34px);
  }

  body.request-page .hero__eyebrow {
    margin-bottom: 18px;
    padding-block: 8px;
  }

  body.request-page .hero h1 {
    max-width: min(760px, calc(52vw - 82px));
    margin-bottom: 14px;
    font-size: clamp(3rem, 4.25vw, 4.15rem);
    line-height: 1.01;
  }

  body.request-page .hero__lead {
    font-size: 1rem;
    line-height: 1.52;
  }

  body.request-page .hero__actions {
    margin-top: 20px;
  }

  body.request-page .hero__actions .button {
    min-height: 50px;
  }
}

/* Targeted visual defect fixes v152. */
.application-section .section-heading::before {
  display: none;
  content: none;
}

body[data-page="practice"] .hero + .section {
  margin-top: -2px;
}

@media (min-width: 1100px) {
  .site-footer__meta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-footer__disclaimer {
    max-width: none;
    font-size: clamp(0.72rem, 0.69vw, 0.78rem);
    white-space: nowrap;
  }
}

/* Mobile stability and premium content pass v153. Keep at EOF. */
.diagnostic-section--full {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.deep-reasons-copy h2 {
  font-family: var(--display-font);
  font-weight: 500;
}

.deep-reasons-grid {
  counter-reset: deep-reason;
}

.deep-reasons-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  counter-increment: deep-reason;
  background:
    radial-gradient(circle at 100% 0%, rgba(218, 177, 96, 0.16), transparent 56%),
    linear-gradient(145deg, rgba(255, 249, 234, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 218, 0.09),
    0 20px 46px rgba(0, 0, 0, 0.2);
}

.deep-reasons-grid article::after {
  position: absolute;
  z-index: -1;
  top: 12px;
  right: 15px;
  content: counter(deep-reason, decimal-leading-zero);
  color: rgba(226, 192, 119, 0.16);
  font-family: var(--display-font);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.deep-reasons-grid p {
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.08;
}

@media (max-width: 767px) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-animate],
  [data-animate].is-visible,
  .reveal-word,
  .hero .reveal-word,
  [data-animate].is-visible .reveal-word {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .hero__eyebrow,
  .hero h1,
  .hero p,
  .hero__actions,
  .hero-trust,
  .hero__image {
    opacity: 1 !important;
    transform: none !important;
  }

  body[data-page="home"] .hero {
    min-height: auto !important;
  }

  body[data-page="home"] .hero__image {
    height: clamp(228px, 66vw, 286px) !important;
    min-height: 0 !important;
    max-height: 286px !important;
  }

  body[data-page="home"] .hero__inner {
    min-height: 0 !important;
    height: auto !important;
    justify-content: flex-start !important;
  }

  body.request-page .hero {
    min-height: auto !important;
    gap: 13px !important;
    padding:
      calc(env(safe-area-inset-top, 0px) + 74px)
      18px
      calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.request-page .hero__image {
    width: 100% !important;
    height: clamp(230px, 68vw, 292px) !important;
    min-height: 0 !important;
    max-height: 292px !important;
    object-position: var(--hero-image-position-mobile, 50% 24%) !important;
  }

  body.request-page .hero__inner {
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  body.request-page .hero h1 {
    margin-bottom: 9px !important;
    font-size: clamp(34px, 9.2vw, 40px) !important;
    line-height: 1.02 !important;
    text-wrap: balance;
  }

  body.request-page .hero__lead {
    font-size: 15px !important;
    line-height: 1.42 !important;
  }

  body.request-page .hero__actions {
    gap: 8px !important;
    margin-top: 13px !important;
  }

  body.request-page .hero__actions .button {
    min-height: 50px !important;
  }

  body[data-page="vpevnenist-u-sobi"] .hero__image,
  body[data-page="self-esteem"] .hero__image {
    object-position: 50% 40% !important;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero {
    display: flex !important;
    min-height: auto !important;
    gap: 12px !important;
    padding:
      calc(env(safe-area-inset-top, 0px) + 74px)
      18px
      calc(22px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero__image {
    order: 1 !important;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: clamp(184px, 51vw, 218px) !important;
    min-height: 0 !important;
    max-height: 218px !important;
    margin: 0 !important;
    border-radius: 20px !important;
    object-fit: cover !important;
    object-position: var(--hero-image-position-mobile, 50% 28%) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  body[data-page="practice"] .hero__image {
    height: clamp(214px, 59vw, 244px) !important;
    max-height: 244px !important;
    object-position: 50% 26% !important;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero__inner {
    order: 2 !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero__eyebrow {
    margin: 0 0 8px !important;
    padding: 8px 13px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero h1 {
    margin: 0 0 8px !important;
    font-size: clamp(33px, 9vw, 39px) !important;
    line-height: 1 !important;
    text-wrap: balance;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero__lead {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.38 !important;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin-top: 12px !important;
  }

  body:is([data-page="practice"], [data-page="istorii-zmin"]) .hero__actions .button {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    padding-inline: 13px !important;
    font-size: 14px !important;
  }

  .deep-reasons-section {
    gap: 24px !important;
    padding-block: 34px !important;
  }

  .deep-reasons-copy h2 {
    margin-bottom: 13px !important;
    font-family: var(--display-font) !important;
    font-size: clamp(42px, 12.2vw, 54px) !important;
    font-weight: 500 !important;
    line-height: 0.96 !important;
  }

  .deep-reasons-copy p:last-child {
    font-size: 15px !important;
    line-height: 1.52 !important;
  }

  .deep-reasons-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .deep-reasons-grid article {
    min-height: 116px !important;
    padding: 17px 14px !important;
    border-color: rgba(222, 185, 108, 0.28) !important;
    border-radius: 20px !important;
  }

  .deep-reasons-grid article::after {
    top: 10px;
    right: 12px;
    font-size: 2.15rem;
  }

  .deep-reasons-grid span {
    width: 34px !important;
    margin-bottom: 17px !important;
  }

  .deep-reasons-grid p {
    position: relative;
    z-index: 1;
    font-family: var(--display-font) !important;
    font-size: clamp(20px, 5.6vw, 24px) !important;
    font-weight: 500 !important;
    line-height: 1.04 !important;
  }

  .request-first-step-grid,
  .request-format-note {
    width: 100% !important;
  }

  .request-first-step-card,
  .request-format-note {
    min-height: 318px !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .request-format-note {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .request-format-note > div {
    max-width: none !important;
  }

  .request-format-note .button,
  .request-first-step-card .button {
    width: 100% !important;
    min-height: 54px !important;
    margin-top: auto !important;
  }

  .diagnostic-section--full {
    display: block !important;
    padding-block: 34px !important;
  }
}

/* Expanded home work formats v158. */
body[data-page="home"] .work-formats-section .section-heading {
  max-width: 880px;
}

body[data-page="home"] .work-formats-section .section-heading p {
  max-width: 780px;
  margin-inline: auto;
}

body[data-page="home"] .work-formats-section .section-heading p + p {
  margin-top: 10px;
}

body[data-page="home"] .work-formats-grid {
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

body[data-page="home"] .work-format-card {
  gap: 16px;
  padding: clamp(26px, 3vw, 38px);
}

body[data-page="home"] .work-format-card--featured {
  border-color: rgba(236, 198, 118, 0.62);
  background:
    radial-gradient(circle at 14% 0%, rgba(230, 183, 88, 0.19), transparent 22rem),
    linear-gradient(145deg, rgba(48, 40, 30, 0.99), rgba(25, 22, 17, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 221, 0.1),
    0 30px 76px rgba(0, 0, 0, 0.3),
    0 0 44px rgba(209, 160, 71, 0.1);
}

body[data-page="home"] .work-format-card .work-format-card__heading {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
}

body[data-page="home"] .work-format-card .work-format-card__heading h3 {
  max-width: 520px;
}

body[data-page="home"] .work-format-card .work-format-card__price {
  display: flex;
  min-width: max-content;
  margin: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

body[data-page="home"] .work-format-card__price strong {
  color: #edce8a;
  font-family: var(--display-font);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
}

body[data-page="home"] .work-format-card__price small {
  color: rgba(255, 247, 232, 0.66);
  font-size: 0.78rem;
  line-height: 1.2;
}

body[data-page="home"] .work-format-card .work-format-card__intro {
  margin-top: 2px;
  color: #f4dfb0;
  font-weight: 700;
}

body[data-page="home"] .work-format-card ul {
  display: grid;
  margin: -2px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

body[data-page="home"] .work-format-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 247, 232, 0.79);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.52;
}

body[data-page="home"] .work-format-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 1px;
  background: #d9b56f;
  content: "";
}

body[data-page="home"] .work-format-card .work-format-card__note {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(218, 179, 106, 0.2);
  color: rgba(255, 244, 222, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

body[data-page="home"] .work-formats-duration {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: clamp(28px, 3.5vw, 46px);
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px clamp(34px, 5vw, 72px);
  border: 1px solid rgba(218, 179, 106, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(211, 168, 90, 0.12), transparent 36%),
    rgba(17, 15, 12, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 246, 221, 0.06);
}

body[data-page="home"] .work-formats-duration > span {
  color: #d9b56f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .work-formats-duration h3 {
  margin: 4px 0 12px;
  grid-column: 1;
  color: #fff8ec;
  font-family: var(--display-font);
  font-size: clamp(2.45rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 0.96;
}

body[data-page="home"] .work-formats-duration p {
  margin: 0;
  grid-column: 2;
  color: rgba(255, 247, 232, 0.78);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.65;
}

body[data-page="home"] .work-formats-duration > p:first-of-type {
  grid-row: 1 / span 2;
}

body[data-page="home"] .work-formats-duration .button {
  width: max-content;
  margin-top: 14px;
  grid-column: 2;
}

@media (max-width: 900px) {
  body[data-page="home"] .work-formats-grid {
    width: min(760px, calc(100% - 36px));
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .work-formats-duration {
    width: min(760px, calc(100% - 36px));
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .work-formats-duration h3,
  body[data-page="home"] .work-formats-duration p,
  body[data-page="home"] .work-formats-duration > p:first-of-type,
  body[data-page="home"] .work-formats-duration .button {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .work-formats-grid,
  body[data-page="home"] .work-formats-duration {
    width: min(100% - 32px, 100%);
  }

  body[data-page="home"] .work-format-card .work-format-card__heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .work-format-card .work-format-card__price {
    align-items: flex-start;
    text-align: left;
  }

  body[data-page="home"] .work-formats-duration {
    padding: 24px 22px;
    border-radius: 22px;
  }

  body[data-page="home"] .work-formats-duration .button {
    width: 100%;
  }
}

/* Mobile profile and reviews refinement v159. */
body[data-page="home"] .about-full-copy .about-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .about-experience-list span {
  text-transform: none;
}

.review-card {
  transition:
    transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 920ms ease-in-out,
    box-shadow 920ms ease-in-out;
}

.review-card__content p:not(.is-clamped) {
  display: block;
  overflow: visible;
  -webkit-line-clamp: initial;
  line-clamp: initial;
}

.review-carousel-controls {
  width: min(220px, calc(100% - 64px));
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.review-progress span {
  transition: transform 1080ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 980px) {
  body[data-page="home"] .about-full-copy .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .about-full-copy .about-stats article:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  body[data-page="home"] .about-full-copy .about-stats article {
    min-height: 118px;
    padding: 15px;
  }

  body[data-page="home"] .about-full-copy .about-stats span {
    font-size: 0.8rem;
    line-height: 1.22;
  }

  body[data-page="home"] .about-experience-list span {
    padding-block: 11px;
    font-size: 15px;
    line-height: 1.32;
  }

  .review-carousel-stage {
    height: 520px;
  }

  .review-card {
    width: calc(100% - 56px);
    height: 496px;
    padding: 16px;
    border-radius: 25px;
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1) !important,
      opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) !important,
      filter 900ms ease-in-out !important,
      box-shadow 900ms ease-in-out !important;
  }

  .review-card > img {
    width: 190px;
    height: 190px;
    border-radius: 19px;
  }

  .review-card__content {
    padding: 14px 3px 2px;
  }

  .review-card__content h3 {
    margin-bottom: 8px;
    font-size: 32px;
  }

  .review-card__content p {
    font-size: 14px;
    line-height: 1.42;
  }

  .review-card__content p.is-clamped {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }

  .review-card__content button {
    margin-top: 14px;
  }

  .review-arrow {
    transition:
      transform 300ms ease !important,
      box-shadow 300ms ease !important,
      background 300ms ease !important;
  }

  .review-carousel-controls {
    width: 150px;
    margin-top: 10px;
  }

  .review-progress span {
    transition: transform 1080ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
}

/* Compact sliding reviews and work formats v160. */
@media (min-width: 901px) {
  body[data-page="home"] .work-format-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  body[data-page="home"] main > .section.home-reviews-section {
    padding-block: 34px 38px;
  }

  .home-reviews-heading {
    width: calc(100% - 32px);
    margin-bottom: 18px;
  }

  .home-reviews-heading .section-kicker {
    margin-bottom: 7px;
    font-size: 0.66rem;
  }

  .home-reviews-heading h2 {
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 0.94;
  }

  .home-reviews-heading > p:last-child {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.42;
  }

  .review-carousel-stage {
    height: 458px;
  }

  .review-card {
    top: 6px;
    left: 18px;
    width: calc(100% - 48px);
    height: 438px;
    padding: 14px;
    border-radius: 23px;
    transform: translateX(calc(-112% - 26px)) scale(0.94) rotate(-0.7deg);
    transition:
      transform 1380ms cubic-bezier(0.65, 0, 0.35, 1) !important,
      opacity 1180ms cubic-bezier(0.65, 0, 0.35, 1) !important,
      filter 1180ms ease-in-out !important,
      box-shadow 1180ms ease-in-out !important;
  }

  .review-card.is-active {
    transform: translateX(0) scale(1) rotate(0);
  }

  .review-card.is-previous {
    transform: translateX(calc(-112% - 26px)) scale(0.94) rotate(-0.7deg);
  }

  .review-card.is-next {
    transform: translateX(calc(100% - 10px)) scale(0.94) rotate(0.7deg);
  }

  .review-card > img {
    width: 150px;
    height: 150px;
    border-radius: 17px;
  }

  .review-card__content {
    padding: 11px 3px 1px;
  }

  .review-card__content h3 {
    margin-bottom: 7px;
    font-size: 29px;
  }

  .review-card__content p {
    font-size: 13px;
    line-height: 1.38;
  }

  .review-card__content p.is-clamped {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }

  .review-card__content button {
    margin-top: 10px;
    padding-bottom: 4px;
    font-size: 13px;
  }

  .review-arrow {
    top: 49%;
    width: 40px;
    height: 40px;
  }

  .review-arrow--previous {
    left: 2px;
  }

  .review-arrow--next {
    right: 2px;
  }

  .review-carousel-controls {
    width: 138px;
    margin-top: 7px;
  }

  .review-progress {
    height: 2px;
  }

  .review-progress span {
    transition: transform 1280ms cubic-bezier(0.65, 0, 0.35, 1) !important;
  }

  body[data-page="home"] main > .work-formats-section {
    padding-block: 38px;
  }

  body[data-page="home"] .work-formats-section .section-heading {
    margin-bottom: 22px;
  }

  body[data-page="home"] .work-formats-section .section-heading h2 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  body[data-page="home"] .work-formats-section .section-heading p {
    font-size: 14px;
    line-height: 1.48;
  }

  body[data-page="home"] .work-formats-grid {
    gap: 10px;
  }

  body[data-page="home"] .work-format-card {
    padding: 18px;
    gap: 11px;
    border-radius: 20px;
  }

  body[data-page="home"] .work-format-card > span {
    font-size: 0.68rem;
  }

  body[data-page="home"] .work-format-card .work-format-card__heading {
    gap: 10px;
  }

  body[data-page="home"] .work-format-card h3 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  body[data-page="home"] .work-format-card__price strong {
    font-size: clamp(1.8rem, 8.5vw, 2.2rem);
  }

  body[data-page="home"] .work-format-card p,
  body[data-page="home"] .work-format-card li {
    font-size: 14px;
    line-height: 1.44;
  }

  body[data-page="home"] .work-format-card ul {
    gap: 6px;
  }

  body[data-page="home"] .work-format-card .work-format-card__note {
    padding-top: 11px;
    font-size: 13px;
    line-height: 1.42;
  }

  body[data-page="home"] .work-formats-duration {
    margin-top: 10px;
    padding: 20px 18px;
    gap: 9px;
    border-radius: 20px;
  }

  body[data-page="home"] .work-formats-duration h3 {
    margin-block: 2px 6px;
    font-size: clamp(2.15rem, 10vw, 2.8rem);
  }

  body[data-page="home"] .work-formats-duration p {
    font-size: 14px;
    line-height: 1.48;
  }

  body[data-page="home"] .work-formats-duration .button {
    min-height: 50px;
    margin-top: 8px;
  }
}

/* Live mobile review dragging and stable typography v161. */
html,
body {
  font-synthesis: none;
}

@media (max-width: 767px) {
  .review-card {
    transform: translateX(calc(-112% - 26px + var(--review-drag-x, 0px))) scale(0.94) rotate(-0.7deg);
  }

  .review-card.is-active {
    transform: translateX(var(--review-drag-x, 0px)) scale(1) rotate(0);
  }

  .review-card.is-previous {
    transform: translateX(calc(-112% - 26px + var(--review-drag-x, 0px))) scale(0.94) rotate(-0.7deg);
  }

  .review-card.is-next {
    transform: translateX(calc(100% - 10px + var(--review-drag-x, 0px))) scale(0.94) rotate(0.7deg);
  }

  .home-reviews-section.is-dragging .review-card {
    cursor: grabbing;
    transition: none !important;
  }

  .review-card__content {
    justify-content: center;
  }

  .review-card__content h3 {
    font-size: 30px;
  }

  .review-card__content p {
    font-size: 14px;
    line-height: 1.42;
  }
}

/* Mobile viewport stability lock v162. */
@media (max-width: 760px) {
  html {
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(210px, 58vw, 292px) !important;
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body[data-page="home"] .hero__image {
    height: var(--home-mobile-photo-height) !important;
    max-height: 292px !important;
  }

  body[data-page="home"] .hero__inner {
    padding-top: 12px !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(38px, 10.35vw, 46px) !important;
    line-height: 1.05 !important;
  }

  body[data-page="home"] .hero__title-accent {
    margin-top: 4px !important;
    font-size: clamp(31px, 8.7vw, 38px) !important;
    line-height: 1.18 !important;
  }

  body[data-page="home"] .hero__actions {
    gap: 9px !important;
    margin-top: 12px !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 52px !important;
    height: 52px !important;
  }

  body[data-page="home"] .hero__lead {
    margin-top: 22px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__image {
    height: clamp(250px, 34svh, 330px) !important;
    min-height: 0 !important;
    max-height: 330px !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero h1 {
    margin-bottom: 10px !important;
    font-size: clamp(34px, 9.2vw, 44px) !important;
    line-height: 1.03 !important;
  }

  body:is(
    [data-page="zminy"],
    [data-page="stosunky"],
    [data-page="kontakt-iz-soboyu"],
    [data-page="vpevnenist-u-sobi"],
    [data-page="vnutrishnya-napruha"],
    [data-page="finansovi-obmezhennya"],
    [data-page="self-realization"],
    [data-page="relationships"],
    [data-page="self-esteem"],
    [data-page="anxiety"],
    [data-page="burnout"],
    [data-page="finance"],
    [data-page="emotional-dependency"]
  ) .hero__lead {
    font-size: 15px !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .hero {
    --home-mobile-photo-height: clamp(198px, 58vw, 220px) !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(33px, 9.25vw, 39px) !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(27px, 7.75vw, 32px) !important;
  }

  body[data-page="home"] .hero .button-primary,
  body[data-page="home"] .hero .button-ghost {
    min-height: 48px !important;
    height: 48px !important;
  }
}

/* Mobile internal-page hero integrity v165. Keep at EOF. */
@media (max-width: 767px) {
  body:not([data-page="home"]):not([data-page="thank-you"]) .hero {
    min-height: 100svh !important;
  }

  body[data-page="practice"] .hero__image {
    height: clamp(272px, 74vw, 310px) !important;
    max-height: 310px !important;
    object-position: 50% 28% !important;
  }
}

/* Fixed-width mobile navigation with work formats v168. Keep at EOF. */
@media (max-width: 760px) {
  body[data-page] .site-header[data-theme] .nav,
  body[data-page] .nav,
  body[data-page="home"] .site-header[data-theme] .nav,
  body[data-page="home"] .nav {
    width: 148px !important;
    min-width: 148px !important;
    max-width: 148px !important;
  }

  body[data-page] .nav a,
  body[data-page="home"] .nav a {
    padding-inline: 10px !important;
    font-size: 0.9rem !important;
  }
}

/* Streamlined request-page continuation v169. Hero styles intentionally untouched. */
body.request-page .deep-reasons-section {
  display: block;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(205, 158, 76, 0.14), transparent 30rem),
    linear-gradient(145deg, #15130f 0%, #221e17 52%, #12100d 100%);
}

body.request-page .deep-reasons-section::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 8%;
  width: min(24vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 181, 111, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(217, 181, 111, 0.035),
    0 0 0 68px rgba(217, 181, 111, 0.02);
  pointer-events: none;
}

body.request-page .deep-reasons-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-width: none;
  margin-inline: auto;
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid rgba(217, 181, 111, 0.48);
}

body.request-page .deep-reasons-copy h2 {
  max-width: 720px;
}

body.request-page .deep-reasons-copy p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

body.request-page .request-trust-section {
  grid-template-columns: minmax(240px, 390px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
}

body.request-page .request-trust-media {
  width: 100%;
}

body.request-page .request-trust-media img {
  aspect-ratio: 1;
  object-position: center 24%;
}

body.request-page .request-trust-copy {
  max-width: 720px;
}

body.request-page .request-trust-copy > p {
  max-width: 620px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  body.request-page .request-trust-section {
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body.request-page .deep-reasons-section::after {
    top: auto;
    right: -24%;
    bottom: -14%;
    width: 70vw;
  }

  body.request-page .deep-reasons-copy {
    width: min(100% - 32px, 100%);
    padding-left: 18px;
  }

  body.request-page .deep-reasons-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  body.request-page .request-trust-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.request-page .request-trust-media {
    width: min(100% - 32px, 360px);
    margin-inline: auto;
  }

  body.request-page .request-trust-copy {
    width: min(100% - 32px, 100%);
    margin-inline: auto;
  }

body.request-page .request-trust-copy h2 {
    font-size: clamp(2.15rem, 10.4vw, 3rem);
  }
}

/* Comprehensive request-page UX/UI refinement v170. */
body.request-page .nav a.is-active {
  opacity: 1;
  color: #f4dda7;
}

body.request-page .nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

body.request-page .request-recognition-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(217, 178, 104, 0.18), transparent 25rem),
    radial-gradient(circle at 92% 88%, rgba(255, 255, 255, 0.7), transparent 30rem),
    linear-gradient(180deg, #fbf5ec 0%, #f1e4d3 100%);
}

body.request-page .request-recognition-section::before {
  position: absolute;
  z-index: -1;
  top: clamp(42px, 6vw, 82px);
  right: max(18px, calc((100vw - 1180px) / 2));
  width: clamp(76px, 8vw, 118px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(176, 130, 56, 0.62));
}

body.request-page .request-recognition-grid {
  width: min(1180px, calc(100% - 40px));
  gap: clamp(12px, 1.3vw, 18px);
  counter-reset: request-problem;
}

body.request-page .request-recognition-grid article {
  position: relative;
  isolation: isolate;
  min-height: 132px;
  padding: clamp(23px, 2.1vw, 30px);
  overflow: hidden;
  border-color: rgba(112, 80, 38, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 178, 104, 0.2), transparent 55%),
    rgba(255, 253, 248, 0.76);
  box-shadow:
    0 22px 56px rgba(84, 62, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: #332b22;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  font-weight: 600;
  line-height: 1.08;
  counter-increment: request-problem;
}

body.request-page .request-recognition-grid article::before {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 24px;
  content: "";
  background: linear-gradient(90deg, #b8893f, #e1c57f);
}

body.request-page .request-recognition-grid article::after {
  position: absolute;
  z-index: -1;
  top: 16px;
  right: 18px;
  content: counter(request-problem, decimal-leading-zero);
  color: rgba(157, 112, 45, 0.13);
  font-family: var(--display-font);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

body.request-page .deep-reasons-section {
  padding-block: clamp(78px, 7.2vw, 112px);
}

body.request-page .deep-reasons-copy {
  width: min(920px, 100%);
  padding-left: clamp(24px, 3.4vw, 48px);
}

body.request-page .deep-reasons-copy .section-kicker {
  margin-bottom: 16px;
  color: #d9b56f;
  letter-spacing: 0.14em;
}

body.request-page .deep-reasons-copy h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.94;
}

body.request-page .deep-reasons-copy p:last-child {
  max-width: 820px;
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

body.request-page .work-process-section {
  padding-block: clamp(72px, 6.4vw, 96px);
  background:
    radial-gradient(circle at 92% 4%, rgba(209, 169, 91, 0.15), transparent 27rem),
    linear-gradient(180deg, #fbf7f0 0%, #f5eadb 100%);
}

body.request-page .work-process-section .section-kicker {
  margin-bottom: 10px;
  color: #9b7131;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.request-page .work-process-grid {
  width: min(1180px, calc(100% - 40px));
  gap: clamp(14px, 1.5vw, 20px);
}

body.request-page .work-process-grid article {
  min-height: 188px;
  padding: clamp(24px, 2.25vw, 32px);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(250, 241, 226, 0.7));
  box-shadow:
    0 22px 54px rgba(84, 62, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

body.request-page .work-process-grid span {
  display: block;
  color: #a47731;
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 0.9;
}

body.request-page .work-process-grid h3 {
  margin: 24px 0 10px;
  font-size: clamp(1.04rem, 1.15vw, 1.22rem);
}

body.request-page .work-process-grid p {
  font-size: 0.95rem;
  line-height: 1.62;
}

body.request-page .home-reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(68px, 6vw, 92px);
  padding-inline: 0 !important;
  color: #302b25;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 251, 241, 0.94), transparent 30rem),
    radial-gradient(circle at 88% 78%, rgba(204, 165, 90, 0.14), transparent 32rem),
    linear-gradient(180deg, #f3e8d9 0%, #fbf6ed 100%);
}

body.request-page .home-reviews-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(185, 139, 67, 0.08), transparent),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.62), transparent 34rem);
}

body.request-page .request-trust-section {
  padding-block: clamp(68px, 6vw, 90px);
  border-top: 1px solid rgba(130, 94, 42, 0.08);
  background:
    radial-gradient(circle at 10% 100%, rgba(207, 163, 83, 0.13), transparent 27rem),
    linear-gradient(180deg, #f7eee2 0%, #efe0cd 100%);
}

body.request-page .request-first-step-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(78px, 6.8vw, 104px);
  background:
    radial-gradient(circle at 15% 0%, rgba(209, 169, 91, 0.13), transparent 24rem),
    radial-gradient(circle at 90% 88%, rgba(255, 255, 255, 0.62), transparent 30rem),
    linear-gradient(180deg, #fbf6ee 0%, #f1e3d1 100%);
}

body.request-page .request-first-step-grid {
  width: min(1080px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 20px;
}

body.request-page .request-first-step-card {
  padding: clamp(26px, 2.7vw, 36px);
  border-radius: 27px;
}

body.request-page .request-first-step-card--primary {
  border-color: rgba(181, 130, 48, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 247, 208, 0.78), transparent 46%),
    linear-gradient(145deg, rgba(255, 251, 235, 0.98), rgba(229, 199, 132, 0.84));
  box-shadow:
    0 30px 78px rgba(144, 99, 32, 0.2),
    0 0 0 1px rgba(255, 242, 199, 0.72) inset,
    0 0 54px rgba(207, 159, 72, 0.12);
  transform: translateY(-8px);
}

body.request-page .request-first-step-card--primary > span {
  color: #835819;
}

body.request-page .request-first-step-card--primary h3 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

body.request-page .request-format-note {
  width: min(1080px, calc(100% - 40px));
  margin-top: 20px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.54);
}

body.request-page .application-form .button[type="submit"] {
  position: relative;
  min-height: 62px;
  overflow: hidden;
  border-color: rgba(255, 233, 171, 0.72);
  border-radius: 999px;
  color: #21180d;
  background:
    linear-gradient(180deg, rgba(255, 255, 246, 0.76), rgba(255, 237, 186, 0.08) 48%),
    linear-gradient(135deg, #fff0b7 0%, #d7ab5b 55%, #b8853b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 42px rgba(214, 162, 70, 0.28);
  font-size: 1.06rem;
  font-weight: 800;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

@media (min-width: 901px) {
  body.request-page .hero {
    min-height: clamp(690px, 88svh, 850px);
  }

  body.request-page .hero__inner {
    width: min(1380px, calc(100% - clamp(86px, 9vw, 150px)));
    max-width: none;
    min-height: inherit;
    padding-top: clamp(102px, 11svh, 126px);
    padding-bottom: clamp(38px, 5svh, 54px);
  }

  body.request-page .hero__image {
    top: clamp(72px, 8svh, 98px) !important;
    width: min(50vw, 920px) !important;
    height: calc(100% - clamp(72px, 8svh, 98px)) !important;
  }

  body.request-page .hero h1 {
    max-width: min(760px, calc(54vw - 64px));
    margin-bottom: clamp(16px, 2svh, 22px);
    font-size: clamp(3.15rem, 4.35vw, 5rem);
  }

  body.request-page .hero__lead {
    max-width: min(650px, calc(51vw - 56px));
    line-height: 1.58;
  }

  body.request-page .hero__actions {
    margin-top: clamp(22px, 2.6svh, 30px);
  }
}

@media (hover: hover) and (pointer: fine) {
  body.request-page .request-recognition-grid article {
    transition:
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 300ms ease,
      box-shadow 360ms ease,
      background 360ms ease;
  }

  body.request-page .request-recognition-grid article:hover {
    border-color: rgba(166, 119, 46, 0.3);
    background:
      radial-gradient(circle at 100% 0%, rgba(217, 178, 104, 0.28), transparent 56%),
      rgba(255, 253, 248, 0.9);
    box-shadow:
      0 30px 70px rgba(84, 62, 34, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transform: translateY(-7px);
  }

  body.request-page .work-process-grid article {
    transition:
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 340ms ease,
      border-color 280ms ease;
  }

  body.request-page .work-process-grid article:hover {
    border-color: rgba(163, 117, 46, 0.25);
    box-shadow:
      0 30px 68px rgba(84, 62, 34, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translateY(-5px);
  }

  body.request-page .application-form .button[type="submit"]:hover {
    filter: saturate(1.08) brightness(1.025);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 24px 54px rgba(214, 162, 70, 0.38);
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  body.request-page [data-animate] .request-recognition-grid article,
  body.request-page [data-animate] .work-process-grid article {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 340ms ease,
      border-color 280ms ease;
  }

  body.request-page [data-animate].is-visible .request-recognition-grid article,
  body.request-page [data-animate].is-visible .work-process-grid article {
    opacity: 1;
    transform: translateY(0);
  }

  body.request-page [data-animate].is-visible :is(.request-recognition-grid, .work-process-grid) article:nth-child(2) {
    transition-delay: 70ms;
  }

  body.request-page [data-animate].is-visible :is(.request-recognition-grid, .work-process-grid) article:nth-child(3) {
    transition-delay: 140ms;
  }

  body.request-page [data-animate].is-visible :is(.request-recognition-grid, .work-process-grid) article:nth-child(4) {
    transition-delay: 210ms;
  }
}

@media (max-width: 900px) {
  body.request-page .work-process-grid article {
    min-height: 168px;
  }

  body.request-page .request-first-step-card--primary {
    transform: none;
  }
}

@media (max-width: 767px) {
  body.request-page .nav a.is-active {
    color: #f0d597 !important;
    background: rgba(217, 181, 111, 0.1);
  }

  body.request-page .nav a.is-active::after {
    top: 9px;
    right: auto;
    bottom: 9px;
    left: 3px;
    width: 2px;
    height: auto;
    background: #d9b56f;
    transform: none;
  }

  body.request-page .request-recognition-section::before {
    display: none;
  }

  body.request-page .request-recognition-grid {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.request-page .request-recognition-grid article {
    min-height: 122px !important;
    padding: 17px 15px !important;
    border-radius: 20px;
    font-size: clamp(1.16rem, 5.5vw, 1.4rem);
  }

  body.request-page .request-recognition-grid article::before {
    width: 28px;
    margin-bottom: 20px;
  }

  body.request-page .request-recognition-grid article::after {
    top: 12px;
    right: 13px;
    font-size: 2.35rem;
  }

  body.request-page .deep-reasons-section {
    padding-block: 46px !important;
  }

  body.request-page .deep-reasons-copy {
    padding-left: 19px;
  }

  body.request-page .deep-reasons-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.35rem) !important;
  }

  body.request-page .work-process-section {
    padding-block: 42px !important;
  }

  body.request-page .work-process-grid article {
    min-height: 0 !important;
    padding: 19px !important;
  }

  body.request-page .work-process-grid span {
    min-width: 42px;
    font-size: 31px !important;
  }

  body.request-page .home-reviews-section {
    padding-block: 42px 46px !important;
  }

  body.request-page .request-trust-section {
    padding-block: 42px !important;
  }

  body.request-page .request-first-step-section {
    padding-block: 48px !important;
  }

  body.request-page .request-first-step-grid {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  body.request-page .request-first-step-card,
  body.request-page .request-format-note {
    min-height: 0 !important;
  }

  body.request-page .request-first-step-card--primary {
    min-height: 330px !important;
  }

  body.request-page .request-format-note {
    width: 100% !important;
  }

  body.request-page .application-form .button[type="submit"] {
    min-height: 58px;
    font-size: 18px !important;
  }
}

/* Stable motion system v171.
   Legacy reveal/hero effects are neutralized first. Only opacity may animate
   on desktop; mobile layout and typography remain completely static. */
[data-animate],
[data-animate].is-visible,
.reveal-word,
.hero .reveal-word,
[data-animate].is-visible .reveal-word {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.hero::before,
.hero__inner,
.hero__eyebrow,
.hero h1,
.hero p,
.hero__actions,
.hero-trust,
.hero__image {
  animation: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  html.stable-motion-preparing [data-stable-hero] {
    opacity: 0 !important;
    transition: none !important;
  }

  html.stable-motion-enabled [data-stable-hero] {
    opacity: 1 !important;
    transition: opacity 480ms ease !important;
  }

  html.stable-motion-enabled .hero__image[data-stable-hero] {
    transition-delay: 80ms !important;
  }

  html.stable-motion-preparing [data-stable-reveal] {
    opacity: 0;
    transition: none !important;
  }

  html.stable-motion-enabled [data-stable-reveal] {
    opacity: 0;
    transition: opacity 400ms ease !important;
  }

  html.stable-motion-enabled [data-stable-reveal].is-stable-visible {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  html.stable-motion-preparing [data-stable-reveal] [data-stable-item] {
    opacity: 0;
    transition: none !important;
  }

  html.stable-motion-enabled [data-stable-reveal] [data-stable-item] {
    opacity: 0;
    transition: opacity 460ms ease var(--stable-delay, 0ms) !important;
  }

  html.stable-motion-enabled [data-stable-reveal].is-stable-visible [data-stable-item] {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-stable-hero],
  [data-stable-reveal],
  [data-stable-item] {
    opacity: 1 !important;
    transition: none !important;
  }
}

/* Interactive cards may change colour and shadow, but never move the layout. */
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus-visible,
  .request-card:hover,
  .story-card:hover,
  .transformation-list article:hover,
  .format-grid article:hover,
  .media-card:hover,
  .media-note:hover,
  body.request-page .request-recognition-grid article:hover,
  body.request-page .work-process-grid article:hover,
  body.request-page .application-form .button[type="submit"]:hover,
  .review-arrow:hover,
  .review-arrow:focus-visible {
    transform: none !important;
  }
}

/* The testimonials carousel now moves as one rigid card: no scale, rotation,
   brightness or size interpolation. */
.review-card,
.review-card.is-active,
.review-card.is-previous,
.review-card.is-next {
  filter: none !important;
}

.review-card {
  transform: translateX(-50%);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 380ms ease !important;
  will-change: auto;
}

.review-card.is-active {
  transform: translateX(-50%);
}

.review-card.is-previous {
  transform: translateX(calc(-50% - min(47vw, 550px)));
}

.review-card.is-next {
  transform: translateX(calc(-50% + min(47vw, 550px)));
}

.home-reviews-section.is-dragging .review-card {
  will-change: transform;
  transition: none !important;
}

.review-modal,
.review-modal__panel {
  transform: none !important;
  transition: opacity 220ms ease !important;
}

@media (max-width: 767px) {
  html {
    scroll-behavior: auto;
  }

  [data-stable-reveal] {
    transform: none !important;
  }

  html.stable-motion-preparing [data-stable-reveal] {
    opacity: 0 !important;
    transition: none !important;
  }

  html.stable-motion-enabled [data-stable-reveal] {
    opacity: 0 !important;
    transition: opacity 380ms ease !important;
  }

  html.stable-motion-enabled [data-stable-reveal].is-stable-visible {
    opacity: 1 !important;
  }

  [data-stable-item] {
    opacity: 1 !important;
    transition: none !important;
  }

  body[data-page="home"] .hero {
    min-height: auto !important;
    --home-mobile-photo-height: clamp(210px, 58vw, 292px) !important;
  }

  body[data-page="home"] .hero__image {
    height: var(--home-mobile-photo-height) !important;
    max-height: 292px !important;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(38px, 10.35vw, 46px) !important;
    line-height: 1.05 !important;
  }

  body[data-page="home"] .hero__title-accent {
    font-size: clamp(31px, 8.7vw, 38px) !important;
    line-height: 1.18 !important;
  }

  body.request-page .hero__image {
    height: clamp(230px, 68vw, 292px) !important;
    min-height: 0 !important;
    max-height: 292px !important;
  }

  body.request-page .hero h1 {
    font-size: clamp(34px, 9.2vw, 40px) !important;
    line-height: 1.02 !important;
  }

  .review-card {
    transform: translateX(calc(-112% - 26px + var(--review-drag-x, 0px)));
    transition:
      transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 320ms ease !important;
  }

  .review-card.is-active {
    transform: translateX(var(--review-drag-x, 0px));
  }

  .review-card.is-previous {
    transform: translateX(calc(-112% - 26px + var(--review-drag-x, 0px)));
  }

  .review-card.is-next {
    transform: translateX(calc(100% - 10px + var(--review-drag-x, 0px)));
  }

  .review-progress span {
    transition: transform 420ms ease !important;
  }

  .review-modal,
  .review-modal__panel {
    transform: none !important;
    transition: opacity 180ms ease !important;
  }
}

/* Premium micro-interactions v174. These transitions never change geometry. */
.button,
.header-cta,
.menu-toggle,
.request-card,
.story-card,
.work-format-card,
.request-recognition-grid article,
.work-process-grid article,
.request-first-step-card,
.faq-accordion button,
.social-link {
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 240ms ease,
    filter 180ms ease,
    opacity 180ms ease !important;
}

.button:active,
.header-cta:active,
.menu-toggle:active,
.social-link:active {
  filter: brightness(0.96);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus-visible,
  .header-cta:hover,
  .header-cta:focus-visible {
    filter: brightness(1.035) saturate(1.04);
  }
}

/* Fail-safe premium motion v175: content is always visible in the base state.
   JavaScript may animate it, but never controls whether it exists on screen. */
html.premium-motion-ready [data-stable-hero],
html.premium-motion-ready [data-stable-reveal],
html.premium-motion-ready [data-stable-item] {
  opacity: 1;
  transform: none;
}

.button,
.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .button::after,
  .header-cta::after {
    position: absolute;
    z-index: 0;
    inset: -45% auto -45% -42%;
    width: 34%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
      100deg,
      transparent,
      rgba(255, 255, 255, 0.38),
      transparent
    );
    transform: skewX(-18deg) translateX(-180%);
    transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .button:hover::after,
  .button:focus-visible::after,
  .header-cta:hover::after,
  .header-cta:focus-visible::after {
    transform: skewX(-18deg) translateX(620%);
  }
}

@keyframes premiumMenuOpacity {
  from {
    opacity: 0.82;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1040px) and (prefers-reduced-motion: no-preference) {
  .site-header.is-open .nav {
    animation: premiumMenuOpacity 260ms cubic-bezier(0.22, 1, 0.36, 1) both !important;
  }
}

/* Desktop visibility repair v175.
   Earlier hero animations declared opacity: 0 separately from their animation.
   When those legacy animations were neutralized, the hidden state survived.
   Every content element now has a visible base state; the premium effects below
   are temporary overlays and never determine whether content exists. */
.hero__eyebrow,
.hero h1,
.hero p,
.hero__actions,
.hero-trust,
.hero__image {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes premiumSafeHeroCopy {
  from {
    opacity: 0.76;
  }

  to {
    opacity: 1;
  }
}

@keyframes premiumSafeHeroImage {
  from {
    opacity: 0.82;
  }

  to {
    opacity: 1;
  }
}

@keyframes premiumSafeSection {
  from {
    opacity: 0.88;
  }

  to {
    opacity: 1;
  }
}

@keyframes premiumSafeHeading {
  from {
    opacity: 0.78;
  }

  to {
    opacity: 1;
  }
}

@keyframes premiumSafeCard {
  from {
    opacity: 0.84;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.premium-motion-ready .hero__inner.is-stable-visible {
    animation: premiumSafeHeroCopy 520ms ease-out !important;
  }

  html.premium-motion-ready .hero__image.is-stable-visible {
    animation: premiumSafeHeroImage 620ms ease-out 70ms !important;
  }

  html.premium-motion-ready [data-stable-reveal].is-stable-visible {
    animation: premiumSafeSection 420ms ease-out;
  }

  html.premium-motion-ready
    [data-stable-reveal].is-stable-visible
    :is(.section-heading > *, .deep-reasons-copy > *, .home-reviews-heading > *, .request-trust-copy > *) {
    animation: premiumSafeHeading 460ms ease-out;
  }

  html.premium-motion-ready
    [data-stable-reveal].is-stable-visible
    [data-stable-item] {
    animation: premiumSafeCard 420ms ease-out
      var(--stable-delay, 0ms);
  }
}

@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  html.premium-motion-ready .hero__inner,
  html.premium-motion-ready .hero__image,
  html.premium-motion-ready [data-stable-reveal],
  html.premium-motion-ready [data-stable-item] {
    animation: none !important;
  }
}

/* Refined motion v177: buttons stay visually calm.
   Remove the moving shine and keep only the site's original subtle
   colour/shadow response. */
.button::after,
.header-cta::after {
  display: none !important;
}

.button,
.header-cta {
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    color 220ms ease,
    box-shadow 280ms ease,
    filter 220ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus-visible,
  .header-cta:hover,
  .header-cta:focus-visible {
    filter: brightness(1.018) saturate(1.015);
  }
}

/* Unified desktop composition and motion v178. */
@media (min-width: 901px) {
  body:not([data-page="home"]):not([data-page="thank-you"]) .hero,
  body:not([data-page="home"]):not([data-page="thank-you"]) .hero__inner {
    min-height: max(100svh, 720px) !important;
  }

  body:not([data-page="home"]):not([data-page="thank-you"]) .hero {
    height: auto !important;
  }
}

body.request-page .request-recognition-grid {
  counter-reset: none !important;
}

body.request-page .request-recognition-grid article {
  counter-increment: none !important;
}

body.request-page .request-recognition-grid article::after,
body.request-page .work-process-grid > article > span {
  display: none !important;
  content: none !important;
}

body.request-page .work-process-grid h3 {
  margin: 0 0 12px !important;
  color: #332b22;
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 1.65vw, 1.72rem) !important;
  font-weight: 600;
  line-height: 1.12;
}

body.request-page .work-process-grid p {
  font-size: clamp(0.96rem, 1vw, 1.05rem);
  line-height: 1.62;
}

.social-link > * {
  pointer-events: none;
}

@keyframes premiumPageFadeOut {
  to {
    opacity: 0;
  }
}

@keyframes premiumPageFadeIn {
  from {
    opacity: 0;
  }
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: premiumPageFadeOut 180ms ease both;
}

::view-transition-new(root) {
  animation: premiumPageFadeIn 320ms ease both;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .button,
  .header-cta,
  .request-card,
  .work-format-card,
  .request-recognition-grid article,
  .work-process-grid article,
  .request-first-step-card,
  .social-link {
    will-change: transform;
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 260ms ease,
      border-color 260ms ease,
      color 220ms ease,
      box-shadow 320ms ease,
      filter 220ms ease !important;
  }

  .button:hover,
  .button:focus-visible,
  .header-cta:hover,
  .header-cta:focus-visible {
    transform: translateY(-2px) !important;
    filter: brightness(1.025) saturate(1.02);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.76),
      0 18px 42px rgba(177, 128, 47, 0.24);
  }

  .request-card:hover,
  .request-card:focus-visible,
  .work-format-card:hover,
  .work-format-card:focus-visible,
  body.request-page .request-recognition-grid article:hover,
  body.request-page .work-process-grid article:hover,
  body.request-page .request-first-step-card:hover {
    transform: translateY(-4px) !important;
    filter: brightness(1.018);
  }

  .social-link:hover,
  .social-link:focus-visible {
    transform: translateY(-2px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

body[data-page="practice"] .hero + .section {
  margin-top: 0 !important;
}

/* Focused mobile stories-page continuity v180. */
@media (max-width: 767px) {
  html
    body[data-page][data-page="istorii-zmin"]:not([data-page="home"]):not([data-page="thank-you"])
    .hero {
    height: auto !important;
    min-height: 0 !important;
    gap: 10px !important;
    padding-bottom: 16px !important;
  }

  body[data-page="istorii-zmin"] .hero__image {
    height: clamp(226px, 62vw, 266px) !important;
    max-height: 266px !important;
  }

  body[data-page="istorii-zmin"] .hero__inner {
    min-height: 0 !important;
  }

  body[data-page="istorii-zmin"] .hero__actions {
    margin-top: 10px !important;
  }

  body[data-page="istorii-zmin"] .hero + .stories-section {
    margin-top: 0 !important;
    padding-top: 30px !important;
  }
}
