/* ==========================================================================
   JT Electrical NI — Domestic and commercial electrical work, Belfast
   Concept landing page stylesheet (archetype: editorial)
   Design tokens generated specifically for this business.
   Mobile-first, dependency-free.
   ========================================================================== */

:root {
  --p: #1f2937;
  --p-dark: #0b1220;
  --acc: #f4b41a;
  --ink: #0f1620;
  --ink-soft: #4d5866;
  --surf: #ffffff;
  --soft: #f2f4f7;
  --line: #dde2e8;
  --radius: 6px;
  --radius-lg: calc(6px * 2);
  --shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.35);
  --shadow-lg: 0 40px 80px -40px rgba(15, 23, 42, 0.45);
  --font-h: 'Space Grotesk', "Segoe UI", system-ui, sans-serif;
  --font-b: 'Inter', "Segoe UI", system-ui, -apple-system, sans-serif;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surf);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--p-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--acc); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--acc); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-h); line-height: 1.12; margin: 0 0 0.6em; color: var(--ink); letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 1.4rem + 3.1vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem); font-weight: 600; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.4rem, 760px); }
section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 99; background: #fff; padding: 0.6rem 1rem; border-radius: 8px; }
.lede { font-size: 1.06rem; color: var(--ink-soft); max-width: 62ch; }
.kicker {
  font-family: var(--font-h); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.76rem; font-weight: 600; color: var(--acc); margin: 0 0 0.7rem;
}
.sec-head { max-width: 68ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.module-note, .area-note { font-size: 0.9rem; color: var(--ink-soft); }
.hero-footnote { width: min(100% - 2.4rem, var(--wrap)); margin: 1.4rem auto 0; font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem; border-radius: var(--radius);
  background: var(--p); color: #fff; border: 2px solid var(--p);
  font-family: var(--font-h); font-weight: 600; font-size: 1rem; text-decoration: none;
  cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }
.btn-primary { background: var(--p); border-color: var(--p); color: #fff; }
.btn-primary:hover { background: var(--p-dark); border-color: var(--p-dark); }
.btn-ghost { background: transparent; color: var(--p-dark); border-color: var(--p); }
.btn-ghost:hover { background: var(--p); color: #fff; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.link-arrow { font-weight: 600; font-family: var(--font-h); text-decoration: none; }
.link-arrow::after { content: " \2192"; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--surf); border-bottom: 1px solid var(--line); }
.topbar { background: var(--p-dark); color: #fff; font-size: 0.82rem; }
.topbar-in { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; justify-content: space-between; padding: 0.45rem 0; }
.topbar a { color: #fff; font-weight: 600; }
.nav-row { display: flex; align-items: center; gap: 1rem; padding: 0.7rem 0; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-h); font-size: 1.05rem; color: var(--ink); }
.brand-text em { font-style: normal; font-size: 0.74rem; color: var(--ink-soft); letter-spacing: 0.03em; }
.main-nav { display: flex; gap: 1.15rem; }
.main-nav a { font-size: 0.93rem; font-weight: 500; color: var(--ink); text-decoration: none; }
.main-nav a:hover { color: var(--acc); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--acc); outline-offset: 3px; }
.burger { display: none; }
.sticky-call { display: none; }
/* ---------- hero variants ---------- */
.hero { padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.hero-copy h1 { margin-bottom: 0.7rem; }
.hero-sub { font-size: clamp(1.02rem, 1rem + 0.35vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.4rem 0 1rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.chip { font-size: 0.83rem; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.8rem; color: var(--ink-soft); }
.chips.inverse .chip { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.28); }
.hero-grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.hero-check { list-style: none; padding: 0; display: grid; gap: 0.45rem; margin: 1rem 0 1.3rem; }
.hero-check li { position: relative; padding-left: 1.6rem; }
.hero-check li::before { content: ""; position: absolute; left: 0; top: 0.52em; width: 0.62rem; height: 0.62rem; background: var(--acc); border-radius: 2px; transform: rotate(45deg); }
.hero-check.centre { justify-items: start; margin-inline: auto; max-width: 34rem; }
.badge-row { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1rem; }
.badge-row li { font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: var(--soft); color: var(--p-dark); border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.7rem; }
.art-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; background: radial-gradient(120% 120% at 15% 15%, var(--p) 0%, var(--p-dark) 55%, #0b1220 100%); }
.art-panel { position: absolute; inset: 12% 10% 22% 12%; border: 1px dashed rgba(255,255,255,0.35); border-radius: var(--radius); display: flex; align-items: flex-end; padding: 1rem; }
.art-label { color: rgba(255,255,255,0.82); font-size: 0.8rem; letter-spacing: 0.04em; }
.art-badge { position: absolute; right: 1.1rem; bottom: 1.1rem; background: var(--acc); color: #10202a; border-radius: var(--radius); padding: 0.7rem 0.95rem; text-align: center; font-family: var(--font-h); }
.art-badge strong { display: block; font-size: 1.35rem; line-height: 1; }
.art-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero.bold { background: linear-gradient(160deg, var(--p-dark) 0%, #0c1320 100%); color: #fff; }
.hero.bold h1, .hero.bold .hero-sub { color: #fff; }
.hero.bold .hero-sub { color: rgba(255,255,255,0.78); }
.hero.bold .kicker { color: var(--acc); }
.hero.bold .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero.bold .btn-ghost:hover { background: #fff; color: var(--p-dark); }
.hero.bold .hero-footnote { color: rgba(255,255,255,0.6); }
.hero-center { text-align: center; max-width: 60rem; }
.hero-center .hero-sub { margin-inline: auto; }
.hero-phone-block { display: inline-flex; flex-direction: column; gap: 0.2rem; margin: 1.2rem auto; padding: 1rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--soft); }
.hero-phone-block span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.hero-phone-block a { font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; text-decoration: none; }
.hero.editorial .hero-grid.ed { align-items: start; }
.hero-side { display: grid; gap: 1rem; }
.side-block { border-top: 3px solid var(--p); padding-top: 0.9rem; }
.side-block h2 { font-size: 1.1rem; }
.side-block ul { list-style: none; padding: 0; display: grid; gap: 0.35rem; font-size: 0.95rem; }
.side-block ul li { padding-left: 1rem; position: relative; }
.side-block ul li::before { content: "\2014"; position: absolute; left: 0; color: var(--acc); }
.side-block.alt { background: var(--soft); padding: 1rem; border-radius: var(--radius); border: 1px solid var(--line); border-top-width: 3px; }
.side-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.side-big { display: block; font-family: var(--font-h); font-size: 2rem; }
/* ---------- trust strip ---------- */
.trust-strip { background: var(--soft); border-block: 1px solid var(--line); padding: 1rem 0; }
.trust-in { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: center; }
.trust-pill { font-size: 0.86rem; font-weight: 500; color: var(--ink-soft); display: inline-flex; gap: 0.45rem; align-items: center; }
.trust-pill::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--acc); }

/* ---------- services ---------- */
.cards { display: grid; gap: 1.1rem; }
.card { background: var(--surf); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow); }
.card-ico { display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: var(--radius); background: var(--soft); color: var(--p-dark); font-size: 1.1rem; margin-bottom: 0.6rem; }
.card h3 { margin-bottom: 0.35rem; }
.card p { color: var(--ink-soft); margin-bottom: 0.4rem; }
.card-meta { font-size: 0.85rem; color: var(--acc); font-weight: 600; margin: 0; }
.svc-grid { display: grid; gap: 1.1rem; }
.svc-card { border-left: 3px solid var(--p); background: var(--soft); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.3rem; }
.svc-ico { font-size: 1.2rem; }
.service-rows { list-style: none; padding: 0; margin: 0 0 2rem; }
.service-row { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.service-row h3 { margin-bottom: 0.25rem; }
.service-row p { margin: 0; color: rgba(255,255,255,0.75); }
.row-num { font-family: var(--font-h); font-size: 1.5rem; color: var(--acc); line-height: 1; }
.row-meta { grid-column: 2; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.editorial-list { display: grid; gap: 1.6rem; }
.ed-item { border-top: 1px solid var(--line); padding-top: 1rem; }
.ed-item h3 { font-size: 1.35rem; }
.ed-meta { font-size: 0.9rem; color: var(--acc); font-weight: 600; }
.bento { display: grid; gap: 1rem; }
.tile { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; }
.tile-ico { font-size: 1.3rem; color: var(--acc); }
.tile-3 { background: var(--p); color: #fff; border-color: var(--p); }
.tile-3 h3, .tile-3 p { color: #fff; }
.tile-3 p { color: rgba(255,255,255,0.82); }

/* ---------- why / benefits ---------- */
.why-in { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
.check-list { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.check-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0.1em; width: 1.3rem; height: 1.3rem; display: grid; place-items: center; background: var(--soft); color: var(--p-dark); border-radius: 50%; font-size: 0.8rem; font-weight: 700; }
.check-list strong { display: block; font-family: var(--font-h); }
.check-list span { color: var(--ink-soft); font-size: 0.96rem; }
.why-aside { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; }
.aside-art img { width: 100%; height: auto; border-radius: var(--radius); }
.aside-note { font-size: 0.94rem; color: var(--ink-soft); }
.ed-facts { display: grid; gap: 0.3rem 1.5rem; margin: 0; }
.ed-facts dt { font-family: var(--font-h); font-weight: 600; margin-top: 1rem; }
.ed-facts dd { margin: 0; color: var(--ink-soft); }
/* ---------- process ---------- */
.steps, .timeline { list-style: none; padding: 0; display: grid; gap: 1.1rem; counter-reset: none; }
.step { background: var(--surf); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow); }
.step-num { display: inline-grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--p); color: #fff; font-family: var(--font-h); font-weight: 700; margin-bottom: 0.6rem; }
.timeline { border-left: 2px solid rgba(255,255,255,0.25); padding-left: 1.4rem; }
.timeline .step { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #fff; }
.timeline .step h3 { color: #fff; }
.timeline .step p { color: rgba(255,255,255,0.75); margin: 0; }
.timeline .step-num { background: var(--acc); color: #10202a; }
.process.bold { background: linear-gradient(180deg, #0c1320 0%, var(--p-dark) 100%); color: #fff; }
.process.bold h2 { color: #fff; }

/* ---------- stats + marquee ---------- */
.stats { background: var(--p-dark); color: #fff; padding: 1.6rem 0; }
.stats-in { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); text-align: center; }
.stat strong { display: block; font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--acc); }
.stat span { font-size: 0.86rem; color: rgba(255,255,255,0.78); }
.marquee { overflow: hidden; border-block: 1px solid rgba(255,255,255,0.18); padding: 0.7rem 0; margin-top: 1.6rem; }
.marquee-track { display: flex; gap: 2.5rem; white-space: nowrap; animation: slide 26s linear infinite; }
.marquee-track span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.72); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- module / detail ---------- */
.price-list { list-style: none; padding: 0; display: grid; gap: 0; }
.price-list li { display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; justify-content: space-between; padding: 0.9rem 0; border-bottom: 1px dashed var(--line); }
.pl-name { font-family: var(--font-h); font-weight: 600; }
.pl-note { color: var(--ink-soft); font-size: 0.95rem; }
.mod-grid { display: grid; gap: 1.1rem; }
.mod-card { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem; }
.project-grid { display: grid; gap: 1.1rem; }
.proj { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surf); }
.proj h3, .proj p { padding: 0 1.1rem; }
.proj h3 { margin-top: 1rem; margin-bottom: 0.25rem; }
.proj p { color: var(--ink-soft); font-size: 0.95rem; padding-bottom: 1rem; }
.proj-art { height: 130px; }
.art-1 { background: linear-gradient(135deg, var(--p) 0%, var(--acc) 100%); }
.art-2 { background: linear-gradient(135deg, var(--p-dark) 0%, var(--p) 100%); }
.art-3 { background: linear-gradient(135deg, var(--acc) 0%, var(--soft) 100%); }
.art-4 { background: linear-gradient(135deg, var(--soft) 0%, var(--p) 100%); }
.art-5 { background: linear-gradient(135deg, var(--p) 0%, var(--soft) 60%, var(--acc) 100%); }

/* ---------- gallery ---------- */
.gal-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.gal-item { margin: 0; min-height: 150px; border-radius: var(--radius-lg); position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.gal-item figcaption { background: rgba(10, 16, 26, 0.6); color: #fff; font-size: 0.82rem; padding: 0.45rem 0.8rem; width: 100%; }

/* ---------- areas ---------- */
.areas-in { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.area-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-list li { background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.85rem; font-size: 0.9rem; }
.map-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--soft); }
.map-art { height: 230px; position: relative; background:
  linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px) 0 0 / 26px 26px,
  linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px) 0 0 / 26px 26px,
  radial-gradient(circle at 30% 70%, var(--p) 0%, transparent 55%),
  radial-gradient(circle at 72% 32%, var(--acc) 0%, transparent 45%),
  var(--soft); }
.pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--p-dark); color: #fff; font-family: var(--font-h); font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.85rem; }
/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.7rem; }
.faq-item { background: var(--surf); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0.2rem 1.1rem; }
.faq-item summary { display: flex; justify-content: space-between; gap: 1rem; align-items: center; cursor: pointer; padding: 0.9rem 0; font-family: var(--font-h); font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; width: 0.85rem; height: 0.85rem; flex: 0 0 auto; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--p); border-radius: 2px; }
.faq-mark::before { left: 0; top: 45%; width: 100%; height: 2px; }
.faq-mark::after { top: 0; left: 45%; height: 100%; width: 2px; transition: transform 0.2s ease; }
.faq-item[open] .faq-mark::after { transform: scaleY(0); }
.faq-body { padding-bottom: 1rem; color: var(--ink-soft); }
.faq-body p { margin: 0; }

/* ---------- contact + form ---------- */
.contact { background: var(--soft); border-top: 1px solid var(--line); }
.contact-in { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.contact-list li { display: grid; gap: 0.1rem; }
.contact-list span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.contact-list a { font-family: var(--font-h); font-weight: 600; font-size: 1.05rem; text-decoration: none; }
.contact-list.wide { margin-bottom: 1.4rem; }
.enquiry-form, .hero-form-card { background: var(--surf); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow-lg); }
.enquiry-form label, .hero-form-card label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 0.75rem; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea,
.hero-form-card input, .hero-form-card select, .hero-form-card textarea {
  width: 100%; margin-top: 0.3rem; padding: 0.7rem 0.8rem; font: inherit; font-size: 0.98rem;
  border: 1px solid var(--line); border-radius: calc(var(--radius) * 0.85); background: #fff; color: var(--ink);
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus,
.hero-form-card input:focus, .hero-form-card select:focus { outline: 2px solid var(--p); outline-offset: 1px; }
.form-note, .hero-form-note { font-size: 0.84rem; color: var(--ink-soft); }
.demo-note { font-size: 0.8rem; color: var(--ink-soft); background: var(--soft); border: 1px solid var(--line); border-radius: 6px; padding: 0.55rem 0.7rem; margin: 0 0 0.9rem; }
.form-status.demo { color: var(--ink-soft); background: var(--soft); border-radius: 6px; padding: 0.55rem 0.7rem; }
.form-status { font-size: 0.9rem; font-weight: 600; margin: 0.7rem 0 0; }
.form-status.ok { color: #0f7a4a; }
.form-status.err { color: #b3261e; }
.hero-form-card { align-self: start; }
.hero-form-card h2 { font-size: 1.25rem; }

/* ---------- CTA band + footer ---------- */
.cta-band { background: var(--p); color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 0.3rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-in { display: grid; gap: 1.2rem; align-items: center; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cta-band .btn-primary { background: #fff; border-color: #fff; color: var(--p-dark); }
.cta-band .btn-primary:hover { background: var(--acc); border-color: var(--acc); color: #10202a; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--p-dark); }
.site-footer { background: #0d1622; color: rgba(255,255,255,0.78); padding: 3rem 0 1.4rem; font-size: 0.92rem; }
.foot-grid { display: grid; gap: 1.6rem; }
.foot-name { font-family: var(--font-h); font-weight: 600; color: #fff; margin: 0.5rem 0 0.1rem; }
.foot-meta { margin: 0 0 0.4rem; font-size: 0.86rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 0.6rem; }
.foot-list { list-style: none; padding: 0; display: grid; gap: 0.4rem; }
.site-footer a { color: #fff; }
.foot-base { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.14); margin-top: 2rem; padding-top: 1rem; font-size: 0.8rem; }
.foot-logo { margin-bottom: 0.4rem; }

/* ---------- sticky mobile call bar ---------- */
.sticky-call { position: fixed; inset: auto 0 0 0; z-index: 50; display: flex; gap: 0.5rem; padding: 0.55rem; background: rgba(13, 22, 34, 0.96); }
.sticky-call a { flex: 1; text-align: center; padding: 0.8rem 0.5rem; border-radius: var(--radius); font-family: var(--font-h); font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.sc-call { background: var(--acc); color: #10202a; }
.sc-quote { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }

/* ---------- motion ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }

/* ---------- bento hero ---------- */
.hero-bento { display: grid; gap: 1rem; }
.hb-copy { padding: 0.4rem 0; }
.hb-tile { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem; display: flex; flex-direction: column; gap: 0.2rem; }
.hb-k { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.hb-tile strong { font-family: var(--font-h); font-size: 1.4rem; }
.hb-b { background: var(--p); border-color: var(--p); }
.hb-b .hb-k, .hb-b strong { color: #fff; }
.hb-phone { background: var(--p-dark); border-color: var(--p-dark); }
.hb-phone .hb-k { color: rgba(255,255,255,0.75); }
.hb-phone a { font-family: var(--font-h); font-weight: 700; font-size: 1.25rem; color: #fff; text-decoration: none; }

/* ---------- responsive ---------- */
@media (max-width: 899px) {
  .main-nav {
    position: absolute; left: 1.2rem; right: 1.2rem; top: 100%;
    flex-direction: column; gap: 0.2rem; background: var(--surf);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 0.7rem; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.6rem 0.5rem; border-radius: var(--radius); }
  .main-nav a:hover { background: var(--soft); }
  .burger {
    display: inline-flex; flex-direction: column; gap: 4px; justify-content: center;
    width: 44px; height: 44px; padding: 0 10px; background: var(--soft);
    border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
  }
  .burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
  .sticky-call { display: flex; }
  body { padding-bottom: 4.4rem; }
  .topbar-in { justify-content: flex-start; }
}
@media (min-width: 700px) {
  .cards, .svc-grid, .mod-grid, .project-grid, .steps, .bento { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .contact-in { grid-template-columns: repeat(2, 1fr); }
  .areas-in { grid-template-columns: 1.05fr 0.95fr; }
  .cta-in { grid-template-columns: 1.4fr auto; }
  .trust-in { justify-content: space-between; }
  .hero-bento { grid-template-columns: repeat(2, 1fr); }
  .hb-copy { grid-column: span 2; }
  .editorial-list { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.4rem; }
  .ed-facts { grid-template-columns: auto 1fr; align-items: baseline; }
  .faq-list { grid-template-columns: repeat(2, 1fr); }
  .faq-list.single { grid-template-columns: 1fr; }
  .why-in, .hero-grid.ed { grid-template-columns: 1.15fr 0.85fr; }
}
@media (min-width: 1000px) {
  .cards, .svc-grid, .mod-grid, .project-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero.trust .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento .tile:nth-child(1), .bento .tile:nth-child(5) { grid-column: span 2; }
  .hero-bento { grid-template-columns: 1.6fr 1fr 1fr; }
  .hb-copy { grid-column: 1; grid-row: 1 / span 2; }
  .hb-a { grid-column: 2; }
  .hb-b { grid-column: 3; }
  .hb-c { grid-column: 2; }
  .hb-d { grid-column: 3; }
  .editorial-list { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 5rem 1fr 12rem; align-items: baseline; }
  .row-meta { grid-column: 3; text-align: right; }
  .faq-item { padding: 0.35rem 1.4rem; }
}
@media print {
  .site-header, .sticky-call, .marquee, .map-card { display: none; }
  body { color: #000; }
}
