@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --ink: #0E1626;
  --ink-2: #18233A;
  --ink-3: #26344F;
  --amber: #FFC02E;
  --amber-deep: #E0A410;
  --paper: #F6F7F9;
  --paper-2: #EBEEF3;
  --white: #FFFFFF;
  --slate: #56627A;
  --slate-light: #8089A0;
  --line: #E0E5EC;
  --line-dark: rgba(255,255,255,0.1);
  --nav-h: 76px;
  --max-w: 1200px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { color: var(--slate); }

.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-deep); font-weight: 600;
}
.eyebrow.on-dark { color: var(--amber); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 1rem 1.9rem; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  border: none; border-radius: 8px; transition: all 0.2s ease;
}
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(255,192,46,0.6); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost-light:hover { border-color: var(--amber); color: var(--amber); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* --- Nav --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(14, 22, 38, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  z-index: 200; display: flex; align-items: center;
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 0.6rem; letter-spacing: -0.02em; }
.nav-logo .bolt { width: 30px; height: 30px; background: var(--amber); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo .bolt svg { width: 17px; height: 17px; fill: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; color: var(--white) !important; font-family: 'Space Grotesk'; font-weight: 600 !important; }
.nav-phone svg { width: 16px; height: 16px; stroke: var(--amber); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; padding: 14px 10px; margin: -10px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* --- Hero --- */
.hero {
  background: var(--ink); color: var(--white); position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, black, transparent 75%);
  opacity: 0.6;
}
.hero::after {
  content: ''; position: absolute; top: -20%; right: -10%; width: 50%; height: 90%;
  background: radial-gradient(circle, rgba(255,192,46,0.18), transparent 65%); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(255,192,46,0.12); border: 1px solid rgba(255,192,46,0.3); color: var(--amber); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 1.75rem; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(255,192,46,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(255,192,46,0); } 100% { box-shadow: 0 0 0 0 rgba(255,192,46,0); } }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .amber { color: var(--amber); }
.hero-sub { font-size: 1.15rem; line-height: 1.65; color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-rating { display: flex; align-items: center; gap: 0.75rem; margin-top: 2.5rem; color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.stars { color: var(--amber); letter-spacing: 2px; }

/* --- Trust bar --- */
.trust-bar { background: var(--ink-2); border-top: 1px solid var(--line-dark); position: relative; z-index: 1; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); }
.trust-item { background: var(--ink-2); padding: 1.75rem var(--pad); display: flex; align-items: center; gap: 0.9rem; }
.trust-item svg { width: 26px; height: 26px; stroke: var(--amber); flex-shrink: 0; stroke-width: 1.7; }
.trust-item .t { font-family: 'Space Grotesk'; font-weight: 600; color: var(--white); font-size: 0.95rem; line-height: 1.2; }
.trust-item .s { font-size: 0.78rem; color: var(--slate-light); }

/* --- Section head --- */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 0.9rem; }
.section-head p { font-size: 1.08rem; margin-top: 1rem; }

/* --- Services --- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 2rem;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber); transform: scaleY(0); transform-origin: top; transition: transform 0.25s ease; }
.svc-card:hover { border-color: transparent; box-shadow: 0 24px 50px -25px rgba(14,22,38,0.3); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--amber); stroke-width: 1.6; fill: none; }
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.93rem; line-height: 1.6; }
.svc-card .more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; font-family: 'Space Grotesk'; font-weight: 600; font-size: 0.85rem; color: var(--ink); transition: gap 0.2s; }
.svc-card:hover .more { gap: 0.7rem; color: var(--amber-deep); }

/* --- Why / guarantees --- */
.why { background: var(--ink); color: var(--white); }
.why-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.why h2 { color: var(--white); margin-bottom: 1.25rem; }
.why h2 .amber { color: var(--amber); }
.why > .why-grid > .why-copy > p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; }
.guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 14px; overflow: hidden; }
.guarantee { background: var(--ink-2); padding: 1.75rem; }
.guarantee .g-num { font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.2rem; color: var(--amber); line-height: 1; margin-bottom: 0.6rem; }
.guarantee h4 { font-family: 'Space Grotesk'; font-size: 1.02rem; color: var(--white); margin-bottom: 0.35rem; }
.guarantee p { font-size: 0.85rem; color: var(--slate-light); line-height: 1.5; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.85rem; color: rgba(255,255,255,0.85); font-size: 1rem; }
.checklist li svg { width: 22px; height: 22px; stroke: var(--ink); fill: var(--amber); flex-shrink: 0; margin-top: 1px; }

/* --- Areas --- */
.areas-section { background: var(--paper-2); }
.areas-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.areas-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-chip { background: var(--white); border: 1px solid var(--line); border-radius: 50px; padding: 0.6rem 1.1rem; font-size: 0.88rem; font-weight: 500; font-family: 'Space Grotesk'; transition: all 0.2s; }
.area-chip:hover { border-color: var(--amber); background: var(--amber); }
.areas-map { aspect-ratio: 4/3.4; border-radius: 16px; background: var(--ink); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.areas-map::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px); background-size: 40px 40px; }
.areas-map .pin { position: relative; z-index: 1; text-align: center; }
.areas-map .pin .ring { width: 90px; height: 90px; border: 2px solid var(--amber); border-radius: 50%; margin: 0 auto 1rem; position: relative; animation: ring 2.5s ease-out infinite; }
.areas-map .pin .ring::after { content: ''; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; background: var(--amber); border-radius: 50%; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(255,192,46,0.4);} 100% { box-shadow: 0 0 0 30px rgba(255,192,46,0);} }
.areas-map .pin .label { font-family: 'Space Grotesk'; color: var(--white); font-weight: 600; font-size: 1.1rem; }
.areas-map .pin .sub { color: var(--slate-light); font-size: 0.85rem; }

/* --- Reviews --- */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.rev-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 2rem; display: flex; flex-direction: column; }
.rev-stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; margin-bottom: 1rem; }
.rev-card p { color: var(--ink); font-size: 0.98rem; line-height: 1.6; margin-bottom: 1.5rem; }
.rev-author { margin-top: auto; display: flex; align-items: center; gap: 0.85rem; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--amber); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 600; flex-shrink: 0; }
.rev-author .name { font-family: 'Space Grotesk'; font-weight: 600; font-size: 0.92rem; }
.rev-author .meta { font-size: 0.8rem; color: var(--slate-light); }

/* --- CTA band --- */
.cta-band { background: var(--amber); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--ink); max-width: 18ch; }
.cta-band p { color: rgba(14,22,38,0.7); margin-top: 0.75rem; font-size: 1.05rem; font-weight: 500; }

/* --- Page header --- */
.page-header { background: var(--ink); color: var(--white); padding: calc(var(--nav-h) + 4rem) 0 4rem; position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; top: -30%; right: -5%; width: 45%; height: 100%; background: radial-gradient(circle, rgba(255,192,46,0.15), transparent 65%); }
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { display: block; margin-bottom: 1rem; }
.page-header h1 { max-width: 16ch; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.12rem; margin-top: 1.25rem; max-width: 54ch; }

/* --- Services detail list --- */
.svc-detail { display: flex; flex-direction: column; gap: 1.25rem; }
.svc-row { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.5rem,3vw,2.25rem); display: grid; grid-template-columns: 56px 1fr auto; gap: 1.5rem; align-items: start; }
.svc-row .svc-icon { margin-bottom: 0; width: 56px; height: 56px; }
.svc-row h3 { margin-bottom: 0.4rem; }
.svc-row p { font-size: 0.95rem; }
.svc-row .price { font-family: 'Space Grotesk'; font-weight: 600; color: var(--ink); white-space: nowrap; text-align: right; }
.svc-row .price span { display: block; font-family: 'Inter'; font-weight: 400; font-size: 0.78rem; color: var(--slate-light); margin-top: 0.2rem; }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.about-stat { background: var(--white); padding: 2rem; }
.about-stat .n { font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.about-stat .n .amber { color: var(--amber-deep); }
.about-stat .l { font-size: 0.9rem; color: var(--slate); margin-top: 0.5rem; }
.accred-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.accred { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem 1rem; text-align: center; }
.accred .badge { width: 48px; height: 48px; margin: 0 auto 0.85rem; border-radius: 10px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.accred .badge svg { width: 24px; height: 24px; stroke: var(--amber); fill: none; stroke-width: 1.6; }
.accred h4 { font-family: 'Space Grotesk'; font-size: 0.92rem; }
.accred p { font-size: 0.78rem; margin-top: 0.2rem; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem,5vw,4rem); align-items: start; }
.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.75rem,3vw,2.5rem); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-family: 'Space Grotesk'; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.55rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 9px; font-family: inherit; font-size: 0.95rem; color: var(--ink); transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--amber); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form .btn { width: 100%; justify-content: center; }
.form-success { display: none; margin-top: 1.25rem; padding: 1rem 1.25rem; background: rgba(255,192,46,0.15); border: 1px solid var(--amber); border-radius: 9px; font-size: 0.9rem; color: var(--ink); }
.contact-side { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { background: var(--ink); color: var(--white); border-radius: 16px; padding: 2rem; }
.contact-card.amber { background: var(--amber); color: var(--ink); }
.contact-card h3 { color: inherit; margin-bottom: 1.25rem; }
.contact-card.amber h3 { color: var(--ink); }
.contact-line { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line svg { width: 19px; height: 19px; stroke: var(--amber); flex-shrink: 0; margin-top: 3px; }
.contact-card.amber .contact-line svg { stroke: var(--ink); }
.contact-line .k { font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.05rem; color: var(--white); }
.contact-card.amber .contact-line .k { color: var(--ink); }
.contact-line .v { font-size: 0.85rem; color: var(--slate-light); }
.contact-card.amber .contact-line .v { color: rgba(14,22,38,0.7); }
.contact-card.amber p { color: rgba(14,22,38,0.8); margin-bottom: 1.25rem; }

/* --- Footer --- */
footer { background: var(--ink); color: var(--white); padding: clamp(3.5rem,6vw,5rem) 0 6.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--slate-light); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-family: 'Space Grotesk'; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--slate-light); }

/* --- Sticky mobile call bar --- */
.mobile-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 250; background: var(--ink); border-top: 1px solid var(--line-dark); padding: 0.7rem var(--pad); gap: 0.7rem; }
.mobile-call a { flex: 1; justify-content: center; padding: 0.85rem; font-size: 0.88rem; }

/* --- Price guide --- */
.price-guide { padding-top: 0; }
.price-table { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 1.25rem; align-items: center; padding: 1.4rem clamp(1.25rem, 3vw, 2rem); position: relative; }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber); transform: scaleY(0); transform-origin: top; transition: transform 0.25s ease; }
.price-row:hover::before { transform: scaleY(1); }
.price-job h3 { font-size: 1.08rem; margin-bottom: 0.2rem; }
.price-job p { font-size: 0.88rem; color: var(--slate); }
.price-tag { font-size: 0.8rem; color: var(--slate-light); white-space: nowrap; text-align: right; }
.price-tag strong { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.02em; margin-left: 0.35rem; }
.price-note { display: flex; align-items: flex-start; gap: 0.8rem; margin-top: 1.25rem; padding: 1rem 1.25rem; background: rgba(255,192,46,0.13); border: 1px solid rgba(255,192,46,0.45); border-radius: 9px; font-size: 0.92rem; color: var(--ink); }
.price-note svg { width: 20px; height: 20px; stroke: var(--amber-deep); stroke-width: 1.8; fill: none; flex-shrink: 0; margin-top: 2px; }
.price-note strong { font-weight: 600; }

/* --- How it works --- */
.how { background: var(--ink); color: var(--white); }
.how h2 { color: var(--white); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.how-step { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 14px; padding: 2rem; position: relative; }
.how-step:not(:last-child)::after { content: '→'; position: absolute; top: 2.4rem; right: -1.25rem; width: 1.25rem; text-align: center; color: var(--amber); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; line-height: 1; z-index: 1; }
.how-num { width: 44px; height: 44px; border-radius: 10px; background: var(--amber); color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.how-step h3 { color: var(--white); font-size: 1.18rem; margin-bottom: 0.5rem; }
.how-step p { color: var(--slate-light); font-size: 0.92rem; line-height: 1.6; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-step:not(:last-child)::after { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .areas-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .accred-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    flex-direction: column; align-items: flex-start; padding: 1.75rem var(--pad); gap: 1.4rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .svc-grid, .rev-grid { grid-template-columns: 1fr; }
  .guarantees { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 1rem; }
  .svc-row .price { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .mobile-call { display: flex; }
  footer { padding-bottom: 6.5rem; }
}

/* Lightwork demo attribution bar (sticky above the site nav) */
/* demo bar: FIXED BOTTOM (moved from top 2026-08-21) */
.lw-demo-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: block; height: calc(40px + env(safe-area-inset-bottom)); line-height: 40px; box-sizing: border-box; padding: 0 8px env(safe-area-inset-bottom); background: #241631; color: rgba(255,255,255,0.88); font-family: system-ui, -apple-system, "Segoe UI", sans-serif; font-size: clamp(9px, 2.7vw, 13px); letter-spacing: 0; white-space: nowrap; text-decoration: none; text-align: center; }
.lw-demo-bar strong { color: #78ffd3; font-weight: 700; }
.lw-demo-bar:hover { background: #2f1d40; color: #ffffff; }
/* the demo sites pin their own nav to the viewport top: drop it below the bar */

/* grid children must be allowed to shrink below content width on narrow phones */
.contact-grid > *, .quote-form, .contact-side, .contact-card { min-width: 0; }
@media (max-width: 400px) { .quote-form { padding: 1.25rem; } .contact-card { padding: 1.25rem; } }

body { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
