:root {
  --forest-950: #14271f;
  --forest-900: #1d352a;
  --forest-800: #2d4a3c;
  --olive: #626a4c;
  --sage: #dfe3d5;
  --sage-soft: #eef0e8;
  --ivory: #f7f4eb;
  --paper: #fffdfa;
  --ink: #1c2620;
  --muted: #657068;
  --gold: #bd985c;
  --plum: #713f4b;
  --line: rgba(45, 74, 60, 0.2);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 39, 31, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
summary {
  letter-spacing: 0;
}

img,
video {
  max-width: 100%;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: var(--white);
  font-size: 4.15rem;
  line-height: 0.96;
}

h2 {
  color: var(--forest-950);
  font-size: 3.4rem;
  line-height: 1.03;
}

h3 {
  color: var(--forest-950);
  font-size: 1.15rem;
  line-height: 1.3;
}

main {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background: rgba(247, 244, 235, 0.92);
  box-shadow: 0 16px 42px rgba(20, 39, 31, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.site-header nav,
.header-actions,
.hero-actions,
.location-actions,
.contact-list {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  color: var(--forest-900);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-mark {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-header nav {
  gap: 22px;
  color: var(--forest-800);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-actions {
  justify-self: end;
  gap: 8px;
}

.language-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(29, 53, 42, 0.34);
  border-radius: 6px;
  background: transparent;
  color: var(--forest-900);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.language-toggle:hover {
  border-color: var(--forest-900);
  background: rgba(29, 53, 42, 0.08);
}

.language-toggle:focus-visible {
  outline: 3px solid rgba(189, 152, 92, 0.5);
  outline-offset: 3px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(189, 152, 92, 0.5);
  outline-offset: 3px;
}

.button-header {
  min-height: 44px;
  justify-self: end;
  border-color: var(--forest-900);
  background: var(--forest-900);
  color: var(--white);
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-950);
  box-shadow: 0 16px 36px rgba(20, 39, 31, 0.14);
}

.button-primary:hover {
  background: #c9a66f;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-outline {
  border-color: rgba(29, 53, 42, 0.42);
  background: transparent;
  color: var(--forest-900);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--plum);
}

.text-link {
  color: var(--forest-900);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 92px 0 8px;
  background: var(--forest-950);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: -2;
  background-image: url("/assets/novayou-spa-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 30, 23, 0.9) 0%, rgba(20, 39, 31, 0.72) 50%, rgba(20, 39, 31, 0.22) 84%),
    linear-gradient(0deg, rgba(13, 29, 22, 0.62) 0%, rgba(13, 29, 22, 0.04) 58%);
}

.hero-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.hero-content {
  width: min(800px, 100%);
}

.hero-logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 0 16px -8px;
  filter: brightness(0) invert(1);
}

.hero-tag,
.section-kicker {
  margin-bottom: 13px;
  color: var(--plum);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-tag,
.section-kicker-light {
  color: var(--gold);
}

.hero-copy {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-offer-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 17px;
  color: var(--white);
}

.hero-offer-line strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.hero-offer-line span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.hero-reassurance {
  max-width: 590px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  line-height: 1.5;
}

.intro-band {
  background: var(--forest-900);
  color: var(--white);
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 82px;
  align-items: center;
  padding: 18px 0 56px;
}

.concern-router {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.concern-router a {
  min-width: 0;
  padding: 18px 18px 19px 0;
}

.concern-router a + a {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.concern-router span,
.concern-router strong {
  display: block;
}

.concern-router span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.concern-router strong {
  margin-top: 7px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.intro-inner h2 {
  max-width: 620px;
  color: var(--white);
  font-size: 3rem;
}

.intro-inner > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.78;
}

.hifu-section,
.treatments-section,
.feedback-section,
.videos-section,
.visit-section {
  padding: 112px 0;
}

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

.hifu-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 90px;
  align-items: center;
}

.hifu-copy h2 {
  max-width: 720px;
}

.section-lead {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-list div {
  min-width: 0;
  padding: 19px 18px 19px 0;
}

.benefit-list div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  color: var(--forest-900);
  font-size: 0.88rem;
}

.benefit-list span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hifu-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.hifu-offer span,
.hifu-offer strong {
  display: block;
}

.hifu-offer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hifu-offer strong {
  margin-top: 4px;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.treatment-note {
  max-width: 600px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.signature-video {
  justify-self: center;
  width: min(430px, 100%);
  overflow: hidden;
  border: 1px solid rgba(20, 39, 31, 0.18);
  border-radius: 8px;
  background: var(--forest-950);
  box-shadow: var(--shadow);
}

.signature-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #0c1611;
  object-fit: cover;
}

.signature-video figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--white);
}

.signature-video figcaption span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signature-video figcaption strong {
  font-size: 0.88rem;
}

.treatments-section,
.videos-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 68px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .button {
  justify-self: end;
}

.heading-copy {
  color: var(--muted);
  line-height: 1.72;
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--ivory);
  box-shadow: 0 14px 34px rgba(20, 39, 31, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:first-child {
  grid-column: span 2;
  background: var(--sage-soft);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.service-topline span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.service-topline p {
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.service-copy {
  max-width: 580px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.68;
}

.service-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 30px;
}

.service-footer strong {
  color: var(--forest-900);
  font-size: 0.9rem;
}

.service-footer a {
  color: var(--forest-900);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.menu-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.5fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.menu-strip h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.menu-list span {
  position: relative;
  padding-left: 13px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.menu-list span::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.feedback-section {
  background: var(--ivory);
}

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

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

.proof-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.proof-cta-row p {
  max-width: 650px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.proof-cta-row .button {
  flex: 0 0 auto;
}

.media-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--forest-950);
  box-shadow: 0 18px 44px rgba(20, 39, 31, 0.08);
}

.media-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #0c1611;
  object-fit: cover;
}

.media-caption {
  min-height: 94px;
  padding: 17px 18px 19px;
}

.media-caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-caption h3 {
  color: var(--white);
  font-size: 1rem;
}

.experience-section {
  padding: 102px 0;
  background: var(--forest-900);
  color: var(--white);
}

.experience-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 94px;
  align-items: center;
}

.experience-copy h2 {
  max-width: 600px;
  color: var(--white);
}

.experience-copy > p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.experience-copy .button {
  margin-top: 28px;
  color: var(--forest-900);
}

.experience-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-steps article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.experience-steps h3 {
  color: var(--white);
}

.experience-steps p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.6;
}

.consultation-band {
  background: var(--plum);
  color: var(--white);
}

.consultation-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) auto;
  gap: 48px;
  align-items: center;
  padding-block: 66px;
}

.consultation-inner h2 {
  color: var(--white);
  font-size: 2.75rem;
}

.consultation-inner > p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.68;
}

.visit-section {
  background: var(--ivory);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 84px;
}

.faq-block h2,
.location-block h2 {
  font-size: 2.9rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 20px 52px 20px 20px;
  color: var(--forest-900);
  font-size: 0.92rem;
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.location-block {
  align-self: start;
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.location-block > p:not(.section-kicker) {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.location-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-list {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  color: var(--forest-900);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.site-footer {
  padding: 48px 0;
  background: #101d17;
  color: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-inner p {
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 3rem;
  }

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

  .site-header nav {
    display: none;
  }

  .hifu-inner,
  .experience-inner {
    gap: 58px;
  }

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

  .service-card:first-child {
    grid-column: auto;
  }

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

  .menu-strip .text-link {
    grid-column: 2;
  }

  .consultation-inner {
    grid-template-columns: 1fr 1fr;
  }

  .consultation-inner .button {
    justify-self: start;
  }
}

@media (max-width: 780px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.65rem;
  }

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

  .hero {
    min-height: 760px;
    padding-top: 92px;
  }

  .intro-inner,
  .hifu-inner,
  .section-heading,
  .experience-inner,
  .consultation-inner,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .intro-inner,
  .hifu-inner,
  .experience-inner,
  .visit-grid {
    gap: 44px;
  }

  .intro-inner {
    padding: 30px 0 56px;
  }

  .hifu-section,
  .treatments-section,
  .feedback-section,
  .videos-section,
  .visit-section {
    padding: 82px 0;
  }

  .signature-video {
    width: min(420px, 100%);
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading .button {
    justify-self: start;
  }

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

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

  .concern-router a:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .concern-router a:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .consultation-inner {
    gap: 24px;
  }

  .location-block {
    padding-top: 44px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .footer-inner p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.6rem;
    line-height: 0.98;
  }

  h2,
  .intro-inner h2,
  .faq-block h2,
  .location-block h2,
  .consultation-inner h2 {
    font-size: 2.18rem;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    gap: 8px;
    padding: 8px;
  }

  .brand {
    font-size: 0.74rem;
  }

  .brand span {
    display: none;
  }

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

  .button-header {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .language-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero {
    min-height: 710px;
    padding: 88px 0 30px;
  }

  .hero::before {
    background-position: 64% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(14, 30, 23, 0.94) 0%, rgba(20, 39, 31, 0.78) 74%, rgba(20, 39, 31, 0.5) 100%),
      linear-gradient(0deg, rgba(13, 29, 22, 0.72) 0%, rgba(13, 29, 22, 0.08) 62%);
  }

  .hero-logo {
    width: 182px;
    margin-bottom: 12px;
    margin-left: -6px;
  }

  .hero-copy {
    margin-top: 15px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

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

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

  .intro-inner {
    padding: 38px 0 58px;
  }

  .concern-router {
    margin-top: 0;
  }

  .concern-router a {
    padding: 15px 12px 15px 0;
  }

  .concern-router a + a {
    padding-left: 12px;
  }

  .concern-router a:nth-child(3) {
    padding-left: 0;
  }

  .concern-router strong {
    font-size: 0.9rem;
  }

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

  .benefit-list div {
    padding: 15px 0;
  }

  .benefit-list div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hifu-offer {
    align-items: stretch;
    flex-direction: column;
  }

  .hifu-offer .button {
    width: 100%;
  }

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

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

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

  .menu-strip .text-link {
    grid-column: auto;
  }

  .feedback-grid,
  .video-grid {
    grid-auto-columns: 84%;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0 16px 16px;
    margin-inline: -16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .media-card {
    scroll-snap-align: start;
  }

  .proof-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-cta-row .button {
    width: 100%;
  }

  .experience-section {
    padding: 78px 0;
  }

  .consultation-inner {
    padding-block: 58px;
  }

  .consultation-inner .button {
    width: 100%;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
