/* ============================================================
   SUMMIT DENTAL STUDIO — demo site stylesheet
   Bold editorial · near-black #191919 + warm off-white #FAF8F4.
   Zebra sections (alternating dark/light), serif display + modern sans.
   Self-contained. Google Fonts loaded per page (hosted).
   VERTICAL TEMPLATE — swap brand tokens + copy to re-skin per practice.
   ============================================================ */

:root {
  --ink: #191919;
  --ink-2: #232323;
  --ink-3: #2C2C2C;
  --ink-text: #F3F1EC;
  --ink-muted: #9E978A;
  --paper: #FAF8F4;
  --paper-2: #F1ECE3;
  --paper-card: #FFFFFF;
  --text: #191919;
  --text-2: #4A453D;
  --muted: #6D665C;
  --accent: #2E7D6A;
  --accent-hover: #256858;
  --accent-deep: #1C4E42;
  --accent-light: rgba(46,125,106,0.08);
  --accent-mid: rgba(46,125,106,0.16);
  --rust: #C25B3A;
  --rust-light: rgba(194,91,58,0.10);
  --gold: #C9A24B;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: #E1DBD0;
  --border-light-2: #D6CFC2;
  --serif: 'Fraunces', 'EB Garamond', Georgia, serif;
  --sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
  --radius-sm: 3px;
  --maxw: 1120px;
  --shadow-sm: 0 2px 8px rgba(25,25,25,0.05);
  --shadow: 0 14px 40px rgba(25,25,25,0.10);
  --shadow-lg: 0 30px 70px rgba(25,25,25,0.16);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; width: 100%; }

/* ---------- reveal animation ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rvd1 { transition-delay: .08s; } .rvd2 { transition-delay: .16s; }
.rvd3 { transition-delay: .24s; } .rvd4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1 !important; transform: none !important; } }

/* ---------- eyebrow / section head ---------- */
.eyebrow {
  font-size: .70rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--accent);
  display: inline-flex; align-items: center; gap: 11px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow.center { justify-content: center; }
.sec-head { max-width: 640px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1;
  letter-spacing: -.02em; margin: 14px 0 12px;
}
.sec-head p { font-size: 1.02rem; color: var(--muted); line-height: 1.7; }
.sec-head.on-dark h2 { color: var(--ink-text); }
.sec-head.on-dark p { color: var(--ink-muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--accent); color: #fff; padding: 15px 30px;
  border-radius: var(--radius); font-weight: 600; font-size: .86rem;
  letter-spacing: .04em; text-decoration: none; border: 1px solid var(--accent);
  cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
  min-height: 48px; font-family: var(--sans);
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(46,125,106,.25); }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--border-light-2); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); box-shadow: none; }
.btn.on-dark-ghost { background: transparent; color: var(--ink-text); border-color: var(--border-dark); }
.btn.on-dark-ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn.white { background: #fff; color: var(--ink); border-color: #fff; }
.btn.white:hover { background: var(--ink-text); border-color: var(--ink-text); }
.btn.sm { padding: 10px 18px; min-height: 40px; font-size: .8rem; }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- top nav ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(25,25,25,.90);
  backdrop-filter: blur(16px) saturate(120%); -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--border-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink-text); }
.brand .mk {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.brand .mk svg { width: 19px; height: 19px; }
.brand b { font-family: var(--serif); font-size: 1.24rem; font-weight: 600; letter-spacing: -.01em; }
.brand b span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a {
  text-decoration: none; color: var(--ink-muted);
  font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
  transition: color .2s; white-space: nowrap;
}
.nav-links > a:hover { color: var(--accent); }
.nav-phone { color: var(--ink-text) !important; display: inline-flex; align-items: center; gap: 7px; }
.nav-phone svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 2; }
.menu-ico {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--ink-text); font-size: 1.5rem; line-height: 1;
}

/* ---------- HERO (dark) ---------- */
.hero {
  background: var(--ink); color: var(--ink-text);
  padding: 148px 0 92px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 82% 8%, rgba(46,125,106,.22), transparent 60%),
    radial-gradient(46% 60% at 8% 100%, rgba(194,91,58,.10), transparent 65%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.55fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow { color: var(--accent); margin-bottom: 22px; opacity: 0; animation: fadeUp .7s .15s forwards; }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.03; letter-spacing: -.03em;
  margin-bottom: 22px; opacity: 0; animation: fadeUp .8s .28s forwards;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-family: var(--serif); font-size: 1.18rem; line-height: 1.7;
  color: #D8D2C7; max-width: 500px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .42s forwards;
}
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .56s forwards; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .7s forwards; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--accent); line-height: 1; }
.hero-trust span { font-size: .76rem; color: var(--ink-muted); margin-top: 5px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* hero art panel — CSS composed (no external image) */
.hero-art {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, #2b6c5e 0%, #1c4e42 52%, #14342c 100%);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  opacity: 0; animation: fadeUp .9s .6s forwards;
}
.hero-art::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(40% 40% at 74% 22%, rgba(255,255,255,.16), transparent 70%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 2px, transparent 2px 26px);
}
.hero-art .tooth {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-52%);
  width: 46%; opacity: .95; filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}
.hero-art .tooth svg { width: 100%; height: auto; }
.hero-art .badge {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(19,19,19,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.hero-art .badge .rate { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; line-height: 1; }
.hero-art .badge .stars { color: var(--gold); font-size: .9rem; letter-spacing: 1px; }
.hero-art .badge small { color: #D8D2C7; font-size: .72rem; display: block; }

/* ---------- trust band ---------- */
.trust-band { background: var(--ink-2); border-bottom: 1px solid var(--border-dark); padding: 26px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; color: var(--ink-muted); }
.trust-inner .ti { display: inline-flex; align-items: center; gap: 10px; font-size: .84rem; }
.trust-inner .ti svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; }
.trust-inner .tsep { width: 1px; height: 22px; background: var(--border-dark); }

/* ---------- section frame ---------- */
section { padding: 92px 0; }
.sec-dark { background: var(--ink); color: var(--ink-text); }
.sec-light { background: var(--paper); }
.sec-paper2 { background: var(--paper-2); }

/* ---------- services grid (editorial) ---------- */
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 44px; }
.svc-head .sec-head { margin-bottom: 0; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.svc-card {
  background: var(--paper-card); padding: 34px 30px 30px; position: relative;
  text-decoration: none; color: var(--text); display: flex; flex-direction: column;
  transition: background .3s, transform .3s; min-height: 268px;
}
.svc-card:hover { background: var(--accent-light); }
.svc-card .ico {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-mid); margin-bottom: 18px; color: var(--accent);
}
.svc-card .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.svc-card h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 9px; }
.svc-card p { font-size: .89rem; color: var(--muted); line-height: 1.62; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--border-light); }
.svc-foot .price { font-size: .82rem; font-weight: 600; color: var(--accent); }
.svc-foot .price small { display: block; font-weight: 400; color: var(--muted); font-size: .68rem; letter-spacing: .02em; }
.svc-foot .go { font-size: .78rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 6px; transition: color .2s, gap .2s; }
.svc-card:hover .go { color: var(--accent); gap: 10px; }

/* ---------- about / dentist (dark) ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(155deg, #33342f 0%, #232323 100%);
  border: 1px solid var(--border-dark); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.portrait .initials { font-family: var(--serif); font-size: 5rem; font-weight: 600; color: var(--accent); opacity: .85; }
.portrait .pcap {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(19,19,19,.6); backdrop-filter: blur(6px);
  border: 1px solid var(--border-dark); border-radius: 10px; padding: 13px 15px;
}
.portrait .pcap b { display: block; color: var(--ink-text); font-family: var(--serif); font-size: 1.05rem; }
.portrait .pcap span { color: var(--ink-muted); font-size: .76rem; }
.about-body h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem,3vw,2.5rem); line-height: 1.12; letter-spacing: -.02em; color: var(--ink-text); margin: 14px 0 16px; }
.about-body p { color: #CFC9BE; font-size: .98rem; line-height: 1.78; margin-bottom: 14px; max-width: 560px; }
.cred-list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.cred { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--border-dark); font-size: .85rem; color: #CFC9BE; }
.cred svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ---------- differentiators (light rows) ---------- */
.feat-list { display: grid; gap: 0; }
.feat-row { display: grid; grid-template-columns: 96px 1fr; gap: 30px; padding: 32px 0; border-bottom: 1px solid var(--border-light); align-items: start; }
.feat-row:first-child { padding-top: 0; }
.feat-row:last-child { border-bottom: 0; }
.feat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--accent); opacity: .28; line-height: .9; }
.feat-row h3 { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; margin-bottom: 7px; letter-spacing: -.01em; }
.feat-row p { font-size: .93rem; color: var(--muted); line-height: 1.7; max-width: 640px; }

/* ---------- reviews (dark) ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); overflow: hidden; }
.rev-card { background: var(--ink-2); padding: 32px 28px; display: flex; flex-direction: column; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; margin-bottom: 14px; }
.rev-card blockquote { font-family: var(--serif); font-size: 1.04rem; font-style: italic; line-height: 1.72; color: var(--ink-text); margin-bottom: 20px; flex: 1; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-mid); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.rev-name { font-weight: 600; font-size: .86rem; color: var(--ink-text); }
.rev-meta { font-size: .74rem; color: var(--ink-muted); }
.rev-src { margin-top: 4px; font-size: .68rem; color: var(--ink-muted); display: inline-flex; align-items: center; gap: 5px; }
.rev-src svg { width: 12px; height: 12px; }

/* ---------- insurance / financing ---------- */
.ins-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.ins-pills { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.ins-pill { background: var(--paper-card); border: 1px solid var(--border-light-2); border-radius: 100px; padding: 9px 20px; font-size: .82rem; font-weight: 500; color: var(--text-2); transition: border-color .2s, color .2s; }
.ins-pill:hover { border-color: var(--accent); color: var(--accent); }
.fin-card { background: var(--ink); color: var(--ink-text); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow); }
.fin-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.fin-card p { color: #CFC9BE; font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.fin-list { display: grid; gap: 12px; }
.fin-item { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: #E4DED3; }
.fin-item svg { width: 19px; height: 19px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }

/* ---------- new patient offer band ---------- */
.offer { background: var(--ink); color: var(--ink-text); border-top: 3px solid var(--accent); position: relative; overflow: hidden; }
.offer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 90% at 85% 20%, rgba(46,125,106,.20), transparent 60%); pointer-events: none; }
.offer-inner { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 44px; align-items: center; }
.offer .eyebrow { color: var(--accent); margin-bottom: 16px; }
.offer h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem,3.4vw,2.7rem); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.offer p { color: #CFC9BE; font-size: 1rem; line-height: 1.7; margin-bottom: 8px; max-width: 540px; }
.offer-price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 4px; }
.offer-price .big { font-family: var(--serif); font-size: 3.2rem; font-weight: 600; color: var(--accent); line-height: 1; }
.offer-price .was { font-size: 1.1rem; color: var(--ink-muted); text-decoration: line-through; }
.offer-actions { display: flex; flex-direction: column; gap: 12px; }
.offer-note { font-size: .72rem; color: var(--ink-muted); }

/* ---------- CTA band (shared) ---------- */
.band { background: var(--paper-2); text-align: center; }
.band .inner { max-width: 640px; margin: 0 auto; }
.band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem,3vw,2.4rem); line-height: 1.14; letter-spacing: -.02em; margin-bottom: 12px; }
.band p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 26px; }
.band .actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer { background: var(--ink-2); color: var(--ink-muted); padding: 66px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.foot-brand .brand { color: var(--ink-text); margin-bottom: 14px; }
.foot-brand p { font-size: .86rem; line-height: 1.7; max-width: 300px; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border-dark); display: grid; place-items: center; color: var(--ink-muted); transition: color .2s, border-color .2s; }
.foot-social a:hover { color: var(--accent); border-color: var(--accent); }
.foot-social svg { width: 17px; height: 17px; fill: currentColor; }
footer h4 { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-text); margin-bottom: 16px; }
footer .fc a, footer .fc p { display: block; font-size: .85rem; color: var(--ink-muted); text-decoration: none; margin-bottom: 9px; line-height: 1.5; transition: color .2s; }
footer .fc a:hover { color: var(--accent); }
.foot-bot { border-top: 1px solid var(--border-dark); padding-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .74rem; }

/* ---------- demo flags ---------- */
.demo-flag {
  position: fixed; left: 12px; bottom: 12px; z-index: 260;
  background: rgba(25,25,25,.86); color: #fff; font-size: .66rem; font-weight: 500;
  letter-spacing: .05em; padding: 6px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); pointer-events: none;
}
.demo-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--rust-light); color: var(--rust); font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; padding: 3px 10px; border-radius: 100px; }
.demo-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rust); }
.demo-price-note { font-size: .66rem; color: var(--muted); font-style: italic; margin-top: 2px; }

/* ---------- mobile sticky book bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(25,25,25,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-dark); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.mobile-bar .mb-info { color: var(--ink-text); font-size: .82rem; line-height: 1.25; }
.mobile-bar .mb-info b { color: var(--accent); }
.mobile-bar .mb-info em { display: block; font-style: normal; color: var(--ink-muted); font-size: .68rem; }
.mobile-bar .mb-actions { display: flex; gap: 8px; flex-shrink: 0; }
.mobile-bar .btn { padding: 11px 16px; min-height: 44px; font-size: .8rem; }
.mobile-bar .icon-btn { width: 44px; height: 44px; padding: 0; }
.mobile-bar .icon-btn svg { width: 18px; height: 18px; margin: 0; }

/* ================= PDP (service detail) ================= */
.crumb { color: var(--muted); font-size: .8rem; margin-bottom: 18px; }
.crumb a { color: var(--accent); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

.pdp-hero { background: var(--ink); color: var(--ink-text); padding: 132px 0 78px; position: relative; overflow: hidden; }
.pdp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(55% 80% at 88% 10%, rgba(46,125,106,.20), transparent 60%); pointer-events: none; }
.pdp-hero-inner { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; }
.pdp-hero .eyebrow { color: var(--accent); margin-bottom: 18px; }
.pdp-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.3rem,4.6vw,3.6rem); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 18px; }
.pdp-hero h1 em { font-style: italic; color: var(--accent); }
.pdp-hero .lead { font-family: var(--serif); font-size: 1.15rem; line-height: 1.7; color: #D8D2C7; max-width: 560px; margin-bottom: 26px; }
.pdp-hero-meta { display: flex; gap: 30px; flex-wrap: wrap; }
.pdp-hero-meta .m b { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--accent); display: block; line-height: 1.1; }
.pdp-hero-meta .m span { font-size: .76rem; color: var(--ink-muted); }
.pdp-art {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(160deg, #2b6c5e, #1c4e42 55%, #14342c);
  border: 1px solid rgba(255,255,255,.10); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.pdp-art::before { content: ''; position: absolute; inset: 0; background: radial-gradient(40% 40% at 72% 24%, rgba(255,255,255,.16), transparent 70%), repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 2px, transparent 2px 24px); }
.pdp-art .glyph { position: relative; width: 44%; opacity: .95; filter: drop-shadow(0 16px 26px rgba(0,0,0,.35)); }

/* summary / answer box */
.answer-box { background: var(--accent-light); border: 1px solid var(--accent-mid); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 40px; }
.answer-box .lb { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 8px; }
.answer-box p { font-size: 1rem; line-height: 1.72; color: var(--text-2); }

.pdp-body { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; letter-spacing: -.01em; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin: 26px 0 8px; }
.prose p { font-size: 1rem; color: var(--text-2); line-height: 1.78; margin-bottom: 15px; }
.prose ul { list-style: none; margin: 4px 0 20px; display: grid; gap: 11px; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--text-2); line-height: 1.6; }
.prose ul li::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; border-radius: 50%; background: var(--accent-mid) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232E7D6A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* process steps */
.steps { display: grid; gap: 0; margin: 8px 0 22px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.step:last-child { border-bottom: 0; }
.step .sn { width: 40px; height: 40px; border-radius: 11px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.step h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* pricing table */
.price-table { border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; margin: 8px 0 12px; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 22px; background: var(--paper-card); border-bottom: 1px solid var(--border-light); }
.price-row:last-child { border-bottom: 0; }
.price-row .pl b { font-size: .96rem; font-weight: 600; display: block; }
.price-row .pl span { font-size: .8rem; color: var(--muted); }
.price-row .pv { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--accent); white-space: nowrap; }

/* sticky booking aside */
.book-box { background: var(--paper-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow); position: sticky; top: 96px; }
.book-box .bb-price { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--text); }
.book-box .bb-price span { font-size: .9rem; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.book-box .bb-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); font-size: .88rem; }
.book-box .bb-row span { color: var(--muted); } .book-box .bb-row b { font-weight: 600; }
.book-box .btn { width: 100%; margin-top: 18px; }
.book-box .bb-note { font-size: .74rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.book-box .bb-call { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; font-size: .92rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.book-box .bb-call svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* faq */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border-light); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-family: var(--serif); font-size: 1.12rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--sans); font-weight: 400; font-size: 1.5rem; color: var(--accent); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; color: var(--text-2); font-size: .96rem; line-height: 1.75; }

/* sibling services */
.sib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sib { background: var(--paper-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 26px 24px; text-decoration: none; color: var(--text); transition: transform .25s, box-shadow .25s, border-color .25s; }
.sib:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-light-2); }
.sib .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-mid); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.sib .ico svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.sib h4 { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; margin-bottom: 5px; }
.sib p { font-size: .84rem; color: var(--muted); line-height: 1.55; }
.sib .go { margin-top: 12px; font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); display: inline-flex; gap: 6px; }

/* ================= responsive ================= */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .portrait { max-width: 400px; }
  .ins-grid { grid-template-columns: 1fr; gap: 32px; }
  .offer-inner { grid-template-columns: 1fr; gap: 28px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .pdp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .pdp-art { max-width: 360px; }
  .pdp-body { grid-template-columns: 1fr; gap: 40px; }
  .book-box { position: static; }
  .sib-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .menu-ico { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: rgba(25,25,25,.98); border-top: 1px solid var(--border-dark);
    padding: 8px 20px 18px; max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 460px; }
  .nav-links > a { padding: 13px 0; border-bottom: 1px solid var(--border-dark); font-size: .82rem; }
  .nav-links .btn { margin-top: 12px; }
  .nav-phone { border-bottom: 1px solid var(--border-dark); }
  section { padding: 68px 0; }
  .hero { padding: 128px 0 72px; }
  .cred-list { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .svc-head { margin-bottom: 32px; }
  .feat-row { grid-template-columns: 1fr; gap: 6px; }
  .feat-num { font-size: 2rem; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .nav { padding: 13px 18px; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .foot-bot { flex-direction: column; }
  .hero-trust { gap: 20px; }
  .offer-price .big { font-size: 2.6rem; }
  .price-row { flex-wrap: wrap; }
}
