:root {
  --bg: #000;
  --text: #f5f5f5;
  --soft: #d8d8d8;
  --gold: #b7822d;
  --gold-light: #d49a3a;
  --green: #02c783;
  --green-dark: #00a86e;
  --line: rgba(183, 130, 45, .9);
  --card: #050505;
  --white-line: rgba(255, 255, 255, .7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 18px;
}

.logo img {
  width: 90px;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav a {
  padding: 11px 18px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.nav a.active,
.nav a:hover {
  border: 1px solid var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--gold);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.hero {
  padding: 28px 0 34px;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Roboto Slab", Rockwell, Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(32px, 3.8vw, 43px);
}

h2 {
  font-size: clamp(29px, 4.4vw, 47px);
}

h3 {
  font-size: clamp(22px, 3vw, 33px);
}

.lead {
  max-width: 860px;
  margin: 16px auto 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.carousel {
  position: relative;
  margin-top: 42px;
}

.carousel-viewport {
  overflow: hidden;
}

.therapist-track {
  display: flex;
  gap: 4px;
  overflow: visible;
  transition: transform .32s ease;
  will-change: transform;
}

.therapist-card {
  flex: 0 0 calc((100% - 12px) / 4);
  position: relative;
  border: 1px solid var(--line);
  background: #111;
}

.therapist-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  cursor: pointer;
}

.therapist-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  padding: 5px 8px 4px;
  background: rgba(0, 0, 0, .52);
  color: var(--gold-light);
  font-family: "Roboto Slab", Rockwell, Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.photo-hit {
  position: absolute;
  inset: 0;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 54px;
  border: 1px solid var(--gold);
  background: rgba(0, 0, 0, .72);
  color: var(--gold-light);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  background: rgba(183, 130, 45, .2);
}

.carousel-arrow.prev {
  left: -14px;
}

.carousel-arrow.next {
  right: -14px;
}

.wa-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  fill: currentColor;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin: 24px 0 0;
}

.hero .cta-row {
  margin-top: 82px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 45px;
  padding: 10px 20px;
  border: 0;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}

.btn:hover {
  background: var(--green-dark);
}

.section {
  padding: 46px 0;
  text-align: center;
}

.clinic-copy {
  max-width: 900px;
  margin: 14px auto 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.space-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.benefit-card {
  min-height: 248px;
  padding: 28px 20px;
  border: 1px solid var(--white-line);
  background: var(--card);
}

.benefit-icon,
.therapy-icon {
  color: #fff;
  line-height: 1;
}

.benefit-icon {
  margin-bottom: 20px;
  font-size: 48px;
}

.benefit-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
}

.benefit-card p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.reviews-title {
  padding-top: 12px;
}

.review-carousel {
  position: relative;
  margin-top: 26px;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  overflow: visible;
  transition: transform .32s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 215px;
  padding: 18px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #202124;
  text-align: left;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #dadce0;
  color: #5f6368;
  font-weight: 800;
}

.review-card strong {
  display: block;
  color: #202124;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.review-card small {
  display: block;
  margin-top: 2px;
  color: #70757a;
  font-size: 12px;
}

.review-stars {
  margin-bottom: 10px;
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: #3c4043;
  font-size: 13px;
  line-height: 1.55;
}

.review-source {
  display: block;
  margin-top: 12px;
  color: #1a73e8;
  font-size: 12px;
  font-weight: 700;
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 28px;
}

.benefit-icon svg {
  width: 82px;
  height: 82px;
}

.therapy-image {
  width: 132px;
  height: 132px;
  margin: 0 auto;
  object-fit: contain;
}

.therapy-card h3 {
  margin-top: 18px;
  font-size: 29px;
}

.therapy-card p {
  max-width: 270px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.65;
}

.payment {
  margin-top: 26px;
  color: #fff;
}

.payment p {
  margin: 8px 0;
}

.payment img {
  width: 170px;
  margin: 26px auto 0;
}

.map-space {
  padding-bottom: 36px;
}

.map-embed {
  width: min(980px, 100%);
  height: 420px;
  margin: 34px auto 0;
  border: 1px solid var(--line);
  background: #080808;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 42px;
  margin-top: 22px;
  padding: 9px 18px;
  background: var(--gold-light);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 3px;
}

.footer {
  padding: 26px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 36px;
  align-items: center;
}

.footer-logo img {
  width: 148px;
  margin: 0 auto 14px;
}

.address,
.links {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.mobile-map-actions {
  display: none;
}

.links a {
  display: block;
  margin: 7px 0;
  text-decoration: none;
}

.copy {
  margin-top: 26px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.legal {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .24);
  font-size: 9px;
  text-align: center;
}

.therapist-profile {
  padding-top: 36px;
  padding-bottom: 72px;
}

.therapist-profile h1 {
  margin-bottom: 34px;
  font-size: clamp(40px, 6vw, 72px);
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-gallery-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.profile-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, .88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 980px);
  max-height: 88vh;
  border: 1px solid var(--gold);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: #000;
  color: var(--gold-light);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .header {
    align-items: center;
    padding-top: 8px;
  }

  .logo img {
    width: 48px;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 23px;
  }

  .lead {
    margin-top: 12px;
    font-size: 13px;
  }

  .hero {
    padding: 8px 0 22px;
  }

  .hero .cta-row {
    margin-top: 28px;
  }

  .btn {
    min-width: 104px;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 58px;
    left: 12px;
    right: 12px;
    z-index: 20;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--gold);
    background: #000;
  }

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

  .nav a {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(183, 130, 45, .35);
  }

  .carousel {
    margin-top: 20px;
  }

  .therapist-carousel .carousel-viewport {
    overflow: visible;
  }

  .therapist-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    transform: none !important;
  }

  .therapist-card {
    flex-basis: auto;
  }

  .therapist-name {
    padding: 3px 6px;
    font-size: 16px;
  }

  .therapist-card.is-clone {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .review-card {
    flex-basis: 100%;
  }

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

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

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

  .address,
  .links {
    text-align: center;
  }

  .mobile-map-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
  }

  .mobile-map-actions a {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: linear-gradient(145deg, #252525, #0b0b0b);
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 26px rgba(0, 0, 0, .45);
  }

  .mobile-map-actions svg {
    width: 31px;
    height: 31px;
  }

  .mobile-map-action.uber svg {
    width: 42px;
    height: 24px;
  }

  .mobile-map-action.map {
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
  }

  .mobile-map-action.waze {
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
  }

  .profile-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
