/* ============================================================
   Stellar Orthodontics — V3 Bright Family
   Design system: cream + butter + mint + coral + navy + ink
   Typography: Bricolage Grotesque (display) + Newsreader (italic)
                + Geist (body/UI)
   ============================================================ */

:root {
  /* Colors */
  --ink:      #0F2A3A;
  --navy:     #1B3B52;
  --cream:    #FFF8EC;
  --butter:   #FFE48A;
  --yellow:   #FFD54A;
  --mint:     #B8DDD0;
  --mint-dk:  #5FA290;
  --coral:    #F4A28C;
  --coral-dk: #B85F45;
  --butter-dk:#B8851F;
  --rule:     rgba(15, 42, 58, 0.12);
  --muted:    rgba(15, 42, 58, 0.85);
  --cream-72: rgba(255, 248, 236, 0.72);
  --cream-78: rgba(255, 248, 236, 0.78);
  --cream-14: rgba(255, 248, 236, 0.14);
  --cream-10: rgba(255, 248, 236, 0.10);
  --cream-05: rgba(255, 248, 236, 0.05);

  /* Fonts */
  --font-display: "Bricolage Grotesque", "Geist", sans-serif;
  --font-serif:   "Newsreader", Georgia, serif;
  --font-sans:    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Radii */
  --radius-pill:    999px;
  --radius-card-lg: 32px;
  --radius-card:    24px;
  --radius-card-sm: 18px;
  --radius-img:     20px;
  --radius-icon:    14px;

  /* Shadows */
  --shadow-cta:    0 10px 24px rgba(15, 42, 58, 0.18);
  --shadow-nav:    0 1px 0 rgba(15, 42, 58, 0.05), 0 4px 16px rgba(15, 42, 58, 0.06);
  --shadow-float:  0 10px 28px rgba(15, 42, 58, 0.14);
  --shadow-card:   0 14px 40px -8px rgba(15, 42, 58, 0.22);
  --shadow-circle: 0 20px 50px -10px rgba(15, 42, 58, 0.25);
  --shadow-soft:   0 8px 24px rgba(15, 42, 58, 0.08);

  /* Layout */
  --max: 1280px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); letter-spacing: -0.035em; line-height: 0.98; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.5rem); letter-spacing: -0.03em; line-height: 0.98; }
h3 { font-size: 1.65rem; letter-spacing: -0.015em; line-height: 1.1; }
h4 { font-size: 1.1rem; letter-spacing: -0.005em; }

/* Italic accent words inside headings — Newsreader italic */
h1 em, h2 em, h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint-dk);
}

p { margin: 0 0 1rem; line-height: 1.6; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.86rem;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}
.topbar a { color: var(--cream); font-weight: 600; }
.topbar a:hover { color: var(--butter); }
.topbar-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* Offset anchor targets so sticky header doesn't cover them */
[id] { scroll-margin-top: 96px; }

/* ---------- Site header / nav (V3 pill nav) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid rgba(15, 42, 58, 0.04);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 1.5rem;
  padding: 18px 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.9rem; }
.brand-logo {
  width: 168px;
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
}

/* The pill nav: white rounded container, link pills inside */
.nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 10px;
  box-shadow: var(--shadow-nav);
}
.nav a {
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav a.active {
  background: var(--butter);
  color: var(--ink);
}

/* "Free Consultation" CTA at the end of nav stays a solid ink pill */
.nav a.button,
.nav .button,
a.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.button:hover, button.button:hover {
  transform: translateY(-1px);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(15, 42, 58, 0.22);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(15, 42, 58, 0.35);
  box-shadow: none;
}
.button.secondary:hover {
  background: rgba(15, 42, 58, 0.06);
  border-color: rgba(15, 42, 58, 0.55);
  transform: translateY(-1px);
}

/* Inside the .nav pill, the button shouldn't get a giant shadow — keep it tight */
.nav a.button {
  padding: 10px 18px;
  box-shadow: 0 4px 12px rgba(15, 42, 58, 0.16);
}

/* ---------- Nav dropdowns (mini-card panels) ---------- */
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-group > .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav-group > .nav-trigger:hover,
.nav-group:hover > .nav-trigger,
.nav-group:focus-within > .nav-trigger {
  color: var(--ink);
}
.nav-group > .nav-trigger.active {
  background: var(--butter);
  color: var(--ink);
}
.nav-group .caret {
  display: inline-block;
  font-size: 0.7rem;
  line-height: 1;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.nav-group:hover .caret,
.nav-group:focus-within .caret {
  transform: translateY(2px);
  opacity: 1;
}

/* The dropdown panel — hidden by default, appears on hover/focus of parent */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.96);
  transform-origin: top center;
  min-width: 540px;
  max-width: 720px;
  background: #fff;
  border-radius: 26px;
  padding: 18px;
  box-shadow:
    0 1px 0 rgba(15, 42, 58, 0.05),
    0 14px 40px -10px rgba(15, 42, 58, 0.22);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.34, 1.5, 0.64, 1),
    visibility 0s 0.22s;
  z-index: 5;
}
.nav-dropdown.is-wide { grid-template-columns: repeat(2, minmax(220px, 1fr)); min-width: 580px; }
.nav-dropdown.is-three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); min-width: 680px; max-width: 820px; }

/* Tail pointer connecting dropdown to nav item */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 3px;
  box-shadow: -1px -1px 2px rgba(15, 42, 58, 0.04);
}
/* Invisible bridge so hover doesn't break when moving cursor from trigger to dropdown */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.34, 1.5, 0.64, 1);
}

/* Mini-card inside dropdown */
.dd-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-card-sm);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
  min-height: 78px;
}
.dd-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(15, 42, 58, 0.18);
}
.dd-card strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.dd-card .dd-sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.72;
  line-height: 1.35;
}
.dd-card .dd-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ink);
}
.dd-card.dd-mint   { background: var(--mint); }
.dd-card.dd-butter { background: var(--butter); }
.dd-card.dd-coral  { background: var(--coral); }
.dd-card.dd-cream  { background: var(--cream); border: 1px solid var(--rule); }

/* External link indicator */
.dd-card[target="_blank"] .dd-icon::after { content: ""; }
.dd-card .dd-ext {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  margin-top: 0.4rem;
  align-self: flex-start;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 110px;
  background: var(--cream);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  top: -160px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: var(--mint);
  opacity: 0.45;
}
.hero::after {
  bottom: -150px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: var(--butter);
  opacity: 0.55;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}
.hero h1 {
  margin: 26px 0 0;
}
.hero p,
.page-hero p,
.section-intro {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
}
.hero p { margin: 28px 0 32px; }
.hero-actions, .button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  align-items: center;
}
.hero-points, .mini-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.hero-points li, .mini-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink);
  line-height: 1.55;
}
.hero-points li::before, .mini-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  margin-top: 0.5rem;
  background: var(--mint-dk);
}

/* Detail list items: when a <li> starts with a bold label (e.g.
   "Address:", "Phase 1:", "From I-95:"), stack the label above the
   description instead of cramming them inline. Pure CSS fix — no
   markup change. */
.mini-list li:has(> strong:first-child) {
  display: block;
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}
.mini-list li:has(> strong:first-child)::before {
  position: absolute;
  left: 0;
  top: 0.6rem;
  margin-top: 0;
}
.mini-list li > strong:first-child {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Hero photo collage column */
.hero-card {
  position: relative;
}
.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-card-lg);
}
.hero-visual-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}
.hero-stat {
  background: #fff;
  border-radius: var(--radius-card-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 42, 58, 0.06);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.hero-stat .metric-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted);
}
.metric-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Eyebrow / section label pill ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.81rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px var(--rule);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Section kicker (smaller label, no pill) */
.section-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint-dk);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

/* ---------- Sections ---------- */
main section, .page-hero { padding: 96px 0; }
main section { background: var(--cream); }
.page-hero {
  padding: 40px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.42;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--butter);
  opacity: 0.45;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 1rem; }
.page-hero p { margin-top: 1.6rem; }

.section-head { max-width: 820px; margin-bottom: 2.6rem; }
.section-head h2 { margin: 0.6rem 0 0.9rem; }
.section-head .section-intro { margin: 0; max-width: 720px; }

.split-band {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.split-band::before,
.split-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.split-band::before {
  top: -180px;
  left: -150px;
  width: 460px;
  height: 460px;
  background: var(--mint-dk);
  opacity: 0.18;
}
.split-band::after {
  bottom: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: var(--yellow);
  opacity: 0.12;
}
.split-band .container { position: relative; z-index: 1; }
.split-band h2,
.split-band h3 { color: var(--cream); }
.split-band .section-intro,
.split-band p { color: var(--cream-78); }
.split-band .section-kicker { color: var(--butter); }
.split-band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--butter);
  box-shadow: none;
}
.split-band .eyebrow::before { background: var(--butter); }
.split-band h1 em,
.split-band h2 em,
.split-band h3 em { color: var(--butter); }

.split-band a.link { color: var(--butter); }
.split-band .mini-list li { color: var(--cream-78); }
.split-band .mini-list li::before { background: var(--butter); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span { margin: 0 0.5rem; }

/* ---------- Grids ---------- */
.three-up, .two-up, .hero-visual-grid, .stats-grid,
.services-grid, .locations-grid, .card-grid, .faq-grid,
.process-grid, .contact-grid, .check-grid, .team-grid,
.spotlight-grid {
  display: grid;
  gap: 22px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up, .contact-grid, .spotlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.spotlight-grid { grid-template-columns: 1.1fr 0.9fr; }
.services-grid, .locations-grid, .card-grid, .faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.locations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }

/* ---------- Home smile gallery preview ---------- */
.home-smile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-smile-tile {
  position: relative;
  display: block;
  border-radius: var(--radius-img);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-smile-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -10px rgba(15, 42, 58, 0.18);
}
.home-smile-tile img {
  display: block;
  width: 100%;
  height: auto;
}
.home-smile-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px -8px rgba(15, 42, 58, 0.25);
}
@media (max-width: 880px) {
  .home-smile-grid { grid-template-columns: 1fr; }
}

/* ---------- Cards (generic) ---------- */
.card, .info-panel, .contact-panel, .faq-item, .location-card, .stat, .process-step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 28px;
  position: relative;
}
.card h3, .info-panel h3, .contact-panel h3,
.faq-item h3, .location-card h3, .process-step h3 {
  margin: 0 0 0.7rem;
  font-size: 1.55rem;
}
.card p, .info-panel p, .contact-panel p,
.faq-item p, .location-card p, .process-step p {
  color: var(--ink);
  opacity: 0.82;
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 0.6rem;
}
.card p:last-child, .faq-item p:last-child, .location-card p:last-child { margin-bottom: 0; }

.split-band .card,
.split-band .info-panel,
.split-band .process-step {
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.18);
  color: var(--cream);
}
.split-band .card p,
.split-band .info-panel p,
.split-band .process-step p {
  color: var(--cream-78);
  opacity: 1;
}

/* White cards (.faq-item, .location-card, .contact-panel, .stat) keep
   their white background even inside a .split-band — but the parent's
   color: cream cascade would make their text invisible. Force ink text. */
.split-band .faq-item,
.split-band .faq-item h3,
.split-band .location-card,
.split-band .location-card h3,
.split-band .contact-panel,
.split-band .contact-panel h3,
.split-band .stat,
.split-band .stat strong {
  color: var(--ink);
}

/* Stat cards: stack label above description with breathing room */
.stat strong {
  display: block;
  margin-bottom: 0.5rem;
}
.stat span {
  display: block;
}

/* Process-step number style */
.process-step h3 {
  font-size: 1.3rem;
}

/* ---------- Service cards (home + services hub) ---------- */
.services-grid .service-card {
  background: var(--mint);
  border: none;
  border-radius: var(--radius-card-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.services-grid .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -10px rgba(15, 42, 58, 0.18);
}
/* Cycle card backgrounds: mint / butter / coral, repeat */
.services-grid .service-card:nth-child(3n+1) { background: var(--mint); }
.services-grid .service-card:nth-child(3n+2) {
  background: var(--butter);
  transform: translateY(-12px);
}
.services-grid .service-card:nth-child(3n+2):hover {
  transform: translateY(-15px);
}
.services-grid .service-card:nth-child(3n+3) { background: var(--coral); }

.services-grid .service-card .card-photo {
  margin: 0 0 20px;
  height: 220px;
  border-radius: var(--radius-img);
  overflow: hidden;
  border: 2px solid #fff;
}
.services-grid .service-card .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-grid .service-card .card-icon {
  margin: 0 0 20px;
  height: 160px;
  border-radius: var(--radius-img);
  background: #fff;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.services-grid .service-card .card-icon svg {
  width: 84px;
  height: 84px;
  color: var(--ink);
  opacity: 0.92;
}
.services-grid .service-card .card-icon img {
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
.services-grid .service-card .card-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-img) - 8px);
  border: 1.5px dashed rgba(15, 42, 58, 0.12);
  pointer-events: none;
}
.services-grid .service-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.55rem;
  color: var(--ink);
}
.services-grid .service-card p {
  color: var(--ink);
  opacity: 0.78;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.2rem;
}
.services-grid .service-card a.link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
}
.services-grid .service-card a.link::after { content: "→"; font-weight: 700; }

/* Location cards stay white */
.location-card a.link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  color: var(--mint-dk);
  font-weight: 700;
}
.location-card a.link::after { content: "→"; }

/* ---------- Pills, rows ---------- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
}
a.pill:hover { background: var(--butter); border-color: var(--butter); }

/* Spotlight panels (used in services hub etc.) */
.spotlight-panel {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card-lg);
  padding: 2rem;
}
.spotlight-panel h3 { margin: 0 0 0.7rem; font-size: 1.5rem; }
.spotlight-panel p { color: var(--muted); line-height: 1.6; }

/* ---------- Trust strip ---------- */
.trust-strip {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 14px 16px;
  border-radius: var(--radius-card-sm);
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(15, 42, 58, 0.03);
}
.trust-strip strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.trust-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* ---------- Photos ---------- */
.media-frame,
.inline-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card-lg);
  border: 2px solid #fff;
  box-shadow: var(--shadow-card);
  background: var(--cream);
}
.media-frame img,
.inline-photo img,
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-frame.tall, .inline-photo { min-height: 320px; }
.media-frame.medium { min-height: 280px; }
.inline-photo.compact { min-height: 200px; }
.mb-1 { margin-bottom: 1rem; }

.section-photo-break {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.section-photo-break .inline-photo { min-height: 240px; }

/* ---------- Team grid (portrait cards) ---------- */
.portrait-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--rule);
}
.portrait-card img { aspect-ratio: 4 / 5; border: none; object-position: top center; }
.portrait-copy { padding: 1.2rem; }
.portrait-copy h3 { margin: 0 0 0.4rem; font-size: 1.25rem; }
.portrait-copy p { margin: 0 0 0.5rem; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }

/* ---------- Doctor feature rows (stacked, alternating sides) ---------- */
.doctor-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}
.doctor-feature:last-child { margin-bottom: 0; }
.doctor-feature:nth-child(even) .doctor-feature-photo { order: 2; }
.doctor-feature-photo {
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4 / 5;
  max-width: 440px;
  width: 100%;
}
.doctor-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.doctor-feature-eyebrow {
  display: inline-block;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}
.doctor-feature:nth-child(2) .doctor-feature-eyebrow { background: var(--butter); }
.doctor-feature:nth-child(3) .doctor-feature-eyebrow { background: var(--coral); }
.doctor-feature-copy h3 {
  font-size: 1.9rem;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}
.doctor-feature-copy h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 1.4rem 0 0.55rem;
}
.doctor-feature-copy ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.doctor-feature-copy ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  line-height: 1.55;
  color: var(--ink);
}
.doctor-feature-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-dk, var(--ink));
}
.bio-placeholder {
  background: rgba(15, 42, 58, 0.04);
  border-left: 3px solid var(--butter);
  padding: 0.95rem 1.15rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1.1rem;
  font-style: italic;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}
.bio-placeholder strong {
  font-style: normal;
  color: var(--ink);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .doctor-feature {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 48px;
  }
  .doctor-feature:nth-child(even) .doctor-feature-photo { order: 0; }
  .doctor-feature-photo { max-width: 360px; aspect-ratio: 1 / 1.1; }
  .doctor-feature-copy h3 { font-size: 1.55rem; }
}

/* ---------- Check grid ---------- */
.check-item {
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-card-sm);
  background: rgba(95, 162, 144, 0.08);
  border: 1px solid rgba(95, 162, 144, 0.18);
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
  padding-left: 2.4rem;
}
.check-item::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint-dk);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Inline link style ---------- */
a.link {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--mint-dk);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
a.link:hover { color: var(--ink); }

/* ---------- Form ---------- */
form { display: grid; gap: 0.95rem; }
label {
  display: grid;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
input, textarea, select {
  width: 100%;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-card-sm);
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--mint-dk);
  box-shadow: 0 0 0 4px rgba(95, 162, 144, 0.15);
}
textarea { min-height: 130px; resize: vertical; }

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---------- Hours list ---------- */
.hours { padding: 0; list-style: none; margin: 1rem 0 0; display: grid; gap: 0.55rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.55rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.hours li span:first-child { color: var(--muted); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-with-photo {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 1.5rem;
  align-items: start;
}
.faq-with-photo .faq-grid { grid-template-columns: 1fr; }
.faq-photo { position: sticky; top: 120px; }
.faq-item { background: #fff; }
.faq-item:hover { border-color: rgba(15, 42, 58, 0.18); }
.faq-item h3 { font-size: 1.2rem; }

/* ---------- CTA banner (butter card) ---------- */
.cta-banner {
  padding: 70px;
  border-radius: 40px;
  background: var(--butter);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.55;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.65;
  pointer-events: none;
}
.cta-banner > div { position: relative; z-index: 1; }
.cta-banner > a { position: relative; z-index: 1; justify-self: end; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.4vw, 3.4rem); margin: 0; }
.cta-banner p {
  margin: 1rem 0 0;
  color: var(--ink);
  opacity: 0.76;
  font-size: 1.05rem;
  line-height: 1.55;
}
/* Secondary button on dark (navy/ink) backgrounds */
.split-band .button.secondary,
.footer .button.secondary {
  color: var(--cream);
  border-color: rgba(255, 248, 236, 0.45);
}
.split-band .button.secondary:hover,
.footer .button.secondary:hover {
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.75);
}

.cta-banner .button {
  background: var(--ink);
  color: var(--cream);
}
.cta-banner .button:hover { background: var(--navy); }

/* ---------- Footer ---------- */
.footer {
  padding: 70px 0 90px;
  background: var(--ink);
  color: var(--cream-78);
  font-family: var(--font-sans);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer h3, .footer h4 {
  color: var(--cream);
  font-family: var(--font-display);
  margin: 0 0 1rem;
}
.footer h3 { font-size: 1.4rem; }
.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--butter);
  font-weight: 700;
  font-family: var(--font-sans);
  margin-bottom: 1.1rem;
}
.footer p { color: var(--cream-72); line-height: 1.65; }
.footer a { color: var(--cream-72); transition: color 0.15s ease; }
.footer a:hover { color: var(--cream); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer ul a { font-size: 0.92rem; }
.legal {
  border-top: 1px solid var(--cream-14);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: rgba(255, 248, 236, 0.5);
}

/* ---------- Phase cards (Orthodontics for Kids — Phase 1 vs Phase 2) ---------- */
.phase-stack {
  display: grid;
  gap: 14px;
  margin-top: 1.2rem;
}
.phase-card {
  border-radius: var(--radius-card);
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--rule);
}
.phase-card--mint   { background: rgba(184, 221, 208, 0.35); border-color: rgba(95, 162, 144, 0.28); }
.phase-card--butter { background: rgba(255, 228, 138, 0.35); border-color: rgba(184, 133, 31, 0.28); }
.phase-card--coral  { background: rgba(244, 162, 140, 0.32); border-color: rgba(184, 95, 69, 0.28); }
.phase-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}
.phase-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rule);
}
.phase-card-age {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.72;
}
.phase-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.phase-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
}

/* ---------- Hero collage (home page) ---------- */
.hero-collage {
  position: relative;
  height: 620px;
  margin: 0;
}
.hero-collage-circle {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-circle);
  border: 4px solid #fff;
}
.hero-collage-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-collage-squircle {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 230px;
  aspect-ratio: 3 / 4;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid #fff;
}
.hero-collage-squircle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-collage-pill {
  position: absolute;
  top: 0;
  left: 30px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(15, 42, 58, 0.12);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.hero-collage-pill-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.9rem;
}
.hero-collage-card {
  position: absolute;
  top: 230px;
  left: -10px;
  background: #fff;
  border-radius: var(--radius-card-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-float);
  max-width: 250px;
}
.hero-collage-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.hero-collage-card-pip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-collage-card-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.hero-collage-card-body {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.hero-collage-stat {
  position: absolute;
  bottom: 80px;
  right: -10px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-card-sm);
  padding: 16px 20px;
  box-shadow: 0 12px 28px rgba(15, 42, 58, 0.22);
}
.hero-collage-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-collage-stat span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.82;
  margin-top: 4px;
}

/* Pill highlight behind a single word in the hero h1 (e.g. "Delaware") */
.hero h1 .hl {
  position: relative;
  display: inline-block;
}
.hero h1 .hl span:first-child { position: relative; z-index: 1; }
.hero h1 .hl .hl-bg {
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 4px;
  height: 32%;
  background: var(--mint);
  border-radius: var(--radius-pill);
  z-index: 0;
  opacity: 0.85;
}

/* ---------- Reveal animation ----------
   Content is visible by default. JS opts in to the hidden initial state
   by adding `js-reveal` to <html>, then toggles `.visible` on scroll.
   No-JS users (and Playwright/SEO crawlers) always see content. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease-out, transform 0.32s ease-out;
}
.js-reveal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.005em;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -10px 28px rgba(15, 42, 58, 0.18);
}
.sticky-call-icon { font-size: 1.1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .two-up, .contact-grid, .spotlight-grid { grid-template-columns: 1fr; }
  .three-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid, .card-grid, .locations-grid, .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-banner { padding: 50px; grid-template-columns: 1fr; gap: 30px; }
  .cta-banner > a { justify-self: start; }
  .faq-with-photo { grid-template-columns: 1fr; }
  .faq-photo { display: none; }
  /* Mobile nav: hide pill nav, show hamburger */
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 88px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius-card-lg);
    box-shadow: var(--shadow-float);
  }
  .nav.open { display: flex; max-height: calc(100vh - 108px); overflow-y: auto; }
  .nav a { padding: 0.85rem 1rem; }
  .sticky-call { display: flex; }
  body { padding-bottom: 64px; }
  /* Mobile dropdowns: flatten to inline indented sublists */
  .nav-group { display: block; }
  .nav-group > .nav-trigger {
    padding: 0.85rem 1rem;
    color: var(--ink);
    font-weight: 700;
    width: 100%;
    justify-content: space-between;
  }
  .nav-group .caret { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 0;
    padding: 0.4rem 0 0.6rem 1rem;
    background: transparent;
    min-width: 0;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 6px;
    transition: none;
  }
  .nav-dropdown::before, .nav-dropdown::after { display: none; }
  .nav-dropdown.is-three-col { grid-template-columns: 1fr; min-width: 0; max-width: none; }
  /* Override the desktop :focus-within rule that applies translateX(-50%) — on mobile
     that shifts the static dropdown off-screen when any child link gets focus/tap */
  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown { transform: none; }
  .dd-card { min-height: 0; padding: 10px 14px; gap: 2px; }
  .dd-card strong { font-size: 0.95rem; }
  .dd-card .dd-sub { font-size: 0.78rem; }
  .dd-card .dd-icon { display: none; }
}
@media (max-width: 680px) {
  main section, .page-hero { padding: 64px 0; }
  .hero { padding: 32px 0 70px; }
  .container { width: calc(100% - 32px); }
  .hero-visual { min-height: 360px; }
  .services-grid, .card-grid, .locations-grid, .faq-grid,
  .check-grid, .stats-grid, .process-grid, .team-grid,
  .three-up, .section-photo-break {
    grid-template-columns: 1fr;
  }
  .services-grid .service-card:nth-child(3n+2) { transform: none; }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar-inner, .nav-shell { align-items: flex-start; }
  .brand-logo { width: 140px; }
  .cta-banner { padding: 36px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero::before { width: 360px; height: 360px; top: -120px; right: -140px; opacity: 0.35; }
  .hero::after { width: 220px; height: 220px; bottom: -110px; left: -90px; opacity: 0.45; }
}
