/* =============================================================
   Dr Dona — main stylesheet
   Single-file critical CSS. Mockup v3.5 productionised.
   ============================================================= */

:root {
  --accent: #A4885D;
  --accent-hover: #897348;
  --accent-light: #C9B68A;
  --accent-tint: #F6F1E8;
  --ink: #1A1A1A;
  --ink-deep: #2A2520;
  --body: #313131;
  --muted: #6f6f7a;
  --line: #E5DCC8;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-family: var(--serif); color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
h1 { font-size: clamp(38px, 5vw, 60px); line-height: 1.1; font-weight: 600; }
h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.2; margin-bottom: 16px; font-weight: 600; }
h3 { font-size: 26px; line-height: 1.25; margin-bottom: 12px; font-weight: 500; }
h4 { font-size: 20px; line-height: 1.3; margin-bottom: 8px; font-weight: 500; }
p { margin-bottom: 16px; color: var(--body); }
ul, ol { padding-left: 1.25em; margin-bottom: 1em; color: var(--body); }
ul ul, ol ol, ul ol, ol ul { margin-bottom: 0; }
a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-hover); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ================ TOPBAR ================ */
.topbar { background: var(--ink); color: rgba(255,255,255,0.85); font-size: 13px; padding: 10px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: var(--accent-light); }
.topbar-meta { font-size: 12px; opacity: 0.65; }

/* ================ HEADER ================ */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.logo, .logo a { font-family: var(--serif); font-size: 26px; letter-spacing: 0.02em; color: var(--ink); font-weight: 600; }
.logo .accent-name { color: var(--accent); }
.site-header nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; }
.site-header nav a { color: var(--ink); font-size: 14px; font-weight: 500; }
.site-header nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff; padding: 12px 26px;
  font-size: 14px; font-weight: 500; border: none; cursor: pointer;
  border-radius: 30px; transition: background .15s;
  display: inline-block; text-decoration: none;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff; }

/* Sub-menus (vertical) */
.site-header nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  display: none; flex-direction: column; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 0; box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.site-header nav li { position: relative; }
.site-header nav li.menu-item-has-children:hover > .sub-menu,
.site-header nav li.menu-item-has-children:focus-within > .sub-menu { display: flex; }
.site-header nav .sub-menu li { width: 100%; }
.site-header nav .sub-menu a { display: block; padding: 8px 18px; font-size: 14px; }

/* ================ HERO (procedure + page) ================ */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3024 45%, #A4885D 100%);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,182,138,0.20) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; max-width: 880px; }
.breadcrumbs { font-size: 13px; opacity: 0.75; margin-bottom: 24px; }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 720px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: #fff; color: var(--accent); padding: 16px 32px;
  border: none; cursor: pointer; font-size: 15px; font-weight: 500;
  border-radius: 30px; transition: all .15s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--accent-tint); color: var(--accent); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: #fff; padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
  font-size: 15px; font-weight: 500; border-radius: 30px; transition: all .15s;
  display: inline-block; text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff; }

/* ================ JUMP BAR ================ */
.jump-bar {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 20px 0; position: sticky; top: 76px; z-index: 90;
}
.jump-bar .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.jump-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.jump-pills { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; padding: 0; margin: 0; list-style: none; }
.jump-pill {
  padding: 8px 16px; background: var(--accent-tint); color: var(--accent);
  border-radius: 30px; font-size: 13px; font-weight: 500;
  transition: all .15s; border: 1px solid transparent;
  display: inline-block;
}
.jump-pill:hover { background: var(--accent); color: #fff; }

/* ================ SECTION SHELL ================ */
section { padding: 70px 0; }
section.alt { background: var(--bg-alt); }
.section-eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
.section-head { margin-bottom: 40px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 17px; color: var(--muted); }

/* ================ ACCENT CARD ================ */
.accent-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 36px 36px 32px; position: relative; overflow: hidden;
}
.accent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), rgba(201,182,138,0.35));
}
.accent-card h2, .accent-card h3 { margin-top: 0; }
.accent-card h2 { font-size: 30px; }

/* ================ OVERVIEW ================ */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lead-card {
  background: linear-gradient(135deg, var(--accent-tint) 0%, #fff 60%);
  border: 1px solid var(--line); border-radius: 14px; padding: 36px;
}
.lead-card .lead-quote {
  font-family: var(--serif); font-size: 22px; line-height: 1.5; color: var(--accent);
  font-style: italic; margin-bottom: 0; font-weight: 500;
}
.lead-card .lead-quote::before { content: '\201C'; font-size: 48px; color: var(--accent); line-height: 0; vertical-align: -20px; margin-right: 4px; }

/* ================ QUICK FACTS ================ */
.qf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.qf-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 24px; transition: border-color .15s, transform .15s;
}
.qf-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.qf-card .qf-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 14px;
}
.qf-card .qf-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.qf-card .qf-value { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 500; }

/* ================ VARIATIONS ================ */
.var-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.var-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 32px 28px; position: relative; transition: all .2s;
}
.var-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-top-left-radius: 14px; border-top-right-radius: 14px;
}
.var-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(164,136,93,0.12); }
.var-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--accent-tint); color: var(--accent);
  border-radius: 30px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.var-card h3 { font-size: 26px; margin-bottom: 12px; font-family: var(--serif); }
.var-card p { font-size: 15px; line-height: 1.65; margin-bottom: 18px; color: var(--body); }
.var-link { font-size: 14px; color: var(--accent); font-weight: 500; }
.var-link::after { content: ' \2192'; }
.var-card.featured { background: linear-gradient(135deg, #fff 0%, var(--accent-tint) 100%); border-color: var(--accent); grid-column: span 2; }
.var-card.featured::before { background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent-light)); height: 4px; }

/* ================ GALLERY ================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.gallery-item {
  aspect-ratio: 5/3; min-height: 130px;
  background: var(--ink) center/cover no-repeat;
  border-radius: 12px; position: relative; overflow: hidden;
  transition: transform .2s;
  display: block;
}
.gallery-item:hover { transform: translateY(-2px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-cta { text-align: center; margin-top: 30px; }

/* ================ VIDEO CARDS / CHIPS ================ */
.video-card {
  position: relative; aspect-ratio: 16/9;
  background: var(--ink); border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: transform .2s; display: block;
}
.video-card:hover { transform: translateY(-2px); }
.video-card .video-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.92; transition: opacity .2s;
}
.video-card:hover .video-thumb { opacity: 1; }
.video-card .play-button {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.video-card:hover .play-button { background: var(--accent); }
.video-card .play-icon {
  width: 0; height: 0;
  border-left: 18px solid var(--accent);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px; transition: border-color .2s;
}
.video-card:hover .play-icon { border-left-color: #fff; }

.video-chip {
  display: grid; grid-template-columns: 140px 1fr auto;
  gap: 16px; align-items: center;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 10px; padding: 8px 14px 8px 8px;
  cursor: pointer; transition: all .15s; text-decoration: none;
  margin: 18px 0;
}
.video-chip:hover { border-color: var(--accent); background: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(164,136,93,0.10); }
.video-chip.expanded { display: block; padding: 0; cursor: default; aspect-ratio: 16/9; position: relative; overflow: hidden; }
.video-chip.expanded > * { display: none; }
.video-chip-thumb {
  position: relative; aspect-ratio: 16/9; width: 100%;
  background: var(--ink); border-radius: 6px; overflow: hidden;
}
.video-chip-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-chip-thumb::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.video-chip-thumb::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-44%, -50%); z-index: 1;
  width: 0; height: 0;
  border-left: 9px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: border-left-color .15s;
}
.video-chip:hover .video-chip-thumb::after { background: var(--accent); }
.video-chip:hover .video-chip-thumb::before { border-left-color: #fff; }
.video-chip-content { min-width: 0; }
.video-chip-eyebrow {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 4px;
}
.video-chip-title {
  font-family: var(--serif); font-size: 16px; font-weight: 500; line-height: 1.3;
  color: var(--ink); margin: 0;
}
.video-chip-arrow {
  color: var(--muted); font-size: 18px; padding-right: 6px;
  transition: color .15s, transform .15s;
}
.video-chip:hover .video-chip-arrow { color: var(--accent); transform: translateX(3px); }

.var-card .var-video-link {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 10px 14px;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 8px; font-size: 13px; color: var(--ink); font-weight: 500;
  transition: all .15s; text-decoration: none; position: relative;
}
.var-card .var-video-link:hover { border-color: var(--accent); color: var(--accent); background: #fff; }
.var-card .var-video-link::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; display: inline-flex;
  align-items: center; justify-content: center; position: relative;
}
.var-card .var-video-link::after {
  content: ''; position: absolute; left: 24px;
  width: 0; height: 0;
  border-left: 6px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ================ SURGEON BLOCK ================ */
.surgeon-card {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3024 50%, #A4885D 100%);
  color: #fff; border-radius: 18px; padding: 60px 56px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.surgeon-card::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.surgeon-img {
  aspect-ratio: 3/4; min-height: 380px; border-radius: 14px;
  background: #d6c9a8 center/cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative; z-index: 1;
}
.surgeon-card h2 { color: #fff; }
.surgeon-card p { color: rgba(255,255,255,0.8); }
.surgeon-card .section-eyebrow { color: var(--accent-light); }
.surgeon-card ul { list-style: none; padding: 0; }
.surgeon-card ul li { padding: 10px 0; padding-left: 28px; position: relative; color: rgba(255,255,255,0.85); }
.surgeon-card ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 14px; height: 1px; background: var(--accent-light);
}
.creds-row { display: flex; gap: 18px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.cred-pill {
  padding: 6px 14px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px; font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500;
}

/* ================ TIMELINE ================ */
.timeline { position: relative; padding-left: 48px; margin-top: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 12px; bottom: 12px; width: 3px;
  background: linear-gradient(to bottom, var(--accent), rgba(164,136,93,0.2));
  border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -41px; top: 6px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-family: var(--serif); font-weight: 600; font-size: 13px;
}
.tl-time {
  display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 6px;
  background: var(--accent-tint); padding: 4px 12px; border-radius: 30px;
}
.tl-item h4 { font-size: 22px; margin-bottom: 8px; }

/* ================ COST ================ */
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.cost-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 28px; position: relative; overflow: hidden;
}
.cost-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}
.cost-card h4 { font-size: 22px; color: var(--ink); margin-bottom: 14px; }
.cost-card .cost-meta {
  display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
}
.cost-card p { font-size: 15px; line-height: 1.65; margin-bottom: 0; }

/* ================ CONSULT CARD ================ */
.consult-card {
  background: linear-gradient(135deg, var(--accent-tint) 0%, #fff 100%);
  border: 1px solid var(--line); border-radius: 16px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
}
.consult-card .consult-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 36px; font-weight: 600; margin-bottom: 16px;
}

/* ================ PRACTICAL ================ */
.practical-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.practical-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 28px;
}
.practical-card.full-width { grid-column: span 2; }
.practical-card h4 {
  font-size: 19px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.practical-card h4::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.practical-card p { font-size: 14px; line-height: 1.65; margin-bottom: 0; color: var(--body); }

/* ================ FAQ ================ */
.faq { margin-top: 32px; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; transition: border-color .15s;
}
.faq details:hover { border-color: var(--accent-light); }
.faq details[open] { border-color: var(--accent); }
.faq summary { cursor: pointer; padding: 22px 28px; list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h4 { font-size: 19px; margin-bottom: 0; color: var(--ink); flex: 1; line-height: 1.4; font-family: var(--serif); }
.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; line-height: 1; transition: all .2s;
}
.faq details[open] .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-body { padding: 0 28px 24px; }
.faq-body p { font-size: 15px; margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ================ RISKS ================ */
.risk-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #fff; border-radius: 18px; padding: 56px 48px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px;
}
.risk-card h2, .risk-card h3 { color: #fff; }
.risk-card p { color: rgba(255,255,255,0.78); }
.risk-card .section-eyebrow { color: var(--accent-light); }
.risk-list { list-style: none; padding: 0; }
.risk-list li {
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: 180px 1fr; gap: 24px; font-size: 14px;
  color: rgba(255,255,255,0.78);
}
.risk-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.risk-list strong {
  color: var(--accent-light); font-weight: 500; font-family: var(--serif);
  font-size: 17px; letter-spacing: 0; line-height: 1.3;
}

/* ================ BIG CTA ================ */
.big-cta {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3024 45%, #A4885D 100%);
  padding: 90px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.big-cta::before {
  content: ''; position: absolute; top: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,182,138,0.20) 0%, transparent 70%);
  border-radius: 50%;
}
.big-cta h2 { color: #fff; font-size: 44px; margin-bottom: 18px; }
.big-cta .lead { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 36px; }
.big-cta-actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; position: relative; }
.big-cta-phone { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.big-cta-phone span { font-family: var(--serif); font-size: 22px; color: #fff; margin-left: 6px; }

/* ================ RELATED ================ */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.related-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: all .2s; display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(164,136,93,0.12); border-color: var(--accent); }
.related-img {
  aspect-ratio: 16/9; min-height: 160px;
  background: var(--accent-tint) center/cover no-repeat;
  position: relative;
}
.related-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: var(--accent);
  padding: 5px 12px; border-radius: 30px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.related-body { padding: 24px 26px 26px; }
.related-body h4 { font-size: 21px; margin-bottom: 10px; color: var(--ink); }
.related-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.related-link { font-size: 13px; color: var(--accent); font-weight: 600; }
.related-link::after { content: ' \2192'; }

/* ================ FOOTER ================ */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding: 70px 0 28px; font-size: 14px;
}
.site-footer .container > .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.site-footer h5 { font-family: var(--serif); color: #fff; font-size: 20px; margin-bottom: 18px; font-weight: 500; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { padding: 6px 0; }
.site-footer a { color: rgba(255,255,255,0.68); }
.site-footer a:hover { color: var(--accent-light); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: rgba(255,255,255,0.5); font-size: 12px;
}
.ahpra-note { font-size: 11px; color: rgba(255,255,255,0.42); margin-top: 14px; }

/* ================ GENERIC PAGE ================ */
.page-content { padding: 56px 0; }
.page-content .container { max-width: 820px; }
.page-content h1 { margin-bottom: 24px; }
.page-content h2 { margin-top: 36px; }

/* ================ GALLERY (Swiper) ================ */
.gallery-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3024 50%, #A4885D 100%);
  color: #fff; padding: 56px 0 48px; position: relative; overflow: hidden;
}
.gallery-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,182,138,0.20) 0%, transparent 70%);
  border-radius: 50%;
}
.gallery-hero .container { position: relative; max-width: 880px; }
.gallery-hero h1 { color: #fff; margin-bottom: 16px; }
.gallery-disclaimer { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.78); max-width: 760px; }

.gallery-stage {
  background: var(--ink);
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    radial-gradient(circle at 20% 0%, rgba(164,136,93,0.35), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(164,136,93,0.25), transparent 55%);
  padding: 48px 0 64px; color: #fff;
}
.gallery-stage-inner { max-width: 1100px; }

/* Thumbnail strip */
.gallery-thumb-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.g-thumbs { flex: 1; min-width: 0; padding: 4px 0; }
.g-thumbs swiper-slide { cursor: pointer; }
.g-thumbs swiper-slide img {
  width: 100%; aspect-ratio: 5/3; object-fit: cover;
  border-radius: 8px; opacity: 0.55;
  transition: opacity .2s, outline-color .2s, transform .2s;
  outline: 2px solid transparent;
  outline-offset: 0px;
}
.g-thumbs swiper-slide:hover img { opacity: 0.9; transform: translateY(-1px); }
.g-thumbs swiper-slide.swiper-slide-thumb-active img {
  opacity: 1; outline-color: var(--accent-light);
}
.g-nav {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
}
.g-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Main viewer */
.g-main {
  --swiper-navigation-color: #fff;
  --swiper-navigation-size: 28px;
  --swiper-pagination-color: var(--accent-light);
  border-radius: 12px;
}
.g-case {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 32px 28px;
}
.g-case-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.g-case-num {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-light); font-weight: 600;
  padding: 4px 12px; border: 1px solid rgba(201,182,138,0.4); border-radius: 30px;
}
.g-case-head h3 { font-family: var(--serif); color: #fff; font-size: 22px; margin: 0; font-weight: 500; }
.g-frames { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.g-frames[data-frames="1"] { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
.g-frames[data-frames="2"] { grid-template-columns: 1fr 1fr; }
.g-frame {
  display: block; aspect-ratio: 5/3; overflow: hidden; border-radius: 8px;
  background: rgba(0,0,0,0.4);
}
.g-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.g-frame:hover img { transform: scale(1.04); }
.g-case-desc {
  font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.75);
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.g-case-desc h3, .g-case-desc h4 { color: var(--accent-light); font-size: 15px; margin-bottom: 8px; }
.g-case-desc a { color: var(--accent-light); text-decoration: underline; }
.g-case-desc p { color: rgba(255,255,255,0.75); }
.g-case-desc p:last-child { margin-bottom: 0; }

/* ---------- Parent Gallery layout ---------- */
.parent-gallery-stage { background: var(--ink); color: #fff; padding: 0; }
.pg-section {
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    radial-gradient(circle at 30% 0%, rgba(164,136,93,0.30), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(164,136,93,0.20), transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pg-head { padding: 36px 24px 8px; }
.pg-head h2 {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}
.pg-body { padding: 12px 24px 48px; }
.pg-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pg-thumb {
  display: block;
  aspect-ratio: 340/205.5;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0,0,0,0.4);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pg-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s, opacity .2s;
}
.pg-thumb:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.pg-thumb:hover img { transform: scale(1.04); }

.pg-cta-row { text-align: center; margin-top: 24px; }
.btn-outline-brown {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all .15s;
  text-decoration: none;
}
.btn-outline-brown:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 700px) {
  .pg-thumbs { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pg-head { padding: 28px 18px 8px; }
  .pg-body { padding: 12px 18px 36px; }
  .pg-head h2 { font-size: 24px; }
}

/* =========================================================
   HOMEPAGE
   ========================================================= */

.home-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3024 50%, #A4885D 100%);
  background-image:
    linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(61,48,36,0.85) 50%, rgba(164,136,93,0.75) 100%),
    radial-gradient(circle at 80% 50%, rgba(201,182,138,0.30), transparent 60%);
  color: #fff;
  padding: 64px 0 80px;
  position: relative; overflow: hidden;
}
.home-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.home-hero-text { max-width: 540px; }
.home-hero-name {
  font-family: var(--serif); font-size: clamp(46px, 7vw, 86px);
  font-weight: 400; color: #fff; line-height: 1; letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.home-hero-name .gold { color: var(--accent-light); }
.home-hero-tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 26px);
  color: rgba(255,255,255,0.9); margin-bottom: 28px; font-weight: 400;
}
.home-hero-eyebrow {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px); color: #fff;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 8px; margin-bottom: 18px;
  display: inline-block;
}
.home-hero-eyebrow span { display: block; font-size: 65%; color: rgba(255,255,255,0.85); margin-top: 4px; }
.home-hero-lead { color: rgba(255,255,255,0.85); max-width: 460px; margin-bottom: 28px; font-size: 16px; line-height: 1.65; }
.home-hero-img-wrap { position: relative; min-height: 380px; }
.home-hero-img {
  width: 100%; max-width: 520px;
  margin-left: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

/* Procedures gold panel */
.home-procedures { background: var(--ink); padding: 32px 0 56px; }
.home-procedures-panel {
  background: linear-gradient(135deg, #A4885D 0%, #8a7146 100%);
  border-radius: 18px; padding: 48px 32px 56px;
  max-width: 1200px; margin: 0 auto;
}
.home-procedures-heading {
  text-align: center; color: #fff; font-family: var(--serif);
  font-weight: 500; font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 32px;
}
.home-procedure-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.home-procedure-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 24px 16px 22px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: background .15s, transform .15s;
  min-height: 320px;
  justify-content: space-between;
}
.home-procedure-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.home-procedure-icon {
  width: 130px; height: 130px;
  background: rgba(255,255,255,0.85) center/cover no-repeat;
  border-radius: 50%; margin-bottom: 18px; flex-shrink: 0;
}
.home-procedure-icon-placeholder {
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.home-procedure-name {
  color: #fff; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; line-height: 1.4;
  letter-spacing: 0.04em; text-transform: uppercase;
  min-height: 50px; margin: 0 0 16px;
}
.home-procedure-card .btn-outline-brown {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  font-size: 11px; padding: 8px 18px;
  letter-spacing: 0.18em;
}
.home-procedure-card .btn-outline-brown:hover {
  background: #fff; color: var(--accent); border-color: #fff;
}

/* Gallery teaser */
.home-gallery-teaser { background: var(--ink); padding: 16px 0 48px; }
.home-gallery-card {
  border: 2px solid var(--accent);
  border-radius: 18px;
  padding: 56px 32px;
  text-align: center;
  max-width: 1100px; margin: 0 auto;
  background: rgba(0,0,0,0.4);
}
.home-gallery-eyebrow {
  font-family: var(--serif); color: var(--accent-light);
  font-weight: 600; font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.home-gallery-heading {
  color: #fff; font-weight: 500; font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 28px;
}

/* eBooks teaser */
.home-ebooks {
  background: var(--ink);
  padding: 64px 0 72px; text-align: center; color: #fff;
}
.home-ebooks-eyebrow {
  font-family: var(--serif); color: var(--accent-light);
  font-weight: 500; font-size: 28px; margin-bottom: 6px;
}
.home-ebooks-heading {
  font-family: var(--serif); color: #fff; font-weight: 500;
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 28px;
}
.home-ebooks-heading .gold { color: var(--accent-light); }

/* About */
.home-about {
  background: #171516;
  color: #fff; padding: 64px 0;
}
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.home-about-eyebrow {
  font-family: var(--serif); color: var(--accent-light);
  font-weight: 500; font-size: 22px; margin-bottom: 4px;
}
.home-about-name {
  font-family: var(--serif); color: #fff; font-weight: 500;
  font-size: clamp(38px, 4.5vw, 56px); margin-bottom: 24px;
}
.home-about-text p { color: rgba(255,255,255,0.75); }
.home-about-text p.small { color: rgba(255,255,255,0.6); margin-bottom: 6px; font-size: 14px; }
.home-about-img { text-align: center; }
.home-about-img img {
  max-width: 100%; max-height: 480px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.home-about-creds {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 24px; flex-wrap: wrap;
}
.home-about-creds span {
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  font-size: 12px; color: rgba(255,255,255,0.85);
}

/* Contact (bottom CTA) */
.home-contact {
  background: var(--ink); color: #fff;
  padding: 32px 0 64px;
}
.home-contact-card {
  background: linear-gradient(135deg, rgba(164,136,93,0.18), rgba(26,26,26,0.85));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 56px 40px;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.home-contact-heading {
  color: #fff; font-weight: 500; font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 8px;
}
.home-contact-card > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.home-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; align-items: center; text-align: left;
}
.home-contact-col h4 {
  font-family: var(--serif); color: var(--accent-light);
  font-size: 18px; margin-bottom: 8px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.home-contact-col p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 15px; }
.phone-block { margin: 0; line-height: 1.2; }
.phone-large {
  font-family: var(--serif); color: #fff; font-size: 32px; font-weight: 500;
  text-decoration: none; display: inline-block;
}
.phone-large:hover { color: var(--accent-light); }
.phone-secondary {
  font-family: var(--serif); color: rgba(255,255,255,0.65); font-size: 22px;
}
.home-contact-col--cta { text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-hero-img-wrap { min-height: 0; order: -1; }
  .home-hero-img { max-width: 320px; margin: 0 auto; }
  .home-procedure-grid { grid-template-columns: repeat(2, 1fr); }
  .home-about-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .home-about-img { order: -1; }
  .home-contact-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}
@media (max-width: 480px) {
  .home-hero { padding: 40px 0 56px; }
  .home-procedures-panel { padding: 32px 18px 40px; }
  .home-procedure-card { min-height: 280px; padding: 18px 12px; }
  .home-procedure-icon { width: 100px; height: 100px; }
  .home-gallery-card { padding: 40px 20px; }
  .home-contact-card { padding: 40px 20px; }
}

/* =========================================================
   ABOUT — DR DONA PAGE
   ========================================================= */

/* ===== Hero ===== */
.about-hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(201,182,138,0.30), transparent 55%),
    linear-gradient(135deg, #1A1A1A 0%, #2D241B 50%, #5d4a2f 100%);
  color: #fff;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.about-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about-hero-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-light); font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--accent);
  margin-bottom: 14px;
}
.about-hero-name {
  font-family: var(--serif); font-size: clamp(54px, 8vw, 100px);
  color: #fff; font-weight: 500; letter-spacing: 0.02em;
  line-height: 1; margin-bottom: 12px;
}
.about-hero-name .gold { color: var(--accent-light); }
.about-hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(255,255,255,0.9); margin-bottom: 28px;
}
.about-hero-bullets ul,
.about-hero-bullets-default {
  list-style: none; padding: 0; margin: 0 0 32px;
  color: rgba(255,255,255,0.85);
}
.about-hero-bullets li,
.about-hero-bullets-default li {
  padding: 6px 0 6px 22px; font-size: 15px; line-height: 1.5;
  position: relative;
}
.about-hero-bullets li::before,
.about-hero-bullets-default li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 12px; height: 1px; background: var(--accent-light);
}
.about-hero-cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.about-hero-cta .btn-primary {
  background: var(--accent-light); color: var(--ink);
  padding: 14px 26px; font-size: 14px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-hero-cta .btn-primary:hover { background: #fff; color: var(--accent); }
.about-hero-phone {
  font-family: var(--serif); font-size: 22px;
  color: rgba(255,255,255,0.92); text-decoration: none;
  letter-spacing: 0.02em;
}
.about-hero-phone:hover { color: var(--accent-light); }
.about-hero-img-wrap { text-align: center; position: relative; }
.about-hero-img-wrap::before {
  content: ''; position: absolute; inset: -20px -20px -20px -20px;
  background: radial-gradient(ellipse at center, rgba(164,136,93,0.35), transparent 60%);
  z-index: 0; pointer-events: none;
}
.about-hero-img {
  position: relative; z-index: 1;
  max-width: 480px; width: 100%; max-height: 540px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

/* ===== Accreditation strip ===== */
.about-accred {
  background: var(--bg-alt);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.about-accred-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; align-items: center;
}
.about-accred-item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
}
.about-accred-item:last-child { border-right: none; }
.about-accred-num {
  font-family: var(--serif); color: var(--accent);
  font-size: clamp(28px, 3vw, 36px); font-weight: 500;
  line-height: 1; margin-bottom: 6px; letter-spacing: 0.02em;
}
.about-accred-label {
  font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
  font-weight: 500; line-height: 1.4;
}

/* ===== Bio ===== */
.about-bio {
  background: var(--bg);
  padding: 80px 0 64px;
  color: var(--body);
}
.about-bio-grid {
  display: grid; grid-template-columns: 0.9fr 1.2fr;
  gap: 56px; align-items: start;
}
.about-bio-figure {
  position: relative; margin: 0; text-align: center;
}
.about-bio-img {
  max-width: 100%; width: 100%; max-height: 580px;
  border-radius: 12px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
}
.about-bio-figcap {
  position: absolute; left: 50%; bottom: -28px;
  transform: translateX(-50%);
  background: var(--ink); color: #fff;
  border-radius: 30px;
  padding: 12px 22px; min-width: 240px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.about-bio-figcap-eyebrow {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-light); font-weight: 600;
}
.about-bio-figcap-name {
  font-family: var(--serif); font-size: 18px; color: #fff;
  margin-top: 2px;
}
.about-bio-figcap-reg {
  font-size: 11px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em; margin-top: 4px;
}
.about-bio-text { padding-top: 8px; }
.about-bio-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin-bottom: 10px;
}
.about-bio-heading {
  font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink); font-weight: 500; line-height: 1.15;
  margin-bottom: 24px;
}
.about-bio-text p {
  color: var(--body); font-size: 16px; line-height: 1.75;
  margin-bottom: 16px;
}

.about-bio-flow { max-width: 880px; margin: 64px auto 0; }
.about-bio-paragraph p {
  color: var(--body); font-size: 16px; line-height: 1.75;
  margin-bottom: 16px;
}

.about-pull-quote {
  position: relative;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-deep);
  font-size: clamp(22px, 2.8vw, 32px);
  text-align: center; line-height: 1.35;
  margin: 48px auto; padding: 36px 24px 28px;
  max-width: 800px;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}
.about-pull-quote-mark {
  color: var(--accent);
  margin: 0 auto 14px;
  display: block;
}
.about-pull-quote span { display: block; max-width: 720px; margin: 0 auto; }

/* ===== Clinic ===== */
.about-clinic {
  background: var(--bg-alt);
  padding: 64px 0 72px;
}
.about-clinic-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  max-width: 1100px; margin: 0 auto;
  box-shadow: 0 24px 60px rgba(26,26,26,0.06);
}
.about-clinic-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-light), var(--accent));
}
.about-clinic-decor {
  position: absolute; top: 24px; right: 28px;
  color: var(--accent-tint); opacity: 0.5;
}
.about-clinic-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
}
.about-clinic-text { padding: 48px 44px 48px; }
.about-clinic-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin-bottom: 8px;
}
.about-clinic-heading {
  font-family: var(--serif); color: var(--ink);
  font-weight: 500; font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2; margin-bottom: 20px;
}
.about-clinic-body p { color: var(--body); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.about-clinic-body span { font-style: italic; }
.about-clinic-body a { color: var(--accent); font-weight: 500; }

.about-clinic-side {
  background: var(--ink);
  color: #fff;
  padding: 48px 36px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.about-clinic-side-eyebrow {
  font-family: var(--serif); color: var(--accent-light);
  font-size: 18px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.about-clinic-address {
  font-style: normal; color: rgba(255,255,255,0.92);
  font-size: 16px; line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}
.about-clinic-phone { margin-bottom: 22px; }
.about-clinic-phone a {
  font-family: var(--serif); color: #fff;
  font-size: 26px; text-decoration: none; letter-spacing: 0.02em;
}
.about-clinic-phone a:hover { color: var(--accent-light); }
.about-clinic-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-light);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  text-decoration: none;
  align-self: flex-start;
}
.about-clinic-link:hover { color: #fff; gap: 12px; }
.about-clinic-link svg { transition: transform .15s; }
.about-clinic-link:hover svg { transform: translateX(4px); }

/* ===== Philosophy ===== */
.about-philosophy {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D241B 60%, #5d4a2f 100%);
  background-image:
    linear-gradient(135deg, rgba(26,26,26,0.92), rgba(45,36,27,0.92), rgba(93,74,47,0.92)),
    radial-gradient(circle at 30% 80%, rgba(201,182,138,0.25), transparent 50%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.about-philosophy-card {
  max-width: 820px; margin: 0 auto;
  padding: 0 16px;
}
.about-philosophy-mark {
  color: var(--accent-light);
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}
.about-philosophy-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-light); font-weight: 600;
  margin-bottom: 22px;
}
.about-philosophy-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  color: #fff; line-height: 1.45;
  font-weight: 400;
}
.about-philosophy-quote h2,
.about-philosophy-quote p { color: #fff; font-size: inherit; font-weight: 400; margin: 0; font-family: var(--serif); }

/* ===== FAQs ===== */
.about-faqs {
  background: var(--bg);
  padding: 80px 0;
}
.about-faqs .container { max-width: 920px; }
.about-faqs-head { text-align: center; margin-bottom: 36px; }
.about-faqs-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin-bottom: 8px;
}
.about-faqs-heading {
  font-family: var(--serif); color: var(--ink);
  font-weight: 500; font-size: clamp(28px, 3.4vw, 40px);
}

.about-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: border-color .15s, box-shadow .15s;
}
.about-faq:hover { border-color: var(--accent-light); }
.about-faq[open] { border-color: var(--accent); box-shadow: 0 8px 24px rgba(164,136,93,0.10); }
.about-faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 24px;
}
.about-faq summary::-webkit-details-marker { display: none; }
.about-faq summary h4 {
  margin: 0; color: var(--ink);
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  line-height: 1.4;
}
.about-faq summary h4 a { color: var(--accent); }
.about-faq-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  border-radius: 50%; background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; line-height: 1;
  transition: all .2s;
}
.about-faq[open] .about-faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.about-faq-body {
  padding: 0 26px 22px;
  color: var(--body); font-size: 15px; line-height: 1.7;
}
.about-faq-body p { color: var(--body); margin-bottom: 8px; }
.about-faq-body p:last-child { margin-bottom: 0; }
.about-faq-body a { color: var(--accent); text-decoration: underline; }
.about-faq-body ul { padding-left: 1.2em; }
.about-faq-body li { color: var(--body); padding: 4px 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-hero { padding: 56px 0 64px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about-hero-eyebrow { display: inline-block; }
  .about-hero-bullets li,
  .about-hero-bullets-default li { padding-left: 0; }
  .about-hero-bullets li::before,
  .about-hero-bullets-default li::before { display: none; }
  .about-hero-cta { justify-content: center; }
  .about-hero-img { max-width: 320px; }

  .about-accred-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .about-accred-item:nth-child(2) { border-right: none; }

  .about-bio { padding: 56px 0 48px; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-bio-text { text-align: left; }
  .about-bio-img { max-width: 380px; margin: 0 auto; display: block; }
  .about-bio-figcap { min-width: 220px; padding: 10px 18px; }

  .about-clinic-grid { grid-template-columns: 1fr; }
  .about-clinic-text { padding: 36px 28px 28px; }
  .about-clinic-side { padding: 36px 28px; }

  .about-philosophy { padding: 56px 0; }
  .about-faqs { padding: 56px 0; }
}
@media (max-width: 480px) {
  .about-accred-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-accred-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .about-accred-item:last-child { border-bottom: none; }
  .about-bio-figcap { min-width: 200px; }
  .about-pull-quote { padding: 28px 16px 22px; margin: 32px auto; }
  .about-faq summary { padding: 18px 20px; gap: 14px; }
  .about-faq summary h4 { font-size: 16px; }
  .about-faq-body { padding: 0 20px 18px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3024 50%, #A4885D 100%);
  background-image:
    linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(61,48,36,0.85) 50%, rgba(164,136,93,0.7) 100%);
  color: #fff; padding: 56px 0 48px; text-align: center;
}
.contact-hero-title {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-hero-sub { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; }

.contact-body { background: var(--bg); padding: 48px 0 64px; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
.contact-form-col, .contact-details-col { min-width: 0; }

.contact-flash {
  padding: 16px 22px; border-radius: 12px;
  margin-bottom: 28px; max-width: 920px;
}
.contact-flash strong { display: block; margin-bottom: 4px; font-size: 16px; }
.contact-flash span { font-size: 14px; }
.contact-flash-success { background: #f1f6f0; border: 1px solid #b9d8af; color: #2d5e1f; }
.contact-flash-error   { background: #fdf2f2; border: 1px solid #efc4c4; color: #6e1f1f; }

/* Form */
.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.contact-row:has(.contact-field:nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
.contact-field { display: flex; flex-direction: column; }
.contact-label {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 6px;
}
.contact-label .req { color: var(--accent); }
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(164,136,93,0.18);
}
.contact-field textarea { resize: vertical; min-height: 110px; }

.contact-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--body);
  margin: 18px 0 22px; line-height: 1.5;
}
.contact-checkbox input { margin-top: 4px; accent-color: var(--accent); }

.contact-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.contact-actions .btn-primary {
  background: var(--accent); color: #fff;
  padding: 14px 32px; font-size: 14px; letter-spacing: 0.06em;
}
.contact-actions .btn-primary:hover { background: var(--accent-hover); color: #fff; }
.contact-note { font-size: 12px; color: var(--muted); margin: 0; }

/* Details column */
.contact-details-col {
  background: var(--ink); color: #fff;
  border-radius: 14px; padding: 28px 28px 32px;
  align-self: start; position: sticky; top: 96px;
}
.contact-detail-block { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.contact-detail-block:last-of-type { border-bottom: none; }
.contact-detail-eyebrow {
  font-family: var(--serif); color: var(--accent-light);
  font-size: 16px; font-weight: 500; margin: 0 0 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.contact-detail-block p { color: rgba(255,255,255,0.85); margin: 0; font-size: 15px; line-height: 1.55; }
.contact-detail-link { color: #fff; text-decoration: none; font-weight: 500; }
.contact-detail-link:hover { color: var(--accent-light); }
.contact-detail-faint { color: rgba(255,255,255,0.55); font-size: 13px; }

.contact-map { margin-top: 16px; }
.contact-map iframe { display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-details-col { position: static; }
  .contact-row { grid-template-columns: 1fr; }
}

/* ================ LANDING PAGE ================ */
.lp-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 32px 0; }
.lp-image { aspect-ratio: 5/3; background: var(--ink) center/cover no-repeat; border-radius: 10px; }
.lp-disclaimer { font-size: 12px; color: var(--muted); font-style: italic; margin-top: 16px; }

@media (max-width: 700px) {
  .lp-images { grid-template-columns: 1fr 1fr; }
  .g-case { padding: 22px 18px 20px; }
  .g-case-head h3 { font-size: 18px; }
  .g-frames { gap: 8px; }
  .gallery-thumb-row { gap: 8px; }
  .g-nav { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .g-frames { grid-template-columns: 1fr 1fr; }
  .g-frames[data-frames="3"] .g-frame:nth-child(3) { grid-column: span 2; }
}

/* ================ POSTS / ARCHIVE ================ */
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-list article {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: all .2s;
}
.post-list article:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(164,136,93,0.12); border-color: var(--accent); }
.post-list .post-thumb { aspect-ratio: 16/9; background: var(--accent-tint) center/cover no-repeat; }
.post-list .post-body { padding: 24px 26px; }
.post-list h2 { font-size: 21px; margin-bottom: 10px; }
.post-list p { font-size: 14px; color: var(--muted); }

/* ================ RESPONSIVE ================ */
@media (max-width: 900px) {
  .surgeon-card, .consult-card, .risk-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .var-grid, .practical-grid, .related-grid, .gallery-grid, .cost-grid, .post-list, .overview-grid { grid-template-columns: 1fr; }
  .var-card.featured, .practical-card.full-width { grid-column: span 1; }
  .site-header nav ul { display: none; }
  .jump-bar { display: none; }
  .qf-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  section { padding: 56px 0; }
  .video-chip { grid-template-columns: 100px 1fr auto; padding: 6px 12px 6px 6px; gap: 12px; }
  .video-chip-title { font-size: 14px; }
  .video-chip-eyebrow { font-size: 9px; margin-bottom: 2px; }
  .site-footer .container > .grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  h1 { font-size: 30px; line-height: 1.15; }
  h2 { font-size: 24px; }
  h3 { font-size: 21px; }
  section { padding: 44px 0; }
  .topbar { padding: 8px 0; font-size: 12px; }
  .topbar .topbar-meta { display: none; }
  .site-header .container { padding: 12px 18px; gap: 10px; }
  .logo, .logo a { font-size: 20px; white-space: nowrap; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .hero { padding: 40px 0 48px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 24px; }
  .breadcrumbs { margin-bottom: 18px; font-size: 12px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-ghost { padding: 13px 22px; font-size: 13px; }
  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: 16px; }
  .accent-card { padding: 28px 22px 24px; }
  .surgeon-card, .consult-card, .risk-card { padding: 32px 22px; border-radius: 12px; }
  .var-card { padding: 24px 22px 22px; }
  .lead-card { padding: 26px; }
  .lead-card .lead-quote { font-size: 19px; }
  .qf-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .qf-card { padding: 16px 16px; }
  .qf-card .qf-icon { width: 34px; height: 34px; font-size: 16px; margin-bottom: 10px; }
  .qf-card .qf-value { font-size: 18px; }
  .practical-card { padding: 22px 22px; }
  .cost-card { padding: 24px 22px; }
  .var-card .var-video-link { padding: 9px 12px; font-size: 12px; }
  .faq summary { padding: 18px 20px; gap: 14px; }
  .faq summary h4 { font-size: 16px; line-height: 1.4; }
  .faq-icon { width: 26px; height: 26px; font-size: 18px; }
  .faq-body { padding: 0 20px 20px; }
  .faq-body p { font-size: 14px; }
  .risk-list li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .risk-list li strong, .risk-list li span { display: block; }
  .risk-list strong { font-size: 16px; }
  .creds-row { gap: 8px; padding-top: 18px; margin-top: 18px; }
  .cred-pill { font-size: 11px; padding: 5px 11px; }
  .surgeon-card ul li { padding: 8px 0 8px 24px; font-size: 14px; }
  .surgeon-card ul li::before { top: 16px; width: 12px; }
  .big-cta { padding: 64px 0; }
  .big-cta h2 { font-size: 30px; }
  .big-cta .lead { font-size: 16px; margin-bottom: 26px; }
  .big-cta-actions { flex-direction: column; gap: 14px; }
  .big-cta-phone span { font-size: 18px; display: block; margin-left: 0; margin-top: 4px; }
  .timeline { padding-left: 38px; }
  .timeline::before { left: 10px; }
  .tl-dot { width: 24px; height: 24px; left: -34px; font-size: 11px; border-width: 2px; }
  .tl-item h4 { font-size: 18px; }
  .tl-item { padding-bottom: 26px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item { min-height: 90px; }
  .related-img { min-height: 130px; }
  .related-body { padding: 18px 20px 20px; }
  .related-body h4 { font-size: 18px; }
  .site-footer { padding: 48px 0 24px; }
  .site-footer .container > .grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .site-footer h5 { font-size: 16px; margin-bottom: 12px; }
}

/* ================ PRINT ================ */
@media print {
  .topbar, .site-header, .jump-bar, .big-cta, .site-footer, .video-chip { display: none; }
  body { font-size: 12pt; }
}

/* ================ REDUCED MOTION ================ */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { transition-duration: 0ms !important; animation-duration: 0ms !important; scroll-behavior: auto; }
}
