:root {
  --ivory: #f7f1e8;
  --porcelain: #fffaf3;
  --sand: #d9c3a4;
  --gold: #b99663;
  --graphite: #1f2426;
  --muted: #6d6a64;
  --line: rgba(31, 36, 38, 0.12);
  --shadow: 0 24px 70px rgba(39, 32, 24, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: radial-gradient(circle at 15% 0%, #ffffff 0, var(--ivory) 38%, #eee2d2 100%);
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 18px 45px rgba(45, 35, 24, 0.1);
  backdrop-filter: blur(22px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 760; letter-spacing: 0.02em; }
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.brand.compact img { width: 36px; height: 36px; }
.nav { justify-self: center; display: flex; gap: 24px; color: var(--muted); font-size: 14px; }
.nav a:hover, .footer a:hover { color: var(--gold); }
.header-call { padding: 12px 18px; border-radius: 999px; background: var(--graphite); color: #fffaf3; font-weight: 700; font-size: 14px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--graphite); }

.section-pad { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 106px 0; }
.hero { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr); align-items: center; gap: 54px; padding-top: 142px; }
.eyebrow { margin: 0 0 16px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6vw, 90px); line-height: 0.92; letter-spacing: -0.07em; margin-bottom: 26px; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -0.05em; margin-bottom: 18px; }
h3 { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 10px; }
.lead { max-width: 660px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; margin-bottom: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 800; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--graphite); color: #fff; box-shadow: 0 16px 35px rgba(31, 36, 38, 0.22); }
.ghost { border: 1px solid var(--line); background: rgba(255,255,255,0.38); }
.ghost.light { border-color: rgba(255,255,255,0.28); color: #fff; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 42px 0 0; }
.hero-stats div { padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 250, 243, 0.62); }
.hero-stats dt { font-weight: 850; font-size: 20px; }
.hero-stats dd { margin: 5px 0 0; color: var(--muted); font-size: 14px; }

.hero-visual { position: relative; min-height: 650px; }
.hero-main { position: absolute; right: 7%; top: 0; width: 62%; height: 78%; object-fit: cover; border-radius: 40px; box-shadow: var(--shadow); }
.hero-float { position: absolute; left: 0; bottom: 0; width: 50%; height: 54%; object-fit: cover; border: 10px solid var(--ivory); border-radius: 34px; box-shadow: var(--shadow); }
.hero-card { position: absolute; right: 0; bottom: 70px; width: min(280px, 55%); padding: 22px; border-radius: 26px; background: rgba(31,36,38,0.9); color: #fff; box-shadow: var(--shadow); }
.hero-card span { display: block; color: var(--sand); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 10px; }

.strip { display: flex; gap: 10px; overflow-x: auto; padding: 22px max(16px, calc((100vw - 1180px) / 2)); background: var(--graphite); color: #fff; scrollbar-width: none; }
.strip span { white-space: nowrap; padding: 10px 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; color: #f3dfc2; }

.section-head { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 38px; align-items: end; margin-bottom: 34px; }
.section-head .eyebrow { grid-column: 1 / -1; margin-bottom: -24px; }
.section-head p { color: var(--muted); line-height: 1.6; font-size: 17px; }
.narrow { display: block; max-width: 760px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 34px; background: rgba(255,250,243,0.72); box-shadow: 0 16px 45px rgba(45, 35, 24, 0.06); overflow: hidden; }
.service-card p { color: var(--muted); line-height: 1.55; }
.service-card img { width: calc(100% + 56px); max-width: none; height: 230px; margin: -28px -28px 22px; object-fit: cover; }
.service-card.featured { grid-column: span 2; display: grid; grid-template-columns: 0.95fr 1fr; gap: 30px; align-items: end; background: #fffaf3; }
.service-card.featured img { width: 100%; height: 100%; min-height: 330px; margin: 0; border-radius: 26px; }
.service-card.image-card { padding-bottom: 18px; }
.service-card.dark { background: var(--graphite); color: #fff; }
.service-card.dark p { color: #ddd0c0; }
.price { display: inline-flex; margin-bottom: 18px; padding: 8px 13px; border-radius: 999px; background: rgba(185,150,99,0.15); color: var(--gold); font-weight: 850; }

.clinic { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 54px; align-items: center; }
.clinic-text p { color: var(--muted); line-height: 1.7; font-size: 18px; }
.promise-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
.promise-list span { padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,0.48); border: 1px solid var(--line); font-weight: 750; }
.clinic-gallery { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 16px; align-items: end; }
.clinic-gallery img { width: 100%; height: 560px; object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); }
.clinic-gallery img:first-child { height: 440px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.steps article { padding: 28px; border-radius: 30px; background: rgba(255,250,243,0.72); border: 1px solid var(--line); }
.steps span { color: var(--gold); font-weight: 900; }
.steps p { color: var(--muted); line-height: 1.55; }

.proof-card { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 42px; align-items: center; padding: 24px; border-radius: 42px; background: #fffaf3; box-shadow: var(--shadow); }
.proof-card img { width: 100%; border-radius: 30px; }
.proof-card p { color: var(--muted); line-height: 1.65; font-size: 18px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.social-links a { padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line); font-weight: 800; }

.faq-list { display: grid; gap: 12px; }
details { padding: 24px 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,250,243,0.7); }
summary { cursor: pointer; font-weight: 850; font-size: 19px; }
details p { margin: 14px 0 0; color: var(--muted); line-height: 1.6; }

.contact-panel { display: grid; grid-template-columns: 1fr 0.7fr; gap: 34px; padding: 42px; border-radius: 42px 42px 0 0; background: var(--graphite); color: #fff; }
.contact-panel p { color: #ddd0c0; line-height: 1.65; font-size: 18px; }
address { display: grid; align-content: center; gap: 11px; font-style: normal; color: #f4e7d5; }
address strong { color: #fff; font-size: 24px; }
.contact iframe { display: block; width: 100%; height: 420px; border: 0; border-radius: 0 0 42px 42px; filter: grayscale(0.1) saturate(0.85); }

.footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 34px 0 46px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: var(--muted); }
.footer p { margin: 0; max-width: 560px; font-size: 13px; }
.mobile-nav { display: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .nav, .header-call { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 0; z-index: 19; display: grid; align-content: center; gap: 20px; padding: 90px 28px 28px; background: rgba(247,241,232,0.96); transform: translateY(-110%); transition: transform 0.28s ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a:not(.btn) { font-family: Georgia, "Times New Roman", serif; font-size: 42px; letter-spacing: -0.04em; }
  .hero, .clinic, .proof-card, .contact-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; gap: 30px; padding-top: 132px; }
  .hero-visual { min-height: 560px; order: -1; }
  .hero-main { right: 0; width: 72%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: 1 / -1; }
  .section-head { grid-template-columns: 1fr; gap: 8px; }
  .section-head .eyebrow { grid-column: auto; margin-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header { top: 10px; width: calc(100% - 20px); padding: 9px 10px; }
  .brand span { font-size: 15px; }
  .brand img { width: 38px; height: 38px; }
  .section-pad { width: min(100% - 24px, 1180px); padding: 72px 0; }
  .hero { padding-top: 106px; }
  h1 { font-size: clamp(43px, 15vw, 64px); }
  h2 { font-size: clamp(32px, 11vw, 44px); }
  .lead { font-size: 17px; }
  .hero-actions, .contact-actions { display: grid; }
  .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 24px; }
  .hero-visual { min-height: 470px; }
  .hero-main { width: 78%; height: 73%; border-radius: 28px; }
  .hero-float { width: 58%; height: 45%; border-width: 7px; border-radius: 24px; }
  .hero-card { right: 10px; bottom: 44px; width: 64%; padding: 17px; border-radius: 20px; font-size: 14px; }
  .service-grid, .service-card.featured, .steps, .promise-list, .clinic-gallery { grid-template-columns: 1fr; }
  .service-card, .steps article, details { border-radius: 24px; padding: 22px; }
  .service-card.featured img { min-height: 240px; }
  .service-card img { height: 210px; }
  .clinic-gallery img, .clinic-gallery img:first-child { height: 360px; border-radius: 28px; }
  .proof-card, .contact-panel { padding: 18px; border-radius: 28px; }
  .contact-panel { border-radius: 28px 28px 0 0; }
  .contact iframe { height: 360px; border-radius: 0 0 28px 28px; }
  .footer { display: grid; justify-items: start; }
}
