:root {
  --paper: #f7f3e8;
  --paper-soft: #ebe1cb;
  --ink: #17130c;
  --ink-soft: #3e3524;
  --muted: #736a58;
  --line: rgba(18, 18, 18, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --night: #0b0906;
  --night-2: #18120a;
  --gold: #d6b24d;
  --olive: #8d6f2e;
  --accent: #f0d36b;
  --white: #ffffff;
  --page-gutter: clamp(18px, 6vw, 150px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
}

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

a,
button,
.treatment-card,
.benefit-list article,
.steps article,
.metrics div,
.reviews-panel,
.map-shell,
details {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px var(--page-gutter);
  color: var(--white);
  background: rgba(11, 9, 6, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}

.brand-logo {
  display: block;
  width: clamp(146px, 13vw, 188px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.32));
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 36px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 300;
}

.nav a:hover {
  color: var(--white);
}

.header-cta,
.button,
.floating-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 400;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(214, 178, 77, 0.48);
  color: var(--white);
  font-size: 0.84rem;
}

.header-cta:hover {
  border-color: rgba(240, 211, 107, 0.78);
  background: rgba(214, 178, 77, 0.12);
  transform: translateY(-1px);
}

.social-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 300;
}

.social-link:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: clamp(24px, 5vw, 88px);
  overflow: hidden;
  padding: 132px var(--page-gutter) 46px;
  background: var(--night);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 9, 6, 0.98) 0%, rgba(11, 9, 6, 0.94) 38%, rgba(11, 9, 6, 0.58) 58%, rgba(11, 9, 6, 0.12) 78%),
    radial-gradient(circle at 48% 50%, rgba(214, 178, 77, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(11, 9, 6, 0.9), rgba(11, 9, 6, 0) 48%);
  z-index: 1;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(214, 178, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 178, 77, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(66vw, 1080px);
  background:
    url("https://images.pexels.com/photos/5217110/pexels-photo-5217110.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center 78px / cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.9);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(11, 9, 6, 0.96) 0%,
    rgba(11, 9, 6, 0.7) 16%,
    rgba(11, 9, 6, 0.22) 38%,
    rgba(11, 9, 6, 0) 66%
  );
  backdrop-filter: blur(18px);
  mask-image: linear-gradient(90deg, #000 0%, #000 30%, transparent 68%);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 9, 6, 0.88), transparent 38%),
    linear-gradient(0deg, rgba(11, 9, 6, 0.55), transparent 34%);
}

.hero-panel,
.hero-meta {
  position: relative;
  z-index: 2;
}

.hero-panel {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-weight: 300;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.2vw, 5.9rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3.35vw, 3.65rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.24vw, 1.12rem);
  font-weight: 300;
  line-height: 1.72;
}

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

.button {
  min-width: 184px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: var(--night);
}

.button.primary:hover {
  background: #ffe58a;
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button.secondary:hover {
  border-color: rgba(214, 178, 77, 0.62);
  background: rgba(214, 178, 77, 0.1);
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(214, 178, 77, 0.22);
  border-radius: 10px;
  background: rgba(214, 178, 77, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 300;
}

.hero-meta {
  align-self: end;
  display: grid;
  gap: 0;
  max-width: 380px;
  margin-left: auto;
  border: 1px solid rgba(214, 178, 77, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.hero-meta span {
  padding: 18px;
  border-bottom: 1px solid rgba(214, 178, 77, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 300;
}

.section,
.final-cta {
  padding: clamp(68px, 8vw, 108px) var(--page-gutter);
}

.intro,
.proof,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: start;
}

.intro p,
.intro-panel p,
.section-heading p,
.benefit-list p,
.steps p,
.proof p,
.faq p,
.final-cta p,
.site-footer span,
.site-footer small {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.78;
}

.intro {
  background: var(--night);
  color: var(--white);
  border-top: 1px solid rgba(214, 178, 77, 0.16);
  border-bottom: 1px solid rgba(214, 178, 77, 0.16);
}

.intro h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
}

.intro-panel {
  display: grid;
  gap: 26px;
  max-width: 760px;
  padding: 28px;
  border: 1px solid rgba(214, 178, 77, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.intro-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(214, 178, 77, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.dark {
  background: var(--night);
  color: var(--white);
}

.dark .section-heading p,
.dark .treatment-card p {
  color: rgba(255, 255, 255, 0.62);
}

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

.treatment-card {
  min-height: 246px;
  padding: 24px;
  border: 1px solid rgba(214, 178, 77, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.treatment-card.featured {
  background: rgba(214, 178, 77, 0.12);
  color: var(--white);
}

.treatment-card.featured p {
  color: rgba(255, 255, 255, 0.62);
}

.treatment-card:hover {
  border-color: rgba(214, 178, 77, 0.42);
  background: rgba(214, 178, 77, 0.1);
  transform: translateY(-4px);
}

.treatment-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 300;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5.5vw, 84px);
  align-items: stretch;
}

.clinic-carousel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
}

.clinic-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(72px, 18%, 150px);
  pointer-events: none;
  content: "";
}

.clinic-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(245, 247, 246, 0));
}

.clinic-carousel-track {
  display: flex;
  width: max-content;
  height: 560px;
  animation: clinic-carousel 34s linear infinite;
}

.clinic-carousel img {
  width: min(74vw, 620px);
  height: 100%;
  flex: 0 0 auto;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

@keyframes clinic-carousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clinic-carousel-track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

.benefit-list {
  display: grid;
  align-content: center;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article:first-child {
  border-top: 1px solid var(--line);
}

.benefit-list article > span {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214, 178, 77, 0.13);
}

.benefit-list article:hover {
  border-color: rgba(141, 111, 46, 0.36);
  transform: translateX(6px);
}

.benefit-list article:hover > span {
  background: var(--accent);
}

.process {
  background: var(--paper-soft);
}

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

.steps article {
  min-height: 224px;
  padding: 24px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.steps span {
  display: block;
  margin-bottom: 48px;
  color: var(--olive);
  font-size: 0.9rem;
  font-weight: 300;
}

.steps article:hover,
.metrics div:hover {
  border-color: rgba(141, 111, 46, 0.32);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-4px);
}

.proof {
  background: var(--paper);
}

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

.metrics div {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.metrics h3 {
  max-width: 240px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.18;
}

.metrics p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  max-width: 1080px;
  border-top: 1px solid var(--line);
}

.location {
  background: var(--paper-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.map-shell {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #e4dac4;
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

.map-shell:hover,
.reviews-panel:hover {
  border-color: rgba(141, 111, 46, 0.32);
  box-shadow: 0 18px 46px rgba(11, 9, 6, 0.1);
  transform: translateY(-3px);
}

.reviews-panel {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(11, 9, 6, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.reviews-panel address {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.reviews-panel address a {
  color: var(--ink);
}

.review-source {
  color: var(--olive);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.reviews-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.maps-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--night);
  color: var(--white);
}

.maps-link:hover {
  background: var(--olive);
  transform: translateY(-1px);
}

details:hover {
  border-color: rgba(141, 111, 46, 0.32);
}

summary:hover {
  color: var(--olive);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 26px 0;
  font-size: 1.08rem;
  font-weight: 300;
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 26px;
}

.final-cta {
  background: var(--night);
  color: var(--white);
}

.final-cta h2 {
  max-width: 720px;
}

.final-cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.64);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(214, 178, 77, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.lead-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 300;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 0;
  border: 1px solid rgba(214, 178, 77, 0.2);
  border-radius: 12px;
  padding: 0 14px;
  background: transparent;
  color: var(--white);
  outline: none;
}

.lead-form select option {
  color: var(--ink);
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.lead-form .button {
  width: 100%;
  margin-top: 12px;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
}

.form-social {
  justify-self: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.form-social:hover {
  color: var(--accent);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 48px;
  padding: 0 20px;
  background: var(--accent);
  color: var(--night);
  box-shadow: 0 18px 42px rgba(11, 9, 6, 0.26);
}

.floating-cta:hover {
  background: #ffe58a;
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 34px var(--page-gutter);
  background: #080706;
  color: var(--white);
  font-weight: 300;
}

.footer-social {
  color: var(--accent);
  width: fit-content;
}

.site-footer strong {
  font-weight: 400;
}

.site-footer small {
  max-width: 900px;
  font-size: 0.78rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .benefit-layout,
  .proof,
  .location-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    max-width: none;
    margin-left: 0;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 132px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .header-social {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(11, 9, 6, 0.98), rgba(11, 9, 6, 0.84)),
      linear-gradient(0deg, rgba(11, 9, 6, 0.9), rgba(11, 9, 6, 0) 42%);
  }

  .hero-media {
    width: 100%;
    opacity: 0.48;
  }

  .hero-media::before {
    backdrop-filter: blur(12px);
    mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

  .button {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .treatment-grid,
  .steps,
  .metrics {
    grid-template-columns: 1fr;
  }

  .clinic-carousel {
    min-height: 380px;
  }

  .clinic-carousel-track {
    height: 380px;
  }

  .clinic-carousel img {
    width: 86vw;
  }

  .lead-form {
    padding: 24px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}
