/* ============================================================
   Queens Dental Practice — shared stylesheet
   Aesthetic: warm, premium, editorial. Deep evergreen + warm
   sand neutrals + soft gold accent. Serif display / clean sans body.
   ============================================================ */

:root {
  --ink: #1c2620;          /* near-black evergreen */
  --evergreen: #21443a;    /* primary deep green */
  --evergreen-soft: #2f5a4d;
  --sand: #f5f0e6;         /* warm paper */
  --sand-deep: #ebe2d2;
  --cream: #fbf8f2;
  --gold: #c8a86a;         /* refined gold accent */
  --gold-deep: #b08f4f;
  --muted: #6f7a72;
  --line: #e2dccd;
  --white: #ffffff;

  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 4px;
  --shadow: 0 18px 50px -22px rgba(28, 38, 32, 0.35);
  --shadow-soft: 0 10px 30px -18px rgba(28, 38, 32, 0.28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--evergreen); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline { border-color: var(--evergreen); color: var(--evergreen); background: transparent; }
.btn-outline:hover { background: var(--evergreen); color: var(--cream); }
.btn-ghost-light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--evergreen); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--evergreen);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; gap: 16px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-right { display: flex; gap: 22px; align-items: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.brand { font-family: var(--serif); font-size: 1.7rem; color: var(--evergreen); letter-spacing: 0.01em; line-height: 1; }
.brand span { display: block; font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }
.nav-links { display: flex; gap: 34px; align-items: center; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--evergreen); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--evergreen) 0%, var(--ink) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(200,168,106,0.16), transparent 45%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; padding-top: 96px; padding-bottom: 96px; }
.hero h1 { color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { font-size: 1.18rem; color: rgba(251,248,242,0.85); max-width: 30em; margin: 24px 0 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-figure {
  aspect-ratio: 4/5; border-radius: 3px; overflow: hidden;
  background: linear-gradient(160deg, var(--evergreen-soft), var(--ink));
  border: 1px solid rgba(200,168,106,0.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* image placeholder styling */
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px;
  background:
    repeating-linear-gradient(45deg, rgba(200,168,106,0.06) 0 12px, transparent 12px 24px),
    var(--sand-deep);
  color: var(--muted);
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px dashed var(--gold-deep);
}
.img-ph svg { width: 38px; height: 38px; opacity: 0.5; }
.hero-figure .img-ph { border: none; background: repeating-linear-gradient(45deg, rgba(200,168,106,0.1) 0 14px, transparent 14px 28px), var(--evergreen-soft); color: rgba(251,248,242,0.7); }

/* ---------- Trust strip ---------- */
.trust { background: var(--sand); border-bottom: 1px solid var(--line); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-top: 40px; padding-bottom: 40px; }
.trust-item { text-align: center; }
.trust-item .ico { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--evergreen); }
.trust-item h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--evergreen); }

/* ---------- Section scaffolding ---------- */
.section { padding: 92px 0; }
.section.alt { background: var(--sand); }
.section-head { max-width: 36em; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* ---------- Split intro ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .figure { aspect-ratio: 5/4; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); }
.split ul { list-style: none; margin-top: 20px; display: grid; gap: 14px; }
.split ul li { padding-left: 30px; position: relative; }
.split ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,168,106,0.2); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 3px;
  padding: 38px 32px; transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--gold); transition: width 0.4s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover::before { width: 100%; }
.card .ico { width: 40px; height: 40px; color: var(--evergreen); margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- Fees / pricing ---------- */
.fee-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.fee-table { background: var(--white); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.fee-table .fee-head { background: var(--evergreen); color: var(--cream); padding: 26px 32px; }
.fee-table .fee-head h3 { color: var(--cream); }
.fee-table .fee-head p { color: rgba(251,248,242,0.75); margin: 6px 0 0; font-size: 0.92rem; }
.fee-row { display: flex; justify-content: space-between; gap: 18px; padding: 18px 32px; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.fee-row:last-child { border-bottom: none; }
.fee-row .price { font-family: var(--serif); font-size: 1.25rem; color: var(--evergreen); white-space: nowrap; }
.note { font-size: 0.85rem; color: var(--muted); margin-top: 18px; }

/* ---------- Banner CTA ---------- */
.banner {
  background: linear-gradient(135deg, var(--evergreen), var(--ink));
  color: var(--cream); text-align: center; padding: 86px 0; position: relative; overflow: hidden;
}
.banner::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 20% 80%, rgba(200,168,106,0.18), transparent 50%); }
.banner .wrap { position: relative; z-index: 2; }
.banner h2 { color: var(--cream); max-width: 16em; margin: 0 auto 28px; }
.banner h2 em { font-style: italic; color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.info-block { margin-bottom: 30px; }
.info-block h4 { font-family: var(--sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-deep); margin-bottom: 8px; }
.info-block p, .info-block a { color: var(--ink); font-size: 1.05rem; }
.info-block a:hover { color: var(--gold-deep); }
.hours-row { display: flex; justify-content: space-between; max-width: 320px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 0.96rem; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 44px; box-shadow: var(--shadow-soft); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--evergreen); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 1rem;
  border: 1px solid var(--line); border-radius: 3px; background: var(--cream); color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,106,0.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-msg { margin-top: 14px; font-size: 0.92rem; min-height: 1.2em; }
.form-msg.ok { color: var(--evergreen); }
.form-msg.err { color: #b3402e; }

.map-embed { margin-top: 20px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/7; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(135deg, var(--evergreen), var(--ink)); color: var(--cream); padding: 76px 0 64px; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 85% 30%, rgba(200,168,106,0.15), transparent 45%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); }
.page-hero .eyebrow { color: var(--gold); }
.crumbs { font-size: 0.84rem; color: rgba(251,248,242,0.7); margin-top: 16px; }
.crumbs a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251,248,242,0.78); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 18px; }
.site-footer .brand { color: var(--cream); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; display: grid; gap: 10px; font-size: 0.94rem; }
.foot-bottom { margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(251,248,242,0.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { aspect-ratio: 16/10; max-height: 360px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust .wrap { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { position: fixed; inset: 0 0 0 30%; background: var(--cream); flex-direction: column; justify-content: center; padding: 40px; gap: 26px; transform: translateX(100%); transition: transform 0.4s; box-shadow: var(--shadow); z-index: 60; }
  .nav-links.open { transform: none; }
  .burger { display: flex; z-index: 61; }
  .nav-cta .btn { display: none; }
  .cards, .fee-grid, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .topbar .tb-left { display: none; }
}

/* ============================================================
   Patient Education page
   ============================================================ */
.edu-intro { display:grid; grid-template-columns: 1.1fr 0.9fr; gap:56px; align-items:center; }
.edu-intro .figure { aspect-ratio: 5/4; border-radius:3px; overflow:hidden; box-shadow: var(--shadow); }
@media (max-width:980px){ .edu-intro{ grid-template-columns:1fr; gap:36px; } }

/* category quick-nav */
.edu-nav { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.edu-nav a {
  font-size:0.82rem; font-weight:600; letter-spacing:0.04em; text-transform:uppercase;
  padding:10px 18px; border:1.5px solid var(--line); border-radius:40px; color:var(--evergreen);
  background:var(--white); transition: all 0.3s;
}
.edu-nav a:hover { background:var(--evergreen); color:var(--cream); border-color:var(--evergreen); }

/* topic group */
.edu-group { margin-top:64px; }
.edu-group > .grp-head { display:flex; align-items:center; gap:16px; margin-bottom:24px; }
.edu-group > .grp-head .grp-ico {
  flex:0 0 auto; width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:var(--sand); color:var(--evergreen); border:1px solid var(--line);
}
.edu-group > .grp-head .grp-ico svg { width:28px; height:28px; }
.edu-group > .grp-head h2 { font-size:clamp(1.6rem,3vw,2.3rem); }

/* accordion */
.acc { border:1px solid var(--line); border-radius:6px; overflow:hidden; background:var(--white); }
.acc + .acc { margin-top:14px; }
.acc summary {
  list-style:none; cursor:pointer; padding:22px 26px; display:flex; align-items:center; gap:18px;
  font-family:var(--serif); font-size:1.3rem; color:var(--evergreen); transition: background 0.25s;
}
.acc summary::-webkit-details-marker { display:none; }
.acc summary:hover { background:var(--sand); }
.acc summary .a-ico { flex:0 0 auto; width:40px; height:40px; border-radius:10px; background:var(--sand-deep); color:var(--evergreen); display:flex; align-items:center; justify-content:center; }
.acc summary .a-ico svg { width:22px; height:22px; }
.acc summary .chev { margin-left:auto; transition: transform 0.3s; color:var(--gold-deep); font-size:1.4rem; line-height:1; }
.acc[open] summary .chev { transform: rotate(45deg); }
.acc[open] summary { background:var(--sand); border-bottom:1px solid var(--line); }
.acc .body { padding:8px 26px 28px; }
.acc .body p { color:#3c463f; margin-bottom:12px; }
.acc .body .lead-line { font-size:1.05rem; color:var(--ink); }
.acc .body h4 { font-family:var(--sans); font-size:0.8rem; text-transform:uppercase; letter-spacing:0.12em; color:var(--gold-deep); margin:18px 0 8px; }
.acc .body ul { margin:0 0 12px; padding-left:22px; }
.acc .body ul li { margin-bottom:7px; }
.acc .body .pic-ph {
  margin:6px 0 18px; border-radius:6px; aspect-ratio:16/7; border:1px dashed var(--gold-deep);
  background: repeating-linear-gradient(45deg, rgba(200,168,106,0.06) 0 12px, transparent 12px 24px), var(--sand-deep);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  color:var(--muted); font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase;
}
.acc .body .pic-ph svg { width:34px; height:34px; opacity:0.5; }

/* prevention quick tips */
.tips { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:8px; }
.tip { background:var(--white); border:1px solid var(--line); border-radius:8px; padding:26px 22px; text-align:center; }
.tip .ico { width:42px; height:42px; margin:0 auto 14px; color:var(--evergreen); }
.tip h4 { font-family:var(--serif); font-size:1.15rem; color:var(--evergreen); margin-bottom:6px; }
.tip p { font-size:0.9rem; color:var(--muted); margin:0; }
@media (max-width:980px){ .tips{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .tips{ grid-template-columns:1fr; } }

.edu-disclaimer { margin-top:54px; padding:22px 26px; background:var(--sand); border-left:3px solid var(--gold); border-radius:4px; font-size:0.92rem; color:#3c463f; }

/* ============================================================
   Contrast safety: force light text on all dark/green backgrounds
   so nothing dark-on-green is ever unreadable.
   ============================================================ */
.hero, .hero h1, .hero h2, .hero h3, .hero h4, .hero p, .hero li, .hero span,
.page-hero, .page-hero h1, .page-hero h2, .page-hero h3, .page-hero p,
.banner, .banner h1, .banner h2, .banner h3, .banner p,
.fee-head, .fee-head h1, .fee-head h2, .fee-head h3, .fee-head h4, .fee-head p,
.topbar, .topbar a,
.site-footer, .site-footer p, .site-footer li, .site-footer a, .site-footer span {
  color: var(--cream);
}
/* keep the intentional gold accents readable on green */
.hero h1 em, .banner h2 em, .page-hero .eyebrow,
.site-footer h4, .site-footer .brand span { color: var(--gold); }
.hero .eyebrow { color: var(--gold-deep); }
/* footer body links slightly dimmer but still light */
.site-footer ul, .site-footer p { color: rgba(251,248,242,0.78); }
.site-footer .brand { color: var(--cream); }
/* trust strip sits on sand, keep its headings dark green (readable) */
.trust-item h4 { color: var(--evergreen); }

/* ============================================================
   Implant solutions cards (education page)
   ============================================================ */
.implant-solutions { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:8px; }
.isol {
  background:var(--white); border:1px solid var(--line); border-radius:10px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.isol:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.isol .isol-head { display:flex; align-items:center; gap:14px; padding:22px 24px 0; }
.isol .isol-num {
  flex:0 0 auto; width:42px; height:42px; border-radius:50%; background:var(--evergreen); color:var(--cream);
  font-family:var(--serif); font-size:1.3rem; display:flex; align-items:center; justify-content:center;
}
.isol h3 { font-size:1.4rem; margin:0; }
.isol .isol-body { padding:14px 24px 26px; }
.isol .isol-body p { color:#3c463f; font-size:0.97rem; margin-bottom:12px; }
.isol .isol-vis {
  margin:4px 24px 0; border-radius:8px; aspect-ratio:16/8; background:var(--sand);
  border:1px solid var(--line); display:flex; align-items:center; justify-content:center; gap:6px; padding:14px;
}
/* tooth-row visual built with simple shapes */
.tooth-row { display:flex; align-items:flex-end; gap:7px; height:62px; }
.tooth-row .t {
  width:20px; height:46px; border-radius:7px 7px 5px 5px; background:#fbfbf8; border:1.5px solid #d9d2c2;
  position:relative;
}
.tooth-row .t.implant { background:linear-gradient(#fbfbf8 60%, #9aa0a6 60%); border-color:#9aa0a6; }
.tooth-row .t.implant::after {
  content:""; position:absolute; left:50%; bottom:-12px; transform:translateX(-50%);
  width:5px; height:14px; background:#7c8388; border-radius:0 0 2px 2px;
}
.tooth-row .t.post::after {
  content:""; position:absolute; left:50%; bottom:-14px; transform:translateX(-50%);
  width:5px; height:16px; background:#7c8388; border-radius:0 0 2px 2px;
}
.tooth-row .bar { align-self:flex-end; height:12px; border-radius:6px; background:#c9b27e; }
.tooth-row .gum { width:100%; }
.isol .isol-tag { font-size:0.74rem; text-transform:uppercase; letter-spacing:0.12em; color:var(--gold-deep); font-weight:600; padding:0 24px; margin-top:4px; }
.isol ul { list-style:none; padding:0 24px 4px; margin:6px 0 0; }
.isol ul li { padding-left:22px; position:relative; font-size:0.92rem; color:#3c463f; margin-bottom:6px; }
.isol ul li::before { content:""; position:absolute; left:0; top:7px; width:9px; height:9px; border-radius:50%; background:var(--gold); }
@media (max-width:760px){ .implant-solutions{ grid-template-columns:1fr; } }

/* ============================================================
   Unified framing for infographic images (education page)
   Gives mixed-source infographics a consistent, on-brand frame.
   ============================================================ */
.edu-figure {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  margin: 18px 0 28px;
}
.edu-figure img { width: 100%; border-radius: 6px; display: block; }
/* infographics shown inside accordion bodies */
.acc .body img.info { border:1px solid var(--line); padding:10px; background:var(--cream); border-radius:8px; box-shadow:var(--shadow-soft); }

/* ============================================================
   Our Locations
   ============================================================ */
.locations { display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.loc-card {
  background:var(--white); border:1px solid var(--line); border-radius:10px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.loc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.loc-card .loc-head { background:var(--evergreen); color:var(--cream); padding:24px 28px; }
.loc-card .loc-head h3 { color:var(--cream); margin:0; font-size:1.6rem; }
.loc-card .loc-head .loc-tag { font-family:var(--sans); font-size:0.72rem; text-transform:uppercase; letter-spacing:0.16em; color:var(--gold); display:block; margin-bottom:6px; }
.loc-card .loc-body { padding:26px 28px; display:flex; flex-direction:column; gap:16px; flex:1; }
.loc-line { display:flex; gap:12px; align-items:flex-start; }
.loc-line .ico { flex:0 0 auto; width:22px; height:22px; color:var(--gold-deep); margin-top:2px; }
.loc-line .ico svg { width:22px; height:22px; }
.loc-line p, .loc-line a { margin:0; font-size:1rem; color:var(--ink); }
.loc-line a:hover { color:var(--gold-deep); }
.loc-hours { font-size:0.94rem; color:#3c463f; }
.loc-hours .hr { display:flex; justify-content:space-between; padding:4px 0; border-bottom:1px dashed var(--line); }
.loc-hours .hr:last-child { border-bottom:none; }
.loc-card .loc-actions { margin-top:auto; padding-top:6px; display:flex; gap:12px; flex-wrap:wrap; }
@media (max-width:760px){ .locations{ grid-template-columns:1fr; } }

/* Brand logo */
.brand-logo { display:flex; align-items:center; }
.brand-logo img { height:96px; width:auto; display:block; }
@media (max-width:680px){ .brand-logo img { height:68px; } }
.site-footer .brand-logo img { height:60px; filter: brightness(0) invert(1) sepia(0.3) saturate(2) hue-rotate(60deg); }

/* Implant solution cards with real images */
.implant-solutions { grid-template-columns: repeat(3,1fr); }
.isol-vis-img { width:100%; aspect-ratio:3/2; overflow:hidden; border-radius:10px 10px 0 0; background:var(--evergreen); }
.isol-vis-img img { width:100%; height:100%; object-fit:cover; display:block; }
.isol .isol-head { padding-top:18px; }
@media (max-width:980px){ .implant-solutions { grid-template-columns:1fr 1fr; } }
@media (max-width:680px){ .implant-solutions { grid-template-columns:1fr; } }
