/* Lakeshore Dental — design system. No frameworks, no external fonts. */
:root {
  --ink: #0d2b32;
  --ink-2: #1c4a54;
  --muted: #4f6b71;
  --line: #dbe6e6;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --sand: #f2ede3;
  --teal: #0f7d86;
  --teal-dark: #0a5b62;
  --teal-soft: #e3f2f2;
  --coral: #e2653f;
  --coral-soft: #fcece5;
  --gold: #d9a441;
  --focus: #0f7d86;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow-s: 0 1px 2px rgba(13, 43, 50, .06), 0 4px 14px rgba(13, 43, 50, .05);
  --shadow-m: 0 2px 6px rgba(13, 43, 50, .07), 0 18px 44px rgba(13, 43, 50, .1);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }
:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px;
}
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; letter-spacing: -.015em; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1.1em; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }
.lede { font-size: 1.16rem; color: var(--muted); }
.eyebrow {
  font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 .8rem;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- Top bars ---------- */
.alert-bar {
  background: var(--ink); color: #eaf5f4; font-size: .93rem;
  padding: .55rem 0; text-align: center;
}
.alert-bar a { color: #ffd9a8; font-weight: 700; }
.alert-bar strong { color: #fff; }

header.site {
  position: sticky; top: 0; z-index: 60; background: rgba(251, 250, 247, .93);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.nav-links { display: flex; gap: .25rem; margin-left: auto; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink-2); font-size: .95rem; font-weight: 500;
  padding: .5rem .68rem; border-radius: 9px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--teal-soft); color: var(--teal-dark); }
.nav-cta { display: flex; gap: .5rem; align-items: center; margin-left: .5rem; }
.nav-tel { font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap; }
#nav-toggle { display: none; }
.burger { display: none; }

@media (max-width: 950px) {
  .burger {
    display: inline-flex; align-items: center; gap: .5rem; margin-left: auto;
    background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
    padding: .5rem .7rem; font: inherit; font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer;
  }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: .6rem 1.2rem 1.1rem; gap: .1rem;
    box-shadow: var(--shadow-m); margin: 0;
  }
  .nav-links a { padding: .75rem .6rem; font-size: 1.02rem; }
  header.site.open .nav-links { display: flex; }
  .nav-cta { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 650; font-size: .98rem; line-height: 1;
  padding: .85rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(15, 125, 134, .28); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-urgent { background: var(--coral); color: #fff; }
.btn-urgent:hover { background: #c8522e; color: #fff; }
.btn-sm { padding: .6rem 1rem; font-size: .9rem; }
.btn-lg { padding: 1.02rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.4rem, 6vw, 4.4rem) 0 clamp(2rem, 5vw, 3.4rem); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--teal); }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.4rem; padding: 0; list-style: none; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: .38rem .8rem;
  font-size: .87rem; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-s);
}
.pill svg { color: var(--teal); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-art { position: relative; }
.hero-art .frame {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-m); background: var(--sand);
  aspect-ratio: 4 / 3.35;
}
.badge-float {
  position: absolute; left: -14px; bottom: -18px; background: var(--surface);
  border-radius: 16px; padding: .8rem 1rem; box-shadow: var(--shadow-m); max-width: 250px;
  border: 1px solid var(--line);
}
.badge-float strong { display: block; font-size: .95rem; }
.badge-float span { font-size: .82rem; color: var(--muted); }
@media (max-width: 900px) { .badge-float { position: static; margin-top: 1rem; max-width: none; } }

/* ---------- Sections ---------- */
section { padding: clamp(2.4rem, 5.5vw, 4.2rem) 0; }
.section-head { max-width: 640px; margin-bottom: 2rem; }
.tint { background: var(--sand); }
.ink-section { background: var(--ink); color: #e7f1f0; }
.ink-section h2, .ink-section h3 { color: #fff; }
.ink-section p { color: #b9d0cf; }
.ink-section a { color: #9fe0dd; }

.grid { display: grid; gap: 1.1rem; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow-s);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
a.card { text-decoration: none; color: inherit; display: block; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--teal); color: inherit; }
a.card .more { color: var(--teal-dark); font-weight: 650; font-size: .93rem; }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--teal-soft);
  display: grid; place-items: center; margin-bottom: .9rem; color: var(--teal-dark);
}
.card.urgent { border-color: var(--coral); background: var(--coral-soft); }
.card.urgent .card-icon { background: #f8d7c9; color: #b0431f; }

ul.checks { list-style: none; padding: 0; margin: 0 0 1.2rem; }
ul.checks li { position: relative; padding-left: 1.9rem; margin-bottom: .55rem; }
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.15rem; height: 1.15rem;
  border-radius: 50%; background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a5b62' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: .8rem; background-repeat: no-repeat; background-position: center;
}
.ink-section ul.checks li::before { background-color: rgba(159, 224, 221, .2); }

.steps { counter-reset: s; list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.steps li { counter-increment: s; position: relative; padding-left: 3.2rem; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0; width: 2.3rem; height: 2.3rem;
  border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-family: var(--sans);
}
.steps h3 { margin-bottom: .15em; font-size: 1.08rem; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: .3rem 0; }
.faq summary {
  cursor: pointer; padding: .95rem 0; font-weight: 650; font-size: 1.04rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { margin: 0 0 1rem; color: var(--muted); max-width: 68ch; }

.note {
  background: #fff8e8; border: 1px solid #f0dfb8; border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-size: .93rem; color: #5c4a20;
}
.note strong { color: #4a3a12; }
.note p:last-child { margin-bottom: 0; }

table.hours { width: 100%; border-collapse: collapse; font-size: .98rem; }
table.hours th, table.hours td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--line); }
table.hours th { font-weight: 600; color: var(--muted); }
table.hours td { text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), #0d6b73 55%, #12878f);
  color: #fff; border-radius: 26px; padding: clamp(1.8rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: #d3ecec; margin: 0; max-width: 48ch; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.cta-band .btn-primary { background: #fff; color: var(--teal-dark); box-shadow: none; }
.cta-band .btn-primary:hover { background: #eafafa; color: var(--teal-dark); }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: #b9d0cf; padding: 3rem 0 1.5rem; margin-top: 0; }
footer.site h3 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: .9rem; }
footer.site a { color: #dcecea; text-decoration: none; }
footer.site a:hover { color: #ffd9a8; text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 850px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: .45rem; font-size: .95rem; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.13); margin-top: 2.2rem; padding-top: 1.2rem;
  font-size: .84rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: space-between;
}

/* ---------- Sticky mobile bar ---------- */
.sticky-bar { display: none; }
@media (max-width: 700px) {
  .sticky-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line); padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  }
  body { padding-bottom: 4.5rem; }
}

/* ---------- Forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 650; font-size: .93rem; margin-bottom: .35rem; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .86rem; }
input[type=text], input[type=tel], input[type=email], input[type=date], select, textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .78rem .9rem;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); outline: 3px solid rgba(15,125,134,.22); outline-offset: 0; }
textarea { min-height: 130px; resize: vertical; }
.check-line { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.check-line input { width: 1.15rem; height: 1.15rem; margin-top: .25rem; flex: none; accent-color: var(--teal); }
.form-error { color: #a8331a; font-weight: 600; font-size: .92rem; margin-top: .4rem; }
.form-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow-s); }

/* ---------- Booking wizard ---------- */
.wiz-progress { display: flex; gap: .4rem; margin-bottom: 1.3rem; }
.wiz-progress span {
  flex: 1; height: 6px; border-radius: 3px; background: var(--line);
}
.wiz-progress span.done { background: var(--teal); }
.wiz-step[hidden] { display: none; }
.wiz-step h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-bottom: 1.2rem; }
@media (max-width: 560px) { .choice-grid { grid-template-columns: 1fr; } }
.choice {
  display: flex; align-items: center; gap: .8rem; text-align: left; width: 100%;
  font: inherit; font-size: 1rem; font-weight: 600; color: var(--ink); cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.1rem; transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.choice:hover { border-color: var(--teal); background: var(--teal-soft); }
.choice[aria-pressed="true"] { border-color: var(--teal); background: var(--teal-soft); }
.choice .ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--teal-soft); color: var(--teal-dark); }
.choice.urgent .ic { background: var(--coral-soft); color: #b0431f; }
.choice small { display: block; font-weight: 400; font-size: .85rem; color: var(--muted); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: .5rem; }
.slot {
  font: inherit; font-weight: 600; font-size: .95rem; padding: .7rem .4rem; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px; color: var(--ink);
}
.slot:hover, .slot[aria-pressed="true"] { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-dark); }
.wiz-back {
  background: none; border: none; font: inherit; font-size: .93rem; color: var(--muted);
  cursor: pointer; padding: .5rem 0; text-decoration: underline;
}
.saved-tag { font-size: .87rem; color: var(--teal-dark); font-weight: 650; }
.confirm-card { text-align: center; }
.confirm-card .tick {
  width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; background: var(--teal-soft);
  display: grid; place-items: center; color: var(--teal-dark);
}

/* ---------- Misc art ---------- */
.art-tile { border-radius: var(--radius); overflow: hidden; background: var(--sand); }
.avatar-card { display: flex; gap: 1.2rem; align-items: center; }
.avatar-card .av { width: 108px; height: 108px; flex: none; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-s); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.lead-table { width: 100%; border-collapse: collapse; font-size: .9rem; background: var(--surface); }
.lead-table th, .lead-table td { padding: .6rem .7rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.lead-table th { background: var(--sand); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.tag { display: inline-block; padding: .12rem .5rem; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.tag.partial { background: #fdeacd; color: #7a5310; }
.tag.requested { background: var(--teal-soft); color: var(--teal-dark); }
.scroll-x { overflow-x: auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM LAYER — 2026-08-03
   Brief: "should look like a $1 million dental office that is thriving."
   Loaded after the base so it overrides without touching the original rules.
   Principles: deeper ink, warmer neutrals, a real editorial type scale,
   generous air, one restrained accent, and motion that reveals rather than
   decorates.
   ═════════════════════════════════════════════════════════════════════════ */
:root {
  --ink:        #08211f;   /* deeper, closer to black — reads expensive */
  --ink-2:      #123c3c;
  --muted:      #5a736f;
  --line:       #e6e2d8;
  --bg:         #fcfbf8;
  --surface:    #ffffff;
  --sand:       #f4efe6;
  --teal:       #0d6b6b;
  --teal-dark:  #084a4c;
  --teal-soft:  #e8f1ee;
  --coral:      #c9603c;
  --gold:       #b9945a;   /* muted brass, not yellow */
  --wrap:       1180px;
  --shadow-s: 0 1px 2px rgba(8,33,31,.05), 0 6px 18px rgba(8,33,31,.05);
  --shadow-m: 0 2px 8px rgba(8,33,31,.06), 0 26px 60px rgba(8,33,31,.10);
  --shadow-l: 0 40px 90px rgba(8,33,31,.16);
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---- editorial type ---- */
body { font-size: 17.5px; letter-spacing: -.005em; }
h1, h2, h3 { font-family: var(--serif); letter-spacing: -.022em; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; }
.eyebrow, .kicker {
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--gold);
}
.lede { font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.6; color: var(--ink-2); }

/* ---- more air ---- */
section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.hero  { padding-block: clamp(5rem, 11vw, 10rem); }

/* ---- surfaces ---- */
.card {
  border-radius: 20px; border: 1px solid var(--line); background: var(--surface);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: #d6cfc0; }

/* ---- buttons with intent ---- */
.btn, .button, a.btn {
  border-radius: 999px; font-weight: 650; letter-spacing: .005em;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .2s;
}
.btn:hover, .button:hover, a.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn:active { transform: translateY(0); }

/* ---- scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-d1.in { transition-delay: .09s } .reveal-d2.in { transition-delay: .18s }
.reveal-d3.in { transition-delay: .27s } .reveal-d4.in { transition-delay: .36s }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---- hairline rules that read as craft ---- */
.rule { height: 1px; background: linear-gradient(90deg, var(--line), transparent); border: 0; margin: 0; }

/* ---- image placeholders awaiting the Higgsfield shoot ---- */
.ph {
  position: relative; border-radius: 20px; overflow: hidden; background: var(--sand);
  border: 1px solid var(--line); display: grid; place-items: center; isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(13,107,107,.16), transparent 60%),
    radial-gradient(110% 80% at 85% 90%, rgba(185,148,90,.20), transparent 62%),
    linear-gradient(160deg, #f7f3ea, #eae3d5);
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(8,33,31,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(8,33,31,.05) 1px, transparent 1px);
  background-size: 34px 34px; opacity: .5; pointer-events: none;
}
.ph-tag {
  position: relative; z-index: 2; text-align: center; padding: 1.1rem 1.4rem; max-width: 30ch;
  font-family: var(--sans); font-size: .78rem; line-height: 1.5; color: var(--ink-2);
  background: rgba(255,255,255,.78); backdrop-filter: blur(6px);
  border: 1px solid rgba(8,33,31,.09); border-radius: 12px;
}
.ph-tag strong { display: block; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.ph-16x9 { aspect-ratio: 16/9 } .ph-4x3 { aspect-ratio: 4/3 }
.ph-1x1  { aspect-ratio: 1/1 }  .ph-3x4 { aspect-ratio: 3/4 }
.ph-21x9 { aspect-ratio: 21/9 }

/* ---- a quiet stat band ---- */
.stat-band { display: grid; gap: 1px; background: var(--line);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); border-block: 1px solid var(--line); }
.stat-band > div { background: var(--bg); padding: 2rem 1.6rem; }
.stat-band .n { font-family: var(--serif); font-size: clamp(2rem,3.4vw,2.8rem);
  line-height: 1; color: var(--teal-dark); }
.stat-band .l { font-size: .84rem; color: var(--muted); margin-top: .5rem; }

/* ---- sticky call bar on mobile: a practice that answers ---- */
@media (max-width: 720px) {
  .callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; gap: .5rem; padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
    background: rgba(252,251,248,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
  .callbar a { flex: 1; text-align: center; padding: .8rem; border-radius: 999px;
    font-weight: 700; font-size: .95rem; text-decoration: none; }
  .callbar .c1 { background: var(--teal-dark); color: #fff; }
  .callbar .c2 { background: var(--sand); color: var(--ink); border: 1px solid var(--line); }
  body { padding-bottom: 4.6rem; }
}
@media (min-width: 721px) { .callbar { display: none } }
