    :root {
      --bg: #06133a;
      --bg-soft: #10204f;
      --pink: #ff1f68;
      --pink-dark: #cf0f50;
      --text: #f2f5ff;
      --muted: #ccd4f5;
      --dot: rgba(207, 218, 255, 0.5);
      --line: rgba(255, 255, 255, 0.15);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", sans-serif;
      background: radial-gradient(circle at 15% 80%, #1b2f70 0%, transparent 28%),
        radial-gradient(circle at 92% 8%, #1a2e66 0%, transparent 23%),
        linear-gradient(135deg, var(--bg) 0%, #081844 55%, #071439 100%);
      color: var(--text);
      overflow-x: hidden;
      overflow-y: auto;
    }

    .landing {
      position: relative;
      min-height: 100vh;
      isolation: isolate;
    }

    .left-rail {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 74px;
      background: linear-gradient(180deg, rgba(5, 17, 52, 0.9) 0%, rgba(8, 18, 50, 0.45) 55%, rgba(255, 31, 104, 0.85) 55%, rgba(255, 31, 104, 0.85) 100%);
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      z-index: 5;
    }

.brand {
  position: absolute;
  top: 22px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 7;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--pink), #ff477f);
  display: grid;
  place-items: center;
  color: #0f1130;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 1.95rem;
}

.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffedf4;
}

.brand-tagline {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 235, 244, 0.74);
}

    .social {
      position: absolute;
      left: 40px;
      bottom: 60px;
      display: grid;
      gap: 34px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      z-index: 7;
    }

.social span {
  text-decoration: none;
  color: #ffe4ee;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

    .top-nav {
      position: absolute;
      top: 34px;
      right: 72px;
      z-index: 7;
      display: flex;
      gap: 42px;
    }

    .top-nav a {
      text-decoration: none;
      color: #e8eeff;
      font-size: 0.93rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 600;
      position: relative;
      padding-bottom: 6px;
      transition: color 0.2s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .top-nav a:hover {
        color: #ff5f93;
      }

      .top-nav a:hover::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--pink), #ff6da2);
        border-radius: 2px;
      }
    }

    .top-nav a.active {
      color: #ff5f93;
    }

    .top-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), #ff6da2);
      border-radius: 2px;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 58% 42%;
      z-index: 3;
    }

    .products-section {
      position: relative;
      z-index: 6;
      width: 100%;
      min-height: 84vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 96px 36px 72px 132px;
      scroll-margin-top: 24px;
      background: #ffffff;
    }

    .products-wrap {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
    }

    .products-head {
      margin-bottom: 26px;
      text-align: center;
    }

    .products-kicker {
      color: #ff6a9c;
      letter-spacing: 0.16em;
      font-weight: 700;
      font-size: 0.84rem;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .products-head h2 {
      font-family: "Poppins", sans-serif;
      font-size: clamp(2rem, 4.8vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.02em;
      max-width: 18ch;
      color: #111a3a;
      margin-bottom: 16px;
      margin-left: auto;
      margin-right: auto;
    }

    .products-intro {
      font-size: clamp(1rem, 1.9vw, 1.28rem);
      line-height: 1.58;
      color: #4d587f;
      max-width: none;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      white-space: nowrap;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .product-card {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      background: #ffffff;
      border: 1px solid rgba(17, 26, 58, 0.1);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 18px 38px rgba(12, 24, 64, 0.08);
    }

    .product-card:not(:last-child) {
      border-bottom: 0;
    }

    .product-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 0;
      border: 0;
      transform: scale(1.035);
      transform-origin: center;
      transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-image-stack {
      position: relative;
      overflow: hidden;
    }

    .product-image-stack .product-image {
      display: block;
    }

    .product-image-hover {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.25s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-card.is-visible .product-image {
      transform: scale(1);
    }

    .products-grid .product-card:nth-child(1) {
      transition-delay: 0.04s;
    }

    .products-grid .product-card:nth-child(2) {
      transition-delay: 0.12s;
    }

    .products-grid .product-card:nth-child(3) {
      transition-delay: 0.2s;
    }

    .products-grid .product-card:nth-child(4) {
      transition-delay: 0.28s;
    }

    .products-grid .product-card:nth-child(5) {
      transition-delay: 0.36s;
    }

    .products-grid .product-card:nth-child(6) {
      transition-delay: 0.44s;
    }

    @media (hover: hover) and (pointer: fine) {
      .product-card:hover .product-image-primary,
      .product-card:hover > .product-image {
        transform: scale(1.05);
      }

      .product-image-stack:hover .product-image-hover,
      .product-card:hover .product-image-hover {
        opacity: 1;
        transform: scale(1.05);
      }
    }

    .product-copy {
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 20px 20px 22px;
      flex: 1;
    }

    .product-card h3 {
      font-family: "Poppins", sans-serif;
      font-size: clamp(1.15rem, 2.35vw, 1.56rem);
      line-height: 1.25;
      color: #111a3a;
    }

    .product-model {
      color: #ff8db6;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.76rem;
      font-weight: 700;
      margin-top: 2px;
    }

    .product-desc {
      color: #4d587f;
      font-size: 0.84rem;
      line-height: 1.35;
      max-width: none;
      display: grid;
      gap: 6px;
    }

    .product-intro {
      color: #293457;
      font-size: 0.92rem;
      line-height: 1.45;
      margin: 0 0 6px;
    }

    .product-spec {
      display: block;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(17, 26, 58, 0.08);
    }

    .product-spec:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .product-spec strong {
      color: #111a3a;
      font-weight: 700;
    }

    .product-more {
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px solid rgba(17, 26, 58, 0.08);
      display: grid;
      gap: 4px;
    }

    .product-more-label {
      color: #ff4d84;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .product-more-note {
      color: #6d789b;
      font-size: 0.8rem;
      line-height: 1.4;
    }

    .about-section {
      position: relative;
      z-index: 6;
      width: 100%;
      min-height: 88vh;
      display: flex;
      align-items: center;
      padding: 96px 36px 72px 132px;
      scroll-margin-top: 24px;
    }

    .about-content {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(560px, 44vw);
      gap: 40px;
      align-items: center;
    }

    .about-copy {
      display: grid;
      gap: 20px;
      max-width: 760px;
      text-align: left;
    }

    .about-kicker {
      color: #ff6a9c;
      letter-spacing: 0.18em;
      font-weight: 700;
      font-size: 0.86rem;
      text-transform: uppercase;
    }

    .about-content h2 {
      font-family: "Poppins", sans-serif;
      font-size: clamp(2rem, 4.8vw, 4.7rem);
      line-height: 0.98;
      letter-spacing: -0.02em;
      max-width: 16ch;
      color: #f8f9ff;
    }

    .about-text {
      font-size: clamp(1.02rem, 2vw, 1.42rem);
      line-height: 1.62;
      color: #d3dbfb;
      max-width: 65ch;
      margin-left: 0;
      text-align: left;
    }

    .about-media {
      margin: 0;
      position: relative;
      justify-self: end;
      width: min(620px, 100%);
      transform: none;
    }

    .about-media::before {
      content: "";
      position: absolute;
      inset: -12% -10%;
      background: radial-gradient(circle, rgba(255, 51, 109, 0.3) 0%, rgba(255, 51, 109, 0) 68%);
      filter: blur(8px);
      pointer-events: none;
      z-index: -1;
    }

    .about-media img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    }

    .reveal {
      opacity: 0;
      transition: opacity 1.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.95s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .reveal-left {
      transform: translateX(-56px);
    }

    .reveal-right {
      transform: translateX(56px);
    }

    .reveal-up {
      transform: translateY(40px);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translate(0, 0);
    }

    .about-copy.reveal {
      transition-delay: 0.18s;
    }

    .about-media.reveal {
      transition-delay: 0.42s;
    }

    .contact-card.reveal {
      transition-delay: 0.24s;
    }

    .therapy-section {
      position: relative;
      z-index: 6;
      width: 100%;
      min-height: 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 132px 36px 64px 132px;
      scroll-margin-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .therapy-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 132px;
      right: 36px;
      height: 72px;
      background:
        linear-gradient(180deg, rgba(255, 31, 104, 0.16), rgba(255, 31, 104, 0)),
        radial-gradient(circle at 18% 0%, rgba(255, 88, 142, 0.24), transparent 52%);
      pointer-events: none;
    }

    .therapy-card {
      width: 100%;
      padding: 0;
      text-align: left;
    }

    .therapy-kicker {
      color: #ff6a9c;
      letter-spacing: 0.16em;
      font-weight: 700;
      font-size: 0.82rem;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .therapy-card h2 {
      font-family: "Poppins", sans-serif;
      font-size: clamp(2rem, 4.4vw, 4rem);
      line-height: 0.98;
      letter-spacing: -0.02em;
      color: #f8f9ff;
      margin-bottom: 20px;
      max-width: 18ch;
    }

    .therapy-intro {
      color: #d8dffb;
      font-size: clamp(1.05rem, 1.85vw, 1.34rem);
      line-height: 1.55;
      margin-bottom: 30px;
      max-width: 72ch;
      margin-left: 0;
      text-align: left;
    }

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

    .therapy-item {
      padding: 0;
    }

    .therapy-item h3 {
      font-family: "Poppins", sans-serif;
      font-size: clamp(1.02rem, 2.1vw, 1.46rem);
      color: #ff86b0;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .therapy-item p {
      color: #d3dbfb;
      font-size: 0.98rem;
      line-height: 1.56;
    }

    .therapy-item p + p {
      margin-top: 10px;
    }

    .therapy-outro {
      margin-top: 26px;
      max-width: 80ch;
      color: #d5ddfb;
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      line-height: 1.6;
      margin-left: 0;
      text-align: left;
    }

    .contact-section {
      position: relative;
      z-index: 6;
      width: 100%;
      min-height: 0;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 42px 72px 64px 132px;
      scroll-margin-top: 24px;
    }

    .photo-wrap {
      position: relative;
      margin-left: 74px;
      overflow: hidden;
      clip-path: ellipse(82% 100% at 50% 40%);
      background: radial-gradient(circle at 50% 20%, rgba(255, 82, 133, 0.4), transparent 50%),
        linear-gradient(140deg, rgba(18, 12, 44, 0.8), rgba(3, 6, 18, 0.9));
    }

.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  opacity: 0.92;
  filter: contrast(1.04) saturate(1.08);
  transform: scale(1.03);
  animation: photoSettle 4.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s forwards;
}

.photo-base {
  z-index: 1;
}

.photo-alt {
  z-index: 2;
  opacity: 0;
  transform: scale(1.08);
  animation: heroPhotoSwap 2.8s ease-in-out 4.4s forwards;
}

    .content {
      position: relative;
      align-self: center;
      margin-left: -84px;
      max-width: 660px;
      padding: 36px 72px 36px 32px;
      z-index: 6;
    }

    .content::before {
      content: "";
      position: absolute;
      top: -10px;
      bottom: -10px;
      left: -34px;
      right: -420px;
      background: linear-gradient(
        92deg,
        rgba(7, 10, 24, 0.84) 0%,
        rgba(7, 10, 24, 0.76) 34%,
        rgba(7, 10, 24, 0.5) 62%,
        rgba(7, 10, 24, 0.18) 82%,
        rgba(7, 10, 24, 0) 100%
      );
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      backdrop-filter: blur(4px);
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
      pointer-events: none;
      z-index: -1;
    }

    .headline {
      font-family: "Poppins", sans-serif;
      font-size: clamp(2.72rem, 6.8vw, 5.95rem);
      line-height: 0.94;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateX(42px);
      animation: slideReveal 1.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s forwards;
    }

    .headline span {
      color: #ff5a90;
    }

    .sub {
      max-width: 40ch;
      font-size: 1.18rem;
      line-height: 1.55;
      color: var(--muted);
      margin-bottom: 34px;
      opacity: 0;
      transform: translateX(50px);
      animation: slideReveal 2.15s cubic-bezier(0.2, 0.7, 0.2, 1) 1.1s forwards;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: #fff;
      border-radius: 999px;
      padding: 15px 38px;
      background: linear-gradient(90deg, var(--pink-dark), var(--pink));
      box-shadow: 0 12px 28px rgba(255, 31, 104, 0.38);
      transition: transform 0.2s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: liftReveal 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) 1.9s forwards;
    }

    .contact-card {
      margin: 0;
      width: min(1120px, 100%);
      padding: 0;
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 44px;
      align-items: end;
    }

    .contact-card h2 {
      font-family: "Poppins", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: clamp(2.1rem, 5vw, 4.8rem);
      color: #ff5f93;
      line-height: 0.95;
      margin-bottom: 0;
    }

    .contact-card address {
      font-style: normal;
      color: #f5f7ff;
      line-height: 1.45;
      font-size: clamp(0.98rem, 1.8vw, 1.35rem);
      border-left: 2px solid rgba(255, 95, 147, 0.5);
      padding-left: 26px;
    }

    .contact-card address a {
      color: #ff8db6;
      text-decoration: none;
      font-weight: 700;
    }

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

    .arc {
      position: absolute;
      border-radius: 50%;
      border: 64px solid rgba(255, 31, 104, 0.94);
      z-index: 2;
      pointer-events: none;
    }

    .arc.top-right {
      width: 760px;
      height: 760px;
      right: -430px;
      top: -320px;
      border-left-color: transparent;
      border-bottom-color: transparent;
      opacity: 0.95;
    }

    .arc.bottom {
      display: none;
    }

    .dot-grid {
      position: absolute;
      width: 110px;
      height: 110px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 11px;
      z-index: 4;
      opacity: 0.8;
    }

    .dot-grid span {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--dot);
    }

    .dot-grid.left {
      left: 106px;
      top: 248px;
    }

    .dot-grid.right {
      right: 136px;
      top: 362px;
    }

    @media (max-width: 1200px) {
      .top-nav {
        right: 34px;
        gap: 24px;
      }

      .content {
        margin-left: -72px;
        padding: 28px 34px 30px 26px;
      }

      .products-section {
        min-height: 78vh;
        padding: 78px 24px 56px 104px;
      }

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

      .contact-section {
        min-height: 0;
        padding: 34px 34px 56px 104px;
      }

      .therapy-section {
        padding: 94px 24px 48px 104px;
      }

      .therapy-section::before {
        left: 104px;
        right: 24px;
      }

      .about-section {
        min-height: 78vh;
        padding: 78px 24px 56px 104px;
      }

      .about-content {
        grid-template-columns: minmax(0, 1fr) minmax(500px, 42vw);
        gap: 28px;
      }

      .about-media {
        width: min(500px, 100%);
        transform: none;
      }

      .therapy-card {
        padding: 0;
      }
    }

    @media (max-width: 980px) {
      .left-rail {
        width: 22px;
      }

  .brand {
    left: 12px;
    gap: 10px;
  }

      .badge {
        width: 54px;
        height: 54px;
        font-size: 1.7rem;
      }

      .brand-name {
        font-size: 0.95rem;
      }

      .brand-tagline {
        font-size: 0.58rem;
      }

      .social {
        left: 3px;
      }

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

      .photo-wrap {
        margin-left: 22px;
        min-height: 58vh;
        clip-path: ellipse(95% 100% at 50% 24%);
      }

      .content {
        margin: 0;
        max-width: none;
        padding: 26px 24px 46px 40px;
      }

      .products-section {
        min-height: 66vh;
        padding: 58px 24px 44px 40px;
      }

      .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .product-card {
        border-radius: 18px;
      }

      .contact-section {
        min-height: 0;
        padding: 28px 24px 48px 40px;
      }

      .therapy-section {
        padding: 72px 24px 42px 40px;
      }

      .therapy-section::before {
        left: 40px;
        right: 24px;
      }

      .about-section {
        min-height: 70vh;
        padding: 58px 24px 44px 40px;
      }

      .about-content {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .about-media {
        justify-self: start;
        width: min(360px, 100%);
        transform: none;
      }

      .contact-card {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
      }

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

      .contact-card address {
        padding-left: 18px;
      }

      .content::before {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(
          90deg,
          rgba(7, 10, 24, 0.84) 0%,
          rgba(7, 10, 24, 0.78) 38%,
          rgba(7, 10, 24, 0.44) 68%,
          rgba(7, 10, 24, 0) 100%
        );
        border-color: rgba(255, 255, 255, 0.08);
      }

      .headline {
        font-size: clamp(2.3rem, 14vw, 4.8rem);
      }

      .sub {
        font-size: 1rem;
      }

      .arc.top-right {
        width: 620px;
        height: 620px;
        right: -360px;
      }

      .arc.bottom {
        display: none;
      }

      .dot-grid.right {
        right: 32px;
      }
    }

    @media (max-width: 820px) {
      .top-nav {
        display: none;
      }

      .left-rail {
        display: block;
        width: 14px;
      }

      .brand {
        top: 18px;
        left: 18px;
        gap: 12px;
        align-items: center;
      }

      .badge {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
      }

      .brand-name {
        display: block;
        font-size: 1.02rem;
        letter-spacing: 0.14em;
      }

      .brand-tagline {
        font-size: 0.52rem;
        letter-spacing: 0.14em;
      }

      .social {
        display: none;
      }

      .photo-wrap {
        margin-left: 14px;
        min-height: 52vh;
        padding-top: 86px;
      }

      .content {
        padding-left: 28px;
        padding-right: 18px;
      }

      .products-section {
        min-height: 62vh;
        padding: 48px 18px 34px 28px;
      }

      .contact-section {
        min-height: 0;
        padding: 22px 18px 38px 28px;
      }

      .therapy-section {
        padding: 58px 18px 32px 28px;
      }

      .therapy-section::before {
        left: 28px;
        right: 18px;
      }

      .about-section {
        min-height: 62vh;
        padding: 48px 18px 34px 28px;
      }

      .about-content {
        gap: 14px;
      }

      .products-head {
        margin-bottom: 18px;
      }

      .products-intro {
        white-space: normal;
      }

      .product-card {
        min-height: 0;
        margin-bottom: 0;
      }

      .product-card:not(:last-child) {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .product-image {
        width: 100%;
      }

      .product-copy {
        padding: 18px 18px 20px;
        gap: 8px;
      }

      .product-model,
      .product-card h3,
      .product-desc {
        padding-left: 0;
        padding-right: 0;
      }

      .product-desc {
        font-size: 0.82rem;
      }

      .product-intro {
        font-size: 0.88rem;
      }

      .about-content h2 {
        max-width: 22ch;
      }

      .about-text {
        font-size: 1rem;
      }

      .therapy-card {
        padding: 0;
      }

      .therapy-intro {
        font-size: 1rem;
        margin-bottom: 18px;
      }

      .therapy-item {
        padding: 0;
      }

      .therapy-item p {
        font-size: 0.94rem;
      }

      .therapy-outro {
        margin-top: 18px;
        font-size: 0.98rem;
      }

      .contact-card {
        gap: 16px;
      }

      .contact-card address {
        font-size: 1.08rem;
        padding-left: 14px;
      }

      .dot-grid {
        transform: scale(0.74);
      }

      .dot-grid.left {
        left: 76px;
        top: 180px;
      }

      .dot-grid.right {
        display: none;
      }
    }

@keyframes slideReveal {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes liftReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photoSettle {
  from {
    opacity: 0;
    transform: scale(1.24);
  }
  to {
    opacity: 0.92;
    transform: scale(1.03);
  }
}

@keyframes heroPhotoSwap {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0.92;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .headline,
  .sub,
  .cta,
  .photo,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .photo-alt {
    opacity: 0 !important;
  }
}
