/* ==========================================================================
   Get Implants Turkey UK — Global Design System
   Editorial / Magazine · Forest Green Palette
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Paper / ink */
  --paper:      #f5f2ea;
  --paper-2:    #ebe5d5;
  --ink:        #0c1a14;
  --ink-2:      #1e2e26;
  --muted:      #536b5c;
  --line:       #d8d1bd;
  --line-2:     #c3bca3;

  /* Greens */
  --forest:     #1e6644;
  --forest-2:   #155433;
  --moss:       #1a4d38;
  --sage:       #5fa37a;
  --sage-light: #9dc4ae;
  --olive:      #8a8f54;

  --accent:      var(--forest);
  --accent-deep: var(--forest-2);

  /* Typography */
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans:  'Geist', system-ui, -apple-system, sans-serif;
  --mono:  'Geist Mono', ui-monospace, monospace;

  /* Layout */
  --max-w:  1440px;
  --wrap-x: 48px;
  --radius: 2px;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--wrap-x);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------------------
   4. Global Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; font-size: 13px; border-radius: var(--radius);
  transition: all .2s; white-space: nowrap;
  letter-spacing: 0.005em; font-weight: 500;
  font-family: var(--sans);
}
.btn-primary { background: var(--forest); color: var(--paper); }
.btn-primary:hover { background: var(--forest-2); }
.btn-ghost { background: transparent; border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); }
.btn-sage { background: var(--sage); color: var(--ink); }
.btn-sage:hover { background: #6d9174; }

/* --------------------------------------------------------------------------
   6. Section Frame (editorial layout)
   -------------------------------------------------------------------------- */
.gdt-section { padding: 120px 0; position: relative; }
.gdt-section--dark {
  background: var(--forest-2); color: var(--paper);
  margin: 0 calc(-1 * var(--wrap-x));
  padding: 120px var(--wrap-x);
}
.gdt-section--tinted {
  background: var(--paper-2);
  margin: 0 calc(-1 * var(--wrap-x));
  padding: 120px var(--wrap-x);
}
.gdt-section--moss {
  background: var(--moss); color: var(--paper);
  margin: 0 calc(-1 * var(--wrap-x));
  padding: 120px var(--wrap-x);
}

.sec-head {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 48px; margin-bottom: 72px; align-items: start;
}
.sec-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted); text-transform: uppercase;
  padding-top: 14px; border-top: 1px solid var(--ink);
}
.sec-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.sec-kicker .bar { width: 28px; height: 1px; background: var(--forest); }
.sec-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 5.4vw, 84px); line-height: 0.98;
  letter-spacing: -0.02em; max-width: 22ch; text-wrap: balance;
}
.sec-title em { font-style: italic; color: var(--forest); }
.sec-lede {
  font-size: 17px; color: var(--ink-2); margin-top: 28px;
  max-width: 58ch; line-height: 1.6; text-wrap: pretty;
}

/* Dark section overrides */
.gdt-section--dark .sec-num  { border-color: var(--paper); color: rgba(245,242,234,.8); }
.gdt-section--dark .sec-title { color: var(--paper); }
.gdt-section--dark .sec-title em { color: var(--sage-light); }
.gdt-section--dark .sec-kicker { color: var(--sage-light); }
.gdt-section--dark .sec-kicker .bar { background: var(--sage-light); }
.gdt-section--dark .sec-lede { color: rgba(245,242,234,.8); }
.gdt-section--moss .sec-num  { border-color: var(--paper); color: rgba(245,242,234,.8); }
.gdt-section--moss .sec-title { color: var(--paper); }
.gdt-section--moss .sec-title em { color: var(--sage-light); }
.gdt-section--moss .sec-kicker { color: var(--sage-light); }
.gdt-section--moss .sec-kicker .bar { background: var(--sage-light); }
.gdt-section--moss .sec-lede { color: rgba(245,242,234,.8); }

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  /* Admin bar offset handled below */
  background: color-mix(in oklab, var(--paper) 90%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; height: 76px; gap: 40px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--wrap-x);
}
.site-header__logo { display: flex; align-items: center; gap: 12px; }
.site-header__logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--forest); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1;
}
.site-header__logo-name { line-height: 1.1; }
.site-header__brand-mark { font-family: var(--serif); font-size: 18px; letter-spacing: -0.01em; }
.site-header__brand-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.site-nav { display: flex; gap: 24px; justify-self: center; font-size: 13px; color: var(--ink-2); list-style: none; padding: 0; margin: 0; }
.site-nav .site-nav__item { list-style: none; }
.site-nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 0; }
.site-nav__link:hover { color: var(--forest); }
.site-nav__item--has-dropdown { position: relative; }
.site-nav__link-wrap { display: flex; align-items: center; }
.site-nav__chevron { padding: 4px; color: var(--muted); }
.site-nav__dropdown {
  position: absolute; top: 100%; left: -16px; min-width: 280px;
  background: var(--paper); border: 1px solid var(--line-2);
  padding: 12px; display: none; z-index: 100;
  box-shadow: 0 20px 40px rgba(12,26,20,.08);
}
.site-nav__item--has-dropdown:hover .site-nav__dropdown { display: block; }
.site-nav__dropdown .site-nav__item { display: block; }
.site-nav__dropdown .site-nav__link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 2px; width: 100%;
}
.site-nav__dropdown .site-nav__link:hover { background: var(--paper-2); color: var(--forest); }
.site-nav__item-icon { color: var(--forest); flex-shrink: 0; }

.site-header__right { display: flex; gap: 10px; align-items: center; }
.site-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-2);
}
.site-header__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; font-size: 13px; font-weight: 500;
  background: var(--forest); color: var(--paper); border-radius: var(--radius);
  transition: background .2s;
}
.site-header__cta:hover { background: var(--forest-2); }

.site-header__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.site-header__burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all .3s; }
.site-header__mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
}
.site-header__mobile-nav li { display: block; list-style: none; padding: 0; margin: 0; }
.site-header__mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.site-header__mobile-nav > li > .site-nav__link-wrap > .site-nav__link,
.site-header__mobile-nav > li > .site-nav__link { padding: 13px 0; border-bottom: 1px solid var(--line); display: flex; width: 100%; }

/* Mobile accordion dropdown */
.site-header__mobile-nav .site-nav__item--has-dropdown:hover .site-nav__dropdown { display: none; }
.site-header__mobile-nav .site-nav__item--has-dropdown.is-open .site-nav__dropdown { display: block; }
.site-header__mobile-nav .site-nav__dropdown {
  position: static; box-shadow: none; border: none;
  padding: 0 0 4px 16px; background: transparent; min-width: 0;
  border-left: 2px solid var(--line);
}
.site-header__mobile-nav .site-nav__dropdown .site-nav__link {
  padding: 10px 0; border-radius: 0; width: auto;
}
.site-header__mobile-nav .site-nav__dropdown .site-nav__link:hover { background: transparent; }
.site-header__mobile-nav .site-nav__item--has-dropdown .site-nav__link-wrap { justify-content: space-between; }

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.site-footer__top { padding: 64px 0 48px; }
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.site-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.site-footer__tagline { font-size: 13px; color: var(--ink-2); margin-top: 12px; max-width: 38ch; line-height: 1.55; }
.site-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.site-footer__social a { color: var(--muted); transition: color .2s; }
.site-footer__social a:hover { color: var(--forest); }
.site-footer__col-h {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.site-footer__list { display: flex; flex-direction: column; gap: 10px; }
.site-footer__list li { font-size: 13px; color: var(--ink-2); }
.site-footer__list a:hover { color: var(--forest); }
.site-footer__nap { margin-top: 16px; }
.site-footer__nap a { display: flex; align-items: center; gap: 8px; }
.site-footer__bottom {
  padding: 20px var(--wrap-x); border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}

/* --------------------------------------------------------------------------
   9. WhatsApp Float
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; left: 24px; bottom: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35); z-index: 60;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* --------------------------------------------------------------------------
   10. Cookie bar
   -------------------------------------------------------------------------- */
/* Admin bar — prevent sticky header from hiding behind WP toolbar */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* Cookie bar hidden state — override display:flex when [hidden] is set */
.cookie-bar[hidden] { display: none !important; }

.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px; font-size: 13px;
  border-top: 1px solid rgba(245,242,234,.1);
}
.cookie-bar__text { display: flex; align-items: center; gap: 8px; }
.cookie-bar__text a { text-decoration: underline; color: var(--sage-light); }
.cookie-bar__btn {
  padding: 8px 16px; background: var(--sage); color: var(--ink);
  border-radius: var(--radius); font-size: 12px; font-weight: 500; white-space: nowrap;
  transition: background .2s;
}
.cookie-bar__btn:hover { background: var(--sage-light); }
.cookie-bar--out { animation: slideDown .35s ease forwards; }
@keyframes slideDown { to { transform: translateY(100%); opacity: 0; } }

/* --------------------------------------------------------------------------
   11. Accessibility
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   12. Scroll-to-top
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper); color: var(--forest);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  z-index: 59; transition: all .2s;
  box-shadow: 0 4px 12px rgba(12,26,20,.08);
}
.scroll-top[hidden] { display: none !important; }
.scroll-top:hover { background: var(--forest); color: var(--paper); }

/* --------------------------------------------------------------------------
   13. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --wrap-x: 24px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; padding-right: 8px; }
  .site-nav { display: none; }
  .site-header__right { display: none; }
  .site-header__burger { display: flex; margin-left: auto; }
  .site-header__brand-est { display: none; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .gdt-section, .gdt-section--dark, .gdt-section--tinted, .gdt-section--moss { padding-top: 80px; padding-bottom: 80px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --------------------------------------------------------------------------
   14. Lucide icon defaults
   -------------------------------------------------------------------------- */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
svg[class="icon"] { width: 1em; height: 1em; stroke-width: 1.6; }

/* --------------------------------------------------------------------------
   15. Shared button system
   -------------------------------------------------------------------------- */
.gdt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  border: 1.5px solid transparent; white-space: nowrap;
}
.gdt-btn--primary {
  background: var(--forest); color: var(--paper);
  border-color: var(--forest);
}
.gdt-btn--primary:hover { background: var(--forest-2); border-color: var(--forest-2); }
.gdt-btn--accent {
  background: var(--olive); color: var(--paper);
  border-color: var(--olive);
}
.gdt-btn--accent:hover { background: #7a7f48; border-color: #7a7f48; }
.gdt-btn--ghost {
  background: transparent; color: var(--forest);
  border-color: var(--forest);
}
.gdt-btn--ghost:hover { background: var(--forest); color: var(--paper); }
.gdt-btn--outline {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.gdt-btn--outline:hover { border-color: var(--forest); color: var(--forest); }

/* --------------------------------------------------------------------------
   16. Treatment Hero
   -------------------------------------------------------------------------- */
.gdt-treatment-hero {
  background: var(--ink); color: var(--paper);
  padding: 40px 0 0;
}

.gdt-crumbs {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--sage-light); margin-bottom: 32px;
}
.gdt-crumbs a { color: var(--sage-light); text-decoration: none; }
.gdt-crumbs a:hover { color: var(--paper); }
.gdt-crumb-sep { opacity: .5; }

.gdt-page-crumbs {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
}
.gdt-page-crumbs .wrap {
  display: flex; align-items: center; gap: 8px;
  padding-top: 14px; padding-bottom: 14px;
}
.gdt-page-crumbs a { color: var(--ink-2); text-decoration: none; }
.gdt-page-crumbs a:hover { color: var(--forest); }
.gdt-page-crumbs .gdt-crumb-sep { opacity: .45; }

.gdt-th-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.gdt-th-kicker {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 16px;
}
.gdt-th-title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05; color: var(--paper); margin-bottom: 20px;
}
.gdt-th-title em { font-style: italic; color: var(--sage-light); }
.gdt-th-lede {
  font-size: 18px; line-height: 1.6; color: var(--sage-light);
  max-width: 520px; margin-bottom: 32px;
}
.gdt-th-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.gdt-th-visual {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  background: var(--moss);
}
.gdt-th-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gdt-th-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--sage); font-style: italic;
  padding: 24px;
}

.gdt-facts-band {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0; border-top: 1px solid rgba(245,242,234,.1);
  margin-top: 48px;
}
.gdt-fact {
  padding: 28px 24px;
  border-right: 1px solid rgba(245,242,234,.1);
}
.gdt-fact:last-child { border-right: none; }
.gdt-fact-k {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 6px;
}
.gdt-fact-v {
  font-family: var(--serif); font-size: 22px; color: var(--paper); line-height: 1.2;
}
.gdt-fact-v em { font-style: italic; color: var(--sage-light); }

/* --------------------------------------------------------------------------
   17. Treatment Eligibility
   -------------------------------------------------------------------------- */
.gdt-eligibility { background: var(--paper); }

.gdt-criteria {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; margin-top: 0;
  border-top: 1px solid var(--line);
}
.gdt-crit {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: none; border-radius: 0;
}
.gdt-crit-mark {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 14px; flex-shrink: 0;
  background: none;
}
.gdt-crit--warn .gdt-crit-mark { border-color: var(--muted); color: var(--muted); }
.gdt-crit h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 4px; color: var(--ink); }
.gdt-crit p  { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* --------------------------------------------------------------------------
   18. Treatment Steps
   -------------------------------------------------------------------------- */
.gdt-treatment-steps { background: #141210; color: var(--paper); }
.gdt-treatment-steps .sec-num { border-color: var(--paper); color: rgba(250,248,244,.8); }
.gdt-treatment-steps .sec-kicker span:not(.bar) { color: var(--accent); }
.gdt-treatment-steps .bar { background: var(--accent); }
.gdt-treatment-steps .sec-title { color: var(--paper); }
.gdt-treatment-steps .sec-title em { color: var(--accent); }

.gdt-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 48px;
  border-top: 1px solid rgba(250,248,244,.2);
}
.gdt-step {
  padding: 28px 24px 32px 0;
  border-right: 1px solid rgba(250,248,244,.12);
  position: relative;
}
.gdt-step:last-child { border-right: none; }
.gdt-step:nth-child(n+2) { padding-left: 24px; }
.gdt-step-dot {
  position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
.gdt-step:nth-child(n+2) .gdt-step-dot { left: 24px; }
.gdt-step-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  color: var(--accent); margin-bottom: 24px; text-transform: none;
}
.gdt-step-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--paper); margin-bottom: 14px; line-height: 1.1; letter-spacing: -0.01em;
}
.gdt-step-title em { font-style: italic; color: var(--accent); }
.gdt-step-desc { font-size: 14px; color: rgba(250,248,244,.72); line-height: 1.55; margin-bottom: 16px; }
.gdt-step-meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(250,248,244,.5);
  display: block; border: none; border-radius: 0; padding: 0; margin: 0;
}

/* --------------------------------------------------------------------------
   19. Treatment Brands
   -------------------------------------------------------------------------- */
.gdt-brands { background: var(--paper); }

.gdt-brands-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: start; margin-top: 48px;
}
.gdt-brand-logos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gdt-brand-card {
  padding: 28px; border: 1px solid var(--line);
  border-radius: 0; background: var(--paper);
  transition: border-color .2s;
}
.gdt-brand-card:hover { border-color: var(--ink); }
.gdt-brand-name {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em;
}
.gdt-brand-origin {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.gdt-brand-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

.gdt-brands-aside { padding-top: 8px; }
.gdt-brands-body {
  font-size: 15px; line-height: 1.6; color: var(--ink-2);
  margin-bottom: 20px;
}
.gdt-brands-cert {
  font-family: var(--mono); font-size: 10px; letter-spacing: .02em;
  color: var(--muted); line-height: 1.6; padding: 0;
  border-left: none; background: none; border-radius: 0;
}

/* --------------------------------------------------------------------------
   20. Treatment Cases (before/after)
   -------------------------------------------------------------------------- */
.gdt-treatment-cases { background: var(--paper-2); }

.gdt-cases-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.gdt-cases-nav { display: flex; gap: 8px; }
.gdt-cases-nav button {
  width: 40px; height: 40px;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: 16px; border-radius: 0;
}
.gdt-cases-nav button:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.gdt-cases-nav button:disabled { opacity: .3; cursor: not-allowed; }

.gdt-cases-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gdt-cases-track::-webkit-scrollbar { display: none; }

.gdt-case-tile {
  scroll-snap-align: start;
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, rgba(0,0,0,.04) 16px 17px);
}
.gdt-case-tile.t1 { background-color: #d4c9b4; }
.gdt-case-tile.t2 { background-color: #c2b69a; }
.gdt-case-tile.t3 { background-color: #e0d7c0; }
.gdt-case-tile.t4 { background-color: #cbbfa8; }
.gdt-case-imgs {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.gdt-case-imgs img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gdt-case-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted); font-style: italic;
}
.gdt-case-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 10px; letter-spacing: .06em;
  color: var(--ink-2); text-transform: uppercase;
}
.gdt-case-caption {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  text-transform: none; color: var(--ink); letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   21. Treatment FAQ
   -------------------------------------------------------------------------- */
.gdt-treatment-faq { background: var(--paper); }

.gdt-tfaq-list { margin-top: 48px; border-top: 1px solid var(--ink); }

.gdt-tfaq-item { border-bottom: 1px solid var(--line); }

.gdt-tfaq-q {
  width: 100%; display: grid; grid-template-columns: 40px 1fr auto;
  gap: 16px; align-items: center;
  padding: 24px 0; background: none; border: none; cursor: pointer;
  text-align: left; color: var(--ink); transition: color .2s;
}
.gdt-tfaq-q:hover { color: var(--accent); }

.gdt-tfaq-n {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  flex-shrink: 0;
}
.gdt-tfaq-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: -0.005em;
}
.gdt-tfaq-plus {
  width: 22px; height: 22px; position: relative; flex-shrink: 0;
}
.gdt-tfaq-plus::before,
.gdt-tfaq-plus::after {
  content: ""; position: absolute; background: var(--ink);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform .3s;
}
.gdt-tfaq-plus::before { width: 12px; height: 1px; }
.gdt-tfaq-plus::after  { width: 1px; height: 12px; }
.gdt-tfaq-item.open .gdt-tfaq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.gdt-tfaq-a { overflow: hidden; }
.gdt-tfaq-a[hidden] { display: none; }
.gdt-tfaq-a-inner {
  padding: 0 0 28px 56px;
  font-size: 15px; line-height: 1.7; color: var(--ink-2); max-width: 56ch;
}

/* --------------------------------------------------------------------------
   22. Treatment CTA band
   -------------------------------------------------------------------------- */
.gdt-treatment-cta { background: var(--ink); color: var(--paper); }
.gdt-tcta-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; align-items: end;
}
.gdt-tcta-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block;
}
.gdt-tcta-title {
  font-family: var(--serif); font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.98; letter-spacing: -0.02em; color: var(--paper);
  font-weight: 400; max-width: 16ch;
}
.gdt-tcta-title em { font-style: italic; color: var(--accent); }
.gdt-tcta-actions {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 260px; flex-shrink: 0;
}
.gdt-tcta-actions .gdt-btn {
  padding: 16px 20px; justify-content: space-between; font-size: 14px;
}
.gdt-treatment-cta .gdt-btn--accent {
  background: var(--accent); color: var(--paper); border-color: var(--accent);
}
.gdt-treatment-cta .gdt-btn--accent:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.gdt-treatment-cta .gdt-btn--outline {
  background: transparent; color: var(--paper); border: 1px solid rgba(250,248,244,.3);
}
.gdt-treatment-cta .gdt-btn--outline:hover { border-color: var(--paper); }

/* --------------------------------------------------------------------------
   23. Treatment Guide (collapsible)
   -------------------------------------------------------------------------- */
.gdt-treatment-guide { background: var(--paper); }

.gdt-guide-box {
  margin-top: 48px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0; overflow: visible;
}
.gdt-guide-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 32px 0;
  background: transparent; cursor: pointer;
  list-style: none; user-select: none;
}
.gdt-guide-summary::-webkit-details-marker { display: none; }
.gdt-guide-label {
  display: flex; align-items: baseline; gap: 24px;
}
.gdt-guide-label-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--muted);
}
.gdt-guide-label-t {
  font-family: var(--serif); font-weight: 400; font-size: 32px;
  letter-spacing: -0.01em; line-height: 1.1; color: var(--ink);
  transition: color .2s;
}
.gdt-guide-summary:hover .gdt-guide-label-t { color: var(--accent); }
.gdt-guide-meta { display: flex; align-items: center; gap: 20px; }
.gdt-guide-time {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.gdt-guide-plus {
  width: 20px; height: 20px; position: relative; display: inline-block;
}
.gdt-guide-plus::before,
.gdt-guide-plus::after {
  content: ""; position: absolute; background: var(--ink);
  top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .3s;
}
.gdt-guide-plus::before { width: 14px; height: 1px; }
.gdt-guide-plus::after  { width: 1px; height: 14px; }
details[open] .gdt-guide-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.gdt-guide-body {
  padding: 8px 0 56px; max-width: 68ch; margin: 0 auto;
  font-size: 15px; line-height: 1.8; color: var(--ink);
}
.gdt-guide-body h3 {
  font-family: var(--serif); font-weight: 400; font-size: 28px;
  letter-spacing: -0.01em; line-height: 1.15; margin: 40px 0 16px; color: var(--ink);
}
.gdt-guide-body h3::first-letter { font-style: italic; color: var(--accent); }
.gdt-guide-body p  { margin-bottom: 16px; color: var(--ink-2); text-wrap: pretty; }
.gdt-guide-body ul, .gdt-guide-body ol { list-style: none; margin: 16px 0 24px; border-top: 1px solid var(--line); }
.gdt-guide-body li {
  padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--ink-2); position: relative;
}
.gdt-guide-body li::before {
  content: "§"; position: absolute; left: 0; top: 12px;
  font-family: var(--serif); font-style: italic; color: var(--accent);
}
.gdt-guide-body blockquote {
  font-family: var(--serif); font-size: 26px; line-height: 1.25;
  letter-spacing: -0.01em; color: var(--ink);
  border-left: 1px solid var(--accent); padding: 12px 0 12px 24px;
  margin: 32px 0; font-style: italic;
}
.gdt-guide-outro {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--ink);
}

/* --------------------------------------------------------------------------
   24. Treatment Related
   -------------------------------------------------------------------------- */
.gdt-treatment-related { background: var(--paper); }

.gdt-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 0;
  border-top: 1px solid var(--ink);
}
.gdt-related-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  border-radius: 0; background: none;
  text-decoration: none; color: var(--ink);
  transition: transform .2s;
}
.gdt-related-card:last-child { border-right: none; padding-right: 0; }
.gdt-related-card:nth-child(n+2) { padding-left: 24px; }
.gdt-related-card:hover { transform: translateY(-2px); }
.gdt-related-n {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.gdt-related-name {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--ink); line-height: 1.1; letter-spacing: -0.01em;
}
.gdt-related-name em { font-style: italic; color: var(--accent); }
.gdt-related-desc {
  font-size: 13px; color: var(--ink-2); line-height: 1.5; flex: 1;
}
.gdt-related-cta {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent);
}

/* --------------------------------------------------------------------------
   25. Treatment responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .gdt-th-grid { grid-template-columns: 1fr; }
  .gdt-th-visual { max-height: 360px; }
  .gdt-brands-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gdt-facts-band { grid-template-columns: 1fr 1fr; }
  .gdt-tcta-inner { flex-direction: column; align-items: flex-start; }
  .gdt-guide-body { padding: 24px 20px; }
  .gdt-criteria { grid-template-columns: 1fr; }
  .gdt-timeline { grid-template-columns: 1fr; }
  .gdt-brand-logos { grid-template-columns: 1fr; }
  .gdt-step { border-right: none !important; border-bottom: 1px solid rgba(250,248,244,.12); padding: 28px 0 !important; }
  .gdt-step-dot { left: 0 !important; }
  .gdt-cases-track { grid-auto-columns: 80%; }
  .gdt-related-grid { grid-template-columns: 1fr; }
  .gdt-related-card { border-right: none !important; border-bottom: 1px solid var(--line); padding: 24px 0 !important; }
  .gdt-tcta-inner { grid-template-columns: 1fr; }
  .gdt-guide-label { gap: 16px; }
  .gdt-guide-label-t { font-size: 22px; }
  .gdt-guide-time { display: none; }
}

/* --------------------------------------------------------------------------
   26. Single Doctor page
   -------------------------------------------------------------------------- */
.gdt-dr-hero {
  background: var(--ink); color: var(--paper);
  padding: 40px 0 80px;
}

.gdt-dr-hero-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 64px; align-items: start; margin-top: 32px;
}

.gdt-dr-hero-photo {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/4;
  background: var(--moss);
}
.gdt-dr-hero-photo::before {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 72px; color: var(--sage);
  z-index: 0;
}
.gdt-dr-hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; position: relative; z-index: 1;
}

.gdt-dr-hero-role {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 12px;
}
.gdt-dr-hero-role .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
}
.gdt-dr-hero-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; color: var(--paper); margin-bottom: 12px;
}
.gdt-dr-hero-specialty {
  font-size: 16px; color: var(--sage-light);
  margin-bottom: 28px; line-height: 1.5;
}

.gdt-dr-stats {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.gdt-dr-stat {
  display: flex; align-items: center; gap: 10px;
  color: var(--sage-light); font-size: 14px;
}
.gdt-dr-stat svg { color: var(--sage); flex-shrink: 0; }
.gdt-dr-stat-v { font-weight: 600; color: var(--paper); }
.gdt-dr-stat-k { color: var(--sage-light); }

.gdt-dr-cred-row {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px; border: 1px solid rgba(245,242,234,.1);
  border-radius: var(--radius); margin-bottom: 8px;
}
.gdt-dr-cred {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--sage-light);
}
.gdt-dr-cred svg { color: var(--sage); flex-shrink: 0; }

/* Body grid */
.gdt-dr-body-grid {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 64px; align-items: start;
}
.gdt-dr-section-h {
  font-family: var(--serif); font-size: 28px;
  color: var(--forest); margin-bottom: 20px;
}
.gdt-dr-prose {
  font-size: 16px; line-height: 1.8; color: var(--muted);
}
.gdt-dr-prose p { margin-bottom: 16px; }
.gdt-dr-prose h2, .gdt-dr-prose h3 {
  font-family: var(--serif); color: var(--forest);
  margin: 24px 0 10px;
}

.gdt-dr-aside-box {
  padding: 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper-2);
  margin-bottom: 16px;
}
.gdt-dr-aside-h {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: 14px;
}
.gdt-dr-aside-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.gdt-dr-aside-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink);
}
.gdt-dr-aside-list svg { color: var(--forest); flex-shrink: 0; }

@media (max-width: 1100px) {
  .gdt-dr-hero-grid { grid-template-columns: 260px 1fr; gap: 40px; }
  .gdt-dr-body-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gdt-dr-hero-grid { grid-template-columns: 1fr; }
  .gdt-dr-hero-photo { max-height: 320px; }
}

/* ==========================================================================
   Page / Archive / Single — Editorial templates
   ========================================================================== */

/* ── Shared page hero ─────────────────────────────────────────────────── */
.gdt-page-hero {
  background: var(--forest);
  padding: 56px 0 48px;
  color: #fff;
}
.gdt-single-hero {
  padding: 40px 0 36px;
}
.gdt-page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--paper);
  max-width: 820px;
  margin-top: 14px;
}
.gdt-page-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--sage-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 12px;
}

/* Breadcrumbs */
.gdt-crumbs {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--sage-light); margin-bottom: 4px;
}
.gdt-crumbs a { color: var(--sage-light); text-decoration: none; }
.gdt-crumbs a:hover { color: #fff; }
.gdt-crumb-sep { opacity: .5; }

/* ── Prose / page body ────────────────────────────────────────────────── */
.gdt-page-body {
  padding: 72px 0 96px;
  background: var(--paper);
}

.gdt-prose {
  max-width: 740px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
}
.gdt-prose h1,
.gdt-prose h2,
.gdt-prose h3,
.gdt-prose h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--forest);
  margin: 2em 0 .6em;
}
.gdt-prose h2 { font-size: 28px; }
.gdt-prose h3 { font-size: 22px; }
.gdt-prose h4 { font-size: 18px; }
.gdt-prose p  { margin-bottom: 1.25em; }
.gdt-prose ul,
.gdt-prose ol { padding-left: 1.4em; margin-bottom: 1.25em; }
.gdt-prose li { margin-bottom: .5em; }
.gdt-prose a  { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.gdt-prose a:hover { color: var(--forest-2); }
.gdt-prose a.gdt-btn { text-decoration: none; }
.gdt-prose a.gdt-btn--primary { color: var(--paper); }
.gdt-prose a.gdt-btn--primary:hover { color: var(--paper); }
.gdt-prose a.gdt-btn--wa { color: #128c47; }
.gdt-prose a.gdt-btn--wa:hover { color: #fff; }
.gdt-prose strong { font-weight: 600; }
.gdt-prose blockquote {
  border-left: 3px solid var(--forest);
  padding: 12px 24px;
  margin: 2em 0;
  background: var(--paper-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
}
.gdt-prose hr {
  border: none; border-top: 1px solid var(--line);
  margin: 2.5em 0;
}
.gdt-prose table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin-bottom: 1.5em;
}
.gdt-prose th {
  background: var(--forest); color: #fff;
  padding: 10px 14px; text-align: left;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
}
.gdt-prose td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.gdt-prose tr:nth-child(even) td { background: var(--paper-2); }

/* ── Treatment Archive ────────────────────────────────────────────────── */
.gdt-tx-archive-hero {
  background: var(--forest);
  padding: 56px 0 64px;
  color: #fff;
}
.gdt-tx-archive-hero .sec-kicker { color: var(--sage-light); }
.gdt-tx-archive-hero .sec-kicker .bar { background: var(--sage); }
.gdt-tx-archive-title {
  color: var(--paper) !important;
  margin-top: 10px;
}
.gdt-tx-archive-title em { color: var(--sage-light); }
.gdt-tx-archive-lede {
  font-size: 17px; color: var(--sage-light);
  max-width: 560px; margin-top: 16px; line-height: 1.65;
}
.gdt-tx-archive-body {
  background: var(--paper);
  padding: 64px 0 96px;
}

/* Treatment card grid — shared between treatments-hub block and archive page */
.gdt-tx-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  border-top: 1px solid var(--ink); padding-top: 32px;
}
.gdt-tx-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  min-height: 300px; transition: all .25s; position: relative;
  text-decoration: none; color: inherit;
}
.gdt-tx-card:hover { border-color: var(--forest); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(12,26,20,.06); }
.gdt-tx-head { display: flex; justify-content: space-between; align-items: flex-start; }
.gdt-tx-ico {
  width: 44px; height: 44px; border: 1px solid var(--forest); border-radius: 50%;
  color: var(--forest); display: flex; align-items: center; justify-content: center;
}
.gdt-tx-n { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.gdt-tx-t { font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.01em; line-height: 1.15; }
.gdt-tx-d { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.gdt-tx-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
}
.gdt-tx-price { font-family: var(--serif); font-size: 22px; letter-spacing: -.01em; }
.gdt-tx-price .from { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.gdt-tx-link { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--forest); display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 1100px) { .gdt-tx-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gdt-tx-grid { grid-template-columns: 1fr; } }

/* ── Blog Archive ─────────────────────────────────────────────────────── */
.gdt-archive-body {
  padding: 72px 0 96px;
  background: var(--paper);
}

.gdt-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.gdt-post-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .18s, transform .18s;
}
.gdt-post-card:hover {
  box-shadow: 0 8px 32px rgba(12,26,20,.10);
  transform: translateY(-2px);
}
.gdt-post-card__thumb {
  display: block; overflow: hidden;
  aspect-ratio: 16/9;
}
.gdt-post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gdt-post-card:hover .gdt-post-card__thumb img {
  transform: scale(1.04);
}
.gdt-post-card__body {
  display: flex; flex-direction: column; flex: 1;
  padding: 24px;
}
.gdt-post-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); margin-bottom: 10px;
}
.gdt-post-card__cat {
  background: var(--forest); color: #fff;
  padding: 2px 8px; border-radius: 2px;
  font-size: 10px; letter-spacing: .08em;
}
.gdt-post-card__title {
  font-family: var(--serif); font-size: 20px;
  font-weight: 400; line-height: 1.25;
  margin-bottom: 10px;
}
.gdt-post-card__title a {
  color: var(--ink); text-decoration: none;
}
.gdt-post-card__title a:hover { color: var(--forest); }
.gdt-post-card__excerpt {
  font-size: 14px; line-height: 1.65;
  color: var(--muted); flex: 1; margin-bottom: 16px;
}
.gdt-post-card__cta {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--forest); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.gdt-post-card__cta:hover { color: var(--forest-2); }

/* Pagination */
.gdt-pagination {
  display: flex; justify-content: center;
}
.gdt-pagination .nav-links {
  display: flex; align-items: center; gap: 4px;
}
.gdt-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 8px;
  font-family: var(--mono); font-size: 13px;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: background .15s, border-color .15s;
}
.gdt-pagination .page-numbers:hover,
.gdt-pagination .page-numbers.current {
  background: var(--forest); color: #fff; border-color: var(--forest);
}
.gdt-pagination .page-numbers.dots {
  border-color: transparent; background: none;
}

/* Empty state */
.gdt-empty-state {
  text-align: center; padding: 80px 0;
  color: var(--muted);
}
.gdt-empty-state p { font-size: 18px; margin-bottom: 24px; }

/* ── Single Post ──────────────────────────────────────────────────────── */
.gdt-single-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--sage-light); margin-top: 16px;
}
.gdt-single-intro {
  font-size: 20px; line-height: 1.6;
  color: var(--sage-light); max-width: 680px;
  margin-top: 20px;
}
.gdt-single-byline {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
}
.gdt-single-avatar {
  width: 36px; height: 36px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
}
.gdt-single-author {
  font-size: 14px; color: var(--sage-light);
}
.gdt-single-read {
  font-family: var(--mono); font-size: 11px;
  color: var(--sage-light); letter-spacing: .07em;
}

.gdt-single-cover {
  background: var(--paper-2);
  padding: 0;
}
.gdt-single-cover__img {
  display: block; width: 100%;
  max-height: 520px; object-fit: cover;
}

/* Single post — two-column layout with sidebar */
.gdt-single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
.gdt-single-prose { min-width: 0; }

/* Meta bar */
.gdt-single-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--sage-light); margin-top: 10px;
}
.gdt-single-sep { opacity: .4; }

/* Sidebar */
.gdt-single-sidebar { position: sticky; top: 100px; }
.gdt-sidebar-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  margin-bottom: 14px;
}
.gdt-sidebar-h {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--forest); margin-bottom: 12px;
}
.gdt-sidebar-doctor__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.gdt-sidebar-doctor__link {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
}
.gdt-sidebar-doctor__img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--line);
}
.gdt-sidebar-doctor__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gdt-sidebar-doctor__name {
  font-family: var(--serif); font-size: 17px;
  color: var(--ink); line-height: 1.2;
}
.gdt-sidebar-doctor__role {
  font-size: 12px; color: var(--muted);
}
.gdt-sidebar-doctor__link:hover .gdt-sidebar-doctor__name { color: var(--forest); }
.gdt-sidebar-treatments {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.gdt-sidebar-treatments li { border-bottom: 1px solid var(--line); }
.gdt-sidebar-treatments li:last-child { border-bottom: none; }
.gdt-sidebar-treatments a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  font-size: 13px; color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.gdt-sidebar-treatments a:hover { color: var(--forest); }
.gdt-sidebar-n {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); flex-shrink: 0; width: 20px;
}

.gdt-sidebar-cta {
  text-align: center; background: var(--forest);
  border-color: var(--forest); color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.gdt-sidebar-cta svg { color: var(--sage-light); margin-bottom: 8px; }
.gdt-sidebar-cta p {
  font-size: 14px; color: var(--sage-light);
  margin-bottom: 14px; line-height: 1.5;
}
.gdt-sidebar-cta .gdt-btn { width: 100%; justify-content: center; }

/* Inline CTA — injected every 3 paragraphs */
.gdt-inline-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #e8f0ec;
  border: 1px solid #c3d8cb;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 36px 0;
  font-family: var(--sans);
}
.gdt-inline-cta__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  border: 1px solid #c3d8cb;
}
.gdt-inline-cta__copy {
  flex: 1; min-width: 0;
}
.gdt-inline-cta__copy strong {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--ink); margin-bottom: 4px;
}
.gdt-inline-cta__copy p {
  font-size: 14px; line-height: 1.55;
  color: var(--muted); margin: 0;
}
.gdt-inline-cta__actions {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}

/* WhatsApp button variant */
.gdt-btn--wa {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px;
  border: 1px solid #25d366;
  border-radius: var(--radius);
  color: #128c47;
  font-family: var(--mono); font-size: 12px;
  font-weight: 600; letter-spacing: .04em;
  text-decoration: none; white-space: nowrap;
  transition: background .15s, color .15s;
}
.gdt-btn--wa:hover {
  background: #25d366; color: #fff;
}

@media (max-width: 768px) {
  .gdt-inline-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .gdt-inline-cta__actions { flex-wrap: wrap; }
}

/* Post navigation */
.gdt-post-nav {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.gdt-post-nav .wrap {
  display: flex; justify-content: space-between; gap: 24px;
}
.gdt-post-nav__link {
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; max-width: 380px;
}
.gdt-post-nav__link--next { text-align: right; margin-left: auto; }
.gdt-post-nav__dir {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted);
}
.gdt-post-nav__title {
  font-family: var(--serif); font-size: 18px;
  color: var(--ink); line-height: 1.3;
}
.gdt-post-nav__link:hover .gdt-post-nav__title { color: var(--forest); }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gdt-post-grid { grid-template-columns: repeat(2, 1fr); }
  .gdt-single-layout { grid-template-columns: 1fr; }
  .gdt-single-sidebar { position: static; }
}
@media (max-width: 640px) {
  .gdt-page-hero { padding: 56px 0 48px; }
  .gdt-post-grid { grid-template-columns: 1fr; }
  .gdt-post-nav .wrap { flex-direction: column; }
  .gdt-post-nav__link--next { text-align: left; margin-left: 0; }
}
