/* ============================================================
   GLO — District Dentistry cosmetic program subpath page
   Editorial theme (matches gloclt.com aesthetic)
   ============================================================ */

:root {
  --ink: #0a0a0a;
  --ink-80: #1a1a1a;
  --ink-60: #4a4a4a;
  --ink-40: #7a7a7a;
  --ink-20: #b8b8b8;
  --paper: #f8f5f0;
  --paper-warm: #f2ede4;
  --gold: #b8935a;
  --gold-soft: #d4b78a;
  --rose: #c8a090;

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;  --s4: 1rem;
  --s5: 1.5rem;   --s6: 2rem;     --s7: 3rem;     --s8: 4rem;
  --s9: 6rem;     --s10: 8rem;

  --wrap: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.serif { font-family: var(--f-display); font-weight: 400; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  margin-bottom: var(--s5);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}
.kicker .n { color: var(--gold); font-weight: 600; }

em { font-style: italic; font-family: var(--f-display); font-weight: 400; }

/* ============================================================
   Site crumb — small return-to-District bar at top
   ============================================================ */
.site-crumb {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s3) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: var(--s4);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.site-crumb__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: var(--paper);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.site-crumb__link:hover { opacity: 1; }
.site-crumb__sep { opacity: 0.4; }
.site-crumb__glo {
  color: var(--gold-soft);
  font-weight: 500;
  margin-left: auto;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--paper);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(10,10,10,0.06);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -8%;
  width: clamp(280px, 40vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 90, 0.28);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 22%; right: 4%;
  width: clamp(160px, 22vw, 280px);
  aspect-ratio: 0.55;
  border-radius: 50% / 60%;
  background: linear-gradient(180deg, rgba(184,147,90,0.14), rgba(184,147,90,0.05));
  pointer-events: none;
}
.hero__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}
.hero__h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s6);
  max-width: 900px;
}
.hero__h em { font-style: italic; color: var(--gold); }
.hero__accent { font-style: italic; }
.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-60);
  max-width: 580px;
  margin-bottom: var(--s7);
}
.hero__ctas {
  display: flex;
  gap: var(--s4);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--s7);
}
.trust-line {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-40);
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.trust-line .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 14px 24px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
}
.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover {
  background: var(--ink-80);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,10,10,0.18);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10,10,10,0.2);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.shead {
  max-width: 800px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.shead h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 0;
}
.shead h2 em { color: var(--gold); }
.lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-60);
  margin-top: var(--s5);
  max-width: 640px;
}
.lede strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Pillars (approach)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s6);
}
.pillar {
  padding: var(--s6) var(--s5);
  border-top: 1px solid rgba(10,10,10,0.12);
  position: relative;
}
.pn {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: var(--s4);
  line-height: 1;
}
.pt {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: var(--s3);
  line-height: 1.25;
  font-weight: 500;
}
.pd {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-60);
}

/* ============================================================
   Pricing tiers
   ============================================================ */
.pricing { background: var(--paper-warm); }
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s5);
  margin-bottom: var(--s7);
}
.tier {
  background: var(--paper);
  padding: var(--s6);
  border: 1px solid rgba(10,10,10,0.1);
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,10,10,0.08); }
.tier--pop {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tier--pop .tnum, .tier--pop .tdesc { color: rgba(248,245,240,0.7); }
.tier--pop .tname { color: var(--paper); }
.tier--pop .num { color: var(--gold-soft); }
.pop-flag {
  position: absolute;
  top: -12px;
  right: var(--s5);
  background: var(--gold);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tnum {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-60);
  margin-bottom: var(--s4);
}
.tname {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  margin-bottom: var(--s4);
}
.tprice {
  display: flex;
  align-items: baseline;
  gap: var(--s2);
  margin-bottom: var(--s5);
}
.tprice .num {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.tprice .per {
  font-size: 13px;
  color: var(--ink-60);
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tdesc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-60);
}
.pricing-cta {
  text-align: center;
  margin-top: var(--s6);
}

/* ============================================================
   Story
   ============================================================ */
.story { background: var(--ink); color: var(--paper); border-bottom: none; }
.story .kicker { color: rgba(248,245,240,0.6); }
.story .kicker .n { color: var(--gold-soft); }
.story__inner {
  max-width: 720px;
}
.story h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: var(--s6);
}
.story h2 em { color: var(--gold-soft); }
.story p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(248,245,240,0.85);
  margin-bottom: var(--s5);
}
.story__cta { margin-top: var(--s6); }
.story .btn--dark {
  background: var(--paper);
  color: var(--ink);
}
.story .btn--dark:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

/* ============================================================
   Footer
   ============================================================ */
.foot {
  background: #050505;
  color: var(--paper);
  padding: var(--s9) 0 var(--s6);
}
.foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s6);
  margin-bottom: var(--s7);
}
.foot__brand {
  font-size: 42px;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: var(--s3);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.foot__brand .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.foot__tag {
  font-size: 13px;
  color: rgba(248,245,240,0.6);
}
.foot__lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-soft);
  margin-bottom: var(--s3);
}
.foot p { font-size: 14px; line-height: 1.7; color: rgba(248,245,240,0.75); }
.foot a { color: rgba(248,245,240,0.9); border-bottom: 1px solid rgba(248,245,240,0.2); }
.foot a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.foot__bottom {
  padding-top: var(--s5);
  border-top: 1px solid rgba(248,245,240,0.1);
}
.foot__bottom p {
  font-size: 12px;
  color: rgba(248,245,240,0.5);
  margin-bottom: var(--s2);
}
.foot__bottom .legal { color: rgba(248,245,240,0.7); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 640px) {
  .hero { padding: var(--s7) 0 var(--s6); }
  .hero__h { font-size: clamp(2.25rem, 12vw, 4rem); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .site-crumb__glo { margin-left: 0; }
}
