:root {
  --ink: #181614;
  --muted: #6f6860;
  --paper: #fbf8f3;
  --surface: #fffdf9;
  --accent: #7b5a3f;
  --accent-dark: #1d1915;
  --taupe: #d9cdbf;
  --blush: #d8a7a6;
  --stone: #ede7df;
  --line: rgba(24, 22, 20, 0.12);
  --shadow: 0 24px 80px rgba(32, 28, 24, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 248, 243, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: clamp(184px, 18vw, 270px);
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 32px);
  color: #3d3934;
  font-size: 14px;
}

nav a {
  padding: 10px 0;
}

nav a:hover {
  color: var(--accent-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: var(--accent-dark);
  color: #fffaf3;
  box-shadow: 0 14px 34px rgba(29, 25, 21, 0.22);
}

.hero .button.primary {
  background: #fffaf3;
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(255, 250, 243, 0.22);
}

.button.secondary {
  background: var(--ink);
  color: #fffaf3;
}

.button.primary.light {
  background: #fffaf3;
  color: var(--ink);
  box-shadow: none;
}

.button.ghost {
  border: 1px solid rgba(255, 250, 243, 0.46);
  color: #fffaf3;
}

.button.ghost.dark {
  border-color: rgba(24, 22, 20, 0.18);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 220px);
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: 65% center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 17, 14, 0.82) 0%, rgba(20, 17, 14, 0.62) 42%, rgba(20, 17, 14, 0.16) 78%),
    linear-gradient(0deg, rgba(24, 22, 20, 0.18), rgba(24, 22, 20, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  min-height: calc(100svh - 220px);
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: #fffaf3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e7d9c9;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(33px, 4.6vw, 62px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 22px;
  color: rgba(255, 250, 243, 0.84);
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0;
}

.hero-proof div {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 250, 243, 0.26);
}

.hero-proof dt {
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
  font-size: 13px;
}

.local-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fffaf3;
}

.local-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.local-strip span {
  color: rgba(255, 250, 243, 0.68);
}

.local-strip a {
  color: #e7d9c9;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: clamp(64px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.intro,
.experience,
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-copy {
  max-width: 620px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.clinic-photo img,
.experience-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-image img {
  object-position: center top;
}

.procedures {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.procedure-carousel-shell {
  overflow: hidden;
}

.carousel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: #3d3934;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-controls {
  display: inline-flex;
  gap: 8px;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(24, 22, 20, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  font: 800 22px/1 Inter, ui-sans-serif, system-ui, sans-serif;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: #fffaf3;
  background: var(--accent-dark);
  outline: none;
}

.procedure-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.procedure-carousel::-webkit-scrollbar {
  display: none;
}

.procedure-card {
  flex: 0 0 min(352px, 82vw);
  overflow: hidden;
  min-height: 512px;
  padding: 0;
  background: #f7f2eb;
  border: 1px solid rgba(24, 22, 20, 0.08);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.procedure-card:nth-child(2n) {
  background: #f1ece5;
}

.procedure-card:nth-child(3n) {
  background: #f5eeed;
}

.procedure-art {
  display: block;
  background: #e9e1d7;
}

.procedure-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.procedure-art.real-result {
  background: #fff;
}

.procedure-art.real-result img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.procedure-body {
  padding: 22px 24px 26px;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid rgba(24, 22, 20, 0.34);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.procedure-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.press {
  background: var(--ink);
  color: #fffaf3;
}

.press .eyebrow {
  color: #e7d9c9;
}

.press .section-heading p {
  color: rgba(255, 250, 243, 0.72);
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.press-video {
  overflow: hidden;
  min-height: 360px;
  background: #0f0d0b;
  border: 1px solid rgba(255, 250, 243, 0.12);
  border-radius: var(--radius);
}

.press-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.press-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: var(--radius);
}

.press-card span {
  margin-bottom: 18px;
  color: #e7d9c9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.press-card h3 {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.04;
}

.press-card p {
  color: rgba(255, 250, 243, 0.72);
}

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

.experience {
  background: #e8ded2;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3f3933;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--accent-dark);
  border-left: 2px solid var(--accent-dark);
  transform: rotate(-45deg);
}

.faq {
  background: var(--surface);
}

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

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

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: clamp(19px, 2.1vw, 28px);
  font-family: Georgia, "Times New Roman", serif;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
}

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

address {
  margin: 0 0 28px;
  color: #3d3934;
  font-style: normal;
  font-size: 20px;
}

.map-panel {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fffaf3;
}

footer span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

footer a {
  color: #e7d9c9;
  font-weight: 700;
}

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

  nav {
    display: none;
  }

  .intro,
  .experience,
  .location,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .procedure-card {
    flex-basis: min(326px, 76vw);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand img {
    width: 172px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - 190px);
  }

  .hero img {
    object-position: 72% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(20, 17, 14, 0.88) 0%, rgba(20, 17, 14, 0.7) 58%, rgba(20, 17, 14, 0.36) 100%);
  }

  .hero-content {
    padding: 42px 20px;
  }

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

  .carousel-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-strip,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 58px 20px;
  }

  .clinic-photo img,
  .experience-image img,
  .map-panel,
  .map-panel iframe {
    min-height: 340px;
    height: 340px;
  }
}
