:root {
  --ivory: #fbf8f2;
  --porcelain: #fffdf9;
  --sand: #e9dfd1;
  --champagne: #c9aa73;
  --gold: #ad8546;
  --bronze: #7f5a32;
  --cocoa: #4d321f;
  --espresso: #2b1a12;
  --sage: #75806c;
  --rose: #b68377;
  --line: rgba(77, 50, 31, 0.16);
  --shadow: 0 24px 70px rgba(43, 26, 18, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Candara, Calibri, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--porcelain);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  min-height: 66px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.78);
  box-shadow: 0 14px 44px rgba(43, 26, 18, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(43, 26, 18, 0.72);
  font-size: 0.9rem;
}

.header-nav a,
.header-cta,
.button,
.floating-cta {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-nav a:hover,
.header-cta:hover,
.button:hover,
.floating-cta:hover {
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cocoa);
  color: var(--ivory);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 126px max(24px, calc((100vw - 1120px) / 2)) 64px;
  overflow: hidden;
  background: var(--espresso);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 26, 18, 0.88) 0%, rgba(43, 26, 18, 0.68) 36%, rgba(43, 26, 18, 0.18) 68%, rgba(43, 26, 18, 0.24) 100%),
    linear-gradient(0deg, rgba(43, 26, 18, 0.62), rgba(43, 26, 18, 0.04) 45%),
    url("assets/clinic-hero.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1120px) / 2));
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 170, 115, 0.9), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  padding-top: 24px;
  animation: revealUp 760ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--ivory);
  font-size: clamp(2.1rem, 4.1vw, 3.75rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 500;
  line-height: 1.18;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 24px;
  color: rgba(255, 253, 249, 0.86);
  font-size: 1.12rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  max-width: 640px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  min-height: 42px;
  padding: 10px 14px 10px 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 253, 249, 0.9);
  background: rgba(255, 253, 249, 0.1);
  backdrop-filter: blur(10px);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(201, 170, 115, 0.2);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.button-primary {
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: var(--espresso);
  box-shadow: 0 16px 34px rgba(127, 90, 50, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #d8bd86, var(--champagne));
}

.button-ghost {
  border-color: rgba(255, 253, 249, 0.32);
  color: var(--ivory);
  background: rgba(255, 253, 249, 0.08);
}

.button-outline-dark {
  border-color: rgba(77, 50, 31, 0.24);
  color: var(--cocoa);
  background: rgba(255, 253, 249, 0.6);
}

.button-outline-dark:hover {
  border-color: var(--gold);
  background: var(--ivory);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 38px;
  width: min(330px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: var(--ivory);
  background: rgba(77, 50, 31, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: revealUp 760ms ease 160ms both;
}

.hero-panel img {
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.16;
  font-weight: 500;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: 86px 0;
}

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

.intro-grid,
.why-grid,
.about-grid,
.faq-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.intro-copy {
  color: rgba(43, 26, 18, 0.74);
  font-size: 1.08rem;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.section-heading.narrow {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.benefit-grid article,
.why-list article,
.procedure-list article,
.testimonial-grid figure,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 16px 50px rgba(43, 26, 18, 0.08);
}

.benefit-grid article {
  min-height: 250px;
  padding: 24px;
}

.benefit-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--cocoa);
  font-family: var(--serif);
}

.benefit-grid p,
.why-list p,
.procedure-list p,
.testimonial-grid blockquote,
.about p,
.final-cta p,
.faq p {
  color: rgba(43, 26, 18, 0.72);
}

.why {
  position: relative;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 22%, rgba(201, 170, 115, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(117, 128, 108, 0.08), transparent 42%);
  pointer-events: none;
}

.why .section-inner {
  position: relative;
}

.why-copy .button {
  margin-top: 10px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-list article {
  padding: 24px;
  background: var(--porcelain);
}

.procedure-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.procedure-list article {
  min-height: 205px;
  padding: 22px;
  background: linear-gradient(180deg, #fffdf9, #f5eee5);
}

.procedure-list article:nth-child(2),
.procedure-list article:nth-child(4) {
  background: var(--cocoa);
  color: var(--ivory);
}

.procedure-list article:nth-child(2) p,
.procedure-list article:nth-child(4) p {
  color: rgba(255, 253, 249, 0.78);
}

.testimonials {
  background: linear-gradient(180deg, var(--ivory), #efe5d9);
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 28px;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.testimonial-grid blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.32;
}

.about-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.about-mark {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 50, 31, 0.08), rgba(201, 170, 115, 0.2)),
    var(--ivory);
  box-shadow: inset 0 0 0 1px var(--line);
}

.about-mark img {
  width: min(250px, 70%);
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(43, 26, 18, 0.12);
}

.location-pill {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--cocoa);
  background: rgba(201, 170, 115, 0.2);
  font-weight: 800;
}

.faq-grid {
  align-items: start;
}

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

details {
  border: 1px solid rgba(127, 90, 50, 0.22);
  border-radius: 8px;
  background: var(--porcelain);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--cocoa);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.google-proof {
  background:
    linear-gradient(135deg, rgba(233, 223, 209, 0.72), rgba(255, 253, 249, 0.96)),
    var(--porcelain);
}

.google-proof-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.map-widget {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(77, 50, 31, 0.16);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.map-widget iframe {
  width: 100%;
  height: 500px;
  border: 0;
  filter: sepia(0.16) saturate(0.9);
}

.map-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 44px rgba(43, 26, 18, 0.14);
  backdrop-filter: blur(14px);
}

.map-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card strong {
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.map-card span {
  color: rgba(43, 26, 18, 0.64);
  font-size: 0.92rem;
  font-weight: 700;
}

.google-proof-copy > p {
  color: rgba(43, 26, 18, 0.72);
  font-size: 1.06rem;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 18px;
  padding: 16px;
  border: 1px solid rgba(77, 50, 31, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
}

.google-badge {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 22px rgba(43, 26, 18, 0.08);
}

.google-rating strong,
.google-rating span {
  display: block;
}

.google-rating strong {
  color: var(--cocoa);
  font-weight: 900;
}

.google-rating span {
  color: rgba(43, 26, 18, 0.62);
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.google-review-grid figure {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: 0 16px 44px rgba(43, 26, 18, 0.08);
}

.google-review-grid blockquote {
  margin: 0 0 16px;
  color: rgba(43, 26, 18, 0.74);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.34;
}

.google-review-grid figcaption {
  color: var(--bronze);
  font-size: 0.86rem;
  font-weight: 800;
}

.final-cta {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(43, 26, 18, 0.96), rgba(77, 50, 31, 0.92)),
    var(--cocoa);
}

.final-cta .section-kicker,
.final-cta h2,
.final-cta p {
  color: var(--ivory);
}

.final-cta p {
  color: rgba(255, 253, 249, 0.78);
  font-size: 1.08rem;
}

.contact-notes {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 253, 249, 0.86);
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--espresso);
  background: var(--porcelain);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(43, 26, 18, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(77, 50, 31, 0.22);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--espresso);
  background: #fffaf3;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(201, 170, 115, 0.5);
  border-color: var(--gold);
}

.form-button {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(43, 26, 18, 0.56) !important;
  font-size: 0.86rem !important;
  text-align: center;
}

.floating-cta {
  position: fixed;
  z-index: 18;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--espresso);
  background: var(--champagne);
  box-shadow: 0 14px 34px rgba(43, 26, 18, 0.24);
  font-weight: 900;
  font-size: 0.88rem;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px 20px;
  background: var(--ivory);
  color: rgba(43, 26, 18, 0.66);
  text-align: center;
}

.footer img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.footer p {
  margin: 0;
}

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

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

  .header-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

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

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(43, 26, 18, 0.88) 0%, rgba(43, 26, 18, 0.72) 45%, rgba(43, 26, 18, 0.3) 100%),
      url("assets/clinic-hero.png") center / cover no-repeat;
  }

  .hero-panel {
    right: 24px;
    left: 24px;
    width: auto;
  }

  .intro-grid,
  .why-grid,
  .about-grid,
  .faq-grid,
  .google-proof-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

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

  .brand img {
    width: 44px;
    height: 44px;
  }

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

  .hero {
    padding: 100px 20px 78px;
  }

  h1 {
    font-size: clamp(2rem, 9.2vw, 3.15rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-points,
  .benefit-grid,
  .why-list,
  .procedure-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    text-align: center;
  }

  .hero-panel {
    display: none;
  }

  section:not(.hero) {
    padding: 62px 0;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .benefit-grid article,
  .procedure-list article {
    min-height: auto;
  }

  .about-mark {
    min-height: 300px;
  }

  .map-widget,
  .map-widget iframe {
    min-height: 380px;
    height: 380px;
  }

  .google-review-grid {
    grid-template-columns: 1fr;
  }

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

  .footer {
    padding-bottom: 84px;
  }
}
