:root {
  --primary-green: #f2944e;
  --dark-bg: #0b151b;
  --text-gray: #a0aab2;
  --light-bg: #fcfcfc;
  --font-sans: "Inter", sans-serif;
  --font-serif: "Lora", serif;
  --shadow-soft: 0 20px 50px rgba(7, 18, 24, 0.08);
  --header-offset: 96px;
  --section-radius: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(242, 148, 78, 0.55);
  outline-offset: 4px;
}

section,
.hero {
  scroll-margin-top: var(--header-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(11, 21, 27, 0.08);
}

.header-shell {
  max-width: none;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 40px;
  background: #ffffff;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-right {
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.logo-image {
  display: block;
  height: 35px;
  width: auto;
  object-fit: contain;
}

.nav-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.nav-location i,
.nav-phone i {
  color: var(--primary-green);
}

.nav-desktop {
  display: flex;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #4e5962;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: #121b21;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.btn-nav,
.btn-primary,
.btn-secondary,
.btn-footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-nav,
.btn-primary {
  background-color: var(--primary-green);
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
}

.btn-nav:hover,
.btn-primary:hover,
.btn-footer-phone:hover {
  transform: translateY(-1px);
}

.btn-nav i,
.btn-primary i,
.btn-footer-phone i {
  border: 1px solid rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  padding: 4px;
  font-size: 10px;
}

.btn-secondary {
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary i {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 4px;
  font-size: 10px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 21, 27, 0.08);
  border-radius: 16px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--dark-bg);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  margin-top: 12px;
  padding: 20px;
  border-radius: 26px;
  background: var(--dark-bg);
  color: #fff;
  box-shadow: 0 20px 40px rgba(11, 21, 27, 0.18);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 500;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.main-footer,
.pricing-section,
.studio-section,
.hero {
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 640px;
  margin: 0 40px 0;
  border-radius: var(--section-radius);
  background: var(--dark-bg);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 55%;
  padding: 90px 60px;
}

.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #a7b7b1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.subtitle::before {
  content: "•";
  color: var(--primary-green);
}

.subtitle-centered {
  justify-content: center;
}

.hero h1 {
  max-width: 580px;
  margin-bottom: 25px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.08;
}

.hero p {
  max-width: 520px;
  margin-bottom: 40px;
  color: #d1d9dd;
  font-size: 16px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 2;
  background:
    linear-gradient(to right, var(--dark-bg) 0%, transparent 40%),
    linear-gradient(180deg, rgba(11, 21, 27, 0.62) 0%, rgba(11, 21, 27, 0.96) 100%);
}

.offer-section,
.clinic-section,
.reviews-section,
.contact-section,
.faq-section {
  padding: 100px 40px;
}

.offer-intro,
.reviews-intro,
.team-intro,
.faq-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.offer-intro h2,
.reviews-intro h2,
.team-intro h2,
.pricing-intro h2,
.faq-intro h2,
.contact-intro h2,
.studio-intro-left h2,
.clinic-text h2 {
  margin-bottom: 20px;
  color: var(--dark-bg);
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
}

.offer-intro p,
.reviews-intro p,
.team-intro p,
.contact-intro p,
.clinic-text p,
.studio-intro-right p,
.faq-answer p {
  color: #555;
  font-size: 16px;
  line-height: 1.75;
}

.offer-intro p + p,
.team-intro p + p,
.studio-intro-right p + p,
.clinic-text p + p,
.faq-answer p + p {
  margin-top: 16px;
}

.pillars-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.pillar {
  flex: 1;
}

.pillar-header {
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 5px solid var(--primary-green);
}

.pillar-header h3 {
  color: var(--dark-bg);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--dark-bg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
  isolation: isolate;
}

.card-bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.card-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-overlay-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  z-index: 2;
  background:
    linear-gradient(to right, var(--dark-bg) 0%, transparent 40%),
    linear-gradient(180deg, rgba(11, 21, 27, 0.42) 0%, rgba(11, 21, 27, 0.86) 100%);
  transition: background 0.35s ease;
}

.card-content-wrap {
  position: relative;
  z-index: 3;
  min-height: 110px;
  padding: 24px 28px;
}

.service-toggle {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-more i {
  transition: transform 0.35s ease;
}

.card-text-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.card-text-collapse p {
  max-width: 88%;
  color: #d1d9dd;
  font-size: 14px;
  line-height: 1.7;
}

.service-card.open .card-title {
  color: var(--primary-green);
}

.service-card.open .card-overlay-bg {
  background:
    linear-gradient(to right, var(--dark-bg) 0%, transparent 40%),
    linear-gradient(180deg, rgba(11, 21, 27, 0.72) 0%, rgba(11, 21, 27, 0.96) 100%);
}

.service-card.open .card-text-collapse {
  max-height: 340px;
  margin-top: 16px;
  opacity: 1;
}

.service-card.open .btn-more {
  color: var(--primary-green);
  border-color: rgba(242, 148, 78, 0.5);
}

.service-card.open .btn-more i {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover .card-bg-wrap img {
    transform: scale(1.04);
  }

  .service-card:hover .btn-more {
    color: var(--primary-green);
    border-color: rgba(242, 148, 78, 0.5);
  }

  .service-card:hover .card-title {
    color: var(--primary-green);
  }
}

.studio-section,
.pricing-section,
.main-footer {
  margin: 0 40px 40px;
  border-radius: var(--section-radius);
  background: var(--dark-bg);
  color: #fff;
}

.studio-section,
.pricing-section {
  padding: 100px 40px;
}

.team-section {
  margin: 0 40px 40px;
}

.studio-intro,
.clinic-wrapper,
.contact-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.studio-intro {
  margin-bottom: 60px;
}

.studio-intro-left,
.studio-intro-right,
.clinic-text,
.contact-info,
.contact-form-wrapper {
  flex: 1;
}

.studio-intro-left h2,
.team-section-card--dark .team-intro h2,
.pricing-intro h2 {
  color: #fff;
}

.studio-intro-right p,
.team-section-card--dark .team-intro p,
.pricing-category h3,
.item-price {
  color: #d1d9dd;
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.mobile-scroll-wrapper {
  display: contents;
}

.gallery-item-1 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.gallery-item-2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.gallery-item-3 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.gallery-item-4 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.gallery-item-5 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img,
  .member-photo:hover img,
  .clinic-images img:hover {
    transform: scale(1.04);
  }
}

.clinic-text {
  padding-right: 40px;
}

.clinic-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  min-height: 550px;
}

.img-clinic-main,
.img-clinic-secondary,
.member-photo {
  overflow: hidden;
  border-radius: 20px;
}

.img-clinic-main {
  grid-column: 3 / 13;
  grid-row: 1 / 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.img-clinic-secondary {
  grid-column: 1 / 8;
  grid-row: 6 / 13;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.clinic-images img,
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-section-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-section-card {
  overflow: hidden;
  border-radius: var(--section-radius);
}

.team-section-card--dark {
  background: var(--dark-bg);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.team-section-card--light {
  background: #fff;
  color: var(--dark-bg);
  box-shadow: 0 24px 40px rgba(7, 18, 24, 0.08);
}

.team-section-card--intro {
  padding: 100px 40px;
}

.team-section-card--member {
  padding: 44px;
}

.team-intro {
  max-width: 980px;
  margin: 0 auto 80px;
  text-align: center;
}

.team-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member.reverse {
  flex-direction: row-reverse;
}

.member-photo {
  flex: 1;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.member-info {
  flex: 1.2;
}

.member-name {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
}

.member-role {
  margin-bottom: 24px;
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.member-bio p {
  font-size: 15px;
  line-height: 1.75;
}

.member-bio p + p,
.member-bio ul + p {
  margin-top: 16px;
}

.member-bio ul {
  margin: 20px 0 0;
  list-style: none;
}

.member-bio li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
}

.member-bio li + li {
  margin-top: 10px;
}

.member-bio li i {
  margin-top: 4px;
  color: var(--primary-green);
}

.team-section-card--dark .member-name {
  color: #fff;
}

.team-section-card--dark .member-bio p,
.team-section-card--dark .member-bio li {
  color: #d1d9dd;
}

.team-section-card--dark .member-role,
.team-section-card--dark .member-bio li i {
  color: var(--primary-green);
}

.team-section-card--light .member-photo {
  box-shadow: 0 18px 32px rgba(7, 18, 24, 0.12);
}

.team-section-card--light .member-name,
.team-section-card--light .member-bio p,
.team-section-card--light .member-bio li {
  color: var(--dark-bg);
}

.team-section-card--light .member-role,
.team-section-card--light .member-bio li i {
  color: #b9631d;
}

.pricing-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-source-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.reviews-google-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(100%, 520px);
  padding: 24px 28px;
  border: 1px solid rgba(11, 21, 27, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(66, 133, 244, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(251, 188, 5, 0.14), transparent 32%),
    #fff;
  box-shadow: 0 20px 50px rgba(11, 21, 27, 0.08);
  color: var(--dark-bg);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.reviews-google-summary:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 133, 244, 0.28);
  box-shadow: 0 24px 60px rgba(11, 21, 27, 0.12);
}

.reviews-google-topline,
.reviews-google-scoreline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reviews-google-brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.google-letter-blue {
  color: #4285f4;
}

.google-letter-red {
  color: #ea4335;
}

.google-letter-yellow {
  color: #fbbc05;
}

.google-letter-green {
  color: #34a853;
}

.reviews-google-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(11, 21, 27, 0.04);
  color: rgba(11, 21, 27, 0.62);
  font-size: 16px;
}

.reviews-google-rating {
  color: var(--dark-bg);
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}

.reviews-google-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fbbc05;
  font-size: 17px;
}

.reviews-google-count {
  color: #555;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 21, 27, 0.08);
  color: var(--dark-bg);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.reviews-google-link:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 148, 78, 0.4);
}

.reviews-carousel {
  max-width: 1280px;
  margin: 0 auto;
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 22px;
}

.reviews-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 21, 27, 0.08);
  border-radius: 50%;
  background: #fff;
  color: var(--dark-bg);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.reviews-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 148, 78, 0.45);
}

.reviews-nav[hidden] {
  display: none;
}

.reviews-nav:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.reviews-track {
  display: grid;
  align-items: start;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track:focus-visible {
  outline: 2px solid rgba(242, 148, 78, 0.5);
  outline-offset: 6px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
  padding: 40px;
  border-radius: 22px;
  background: #f8f9fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  scroll-snap-align: start;
  transition: transform 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.review-source-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(242, 148, 78, 0.14);
  color: #8a4d1e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-date {
  color: #777;
  font-size: 13px;
}

.review-stars {
  margin-bottom: 0;
  color: #ffd700;
  font-size: 16px;
}

.review-star-muted {
  color: rgba(255, 215, 0, 0.3);
}

.review-text {
  margin-bottom: 0;
  color: #555;
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.author-name {
  color: var(--dark-bg);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}

.review-provider {
  flex-shrink: 0;
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.reviews-footnote {
  max-width: 1020px;
  margin: 18px auto 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.pricing-intro {
  margin-bottom: 60px;
  text-align: center;
}

.pricing-category {
  flex: 1;
}

.pricing-category h3 {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-green);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.item-left i {
  color: var(--primary-green);
  opacity: 0;
  transform: translateX(-8px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.item-name {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.item-right {
  text-align: right;
}

.item-price {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.item-time {
  margin-top: 4px;
  color: var(--text-gray);
  font-size: 13px;
}

.pricing-item:hover .item-left i {
  opacity: 1;
  transform: translateX(0);
}

.pricing-item:hover .item-name,
.pricing-item:hover .item-price {
  color: var(--primary-green);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-wrapper {
  max-width: 1200px;
  gap: 80px;
  align-items: stretch;
}

.clinic-wrapper {
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-intro p {
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-socials .contact-text {
  margin-left: 70px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242, 148, 78, 0.15);
  color: var(--primary-green);
  font-size: 20px;
}

.contact-text h4 {
  margin-bottom: 8px;
  color: var(--dark-bg);
  font-size: 18px;
  font-weight: 500;
}

.contact-text p,
.contact-text a {
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}

.contact-address {
  color: #555;
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

.contact-text a:hover {
  color: var(--primary-green);
}

.phone-note {
  display: block;
  margin-top: 8px;
  color: #888;
  font-size: 13px;
  font-style: italic;
}

.social-row,
.footer-socials {
  display: flex;
  gap: 14px;
}

.social-row a,
.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.social-row a {
  border: 1px solid #ddd;
  color: #555;
}

.social-row a:hover {
  border-color: var(--primary-green);
  background: var(--primary-green);
  color: #000;
  transform: translateY(-2px);
}

.contact-form-wrapper {
  padding: 50px 40px;
  border-radius: 24px;
  background: var(--dark-bg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 28px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}

.form-group + .form-group {
  margin-top: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 16px 18px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8e98a0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  background: rgba(255, 255, 255, 0.07);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 22px;
}

.btn-submit[disabled] {
  opacity: 0.8;
  cursor: wait;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status.is-success {
  color: #a7efb2;
}

.form-status.is-error {
  color: #ffb4b4;
}

.faq-section {
  background: var(--light-bg);
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e8ebed;
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: rgba(242, 148, 78, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.faq-question-heading {
  margin: 0;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--dark-bg);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.faq-icon {
  color: var(--primary-green);
  transition: transform 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 28px;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 460px;
  opacity: 1;
  padding: 0 28px 24px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.local-page-main {
  padding: 28px 0 0;
}

.local-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: stretch;
  margin: 0 40px;
  padding: 88px 60px;
  border-radius: var(--section-radius);
  background: var(--dark-bg);
  color: #ffffff;
}

.local-hero-content {
  max-width: 820px;
}

.local-hero h1 {
  margin: 18px 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 500;
  line-height: 1.05;
}

.local-hero p {
  max-width: 760px;
  color: #d1d9dd;
  font-size: 18px;
  line-height: 1.8;
}

.local-info-card,
.local-route-card {
  border-radius: 28px;
  background: #ffffff;
  color: var(--dark-bg);
  box-shadow: var(--shadow-soft);
}

.local-info-card {
  align-self: center;
  padding: 36px;
}

.local-info-card h2,
.local-route-card h2,
.local-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
}

.local-info-card h2 {
  margin-bottom: 22px;
  font-size: 30px;
}

.local-info-card ul {
  display: grid;
  gap: 16px;
  list-style: none;
}

.local-info-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #344149;
  font-size: 15px;
  line-height: 1.55;
}

.local-info-card i {
  margin-top: 4px;
  color: var(--primary-green);
}

.local-content-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: start;
  padding: 90px 60px;
}

.local-copy h2 {
  max-width: 780px;
  margin: 14px 0 28px;
  color: var(--dark-bg);
  font-size: clamp(34px, 4vw, 54px);
}

.local-copy p {
  max-width: 820px;
  color: #4a555c;
  font-size: 17px;
  line-height: 1.8;
}

.local-copy p + p {
  margin-top: 18px;
}

.local-route-card {
  position: sticky;
  top: calc(var(--header-offset) + 24px);
  padding: 36px;
  border: 1px solid rgba(11, 21, 27, 0.08);
}

.local-route-card h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.local-route-card p,
.local-route-card address {
  color: #4a555c;
  font-size: 15px;
  line-height: 1.75;
}

.local-route-card address {
  margin: 22px 0;
  font-style: normal;
}

.main-footer {
  overflow: hidden;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 60px;
  background: var(--primary-green);
  color: #000;
}

.footer-top h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
}

.btn-footer-phone {
  background: var(--dark-bg);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
}

.btn-footer-phone i {
  border-color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  padding: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) minmax(220px, 0.9fr);
  gap: 60px;
}

.footer-col h4 {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}

.footer-col p {
  max-width: 420px;
  color: #d1d9dd;
  font-size: 15px;
  line-height: 1.75;
}

.footer-location-details h5 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.footer-location-details p {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
}

.footer-location-note {
  margin-bottom: 10px;
  color: #d1d9dd !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
}

.footer-socials a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.footer-socials a:hover {
  border-color: var(--primary-green);
  background: var(--primary-green);
  color: #000;
  transform: translateY(-2px);
}

.footer-local-links {
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer-local-links a {
  color: #d1d9dd;
  font-size: 15px;
  transition: color 0.25s ease;
}

.footer-local-links a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
}

.footer-links a {
  color: #d1d9dd;
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-copy {
  color: #8b949c;
  font-size: 14px;
}

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

  .nav-links {
    gap: 20px;
  }

  .hero-content {
    width: 58%;
    padding: 80px 50px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 82px;
  }

  .site-header {
    padding: 0;
  }

  .navbar {
    gap: 14px;
    padding: 15px 20px;
  }

  .nav-desktop,
  .nav-phone,
  .nav-right .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    margin: 0 15px 12px;
    border-radius: 20px;
  }

  .hero,
  .studio-section,
  .pricing-section,
  .main-footer {
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 24px;
  }

  .team-section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .hero {
    min-height: 560px;
    flex-direction: column;
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
    padding: 42px 22px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-bg,
  .hero-overlay {
    width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 21, 27, 0.68) 0%, rgba(11, 21, 27, 0.95) 100%);
  }

  .offer-section,
  .clinic-section,
  .reviews-section,
  .contact-section,
  .faq-section,
  .studio-section,
  .pricing-section,
  .local-content-section {
    padding: 60px 20px;
  }

  .local-page-main {
    padding-top: 15px;
  }

  .local-hero {
    grid-template-columns: 1fr;
    margin: 0 15px;
    padding: 52px 22px;
    border-radius: 24px;
  }

  .local-hero h1 {
    font-size: 40px;
  }

  .local-hero p,
  .local-copy p {
    font-size: 15px;
  }

  .local-content-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .local-info-card,
  .local-route-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .local-route-card {
    position: static;
  }

  .pillars-wrapper,
  .studio-intro,
  .clinic-wrapper,
  .contact-wrapper,
  .pricing-wrapper,
  .team-member,
  .team-member.reverse,
  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .card-bg-wrap,
  .card-overlay-bg {
    width: 100%;
  }

  .card-overlay-bg {
    background: linear-gradient(180deg, rgba(11, 21, 27, 0.68) 0%, rgba(11, 21, 27, 0.95) 100%);
  }

  .card-text-collapse p {
    max-width: 100%;
  }

  .studio-intro,
  .clinic-wrapper,
  .contact-wrapper {
    gap: 34px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .studio-intro-left h2,
  .clinic-text h2,
  .contact-intro h2,
  .offer-intro h2,
  .team-intro h2,
  .reviews-intro h2,
  .pricing-intro h2,
  .faq-intro h2 {
    font-size: 32px;
  }

  .studio-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .img-large {
    height: 250px;
  }

  .mobile-scroll-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .mobile-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .mobile-scroll-wrapper .gallery-item {
    flex: 0 0 70%;
    height: 180px;
    scroll-snap-align: start;
  }

  .clinic-text {
    padding-right: 0;
  }

  .clinic-images {
    min-height: 380px;
    width: 100%;
  }

  .team-section-stack {
    gap: 24px;
  }

  .team-section-card--intro {
    padding: 60px 20px;
  }

  .team-section-card--member {
    padding: 28px 20px;
  }

  .team-intro {
    margin-bottom: 60px;
  }

  .team-member,
  .team-member.reverse {
    gap: 30px;
    text-align: center;
  }

  .member-name {
    font-size: 32px;
  }

  .member-photo {
    width: 100%;
    aspect-ratio: auto;
  }

  .member-photo img {
    height: 420px;
  }

  .member-bio li {
    text-align: left;
  }

  .reviews-source-panel,
  .reviews-controls {
    justify-content: center;
  }

  .reviews-track {
    grid-auto-columns: minmax(84%, 84%);
    gap: 18px;
  }

  .review-meta,
  .review-author {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-card {
    padding: 30px 22px;
  }

  .reviews-google-summary,
  .reviews-google-link {
    width: 100%;
    justify-content: center;
  }

  .reviews-google-summary {
    gap: 16px;
    padding: 22px 20px;
    border-radius: 26px;
  }

  .reviews-google-scoreline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .reviews-google-rating {
    font-size: 38px;
  }

  .contact-form-wrapper {
    padding: 40px 20px;
  }

  .item-left {
    max-width: 62%;
  }

  .item-name {
    font-size: 16px;
  }

  .contact-socials .contact-text {
    margin-left: 0;
  }

  .footer-top,
  .footer-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }

  .footer-top {
    align-items: center;
  }

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

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .logo-image {
    height: 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p,
  .offer-intro p,
  .reviews-intro p,
  .team-intro p,
  .contact-intro p,
  .clinic-text p,
  .studio-intro-right p,
  .faq-answer p {
    font-size: 15px;
  }

  .card-header-row {
    align-items: flex-start;
  }

  .card-title {
    font-size: 18px;
  }

  .btn-more {
    padding: 6px 12px;
  }

  .footer-top h3 {
    font-size: 26px;
  }
}
