/* ============================================================
   Design P — "Kinetic Motion"
   Ink canvas, lime accent, CSS-only kinetic type: staggered word
   reveals, a rotating word list, a service marquee. No video files.
   Everything animated switches off under prefers-reduced-motion.
   Space Grotesk + Inter.
   ============================================================ */
:root {
  --bg: #0b0d12; --bg-soft: #12151d; --card: #151924; --ink: #f2f4f8; --muted: #a2aab8;
  --accent: #c8ff3d; --accent-2: #b3ea2a; --accent-ink: #0b0d12; --accent-soft: rgba(200,255,61,.12);
  --line: rgba(255,255,255,.12); --line-strong: rgba(255,255,255,.35); --gold: #c8ff3d; --radius: 16px; --btn-radius: 999px;
  --shadow: none; --nav-ink: #f2f4f8; --header-bg: rgba(11,13,18,.9);
  --font-head: 'Space Grotesk', system-ui, sans-serif; --font-body: 'Inter', system-ui, sans-serif; --head-track: -0.03em; --head-weight: 700;
  --footer-bg: #05060a; --sb-bg: rgba(11,13,18,.96); --ins-bg: #12151d;
}
/* ---- shared component base (variables set per design in :root above) ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: var(--head-track, -0.01em); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: var(--head-weight, 700); }
h3 { font-size: 1.12rem; font-weight: 700; }
.container { max-width: var(--container, 1160px); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-head { max-width: 46rem; margin-bottom: 36px; }
.section-sub { color: var(--muted); margin-top: 10px; font-size: 1.02rem; }
section { padding: var(--section-pad, 84px) 0; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } * { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; } }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: var(--btn-radius, 999px); font-weight: 700; font-size: .95rem; text-decoration: none; border: 1.5px solid transparent; transition: transform .15s, background .15s, color .15s, border-color .15s; cursor: pointer; font-family: var(--font-body); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong, var(--line)); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-light { background: #fff; color: var(--accent); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--header-bg, var(--bg)); border-bottom: 1px solid var(--line); backdrop-filter: saturate(150%) blur(8px); }
.header-in { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand img { height: 46px; width: auto; border-radius: 8px; }
.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: .93rem; color: var(--nav-ink, var(--ink)); opacity: .85; }
.main-nav a:hover { opacity: 1; color: var(--accent); }
.header-cta { display: flex; gap: 8px; align-items: center; }
.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; margin-left: auto; }
.nav-burger span { width: 20px; height: 2px; background: var(--nav-ink, var(--ink)); display: block; transition: transform .2s, opacity .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1000px) {
  .header-cta .btn-ghost { display: none; }
  .main-nav { gap: 16px; }
}
@media (max-width: 860px) {
  .header-cta { display: none; }
  .nav-burger { display: flex; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--header-bg, var(--bg)); border-bottom: 1px solid var(--line); flex-direction: column; gap: 0; padding: 8px 24px 16px; box-shadow: 0 20px 40px rgba(0,0,0,.12); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
}

/* press strip */
.press { padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.press-label { text-align: center; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.press-logos { display: flex; gap: 34px; justify-content: center; align-items: center; flex-wrap: wrap; opacity: .8; }
.press-logos img { height: 26px; width: auto; filter: grayscale(1); }
.press-text { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--muted); }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: relative; }
.svc-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft, var(--bg-soft)); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .96rem; }
.svc-card-cta { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.svc-card-cta p { color: inherit; opacity: .9; margin-bottom: 16px; }
.svc-num { position: absolute; top: 18px; right: 22px; font-family: var(--font-head); font-weight: 800; color: var(--accent); opacity: .5; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* why */
.why { background: var(--bg-soft); }
.why-in { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.check-list { list-style: none; display: grid; gap: 14px; margin: 18px 0 26px; }
.check-list li { padding-left: 32px; position: relative; color: var(--muted); }
.check-list li strong { color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: .8rem; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.stat-row { display: flex; gap: 28px; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--accent); line-height: 1; }
.stat span { font-size: .84rem; color: var(--muted); }
@media (max-width: 860px) { .why-in { grid-template-columns: 1fr; gap: 28px; } }

/* reviews */
.grating { display: flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--muted); font-size: .95rem; }
.stars { color: var(--gold, #f5b301); letter-spacing: 1px; }
.rev-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 16px; }
.rev-card { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-head > div { flex: 1; display: flex; flex-direction: column; }
.rev-head strong { font-size: .95rem; }
.rev-head .stars { font-size: .85rem; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.g-mini { width: 20px; height: 20px; }
.rev-card p { color: var(--muted); font-size: .97rem; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft, var(--bg-soft)); color: var(--accent); font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.team-card h3 { font-size: 1.2rem; }
.team-creds { color: var(--accent); font-weight: 700; font-size: .86rem; margin: 4px 0 12px; }
.team-card > p:not(.team-creds) { color: var(--muted); font-size: .94rem; }
.cred-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.cred-chips span { font-size: .74rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: var(--bg-soft); color: var(--ink); border: 1px solid var(--line); }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

/* assoc + insurance */
.assoc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.assoc-card { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; align-items: center; justify-content: center; min-height: 92px; }
.assoc-card img { max-height: 54px; width: auto; }
.insurance { margin-top: 24px; background: var(--accent-soft, var(--bg-soft)); border-radius: var(--radius); padding: 18px 22px; font-size: .98rem; }
.insurance a { color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .assoc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .assoc-grid { grid-template-columns: repeat(2, 1fr); } }

/* insurance strip */
.ins-strip { padding: 28px 0; background: var(--ins-bg, var(--bg-soft)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ins-in { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ins-label { font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ins-list { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.ins-list li { background: var(--card, #fff); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: .9rem; display: flex; align-items: center; }
.ins-list img { height: 20px; width: auto; }
.ins-note { color: var(--muted); font-size: .92rem; margin-left: auto; }
.ins-note a { color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .ins-note { margin-left: 0; } }

/* conditions */
.cond-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cond-card { display: block; text-decoration: none; background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform .15s, border-color .15s; }
.cond-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.cond-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cond-card p { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.cond-more { color: var(--accent); font-weight: 700; font-size: .88rem; }
@media (max-width: 960px) { .cond-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cond-grid { grid-template-columns: 1fr; } }

/* first visit */
.firstvisit { background: var(--bg-soft); }
.fv-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: fv; }
.fv-step { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; box-shadow: var(--shadow); }
.fv-num { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.fv-step h3 { margin-bottom: 6px; }
.fv-step p { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .fv-steps { grid-template-columns: 1fr; } }

/* faq */
.faq-in { max-width: 820px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 20px; }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 18px 28px 18px 0; list-style: none; position: relative; font-family: var(--font-head); font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); padding: 0 0 18px; }
.faq-more { margin-top: 18px; color: var(--muted); }
.faq-more a { color: var(--accent); font-weight: 700; }

/* stats bar */
.statsbar { padding: 26px 0; background: var(--stats-bg, var(--accent)); color: var(--stats-ink, var(--accent-ink)); }
.statsbar-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.statsbar strong { display: block; font-family: var(--font-head); font-size: 2rem; line-height: 1; }
.statsbar span { font-size: .84rem; opacity: .85; }
@media (max-width: 720px) { .statsbar-in { grid-template-columns: repeat(2, 1fr); } }

/* locations */
.loc-head { max-width: 46rem; margin-bottom: 36px; }
.loc-sub { color: var(--muted); margin-top: 10px; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loc-card { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.loc-badge { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px; }
.loc-badge.is-open { background: #e6f6ee; color: #12734a; }
.loc-badge.is-soon { background: #fff4e0; color: #9a5b00; }
.loc-card h3 { font-size: 1.35rem; }
.loc-addr { font-style: normal; font-weight: 600; }
.loc-meta { color: var(--muted); font-size: .92rem; }
.loc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 8px; }
.loc-map iframe { width: 100%; height: 220px; border: 0; border-radius: calc(var(--radius) - 6px); }
.loc-map-soon { height: 220px; border-radius: calc(var(--radius) - 6px); border: 2px dashed var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); gap: 4px; }
.loc-map-soon span { font-size: 1.6rem; }
.loc-soon { background: var(--bg-soft); }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }

/* contact */
.contact-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
.contact-card { background: var(--card, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-rows { display: grid; gap: 10px; margin-top: 22px; }
.contact-row { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: calc(var(--radius) - 4px); text-decoration: none; background: var(--bg-soft); }
a.contact-row:hover { border-color: var(--accent); }
.c-ico { font-size: 1.3rem; }
.contact-row small { color: var(--muted); }
.contact-row small a { color: var(--accent); }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; border-radius: var(--radius); }
@media (max-width: 860px) { .contact-in { grid-template-columns: 1fr; } }

/* footer */
.footer { background: var(--footer-bg, var(--ink)); color: var(--footer-ink, #fff); padding: 56px 0 24px; }
.footer-in { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.f-brand img { height: 48px; width: auto; border-radius: 8px; margin-bottom: 14px; }
.f-col p { opacity: .8; font-size: .92rem; }
.f-col h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; opacity: .7; }
.f-col a { display: block; text-decoration: none; opacity: .85; font-size: .94rem; margin-bottom: 8px; }
.f-col a:hover { opacity: 1; text-decoration: underline; }
.f-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 36px; padding-top: 18px; font-size: .82rem; opacity: .7; }
@media (max-width: 860px) { .footer-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-in { grid-template-columns: 1fr; } }

/* sticky mobile call/text bar */
.sticky-bar { display: none; }
@media (max-width: 760px) {
  .sticky-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: var(--sb-bg, rgba(255,255,255,.96)); border-top: 1px solid var(--line); backdrop-filter: blur(8px); }
  .sticky-bar a { text-decoration: none; text-align: center; padding: 12px 8px; border-radius: 12px; font-weight: 800; font-size: .95rem; }
  .sb-call { background: var(--accent); color: var(--accent-ink); }
  .sb-text { background: var(--bg-soft); color: var(--ink); border: 1.5px solid var(--line-strong, var(--line)); }
  body { padding-bottom: 76px; }
  .mphc-launcher { bottom: 88px !important; }
  .mph-switch { bottom: 84px !important; }
  .mphc-panel, .mphc-teaser { bottom: 158px !important; }
}

.btn-outline { color: var(--ink); }
.btn-light { background: var(--accent-ink); color: var(--accent); }
.svc-card-cta { color: var(--accent-ink); }
.check-list li strong { color: var(--ink); }
.loc-badge.is-open { background: var(--accent-soft); color: var(--accent); }
.loc-badge.is-soon { background: rgba(255,255,255,.08); color: var(--muted); }
.loc-soon { background: var(--bg-soft); }
.contact-row { background: var(--bg-soft); }
.press { background: var(--bg-soft); }
.press-logos img { filter: grayscale(1) invert(1); }
.cred-chips span { background: var(--bg-soft); }
.hero { padding: 70px 0 0; overflow: hidden; }
h1.kin { font-size: clamp(3rem, 11vw, 9.5rem); line-height: .9; font-weight: 700; letter-spacing: -.05em; text-transform: uppercase; margin: 8px 0 30px; }
.kin-line { display: block; overflow: hidden; }
.kin-word { display: inline-block; transform: translateY(110%); animation: kinUp .9s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: calc(var(--d) * .12s + .1s); }
.kin-outline { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.kin-lime { color: var(--accent); }
@keyframes kinUp { to { transform: translateY(0); } }
.hero-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: end; border-top: 1px solid var(--line); padding-top: 24px; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 34rem; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.rotator { display: flex; gap: 12px; align-items: baseline; margin: 34px 0 30px; font-family: var(--font-head); font-size: 1.3rem; }
.rot-label { color: var(--muted); }
.rot-words { position: relative; height: 1.5em; overflow: hidden; display: inline-block; min-width: 14ch; }
.rot-words b { position: absolute; left: 0; top: 0; white-space: nowrap; color: var(--accent); opacity: 0; transform: translateY(100%); animation: rot 10s infinite; }
.rot-words b:nth-child(1) { animation-delay: 0s; } .rot-words b:nth-child(2) { animation-delay: 2s; } .rot-words b:nth-child(3) { animation-delay: 4s; } .rot-words b:nth-child(4) { animation-delay: 6s; } .rot-words b:nth-child(5) { animation-delay: 8s; }
@keyframes rot { 0% { opacity: 0; transform: translateY(100%); } 4%, 18% { opacity: 1; transform: translateY(0); } 22%, 100% { opacity: 0; transform: translateY(-100%); } }
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 22px; align-items: center; animation: mq 30s linear infinite; font-family: var(--font-head); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; }
.marquee-track i { color: var(--accent); font-style: normal; }
@keyframes mq { to { transform: translateX(-50%); } }
.hero-photo-band { padding: 0; }
.hero-photo-band img { width: 100%; aspect-ratio: 21/8; object-fit: cover; object-position: center 30%; border-radius: 0 0 var(--radius) var(--radius); filter: contrast(1.05) saturate(.9); }
.hero-photo-band .reveal { transform: translateY(0) scale(1.03); }
.hero-photo-band .reveal.in { transform: none; }
.svc-card:hover { border-color: var(--accent); }
.svc-num { opacity: 1; }
@media (max-width: 800px) { .hero-row { grid-template-columns: 1fr; } .hero-btns { justify-content: flex-start; } .hero-photo-band img { aspect-ratio: 4/3; } }
@media (prefers-reduced-motion: reduce) {
  .kin-word { transform: none; animation: none; }
  .rot-words b { animation: none; position: static; opacity: 1; transform: none; }
  .rot-words b:not(:first-child) { display: none; }
  .marquee-track { animation: none; }
}
