/* === tokens.css === */
/* tokens.css — Radiance Electric design tokens (demo) */

:root {
  /* ---- Brand palette ---- */
  --ink: #0a0f1e;          /* deep navy base for dark sections */
  --ink-2: #0e1530;        /* slightly lifted navy */
  --ink-3: #121a3a;        /* card on dark */
  --radiance: #ffb23e;     /* warm amber-gold — the "radiance" glow */
  --radiance-2: #ff9d2e;   /* deeper amber for gradients */
  --spark: #38bdf8;        /* electric cyan accent */
  --spark-2: #2563eb;      /* deeper electric blue */

  /* ---- Neutrals (light sections) ---- */
  --bg: #ffffff;
  --bg-soft: #f6f8fc;      /* page section tint */
  --bg-tint: #eef3fb;
  --line: #e3e9f3;         /* hairline borders */
  --text: #0f172a;         /* primary body text on light */
  --muted: #5b6678;        /* secondary text on light */
  --muted-d: #9fb0cc;      /* secondary text on dark */
  --on-dark: #eaf0fb;      /* primary text on dark */

  /* ---- Type ---- */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* ---- Radius / shadow ---- */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10,15,30,.06), 0 4px 12px rgba(10,15,30,.05);
  --shadow: 0 8px 30px rgba(10,15,30,.10);
  --shadow-lg: 0 24px 60px rgba(10,15,30,.18);
  --glow: 0 0 0 1px rgba(255,178,62,.35), 0 12px 40px rgba(255,178,62,.28);

  /* ---- Layout ---- */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 120px);

  /* ---- Gradients ---- */
  --grad-radiance: linear-gradient(135deg, var(--radiance) 0%, var(--radiance-2) 100%);
  --grad-ink: radial-gradient(1200px 600px at 78% -10%, rgba(56,189,248,.18), transparent 60%),
              radial-gradient(900px 500px at 10% 110%, rgba(255,178,62,.16), transparent 55%),
              linear-gradient(180deg, #0a0f1e 0%, #0c1226 100%);
}


/* === site-chrome.css === */
/* site-chrome.css — Radiance Electric shared chrome + components (demo) */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .4em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--radiance-2);
  margin: 0 0 .8rem;
}
.eyebrow--dark { color: var(--radiance); }
.section-head { max-width: 660px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.center { text-align: center; margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85em 1.5em; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--grad-radiance); color: #2a1800; box-shadow: var(--glow); }
.btn--primary:hover { box-shadow: 0 0 0 1px rgba(255,178,62,.5), 0 16px 48px rgba(255,178,62,.4); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--on-dark); border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }

/* ---- Top demo banner ---- */
.demobar {
  background: var(--ink); color: var(--muted-d); font-size: .82rem;
  text-align: center; padding: 7px var(--gutter); letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.demobar strong { color: var(--radiance); font-weight: 600; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.4rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; color: var(--ink); }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand span b { color: var(--radiance-2); }
.nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav a { font-size: .96rem; font-weight: 500; color: var(--text); transition: color .15s; }
.nav a:hover { color: var(--radiance-2); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-family: var(--font-display); font-weight: 700; color: var(--ink); white-space: nowrap; }
.header-phone span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .7rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

/* ---- Hero ---- */
.hero { position: relative; background: var(--grad-ink); color: var(--on-dark); overflow: hidden; }
.hero::after { /* subtle circuit grid */
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: radial-gradient(900px 500px at 70% 20%, #000, transparent 70%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; padding-block: clamp(64px,9vw,110px); }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); color: #fff; }
.hero h1 em { font-style: normal; background: var(--grad-radiance); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: clamp(1.05rem,1.6vw,1.25rem); color: var(--muted-d); max-width: 540px; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero__trust div { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; }
.hero__trust div span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .82rem; color: var(--muted-d); letter-spacing: .02em; }
.stars { color: var(--radiance); letter-spacing: 2px; }

/* hero visual card */
.hero__art { position: relative; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg);
  padding: 1.6rem; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card__row { display: flex; align-items: center; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card__row:last-child { border-bottom: 0; }
.hero-card__ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,178,62,.14); flex: none; }
.hero-card__ic svg { width: 22px; height: 22px; stroke: var(--radiance); }
.hero-card__t { display: block; font-family: var(--font-display); font-weight: 600; color: #fff; font-size: .98rem; }
.hero-card__s { display: block; font-size: .82rem; color: var(--muted-d); }
.hero-card__badge { margin-left: auto; font-size: .72rem; font-weight: 600; color: var(--spark); background: rgba(56,189,248,.12); padding: .25em .7em; border-radius: var(--r-pill); }

/* ---- Logo / trust strip ---- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; color: var(--muted); }
.logos span { font-family: var(--font-display); font-weight: 600; font-size: .95rem; opacity: .7; }

/* ---- Service cards ---- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem; transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-radiance); margin-bottom: 1.1rem; box-shadow: 0 8px 20px rgba(255,178,62,.3); }
.card__ic svg { width: 26px; height: 26px; stroke: #3a2300; }
.card h3 { font-size: 1.2rem; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card__link { display: inline-flex; align-items: center; gap: .4em; margin-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--radiance-2); }
.card__link svg { width: 16px; height: 16px; transition: transform .15s; }
.card:hover .card__link svg { transform: translateX(3px); }

/* ---- Feature / why split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: .9rem; }
.feature-list .fi-ic { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--bg-tint); }
.feature-list .fi-ic svg { width: 17px; height: 17px; stroke: var(--spark-2); }
.feature-list b { font-family: var(--font-display); display: block; font-size: 1.02rem; margin-bottom: .1rem; }
.feature-list span { color: var(--muted); font-size: .95rem; }
.media-card { border-radius: var(--r-lg); background: var(--grad-ink); color: var(--on-dark); padding: clamp(28px,4vw,44px); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.media-card .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem,8vw,4.6rem); background: var(--grad-radiance); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.media-card .big-sub { color: var(--muted-d); font-size: 1.05rem; }
.media-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.12); margin: 1.6rem 0; }
.media-card .mc-row { display: flex; justify-content: space-between; align-items: baseline; padding: .5rem 0; }
.media-card .mc-row b { color: #fff; font-family: var(--font-display); }
.media-card .mc-row span { color: var(--muted-d); font-size: .92rem; }

/* ---- Stats band ---- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,5vw,3rem); background: var(--grad-radiance); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .95rem; }

/* ---- Reviews ---- */
.review { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; }
.review .stars { font-size: 1.05rem; margin-bottom: .7rem; }
.review p { font-size: 1rem; color: var(--text); }
.review .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.review .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-radiance); color: #3a2300; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.review .who b { font-family: var(--font-display); font-size: .95rem; }
.review .who span { display: block; color: var(--muted); font-size: .82rem; }

/* ---- Service-area chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .55em 1.1em; font-size: .92rem; font-weight: 500; }
.chip--active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- CTA band ---- */
.cta-band { background: var(--grad-ink); color: var(--on-dark); border-radius: var(--r-lg); padding: clamp(36px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-band p { color: var(--muted-d); max-width: 540px; margin-inline: auto; font-size: 1.08rem; }
.cta-band .hero__cta { justify-content: center; margin-top: 1.6rem; }

/* ---- FAQ ---- */
.faq { display: grid; gap: .8rem; max-width: 800px; }
.faq details { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 1.1rem 1.3rem; }
.faq summary { font-family: var(--font-display); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--radiance-2); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .9rem 0 0; color: var(--muted); }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--muted-d); padding-block: clamp(48px,6vw,72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.site-footer a:hover { color: var(--radiance); }
.footer-phone { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: var(--grad-ink); color: var(--on-dark); }
.page-hero__inner { padding-block: clamp(56px,7vw,90px); max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem,4.5vw,3.2rem); }
.page-hero p { color: var(--muted-d); font-size: 1.12rem; margin: 0; }
.crumbs { font-size: .85rem; color: var(--muted-d); margin-bottom: 1.1rem; }
.crumbs a:hover { color: var(--radiance); }

/* ---- Proof-of-work "Recent work" cards ---- */
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.work-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .2s ease; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-photo { position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center; display: grid; place-items: center; overflow: hidden; }
/* Placeholder visual (until a real job photo is dropped in) */
.work-photo--ph { background: var(--grad-ink); }
.work-photo--ph svg { width: 46px; height: 46px; stroke: rgba(255,178,62,.85); }
.work-photo--ph .ph-note { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-d); }
.work-photo.has-img { background-color: #0a0f1e; }
.work-photo.has-img svg, .work-photo.has-img .ph-note { display: none; }
.work-tag { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--grad-radiance); color: #2a1800; font-family: var(--font-display); font-weight: 700; font-size: .74rem; padding: .3em .75em; border-radius: var(--r-pill); box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.work-ba { position: absolute; top: 10px; right: 10px; z-index: 2; background: rgba(10,15,30,.72); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .28em .6em; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.work-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.work-meta { font-size: .82rem; color: var(--muted); margin-bottom: .6rem; }
.work-meta b { font-family: var(--font-display); color: var(--text); }
.work-desc { font-size: .96rem; color: #28324a; margin: 0 0 1rem; }
.work-ai { display: inline-flex; align-items: center; gap: .35em; font-size: .7rem; font-weight: 600; color: var(--spark-2); background: var(--bg-tint); padding: .25em .6em; border-radius: var(--r-pill); align-self: flex-start; margin-bottom: .9rem; }
.work-review { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.work-review .stars { font-size: .9rem; }
.work-review p { font-size: .9rem; color: var(--text); margin: .4rem 0 .5rem; font-style: italic; }
.work-review .wr-who { font-size: .8rem; color: var(--muted); font-family: var(--font-display); font-weight: 600; }
.work-photo--split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 0; }
.work-photo--split > div { position: relative; background: var(--grad-ink); display: grid; place-items: center; }
.work-photo--split > div span { position: absolute; top: 8px; left: 8px; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-d); }
.work-photo--split svg { width: 30px; height: 30px; stroke: rgba(255,178,62,.8); }

@media (max-width: 960px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .work-grid { grid-template-columns: 1fr; } }

/* ---- Mobile sticky CTA ---- */
.mobile-cta { display: none; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  .nav, .header-phone, .header-cta .btn--primary { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: .5rem var(--gutter) 1rem;
  }
  .nav.open a { padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .grid--3, .grid--4, .grid--2, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { flex: 1; justify-content: center; }
  body { padding-bottom: 74px; }
}

/* ---- Placeholder markers (v1 — content pending from client) ---- */
/* Obvious amber highlight so missing info is unmistakable on review.
   Strip these before the public launch once real content lands. */
.ph {
  background: #ffe7bd; color: #5a3a00; border: 1px dashed #e0941f;
  border-radius: 5px; padding: 0 .4em; font-style: normal; font-weight: 600;
}
.ph::before { content: "✎\00a0"; opacity: .65; font-size: .85em; }
.ph-block {
  display: block; background: #fff6e8; border: 1px dashed #e0941f;
  border-radius: 10px; padding: .9rem 1.1rem; color: #6b4a12; font-size: .94rem;
  margin: .4rem 0;
}
.ph-block::before { content: "✎ Placeholder — "; font-weight: 700; color: #b5780f; }

/* ---- Forms (contact) ---- */
.form { display: grid; gap: 1rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow); }
.form .field { display: grid; gap: .4rem; }
.form label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.form input, .form select, .form textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: #fff; color: var(--text); }
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--radiance); outline-offset: 1px; border-color: var(--radiance); }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .78rem; color: var(--muted); margin: 0; text-align: center; }
.form .urgent-check { display: flex; gap: .6rem; align-items: flex-start; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft); font-size: .92rem; color: var(--text); cursor: pointer; }
.form .urgent-check input { width: auto; margin: .15rem 0 0; flex: none; }
.form .urgent-check strong { color: var(--radiance-2); }
.form .consent { display: flex; gap: .55rem; align-items: flex-start; font-size: .82rem; color: var(--muted); cursor: pointer; }
.form .consent input { width: auto; margin: .15rem 0 0; flex: none; }
.form-fineprint { font-size: .72rem; color: var(--muted); margin: 0; line-height: 1.5; }
.form-fineprint a { color: var(--radiance-2); font-weight: 600; }

/* ---- Legal pages ---- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 1.2rem; display: grid; gap: .5rem; margin: 0 0 1em; }
.legal a { color: var(--radiance-2); font-weight: 600; }
.form-status { font-size: .92rem; padding: .75rem 1rem; border-radius: 8px; }
.form-status--error { background: #fdecec; color: #a12020; border: 1px solid #f3c0c0; }
.form.is-submitted .form-body { display: none; }
.form-success { text-align: center; padding: 1.2rem .5rem; }
.form-success .ok-ic { width: 54px; height: 54px; border-radius: 50%; background: var(--grad-radiance); display: grid; place-items: center; margin: 0 auto 1rem; }
.form-success .ok-ic svg { width: 28px; height: 28px; stroke: #3a2300; }

/* ---- Contact NAP block ---- */
.nap { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1.1rem; }
.nap li { display: flex; gap: .9rem; align-items: flex-start; }
.nap .nap-ic { width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--bg-tint); }
.nap .nap-ic svg { width: 19px; height: 19px; stroke: var(--spark-2); }
.nap b { font-family: var(--font-display); display: block; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.nap a, .nap span { font-size: 1.05rem; color: var(--text); }

/* ---- Quote modal ---- */
.quote-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: clamp(12px, 4vw, 32px); }
.quote-modal[hidden] { display: none; }
.quote-modal-backdrop { position: absolute; inset: 0; background: rgba(8, 12, 26, .62); backdrop-filter: blur(3px); }
.quote-modal-panel { position: relative; z-index: 1; width: 100%; max-width: 880px; max-height: 92vh; overflow: auto; background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.quote-modal-close { position: absolute; top: 10px; right: 12px; z-index: 3; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.quote-modal-close:hover { background: rgba(255, 255, 255, .26); }
.qm-grid { display: grid; grid-template-columns: .82fr 1fr; }
.qm-aside { background: var(--grad-ink); color: var(--on-dark); padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; justify-content: center; }
.qm-aside h2 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.qm-aside-lede { color: var(--muted-d); font-size: .98rem; }
.qm-aside-meta { display: grid; gap: .6rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .92rem; color: var(--muted-d); }
.qm-aside-meta strong { color: #fff; font-family: var(--font-display); }
.qm-aside-meta a { color: var(--radiance); font-weight: 600; }
.qm-main { padding: clamp(1.4rem, 3vw, 2.2rem); }
.qm-main .form { border: 0; box-shadow: none; padding: 0; }
@media (max-width: 720px) {
  .qm-grid { grid-template-columns: 1fr; }
  .qm-aside { display: none; }
}
