/* ============================================================
   DLC Electric — shared styles (home + services pages)
   Colors are sampled from the DLC logo.
   ============================================================ */
:root {
  --navy: #041F3F;
  --navy-deep: #021530;
  --navy-soft: #0E2D52;
  --gold: #F8B43F;
  --gold-bolt: #F0A908;
  --gold-dark: #C98A12;
  --paper: #F4F6F8;
  --line: #E1E7EE;
  --steel: #8C99AA;
  --ink: #0F1B2B;
  --muted: #445062;
  --white: #FFFFFF;
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1160px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); font-size: 1.0625rem; line-height: 1.6; color: var(--ink); background: var(--paper); }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; margin: 0; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3rem); color: var(--navy); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; max-width: 64ch; }
section { padding: clamp(4rem, 8vw, 6.5rem) 0; scroll-margin-top: calc(var(--header-h) - 4px); }
.section-head { margin-bottom: 2.75rem; }
.section-head p { margin-top: .9rem; color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: 1.2rem; letter-spacing: .01em;
  padding: .8rem 1.5rem; border-radius: 4px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 6px 18px -8px rgba(240,169,8,.7); }
.btn-gold:hover { background: #FFC45C; transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(240,169,8,.8); }
.btn-outline { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: rgba(255,255,255,.97); backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 4px solid var(--gold);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(4,31,63,.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); transition: height .3s var(--ease); }
.site-header.scrolled .header-inner { height: 68px; }
.logo img { height: 66px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .logo img { height: 54px; }
.header-right { display: flex; align-items: center; gap: 1.1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; font-weight: 600; color: var(--navy); white-space: nowrap; }
.header-phone:hover { color: var(--gold-dark); }
.book-top { font-size: 1.15rem; padding: .6rem 1.25rem; }
.menu-toggle {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 6px;
  background: var(--navy); border: 0; cursor: pointer; padding: 0;
}
.menu-toggle:hover { background: var(--navy-soft); }
.burger { position: relative; width: 22px; height: 16px; }
.burger span { position: absolute; left: 0; width: 100%; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 7px; }
.burger span:nth-child(3) { top: 14px; }
.menu-open .burger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Dropdown menu */
.menu {
  position: absolute; right: max(1.25rem, calc((100% - var(--wrap)) / 2)); top: calc(100% + 4px);
  width: min(460px, calc(100% - 2.5rem));
  background: var(--white); border-radius: 0 0 10px 10px;
  box-shadow: 0 24px 50px -12px rgba(2,21,48,.35);
  border-top: 4px solid var(--gold);
  padding: 1.25rem 1.5rem 1.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
  max-height: calc(100vh - 110px); overflow-y: auto;
}
.menu-open .menu { opacity: 1; visibility: visible; transform: none; transition: opacity .25s, transform .3s var(--ease); }
.menu-main { list-style: none; margin: 0; padding: 0; }
.menu-main > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-weight: 700; font-size: 1.45rem; color: var(--navy); text-decoration: none;
}
.menu-main > li > a:hover, .menu-main > li > a[aria-current="page"] { color: var(--gold-dark); }
.menu-sub { list-style: none; margin: .5rem 0 .75rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .1rem 1rem; }
.menu-sub a { display: block; padding: .35rem 0 .35rem .8rem; border-left: 2px solid var(--line); color: var(--muted); text-decoration: none; font-size: .98rem; transition: border-color .2s, color .2s; }
.menu-sub a:hover { border-color: var(--gold); color: var(--navy); }
.menu .btn { width: 100%; margin-top: 1.25rem; font-size: 1.3rem; }
.menu-contact { margin: 1rem 0 0; font-size: .95rem; color: var(--muted); }
.menu-contact a { color: var(--navy); font-weight: 600; }
.menu-scrim { position: fixed; inset: 0; background: rgba(2,21,48,.35); opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s .3s; z-index: 40; }
.menu-open .menu-scrim { opacity: 1; visibility: visible; transition: opacity .3s; }

/* Scroll progress (services page) */
.progress { position: absolute; left: 0; bottom: -4px; height: 4px; width: 100%; background: var(--navy); transform-origin: left; transform: scaleX(0); }

/* ---------- Hero (home) ---------- */
.hero { background: var(--navy); color: var(--white); position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.hero-lines {
  position: absolute; inset: -20% 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 46px, rgba(140,153,170,.10) 46px 48px);
  mask-image: linear-gradient(90deg, transparent 25%, #000 80%);
  -webkit-mask-image: linear-gradient(90deg, transparent 25%, #000 80%);
  will-change: transform;
}
.hero-current { position: absolute; top: 0; bottom: 0; width: 2px; background: linear-gradient(transparent, var(--gold), transparent); opacity: .0; animation: current 5s 1.4s infinite; }
.hero-current.c1 { right: 18%; }
.hero-current.c2 { right: 34%; animation-delay: 3.4s; }
@keyframes current { 0% { transform: translateY(-100%); opacity: 0; } 15% { opacity: .8; } 60% { opacity: .8; } 100% { transform: translateY(100%); opacity: 0; } }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.25fr 1fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 6.6vw, 4.8rem); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(105%); animation: rise .9s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { color: var(--gold); animation-delay: .18s; }
@keyframes rise { to { transform: none; } }
.hero-lede { font-size: 1.2rem; color: #C8D2DE; margin-top: 1.5rem; opacity: 0; animation: fadeUp .8s .5s var(--ease) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; opacity: 0; animation: fadeUp .8s .65s var(--ease) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-badge { position: relative; max-width: 430px; width: 100%; justify-self: center; opacity: 0; animation: badgeIn 1s .3s var(--ease) forwards; }
.hero-badge::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 91%; aspect-ratio: 1; transform: translate(-50%, -50%);
  background: var(--white); border-radius: 50%; box-shadow: 0 24px 60px -20px rgba(0,0,0,.55);
}
.hero-badge::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 91%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; border: 3px solid var(--gold); opacity: 0; animation: ring 1.6s 1.1s var(--ease);
}
.hero-badge img { position: relative; width: 100%; }
@keyframes badgeIn { from { opacity: 0; transform: scale(.9) rotate(-4deg); } to { opacity: 1; transform: none; } }
@keyframes ring { 0% { opacity: .9; width: 91%; } 100% { opacity: 0; width: 120%; } }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-deep); color: var(--white); border-top: 1px solid rgba(248,180,63,.35); }
.trust ul { list-style: none; margin: 0; padding: 1.6rem 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust li { display: flex; gap: .8rem; align-items: flex-start; }
.trust svg { flex-shrink: 0; margin-top: 2px; }
.trust strong { display: block; font-family: var(--display); font-size: 1.3rem; line-height: 1.1; }
.trust span { color: #A9B5C4; font-size: .95rem; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Services panel (home) ---------- */
.panel { background: var(--navy); border-radius: 12px; padding: clamp(1rem, 3vw, 1.75rem); box-shadow: inset 0 0 0 2px var(--navy-soft), 0 24px 50px -26px rgba(2,21,48,.7); color: var(--white); }
.panel-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: #EEF1F4; color: var(--navy); border-radius: 5px; padding: .75rem 1.1rem; margin-bottom: 1.25rem; }
.panel-top h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); }
.panel-top a { font-weight: 600; color: var(--navy); white-space: nowrap; }
.panel-top a:hover { color: var(--gold-dark); }
.circuits { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.6rem; position: relative; list-style: none; margin: 0; padding: 0; }
.circuits::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 6px; transform: translateX(-50%); background: linear-gradient(#B08D57, #8A6C3E); border-radius: 3px; opacity: .75; }
.circuits::after { content: ""; position: absolute; left: 50%; top: 0; width: 6px; height: 0; transform: translateX(-50%); border-radius: 3px; background: linear-gradient(var(--gold), #FFE3A6); box-shadow: 0 0 14px var(--gold); opacity: 0; }
.panel.powered .circuits::after { animation: busPower 1.3s .1s var(--ease) forwards; }
@keyframes busPower { 0% { height: 0; opacity: 1; } 80% { height: 100%; opacity: 1; } 100% { height: 100%; opacity: 0; } }
.circuit a {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; height: 100%;
  background: var(--navy-soft); border: 1px solid #1E416B; border-radius: 7px; padding: 1rem 1.15rem;
  text-decoration: none; color: inherit; position: relative;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.circuit a:hover, .circuit a:focus-visible { border-color: var(--gold); background: #123560; transform: translateY(-2px); }
.circuit:nth-child(even) a { grid-template-columns: 1fr auto; }
.circuit:nth-child(even) .breaker { order: 2; }
.breaker { width: 40px; height: 64px; background: var(--navy-deep); border-radius: 5px; position: relative; box-shadow: inset 0 0 0 2px #2B4A70; }
.breaker .handle { position: absolute; left: 50%; top: 32px; width: 20px; height: 24px; margin-left: -10px; background: #5B6B80; border-radius: 3px; box-shadow: 0 2px 0 #3B4A5E; transition: top .35s var(--ease), background .35s, box-shadow .35s; transition-delay: calc(var(--i, 0) * 110ms + 250ms); }
.panel.powered .breaker .handle { top: 7px; background: var(--gold); box-shadow: 0 2px 0 var(--gold-dark), 0 0 12px rgba(248,180,63,.55); }
.breaker .num { position: absolute; bottom: -1px; left: 0; right: 0; text-align: center; font-family: var(--display); font-size: .8rem; color: var(--steel); }
.panel.powered .breaker .handle { top: 7px; }
.circuit h3 { color: var(--white); margin-bottom: .2rem; font-size: 1.35rem; }
.circuit p { color: #BFCAD8; font-size: .96rem; margin: 0; }
.circuit .more { display: inline-block; margin-top: .45rem; font-weight: 600; font-size: .9rem; color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
.circuit a:hover .more { border-color: var(--gold); }
.panel-foot { margin-top: 1.25rem; padding: 1.1rem 1.25rem; border: 2px dashed rgba(248,180,63,.5); border-radius: 7px; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.panel-foot p { margin: 0; color: #DCE3EC; }
.panel-foot strong { color: var(--gold); }

/* ---------- Warning signs ---------- */
.safety { background: var(--white); }
.safety-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.signs { list-style: none; margin: 0; padding: 0; }
.signs li { display: grid; grid-template-columns: 30px 1fr; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.signs li:last-child { border-bottom: 0; }
.signs strong { display: block; color: var(--navy); }
.signs span { color: var(--muted); font-size: 1rem; }
.danger-note { background: #FFF6E3; border-left: 5px solid var(--gold-bolt); padding: 1rem 1.25rem; border-radius: 0 6px 6px 0; margin-top: 1.5rem; }
.danger-note p { margin: 0; }
.source { font-size: .88rem; color: #6B7788; margin-top: 1rem; }

/* ---------- Steps ---------- */
.process { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; counter-reset: step; list-style: none; padding: 0; margin: 0; position: relative; }
.steps::before { content: ""; position: absolute; top: 1.1rem; left: 1.1rem; right: 1.1rem; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease) .2s; }
.steps.in::before { transform: scaleX(1); }
.steps li { counter-increment: step; position: relative; }
.steps li::before { content: counter(step); position: relative; display: grid; place-items: center; width: 2.3rem; height: 2.3rem; background: var(--navy); color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 1.3rem; border-radius: 50%; margin-bottom: 1rem; box-shadow: 0 0 0 6px var(--paper); }
.steps h3 { margin-bottom: .5rem; color: var(--navy); }
.steps p { color: var(--muted); margin: 0; }

/* ---------- About ---------- */
.about { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.about h2 { color: var(--white); }
.about-top { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center; margin-bottom: 3rem; }
.years { font-family: var(--display); font-weight: 700; color: var(--gold); font-size: clamp(4rem, 10vw, 6.5rem); line-height: .9; }
.years small { display: block; font-size: .28em; color: var(--white); letter-spacing: .02em; margin-top: .4rem; }
.about-top p { color: #C8D2DE; margin: .9rem 0 0; }
.owners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.owner { background: var(--navy-soft); border: 1px solid #1E416B; border-top: 4px solid var(--gold); border-radius: 8px; padding: 1.6rem 1.5rem; }
.owner h3 { font-size: 1.7rem; }
.owner .role { color: var(--gold); font-weight: 600; margin: .25rem 0 1rem; }
.owner .stats { display: flex; gap: 1.25rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #1E416B; }
.owner .stats div { font-family: var(--display); font-size: 2rem; font-weight: 700; line-height: 1; }
.owner .stats span { display: block; font-family: var(--body); font-size: .82rem; font-weight: 400; color: #A9B5C4; margin-top: .3rem; }
.owner p { color: #C8D2DE; font-size: 1rem; margin: 0 0 .75rem; }
.owner p:last-child { margin: 0; }

/* ---------- Booking ---------- */
.book { background: var(--paper); }
.book-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.radius { display: flex; gap: 1.4rem; align-items: center; margin: 1.5rem 0 2rem; }
.radius-map { position: relative; width: 110px; height: 110px; flex-shrink: 0; }
.radius-map span { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold); opacity: 0; animation: pulse 3.6s infinite var(--ease); }
.radius-map span:nth-child(2) { animation-delay: 1.2s; }
.radius-map span:nth-child(3) { animation-delay: 2.4s; }
.radius-map::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px dashed var(--navy); }
.radius-map::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; margin: -7px 0 0 -7px; background: var(--navy); border-radius: 50%; box-shadow: 0 0 0 4px rgba(248,180,63,.6); }
@keyframes pulse { 0% { transform: scale(.15); opacity: .9; } 100% { transform: scale(1); opacity: 0; } }
.radius p { margin: 0; }
.contact-direct { display: grid; gap: .9rem; }
.contact-direct a { display: flex; align-items: center; gap: .75rem; font-weight: 600; font-size: 1.15rem; text-decoration: none; color: var(--navy); word-break: break-word; }
.contact-direct a:hover { color: var(--gold-dark); }
.contact-direct .icon { width: 42px; height: 42px; background: var(--navy); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.hours { margin-top: 1.5rem; color: var(--muted); font-size: 1rem; }
form.request { background: var(--white); border-radius: 10px; padding: clamp(1.5rem, 4vw, 2.25rem); border: 1px solid #DDE3EA; border-top: 5px solid var(--gold); box-shadow: 0 24px 50px -30px rgba(2,21,48,.35); }
form.request h3 { font-size: 2.1rem; color: var(--navy); margin-bottom: .4rem; }
form.request > p { color: var(--muted); font-size: 1rem; }
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-weight: 600; font-size: .98rem; color: var(--navy); }
input, select, textarea { font: inherit; font-size: 1rem; padding: .7rem .8rem; border: 1.5px solid #C4CCD6; border-radius: 5px; background: var(--white); color: var(--ink); width: 100%; transition: border-color .2s, box-shadow .2s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(248,180,63,.5); }
textarea { min-height: 120px; resize: vertical; }
.hidden { display: none; }
form.request .btn { width: 100%; margin-top: .5rem; font-size: 1.35rem; }
.form-note { font-size: .92rem; color: #5D6A7B; margin: .9rem 0 0; }
.form-done { text-align: center; padding: 2rem 1rem; }
.form-done .check { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold); display: grid; place-items: center; animation: badgeIn .6s var(--ease); }
.form-done h3 { margin-bottom: .6rem; }
.form-done p { margin-inline: auto; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); }
.cta-band h2 span { color: var(--gold); display: block; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #A9B5C4; padding: 3rem 0 calc(2.5rem + env(safe-area-inset-bottom, 0px)); font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.footer-slogan { font-family: var(--display); font-weight: 700; font-size: 1.6rem; color: var(--white); line-height: 1.15; margin: 0 0 .8rem; }
.footer-slogan span { color: var(--gold); }
footer h4 { font-family: var(--display); font-size: 1.15rem; color: var(--white); margin: 0 0 .6rem; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin: .3rem 0; }
footer a { color: #C8D2DE; text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(140,153,170,.2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
footer p { margin: 0; }

/* ---------- Mobile call bar ---------- */
.call-bar { display: none; }

/* ============================================================
   Services page
   ============================================================ */
.page-hero { background: var(--navy); color: var(--white); padding: clamp(3rem, 7vw, 5rem) 0; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 4.6rem); }
.page-hero h1 .line { display: block; overflow: hidden; }
.page-hero h1 .line > span { display: block; transform: translateY(105%); animation: rise .9s var(--ease) forwards; }
.page-hero p { color: #C8D2DE; font-size: 1.2rem; margin-top: 1.2rem; opacity: 0; animation: fadeUp .8s .35s var(--ease) forwards; }
.crumbs { font-size: .95rem; color: #A9B5C4; margin-bottom: 1rem; opacity: 0; animation: fadeUp .6s .1s var(--ease) forwards; }
.crumbs a { color: var(--gold); text-decoration: none; }

.svc-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.svc-nav { position: sticky; top: 96px; }
.svc-nav h2 { font-size: 1.3rem; margin-bottom: .8rem; }
.svc-nav ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.svc-nav ol a { position: relative; display: block; padding: .45rem 0 .45rem 1rem; color: var(--muted); text-decoration: none; font-weight: 600; transition: color .2s; }
.svc-nav ol a::before { content: ""; position: absolute; left: -2px; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transition: transform .3s var(--ease); }
.svc-nav ol a:hover { color: var(--navy); }
.svc-nav ol a.active { color: var(--navy); }
.svc-nav ol a.active::before { transform: scaleY(1); }
.svc-nav .btn { margin-top: 1.5rem; width: 100%; }

.svc-chips { display: none; }

.svc { padding: 0 0 clamp(3.5rem, 7vw, 5rem); margin-bottom: clamp(3.5rem, 7vw, 5rem); border-bottom: 1px solid var(--line); scroll-margin-top: 112px; }
.svc:last-child { border-bottom: 0; margin-bottom: 0; }
.svc-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.svc-pos { width: 34px; height: 52px; background: var(--navy); border-radius: 4px; position: relative; flex-shrink: 0; }
.svc-pos::before { content: ""; position: absolute; left: 50%; top: 6px; width: 16px; height: 18px; margin-left: -8px; background: var(--gold); border-radius: 2px; }
.svc-pos span { position: absolute; bottom: 2px; left: 0; right: 0; text-align: center; font-family: var(--display); font-size: .78rem; color: var(--steel); }
.svc h2 { font-size: clamp(2rem, 4.4vw, 2.8rem); }
.svc .lede { font-size: 1.22rem; color: var(--navy); font-weight: 600; margin-bottom: 1.4rem; }
.svc-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.svc:nth-of-type(even) .svc-figure { order: 2; }
.svc-figure { margin: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 22px 44px -26px rgba(2,21,48,.55); border: 1px solid var(--line); background: #EAF0F6; }
.svc-figure img { width: 100%; transition: transform .8s var(--ease); }
.svc-figure:hover img { transform: scale(1.03); }
.svc-text p { color: #2A3647; }
.points { list-style: none; margin: 1.25rem 0 1.5rem; padding: 0; display: grid; gap: .55rem; }
.points li { position: relative; padding-left: 1.7rem; }
.points li::before { content: ""; position: absolute; left: 0; top: .42rem; width: 14px; height: 14px; border-radius: 3px; background: var(--gold); clip-path: polygon(55% 0, 15% 55%, 45% 55%, 35% 100%, 85% 40%, 55% 40%); }
.brands { display: flex; gap: .6rem; flex-wrap: wrap; margin: 0 0 1.25rem; }
.brands span { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--navy); border: 2px solid var(--navy); border-radius: 4px; padding: .2rem .8rem; }
.explain { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0 1.75rem; }
.explain div { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--navy); border-radius: 8px; padding: 1.25rem; }
.explain div:nth-child(2) { border-top-color: var(--gold-bolt); }
.explain h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: .1rem; }
.explain .full { font-size: .88rem; color: var(--muted); margin-bottom: .6rem; }
.explain p { font-size: 1rem; margin: 0; }
.callout { background: var(--white); border-left: 5px solid var(--gold); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 1.25rem 0; }
.callout p { margin: 0; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.gallery figure { margin: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #E4EBF3; box-shadow: 0 16px 30px -22px rgba(2,21,48,.5); }
.gallery img { transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { background: var(--white); padding: .6rem .85rem; font-weight: 600; color: var(--navy); font-size: .98rem; }
.cite { font-size: .85rem; color: #6B7788; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .header-phone { display: none; }
  .trust ul { grid-template-columns: 1fr 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-nav { display: none; }
  .svc-chips {
    display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none;
    position: sticky; top: 68px; z-index: 30; background: rgba(244,246,248,.97); backdrop-filter: blur(6px);
    padding: .7rem 1.25rem; border-bottom: 1px solid var(--line);
  }
  .svc-chips::-webkit-scrollbar { display: none; }
  .svc-chips a { flex-shrink: 0; padding: .4rem .9rem; border-radius: 99px; border: 1.5px solid #C4CCD6; text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--navy); background: var(--white); transition: background .2s, border-color .2s; }
  .svc-chips a.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
  .svc { scroll-margin-top: 140px; }
}
@media (max-width: 900px) {
  .hero-inner, .book-grid, .safety-grid { grid-template-columns: 1fr; }
  .hero-badge { max-width: 290px; order: -1; }
  .owners, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .about-top { grid-template-columns: 1fr; gap: 1rem; }
  .svc-body { grid-template-columns: 1fr; }
  .svc:nth-of-type(even) .svc-figure { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .logo img { height: 54px; }
  .site-header.scrolled .logo img { height: 48px; }
  .site-header.scrolled .header-inner { height: 62px; }
  .header-right { gap: .6rem; }
  .book-top { font-size: 1.05rem; padding: .5rem .9rem; }
  .menu-toggle { width: 44px; height: 44px; }
  .menu { right: 0; width: 100%; border-radius: 0 0 10px 10px; }
  .circuits { grid-template-columns: 1fr; }
  .circuits::before, .circuits::after { left: 20px; }
  .circuit:nth-child(even) a { grid-template-columns: auto 1fr; }
  .circuit:nth-child(even) .breaker { order: 0; }
  .field-row, .explain, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure:last-child { grid-column: 1 / -1; }
  .trust ul { grid-template-columns: 1fr; gap: 1rem; }
  .svc-chips { top: 62px; }
  .call-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: var(--gold); padding: .5rem .75rem calc(.5rem + env(safe-area-inset-bottom, 0px)); box-shadow: 0 -4px 16px rgba(0,0,0,.2); transform: translateY(110%); transition: transform .4s var(--ease); }
  .call-bar.show { transform: none; }
  .call-bar a { flex: 1; text-align: center; font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--navy-deep); text-decoration: none; padding: .55rem; }
  .call-bar a + a { border-left: 2px solid rgba(2,21,48,.25); }
  footer { padding-bottom: 6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; animation-delay: 0ms !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-current, .radius-map span { display: none; }
}
