@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("public/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 700;
  font-display: swap;
  src: url("public/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: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("public/fonts/prata-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("public/fonts/prata-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 {
  --rose: #b97887;
  --rose-deep: #8d5663;
  --rose-soft: #e7cbd1;
  --rose-pale: #f5e9eb;
  --sage: #dce7d6;
  --sage-deep: #778873;
  --gray: #626164;
  --gray-deep: #29272a;
  --gray-soft: #d9d7d6;
  --paper: #fbf8f7;
  --white: #ffffff;
  --line: rgba(41, 39, 42, 0.14);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-serif: "Prata", Georgia, serif;
  --shell: 1200px;
  --radius-lg: 34px;
  --radius-md: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--gray-deep);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: var(--paper);
  backdrop-filter: none;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.shell {
  width: min(var(--shell), calc(100% - 56px));
  margin-inline: auto;
}

.shell-left {
  padding-left: max(28px, calc((100vw - var(--shell)) / 2));
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gray-deep);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 0 max(28px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(41, 39, 42, 0.08);
  background: rgba(251, 248, 247, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(61, 43, 48, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand-role {
  margin-top: 7px;
  color: var(--gray);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  padding-inline: 24px;
}

.desktop-nav a {
  position: relative;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rose);
  transition: transform 220ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--rose);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  width: min(var(--shell), calc(100% - 56px));
  min-height: 620px;
  margin: 32px auto 0;
  border: 1px solid rgba(141, 86, 99, 0.1);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(231, 203, 209, 0.38), transparent 32%),
    #faf4f5;
  box-shadow: 0 24px 70px rgba(87, 64, 70, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 60px clamp(42px, 5vw, 68px);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.hero h1,
.section h2,
.contact-section h2,
.media-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 580px;
  font-size: clamp(44px, 3.55vw, 58px);
  line-height: 1.1;
}

.hero h1 em,
.section h2 em,
.contact-section h2 em,
.media-heading h2 em {
  color: var(--rose);
  font-weight: 400;
}

.hero h1 em {
  display: block;
  margin-left: clamp(20px, 3vw, 48px);
  font-style: italic;
  white-space: nowrap;
}

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

.hero-lead {
  max-width: 520px;
  margin: 27px 0 0;
  color: var(--gray);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  width: min(520px, 100%);
  margin-top: 30px;
}

.hero-actions .button {
  width: 100%;
  min-width: 0;
  padding-inline: 18px;
  gap: 12px;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 15px 35px rgba(141, 86, 99, 0.2);
}

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

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  color: var(--rose-deep);
}

.hero-caption {
  margin: 28px 0 0;
  color: #8c888a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption span {
  margin-inline: 8px;
  color: var(--rose);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  background: var(--rose-soft);
}

.hero-color-field {
  position: absolute;
  z-index: 3;
  right: -22%;
  bottom: -18%;
  width: 90%;
  height: 68%;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(220, 231, 214, 0.26);
  filter: blur(52px);
  opacity: 0.55;
  transform: rotate(-8deg);
}

.hero-visual::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(145deg, rgba(185, 120, 135, 0.18), transparent 48%);
}

.hero-visual > img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.82) contrast(1.02);
}

.hero-vertical {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 24px;
  margin: 0;
  transform: translateY(-50%) rotate(180deg);
  color: rgba(41, 39, 42, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-note {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 250px;
  padding: 16px 19px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(61, 43, 48, 0.13);
}

.hero-note-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #80a477;
  box-shadow: 0 0 0 5px rgba(128, 164, 119, 0.16);
}

.hero-note p {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.6;
}

.hero-note strong {
  color: var(--gray-deep);
  font-size: 13px;
}

.credentials-strip {
  border: 0;
  color: var(--gray-deep);
  background: transparent;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.credentials-list p {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  margin: 0;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.credentials-list p:first-child {
  padding-left: 22px;
}

.credentials-list p:nth-child(even) {
  border-color: rgba(119, 136, 115, 0.16);
  background: rgba(220, 231, 214, 0.62);
}

.credentials-list span {
  color: var(--rose);
  font-family: var(--font-serif);
  font-size: 18px;
}

.section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section h2,
.media-heading h2,
.contact-section h2 {
  font-size: clamp(38px, 3.65vw, 56px);
}

.about-heading {
  display: grid;
  grid-template-columns: 25% 1fr;
  align-items: start;
  margin-bottom: 56px;
}

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

.about-heading h2 em {
  display: block;
  margin-left: 11%;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(54px, 8vw, 116px);
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  width: 62%;
  height: 48%;
  border-radius: 0 var(--radius-lg) 0 0;
  content: "";
  background: var(--sage);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 650px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.88);
}

.image-frame > span {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--gray-deep);
  background: var(--sage);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-copy {
  padding-right: 4%;
}

.about-copy > p {
  max-width: 650px;
  color: var(--gray);
}

.about-copy .lead-serif {
  color: var(--gray-deep);
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.48;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts article {
  padding: 26px 18px 25px;
  border-right: 1px solid var(--line);
}

.about-facts article:first-child {
  padding-left: 0;
}

.about-facts article:last-child {
  border-right: 0;
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
}

.about-facts span {
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
}

.arrow-link {
  padding-bottom: 5px;
  color: var(--rose-deep);
}

.arrow-link span {
  margin-left: 5px;
}

.professional-roles {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 12px;
  margin-top: 56px;
}

.professional-roles article {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.professional-roles article:nth-child(2) {
  border-color: rgba(119, 136, 115, 0.16);
  background: rgba(220, 231, 214, 0.58);
}

.professional-roles span {
  display: block;
  margin-bottom: 34px;
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.professional-roles h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 400;
  line-height: 1.45;
}

.help-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--rose);
}

.help-section::before {
  position: absolute;
  top: -220px;
  right: -110px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.section-label-light {
  color: rgba(255, 255, 255, 0.72);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.72fr);
  gap: 9%;
  align-items: end;
  margin-bottom: 64px;
}

.split-heading h2 em {
  color: var(--sage);
}

.split-heading > p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.help-card {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 220ms ease, background 220ms ease;
}

.help-card:hover {
  color: var(--gray-deep);
  background: var(--sage);
}

.help-card > span {
  display: block;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-serif);
  font-size: 16px;
}

.help-card:hover > span {
  color: var(--sage-deep);
}

.help-card h3 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}

.help-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.help-card:hover p {
  color: var(--gray);
}

.help-card-featured {
  color: var(--gray-deep);
  background: var(--sage);
}

.help-card-featured > span {
  color: var(--sage-deep);
}

.help-card-featured p {
  color: var(--gray);
}

.help-card:last-child {
  grid-column: 1 / -1;
  min-height: 220px;
}

.help-card:last-child > span {
  margin-bottom: 28px;
}

.help-card:last-child p {
  max-width: 620px;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(58px, 10vw, 145px);
  align-items: center;
}

.approach-visual::before {
  top: auto;
  right: auto;
  bottom: -22px;
  left: -22px;
  width: 55%;
  height: 42%;
  border-radius: 0 0 0 var(--radius-lg);
  background: var(--rose-soft);
}

.approach-visual img {
  height: 690px;
  object-position: center 28%;
}

.approach-visual > span {
  right: auto;
  bottom: 28px;
  left: -20px;
  color: var(--white);
  background: var(--rose);
}

.approach-copy h2 {
  margin-bottom: 44px;
}

.approach-steps {
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
}

.approach-steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.approach-steps article > span {
  color: var(--rose);
  font-family: var(--font-serif);
  font-size: 17px;
}

.approach-steps h3 {
  margin-bottom: 6px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
}

.approach-steps p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--gray-deep);
}

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

.services-section {
  background: #f1eeee;
}

.section-heading-dark > p {
  color: var(--gray);
}

.section-heading-dark h2 em {
  color: var(--rose);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 365px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(72, 54, 59, 0.1);
}

.service-card-main {
  color: var(--white);
  border-color: var(--rose);
  background: var(--rose);
}

.service-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card-main span {
  color: rgba(255, 255, 255, 0.68);
}

.service-card h3 {
  max-width: 290px;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.25;
}

.service-card p {
  max-width: 290px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.service-card-main p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card > a {
  display: grid;
  place-items: center;
  align-self: flex-end;
  width: 50px;
  height: 50px;
  margin-top: 32px;
  border: 1px solid var(--rose-soft);
  border-radius: 50%;
  color: var(--rose-deep);
  font-size: 20px;
}

.service-card-main > a {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.checkups-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(119, 136, 115, 0.28);
  border-radius: var(--radius-md);
  background: var(--sage);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.checkups-link:hover,
.checkups-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(119, 136, 115, 0.56);
  box-shadow: 0 20px 45px rgba(72, 86, 68, 0.12);
  outline: none;
}

.checkups-link-label {
  padding: 8px 12px;
  border: 1px solid rgba(119, 136, 115, 0.35);
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkups-link-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.checkups-link-copy strong {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 400;
  line-height: 1.25;
}

.checkups-link-copy small {
  color: var(--gray);
  font-size: 11px;
  line-height: 1.5;
}

.checkups-link-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(119, 136, 115, 0.42);
  border-radius: 50%;
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.48);
  font-size: 18px;
}

.community-section {
  background: var(--rose-pale);
}

.community-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(141, 86, 99, 0.14);
  border-radius: 42px;
  box-shadow: 0 28px 80px rgba(87, 64, 70, 0.1);
}

.community-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
  padding: 38px;
  background: var(--gray-deep);
}

.community-brand::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 20, 20, 0.24) 0%,
    rgba(25, 20, 20, 0.02) 35%,
    rgba(25, 20, 20, 0.16) 56%,
    rgba(25, 20, 20, 0.82) 100%
  );
  content: "";
  pointer-events: none;
}

.community-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.community-kicker {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(41, 39, 42, 0.48);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.community-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(172px, 54%);
  height: auto;
  margin: auto 0 20px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(255, 250, 249, 0.9);
  box-shadow: 0 18px 45px rgba(41, 39, 42, 0.2);
  backdrop-filter: blur(10px);
  object-fit: contain;
}

.community-topics {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-topics span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(41, 39, 42, 0.52);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.community-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(46px, 6vw, 78px);
  color: var(--white);
  background: var(--rose-deep);
}

.community-copy .section-label {
  margin-bottom: 26px;
  color: var(--rose-soft);
}

.community-copy h2 {
  max-width: 740px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
}

.community-copy h2 em {
  color: var(--rose-soft);
}

.community-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.community-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.community-features li {
  position: relative;
  min-height: 66px;
  padding: 17px 0 15px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.community-features li::before {
  position: absolute;
  top: 19px;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--rose-deep);
  background: var(--sage);
  content: "✓";
  font-size: 10px;
  font-weight: 800;
}

.community-button {
  align-self: flex-start;
  margin-top: 38px;
  color: var(--gray-deep);
  background: var(--sage);
}

.community-button:hover,
.community-button:focus-visible {
  color: var(--white);
  background: var(--rose);
}

.media-section {
  position: relative;
  overflow: hidden;
  color: var(--gray-deep);
  background: var(--sage);
}

.media-section::after {
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(119, 136, 115, 0.25);
  border-radius: 50%;
  content: "";
}

.media-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 2fr 0.8fr;
  gap: 4%;
  align-items: end;
  margin-bottom: 64px;
}

.media-heading .section-label {
  color: var(--sage-deep);
}

.media-heading h2 em {
  display: block;
  margin-left: 9%;
  color: var(--rose-deep);
}

.media-heading > p:last-child {
  margin: 0 0 6px;
  color: var(--gray);
  font-size: 13px;
}

.video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 292px;
  gap: 16px;
}

.video-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--gray-deep);
  box-shadow: 0 18px 44px rgba(63, 75, 61, 0.1);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.video-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.video-card-wide {
  grid-column: span 2;
  background: var(--gray-deep);
}

.video-card.video-card-wide > img {
  right: 0;
  left: auto;
  width: 52%;
  object-position: center 18%;
}

.video-card-wide .video-card-overlay {
  padding: 30px 34px;
  background:
    linear-gradient(90deg, rgba(41, 39, 42, 0.98) 0%, rgba(41, 39, 42, 0.92) 42%, rgba(41, 39, 42, 0.2) 78%),
    linear-gradient(180deg, rgba(41, 39, 42, 0.06), rgba(41, 39, 42, 0.62));
}

.video-card-wide .video-card-copy h3 {
  max-width: 560px;
  font-size: clamp(27px, 2.6vw, 38px);
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(63, 75, 61, 0.2);
}

.video-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.72) contrast(0.94);
  transition: transform 500ms ease, filter 500ms ease;
}

.video-card:nth-child(2) > img,
.video-card:nth-child(6) > img {
  object-position: center 27%;
}

.video-card:hover > img,
.video-card:focus-visible > img {
  transform: scale(1.035);
  filter: saturate(0.82) contrast(0.98);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(25, 23, 25, 0.2) 0%, rgba(25, 23, 25, 0.18) 34%, rgba(25, 23, 25, 0.88) 100%),
    linear-gradient(90deg, rgba(141, 86, 99, 0.16), transparent 58%);
}

.video-card-featured .video-card-overlay {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(25, 23, 25, 0.12) 0%, rgba(25, 23, 25, 0.16) 32%, rgba(25, 23, 25, 0.92) 100%),
    linear-gradient(90deg, rgba(141, 86, 99, 0.22), transparent 60%);
}

.video-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-card-copy {
  display: grid;
  justify-items: start;
}

.video-play {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding-left: 2px;
  border-radius: 50%;
  color: var(--gray-deep);
  background: var(--sage);
  font-size: 10px;
}

.video-card-featured .video-play {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--rose);
  font-size: 13px;
}

.video-card-copy > p {
  margin-bottom: 9px;
  color: var(--rose-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-card-copy h3 {
  max-width: 360px;
  margin-bottom: 13px;
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.video-card-featured .video-card-copy h3 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(31px, 3vw, 45px);
  line-height: 1.22;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
}

.video-link b {
  font-size: 14px;
  font-weight: 400;
}

.articles-section {
  background: var(--rose-pale);
}

.articles-heading {
  display: grid;
  grid-template-columns: 1.8fr 0.72fr;
  gap: 11%;
  align-items: end;
  margin-bottom: 64px;
}

.articles-heading h2 {
  max-width: 800px;
}

.articles-heading h2 em {
  display: block;
  margin-left: 9%;
}

.articles-heading > p {
  max-width: 360px;
  margin: 0 0 5px;
  color: var(--gray);
  font-size: 13px;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(141, 86, 99, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(141, 86, 99, 0.28);
  box-shadow: 0 24px 60px rgba(87, 64, 70, 0.1);
}

.article-card-accent {
  background: rgba(231, 203, 209, 0.52);
}

.article-card-sage {
  background: rgba(220, 231, 214, 0.82);
}

.publication-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gray);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publication-mark {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(141, 86, 99, 0.24);
  border-radius: 50%;
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.publication-mark-logo {
  flex-basis: 76px;
  width: 76px;
  padding: 6px;
  border-radius: 17px;
}

.publication-mark-logo img {
  display: block;
  width: 100%;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(38%) sepia(17%) saturate(1112%) hue-rotate(288deg)
    brightness(92%) contrast(86%);
}

.article-copy {
  margin-top: 52px;
}

.article-copy > p {
  margin-bottom: 16px;
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-copy h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.article-copy > span {
  display: block;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.65;
}

.article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
}

.article-link b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(141, 86, 99, 0.28);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 400;
}

.certificates-section {
  background: #f1eeee;
}

.certificates-heading {
  display: grid;
  grid-template-columns: 1.7fr 0.68fr;
  gap: clamp(48px, 9vw, 118px);
  align-items: end;
  margin-bottom: 48px;
}

.certificates-heading > * {
  min-width: 0;
}

.certificates-heading h2 {
  max-width: 790px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.certificates-heading h2 em {
  display: block;
  margin-left: 8%;
}

.certificates-heading > p {
  margin: 0 0 5px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
}

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

.certificates-slider-controls {
  display: none;
}

.certificate-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(141, 86, 99, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 32px rgba(87, 64, 70, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.certificate-card:hover,
.certificate-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(141, 86, 99, 0.3);
  box-shadow: 0 26px 65px rgba(87, 64, 70, 0.12);
}

.certificate-preview {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 11;
  padding: 10px;
  overflow: hidden;
  border-bottom: 1px solid rgba(141, 86, 99, 0.12);
  background:
    radial-gradient(circle at 12% 14%, rgba(231, 203, 209, 0.48), transparent 34%),
    #f9f6f4;
}

.certificate-card-sage .certificate-preview {
  background:
    radial-gradient(circle at 88% 12%, rgba(220, 231, 214, 0.82), transparent 38%),
    #f8faf6;
}

.certificate-card-rose .certificate-preview {
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 120, 135, 0.22), transparent 40%),
    #fbf4f6;
}

.certificate-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.certificate-card:hover .certificate-preview img,
.certificate-card:focus-visible .certificate-preview img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.certificate-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 112px;
  padding: 14px;
}

.certificate-copy small {
  display: -webkit-box;
  min-height: 24px;
  margin-bottom: 7px;
  overflow: hidden;
  color: var(--rose-deep);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.certificate-copy strong {
  display: -webkit-box;
  min-height: 56px;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.025em;
  hyphens: auto;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.certificate-copy > span {
  display: none;
}

.certificate-lightbox[hidden] {
  display: none;
}

.certificate-lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(31, 27, 29, 0.86);
  backdrop-filter: blur(12px);
}

.certificate-lightbox-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 48px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.certificate-lightbox-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: calc(100dvh - 48px);
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
}

.certificate-lightbox-figure > img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 180px);
  min-height: 360px;
  padding: 24px 72px;
  object-fit: contain;
  background:
    radial-gradient(circle at 15% 12%, rgba(231, 203, 209, 0.5), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(220, 231, 214, 0.7), transparent 32%),
    #f5f0ef;
}

.certificate-lightbox-figure figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 28px;
  align-items: center;
  padding: 20px 72px 22px;
  border-top: 1px solid rgba(141, 86, 99, 0.14);
}

.certificate-lightbox-meta {
  grid-column: 1;
  color: var(--rose-deep);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-lightbox-figure strong {
  grid-column: 1;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  line-height: 1.3;
}

.certificate-lightbox-figure figcaption a {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 11px 17px;
  border: 1px solid rgba(141, 86, 99, 0.28);
  border-radius: 999px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.certificate-lightbox-close,
.certificate-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(141, 86, 99, 0.22);
  border-radius: 50%;
  color: var(--gray-deep);
  background: rgba(251, 248, 247, 0.94);
  box-shadow: 0 10px 28px rgba(45, 33, 37, 0.12);
  cursor: pointer;
}

.certificate-lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.certificate-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.certificate-lightbox-prev {
  left: 16px;
}

.certificate-lightbox-next {
  right: 16px;
}

.certificate-lightbox-close:hover,
.certificate-lightbox-close:focus-visible,
.certificate-lightbox-nav:hover,
.certificate-lightbox-nav:focus-visible,
.certificate-lightbox-figure figcaption a:hover,
.certificate-lightbox-figure figcaption a:focus-visible {
  border-color: var(--rose);
  background: var(--rose-pale);
  outline: none;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1.7fr 0.62fr;
  gap: clamp(48px, 9vw, 118px);
  align-items: end;
  margin-bottom: 56px;
}

.reviews-heading > p {
  margin-bottom: 4px;
  color: var(--gray);
  font-size: 13px;
}

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

.reviews-heading h2 em {
  display: block;
  margin-left: 8%;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.reviews-photo {
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(141, 86, 99, 0.1);
  border-radius: 28px;
  background: var(--rose-pale);
}

.reviews-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.8);
}

.review-cards {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
}

.review-cards article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 24px;
  align-content: center;
  min-height: 0;
  padding: 27px 32px;
  border: 1px solid rgba(141, 86, 99, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
}

.review-cards article:nth-child(2) {
  background: rgba(245, 233, 235, 0.62);
}

.review-stars {
  grid-row: 1 / 3;
  margin: 5px 0 0;
  color: var(--rose);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.review-cards blockquote {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.4;
}

.review-cards article > p {
  margin: 0;
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-cards > .arrow-link {
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 21px;
  border: 1px solid var(--rose-soft);
  border-radius: 999px;
  color: var(--rose-deep);
  background: var(--rose-pale);
  transition: color 180ms ease, background 180ms ease;
}

.review-cards > .arrow-link:hover,
.review-cards > .arrow-link:focus-visible {
  color: var(--white);
  background: var(--rose);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background: var(--rose-deep);
}

.contact-section::before {
  position: absolute;
  top: -230px;
  left: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  background: rgba(231, 203, 209, 0.13);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.contact-copy h2 em {
  display: block;
  color: var(--sage);
}

.contact-copy > p:last-child {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 112px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: color 180ms ease, background 180ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  color: var(--gray-deep);
  background: var(--sage);
}

.contact-action span {
  display: flex;
  flex-direction: column;
}

.contact-action small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-action:hover small,
.contact-action:focus-visible small {
  color: var(--sage-deep);
}

.contact-action strong {
  font-family: var(--font-serif);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
}

.contact-action b {
  font-size: 23px;
  font-weight: 400;
}

.contact-action-primary {
  color: var(--gray-deep);
  background: var(--sage);
}

.contact-action-primary small {
  color: var(--sage-deep);
}

.contact-panel {
  min-width: 0;
}

.contact-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-socials > a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 180ms ease, background 180ms ease;
}

.contact-socials > a:hover,
.contact-socials > a:focus-visible {
  color: var(--gray-deep);
  background: var(--sage);
}

.contact-social-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--rose-soft);
  background: rgba(255, 255, 255, 0.04);
}

.contact-social-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(435%) hue-rotate(296deg) brightness(94%) contrast(88%);
  transition: filter 180ms ease;
}

.contact-social-prodoctorov .contact-social-icon {
  width: 24px;
  height: 24px;
}

.contact-socials > a:hover .contact-social-mark,
.contact-socials > a:focus-visible .contact-social-mark {
  border-color: rgba(119, 136, 115, 0.42);
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.3);
}

.contact-socials > a:hover .contact-social-icon,
.contact-socials > a:focus-visible .contact-social-icon {
  filter: brightness(0) saturate(100%) invert(39%) sepia(15%) saturate(1269%) hue-rotate(296deg) brightness(91%) contrast(81%);
}

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

.contact-socials small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-socials > a:hover small,
.contact-socials > a:focus-visible small {
  color: var(--sage-deep);
}

.contact-socials strong {
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 600;
}

.contact-socials b {
  font-size: 15px;
  font-weight: 400;
}

footer {
  padding: 70px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--gray-deep);
}

.footer-medical-warning {
  margin-bottom: 54px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  color: var(--gray-deep);
  background: var(--sage);
}

.footer-medical-warning strong {
  display: block;
  font-size: clamp(16px, 1.8vw, 23px);
  line-height: 1.35;
}

.footer-medical-warning p {
  max-width: 850px;
  margin: 8px 0 0;
  color: rgba(41, 39, 42, 0.72);
  font-size: 12px;
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 9%;
  padding-bottom: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-role {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about > p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px;
}

.footer-grid nav a:hover,
.footer-contacts a:hover {
  color: var(--white);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
}

.footer-contacts > p {
  max-width: 390px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.7;
}

.footer-contacts .footer-telegram-note {
  padding-left: 12px;
  border-left: 2px solid rgba(220, 231, 214, 0.5);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-inline: auto;
}

.footer-platform-note {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  line-height: 1.55;
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(231, 203, 209, 0.5), transparent 30%),
    var(--paper);
}

.legal-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding-inline: max(28px, calc((100vw - 920px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 247, 0.98);
}

.legal-header .brand-name {
  font-size: 18px;
}

.legal-back {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(141, 86, 99, 0.28);
  border-radius: 999px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 90px;
}

.legal-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-main h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(37px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 11px;
}

.legal-card {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(141, 86, 99, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 70px rgba(87, 64, 70, 0.08);
}

.legal-card section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 400;
  line-height: 1.25;
}

.legal-card h3 {
  margin: 24px 0 8px;
  font-size: 14px;
}

.legal-card p,
.legal-card li {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--rose-deep);
  border-bottom: 1px solid rgba(141, 86, 99, 0.36);
}

.legal-notice {
  margin-bottom: 28px;
  padding: 22px 24px;
  border-radius: 20px;
  color: var(--gray-deep);
  background: var(--sage);
}

.legal-notice strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
}

.legal-notice p {
  margin: 7px 0 0;
  color: rgba(41, 39, 42, 0.7);
  font-size: 12px;
}

.legal-page-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 28px 20px;
  color: rgba(255, 255, 255, 0.55);
  background: var(--gray-deep);
  font-size: 10px;
  text-align: center;
}

.legal-page-footer a {
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.mobile-booking {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 55% 45%;
  }

  .hero-copy {
    padding: 52px 42px;
  }

  .hero h1 {
    font-size: clamp(43px, 4.5vw, 52px);
  }

  .about-layout {
    gap: 64px;
  }

  .image-frame img {
    height: 590px;
  }

  .reviews-layout {
    gap: 20px;
  }

  .reviews-photo {
    height: 580px;
  }

  .approach-visual img {
    height: 640px;
  }

  .help-card {
    min-height: 275px;
    padding: 26px;
  }

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

  .service-card-main {
    grid-column: 1 / -1;
    min-height: 310px;
  }

  .media-heading {
    grid-template-columns: 0.55fr 1.8fr 0.7fr;
  }

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

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

@media (max-width: 940px) {
  .shell {
    width: min(100% - 40px, var(--shell));
  }

  .certificates-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 50px;
  }

  .certificates-heading h2 em {
    margin-left: 0;
  }

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

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
    padding-inline: 20px;
  }

  .desktop-nav,
  .site-header > .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 23px;
    height: 1px;
    background: var(--gray-deep);
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: 101;
    top: 78px;
    right: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    max-height: calc(100dvh - 94px);
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(141, 86, 99, 0.14);
    border-radius: 22px;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    background: #fbf8f7;
    box-shadow: 0 24px 70px rgba(61, 43, 48, 0.2);
    transition: transform 160ms ease, visibility 0s linear 160ms;
  }

  .mobile-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: transform 160ms ease;
  }

  .mobile-nav > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 11px 4px;
    border-bottom: 1px solid rgba(141, 86, 99, 0.12);
    font-family: var(--font-serif);
    font-size: clamp(20px, 5.8vw, 27px);
    line-height: 1.2;
  }

  .mobile-nav .mobile-nav-cta {
    justify-content: center;
    margin-top: 16px;
    padding: 15px 21px;
    border-bottom: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--rose);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 40px, var(--shell));
    min-height: auto;
    margin-top: 20px;
    border-radius: 26px;
  }

  .hero-copy {
    min-height: auto;
    padding: 64px 48px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(46px, 7.3vw, 62px);
  }

  .hero-lead {
    max-width: 610px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-visual > img {
    object-position: center 18%;
  }

  .credentials-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .credentials-list p,
  .credentials-list p:first-child {
    min-height: 68px;
    padding: 0 16px;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .about-heading,
  .articles-heading,
  .about-layout,
  .approach,
  .reviews-heading,
  .reviews-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-heading,
  .articles-heading,
  .reviews-heading {
    gap: 14px;
    margin-bottom: 50px;
  }

  .about-heading h2 em,
  .articles-heading h2 em,
  .reviews-heading h2 em {
    margin-left: 0;
  }

  .about-layout {
    gap: 64px;
  }

  .professional-roles {
    grid-template-columns: 1fr 1fr;
  }

  .professional-roles article:first-child {
    grid-column: 1 / -1;
  }

  .about-photo {
    width: min(620px, 92%);
  }

  .about-copy {
    padding: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 50px;
  }

  .split-heading > p {
    max-width: 660px;
  }

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

  .approach {
    gap: 80px;
  }

  .approach-visual {
    width: min(620px, 92%);
  }

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

  .service-card-main {
    grid-column: auto;
  }

  .service-card {
    min-width: 0;
    min-height: 305px;
  }

  .media-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 50px;
  }

  .media-heading h2 em {
    margin-left: 0;
  }

  .media-heading > p:last-child {
    max-width: 560px;
  }

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

  .video-card {
    min-height: 360px;
  }

  .video-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

  .video-card-wide {
    grid-column: 1 / -1;
  }

  .video-card.video-card-wide > img {
    inset: 0;
    width: 100%;
    object-position: center 18%;
  }

  .video-card-wide .video-card-overlay {
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(25, 23, 25, 0.2) 0%, rgba(25, 23, 25, 0.18) 34%, rgba(25, 23, 25, 0.88) 100%),
      linear-gradient(90deg, rgba(141, 86, 99, 0.16), transparent 58%);
  }

  .video-card-wide .video-card-copy h3 {
    max-width: 360px;
    font-size: clamp(19px, 1.45vw, 24px);
  }

  .articles-heading > p {
    max-width: 610px;
  }

  .reviews-heading > p {
    max-width: 610px;
  }

  .reviews-layout {
    gap: 24px;
  }

  .reviews-photo {
    width: 100%;
    height: 600px;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-copy > p:last-child {
    max-width: 600px;
  }

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

  .footer-contacts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .certificates-heading {
    margin-bottom: 30px;
  }

  .certificates-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
  }

  .certificates-slider-controls > span {
    color: var(--gray);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .certificates-slider-controls > div {
    display: flex;
    gap: 7px;
  }

  .certificates-slider-controls button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(141, 86, 99, 0.24);
    border-radius: 50%;
    color: var(--rose-deep);
    background: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    cursor: pointer;
  }

  .certificates-slider-controls button:disabled {
    opacity: 0.34;
    cursor: default;
  }

  .certificates-grid {
    display: flex;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding: 2px 16px 16px 0;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-padding-left: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .certificates-grid::-webkit-scrollbar {
    display: none;
  }

  .certificates-grid .certificate-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .video-card,
  .video-card-featured {
    grid-column: 1;
    grid-row: auto;
    min-height: 420px;
  }

  .video-card-featured {
    min-height: 520px;
  }

  .video-card-wide {
    grid-column: 1;
  }

  .video-card.video-card-wide > img {
    inset: 0;
    width: 100%;
    object-position: center 18%;
  }

  .video-card-wide .video-card-overlay {
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(25, 23, 25, 0.2) 0%, rgba(25, 23, 25, 0.18) 34%, rgba(25, 23, 25, 0.88) 100%),
      linear-gradient(90deg, rgba(141, 86, 99, 0.16), transparent 58%);
  }

  .video-card-wide .video-card-copy h3 {
    max-width: 360px;
    font-size: clamp(24px, 7vw, 31px);
  }

  .video-card:not(.video-card-featured) .video-card-copy h3 {
    max-width: 100%;
    font-size: clamp(36px, 9vw, 42px);
    line-height: 1.12;
  }

  .video-card-featured .video-card-copy h3 {
    font-size: clamp(40px, 10vw, 46px);
    line-height: 1.1;
  }

  .video-card-copy {
    width: 100%;
    min-width: 0;
  }

  .video-card-copy h3,
  .video-card-featured .video-card-copy h3,
  .video-card-wide .video-card-copy h3 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 68px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .brand-name {
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .brand-role {
    font-size: 8px;
  }

  .hero-copy {
    min-height: auto;
    padding: 50px 20px 46px;
  }

  .hero {
    width: calc(100% - 24px);
    margin-top: 12px;
    border-radius: 20px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 19px;
  }

  .hero h1 {
    font-size: clamp(35px, 10.7vw, 55px);
    line-height: 1.08;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 15px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-caption {
    margin-top: 28px;
    font-size: 9px;
    line-height: 1.6;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual > img {
    object-position: 52% 18%;
  }

  .hero-vertical {
    right: 10px;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .credentials-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .certificates-heading {
    margin-bottom: 28px;
  }

  .certificate-preview {
    padding: 10px;
  }

  .certificate-copy {
    padding: 15px;
  }

  .certificate-copy small {
    font-size: 8px;
  }

  .certificate-copy strong {
    font-size: 16px;
  }

  .certificate-lightbox {
    padding: 12px;
  }

  .certificate-lightbox-panel,
  .certificate-lightbox-figure {
    max-height: calc(100dvh - 24px);
    border-radius: 20px;
  }

  .certificate-lightbox-figure > img {
    max-height: calc(100dvh - 210px);
    min-height: 280px;
    padding: 58px 18px 18px;
  }

  .certificate-lightbox-figure figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 18px 18px;
  }

  .certificate-lightbox-figure figcaption a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 4px;
  }

  .certificate-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .certificate-lightbox-nav {
    top: 32px;
    width: 42px;
    height: 42px;
    font-size: 32px;
    transform: none;
  }

  .certificate-lightbox-prev {
    right: 106px;
    left: auto;
  }

  .certificate-lightbox-next {
    right: 59px;
  }

  .section h2,
  .media-heading h2,
  .contact-section h2 {
    font-size: clamp(35px, 10.5vw, 48px);
    line-height: 1.17;
  }

  .about-heading,
  .articles-heading,
  .reviews-heading {
    margin-bottom: 40px;
  }

  .about-photo,
  .approach-visual {
    width: calc(100% - 14px);
  }

  .image-frame img,
  .approach-visual img {
    height: 500px;
    border-radius: 24px;
  }

  .reviews-photo {
    height: 520px;
    border-radius: 24px;
  }

  .image-frame::before {
    top: -12px;
    right: -12px;
  }

  .image-frame > span {
    right: -12px;
    bottom: 18px;
    padding: 10px 14px;
    font-size: 8px;
  }

  .about-layout {
    gap: 52px;
  }

  .professional-roles {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 42px;
  }

  .professional-roles article,
  .professional-roles article:first-child {
    grid-column: 1;
    min-height: auto;
    padding: 24px;
  }

  .professional-roles span {
    margin-bottom: 22px;
  }

  .about-copy .lead-serif {
    font-size: 24px;
  }

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

  .about-facts article,
  .about-facts article:first-child {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-facts article:last-child {
    border-bottom: 0;
  }

  .about-facts strong {
    margin: 0;
    font-size: 21px;
  }

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

  .help-card:last-child {
    grid-column: 1;
  }

  .help-card {
    min-height: auto;
    padding: 24px;
  }

  .help-card > span {
    margin-bottom: 38px;
  }

  .help-card h3 {
    font-size: 23px;
  }

  .approach {
    gap: 62px;
  }

  .approach-visual::before {
    top: auto;
    right: auto;
    bottom: -14px;
    left: -12px;
  }

  .approach-visual > span {
    right: auto;
    left: -12px;
  }

  .approach-copy h2 {
    margin-bottom: 34px;
  }

  .approach-steps article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .button-dark {
    width: 100%;
  }

  .service-card {
    min-height: 285px;
    padding: 28px;
  }

  .service-card h3 {
    font-size: 30px;
  }

  .checkups-link {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 16px;
    padding: 20px;
  }

  .checkups-link-label {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .checkups-link-copy strong {
    font-size: 21px;
  }

  .video-card-overlay,
  .video-card-featured .video-card-overlay {
    padding: 24px;
  }

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

  .article-card {
    min-height: 390px;
    padding: 26px;
  }

  .article-copy {
    margin-top: 42px;
  }

  .article-copy h3 {
    font-size: 27px;
  }

  .review-cards article {
    grid-template-columns: 1fr;
    min-height: 190px;
    padding: 26px;
  }

  .review-stars {
    grid-row: auto;
    margin: 0 0 17px;
  }

  .review-cards blockquote,
  .review-cards article > p {
    grid-column: 1;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-action {
    min-height: 96px;
    padding: 18px 12px;
  }

  .contact-action strong {
    overflow-wrap: anywhere;
    font-size: 19px;
  }

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

  footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .mobile-booking {
    position: fixed;
    z-index: 95;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(251, 248, 247, 0.94);
    box-shadow: 0 12px 34px rgba(87, 50, 59, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-booking a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-booking a:first-child {
    color: var(--white);
    background: var(--rose);
  }

  .mobile-booking a:last-child {
    color: var(--gray-deep);
    background: var(--sage);
  }
}

@media (max-width: 520px) {
  .certificate-preview {
    padding: 9px;
  }

  .certificate-copy {
    padding: 14px;
  }

  .certificate-copy strong {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(31px, 10vw, 35px);
  }

  .eyebrow {
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .eyebrow span {
    width: 18px;
  }

  .button {
    gap: 12px;
    padding-inline: 19px;
    font-size: 12px;
  }

  .service-card h3 {
    overflow-wrap: anywhere;
    font-size: clamp(26px, 9.2vw, 30px);
    hyphens: auto;
  }

  .image-frame img,
  .approach-visual img {
    height: 445px;
  }

  .reviews-photo {
    height: 460px;
  }

  .contact-action strong {
    font-size: 17px;
  }
}

@media (max-width: 940px) {
  .community-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .community-brand {
    min-height: 440px;
    padding: 34px;
  }

  .community-logo {
    width: min(150px, 38%);
    margin: auto 0 18px;
  }

  .community-copy {
    padding: 58px 44px;
  }
}

@media (max-width: 620px) {
  .community-card {
    min-height: 0;
    border-radius: 28px;
  }

  .community-brand {
    min-height: 500px;
    padding: 24px;
  }

  .community-logo {
    width: min(142px, 44%);
    margin: auto 0 16px;
    padding: 12px;
    border-radius: 18px;
  }

  .community-topics {
    gap: 6px;
  }

  .community-topics span {
    padding: 8px 10px;
    font-size: 8px;
  }

  .community-copy {
    padding: 42px 30px;
  }

  .community-copy h2 {
    overflow-wrap: anywhere;
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.1;
    hyphens: auto;
  }

  .community-lead {
    font-size: 13px;
  }

  .community-features {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .community-button {
    width: 100%;
    margin-top: 32px;
  }

  .footer-medical-warning {
    margin-bottom: 42px;
    padding: 21px 20px;
    border-radius: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-inline: 0;
  }

  .footer-platform-note {
    margin-top: 20px;
  }

  .legal-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .legal-header .brand-role {
    display: none;
  }

  .legal-header .brand-name {
    max-width: 210px;
    font-size: 15px;
    line-height: 1.2;
  }

  .legal-back {
    padding: 9px 13px;
    font-size: 10px;
  }

  .legal-main {
    width: min(100% - 24px, 920px);
    padding: 46px 0 70px;
  }

  .legal-main h1 {
    overflow-wrap: anywhere;
    font-size: clamp(32px, 10vw, 44px);
    hyphens: auto;
  }

  .legal-card {
    border-radius: 22px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 13px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
