/* ============================================================
   ANZEN ELECTRIC — styles.css
   Brand: red / white / black. Signature: red "live wire" thread
   echoing the logo's plug cord. Display: Outfit. Body: Inter.
   Utility/labels: Space Mono (electrician spec-sheet vernacular).
   ============================================================ */

:root {
  --ink: #0a0a0a;
  --ink-2: #131314;
  --ink-3: #1d1d20;
  --red: #e2342f;
  --red-bright: #ff3b30;
  --red-dark: #b81f1a;
  --white: #ffffff;
  --paper: #f5f4f2;
  --paper-2: #ebe9e5;
  --grey: #8a8a90;
  --grey-line: rgba(255, 255, 255, 0.10);
  --grey-line-ink: rgba(10, 10, 10, 0.12);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --header-h: 88px;
  --maxw: 1200px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }

/* ---------- shared helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--red);
  display: inline-block;
}

.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(226, 52, 47, 0.7); }
.btn--solid { background: var(--red); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); box-shadow: none; border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { box-shadow: 0 10px 30px -12px rgba(10,10,10,0.6); }

/* ============================================================
   HEADER — translucent, fixed, solidifies on scroll
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.38);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--grey-line);
  transition: background 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  /* Stays translucent black — you can still see the page faintly through it */
  background: rgba(10, 10, 10, 0.66);
  height: 74px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.85rem; }
.brand__mark { height: 64px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand__mark { height: 54px; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.brand__word span { color: var(--red); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.25s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { width: 100%; }
/* Header "Free Estimate" CTA — prominent bordered button */
.site-nav .btn {
  margin-left: 0.6rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  padding: 0.7rem 1.7rem;
  box-shadow: 0 0 0 0 rgba(226, 52, 47, 0);
}
.site-nav .btn:hover {
  border-color: #fff;
  box-shadow: 0 8px 24px -8px rgba(226, 52, 47, 0.8);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
}
.nav-toggle span { height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { padding-top: var(--header-h); }

/* ============================================================
   LIVE-WIRE SIGNATURE — the red thread that runs the page
   ============================================================ */
.wire {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 64px;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.wire::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(var(--red), rgba(226, 52, 47, 0.05));
}
.wire::after {
  content: "";
  position: absolute;
  left: -1px; top: -30%;
  width: 4px; height: 30%;
  background: var(--red-bright);
  box-shadow: 0 0 12px 2px var(--red-bright);
  border-radius: 4px;
  animation: current 2.8s var(--ease) infinite;
}
@keyframes current { 0% { top: -30%; } 100% { top: 130%; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: 6rem; position: relative; }
.section--ink { background: var(--ink); color: #fff; }
.section--paper { background: var(--paper); }
.section__head { max-width: 760px; margin-bottom: 3.25rem; }
.section__head h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-top: 1rem;
}
.section__head p { margin-top: 1.1rem; color: var(--grey); font-size: 1.08rem; }
.section--ink .section__head p { color: rgba(255,255,255,0.66); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(92vh - var(--header-h));
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.74) 45%, rgba(10,10,10,0.45) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; min-width: 0; max-width: 760px; padding-block: 5rem; }
.hero__kanji {
  position: absolute;
  right: -2%; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(12rem, 34vw, 30rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  user-select: none;
  pointer-events: none;
  line-height: 0.8;
}
.hero h1 {
  font-size: clamp(2rem, 5.2vw, 4.6rem);
  letter-spacing: -0.03em;
  margin: 1.4rem 0 0;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--red); }
.hero__sub {
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__meta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.55rem; }
.hero__meta span::before { content: ""; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--grey-line-ink);
  border: 1px solid var(--grey-line-ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 2.2rem 1.9rem;
  position: relative;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card::before {
  content: attr(data-no);
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}
.service-card__icon {
  width: 46px; height: 46px;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.service-card h3 { font-size: 1.28rem; letter-spacing: -0.01em; }
.service-card p { margin-top: 0.6rem; color: var(--grey); font-size: 0.96rem; }
.service-card--cta { background: var(--red); color: #fff; display: block; }
.service-card--cta .service-card__icon { color: #fff; }
.service-card--cta h3 { color: #fff; }
.service-card--cta p { color: rgba(255, 255, 255, 0.85); }
.service-card--cta::before { color: rgba(255, 255, 255, 0.6); content: "07+"; }
.service-card__link { display: inline-block; margin-top: 1.1rem; font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em; color: #fff; }
.service-card--cta:hover { background: var(--red-dark); transform: translateY(-2px); }
.service-card--cta:hover h3, .service-card--cta:hover p, .service-card--cta:hover .service-card__icon { color: #fff; }

.service-card:hover { background: var(--ink); transform: translateY(-2px); }
.service-card:hover h3, .service-card:hover p { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,0.7); }
.service-card:hover .service-card__icon { color: var(--red-bright); }

/* ---------- CERTIFICATIONS ---------- */
.certs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.cert {
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  position: relative;
}
.cert__code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}
.cert h3 { font-size: 1.16rem; margin-top: 0.7rem; color: #fff; }
.cert p { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.cert__tick {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 26px; height: 26px; color: var(--red);
}

/* ---------- WORK TEASER ---------- */
.work-teaser { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.work-teaser figure { position: relative; overflow: hidden; border-radius: var(--radius); }
.work-teaser figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-teaser figure:hover img { transform: scale(1.06); }
.work-teaser .wt-a { grid-column: span 6; aspect-ratio: 16/11; }
.work-teaser .wt-b { grid-column: span 6; aspect-ratio: 16/11; }
.work-teaser .wt-c { grid-column: span 4; aspect-ratio: 4/5; }
.work-teaser .wt-d { grid-column: span 4; aspect-ratio: 4/5; }
.work-teaser .wt-e { grid-column: span 4; aspect-ratio: 4/5; }
.work-cta { margin-top: 2.5rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.quote {
  background: var(--white);
  border: 1px solid var(--grey-line-ink);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem;
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--red);
  position: absolute;
  top: 1.4rem; left: 1.5rem;
  opacity: 0.18;
}
.quote p { position: relative; font-size: 1.02rem; }
.quote cite { display: block; margin-top: 1.3rem; font-style: normal; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }
.quote .stars { color: var(--red); letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 0.9rem; }

/* ---------- SERVICE AREA ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.area-list li {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--grey-line);
  border-radius: 100px;
  padding: 0.55rem 1.15rem;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.area-list li:hover { border-color: var(--red); color: #fff; }
.area-list li.is-home { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding-block: 4.5rem;
}
.cta-band h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.cta-band p { margin: 1rem auto 2rem; max-width: 520px; color: rgba(255,255,255,0.9); }
.cta-band .btn--dark { background: var(--ink); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.btn--ghost-dark {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn--ghost-dark:hover { background: rgba(0, 0, 0, 0.18); border-color: #fff; box-shadow: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-block: 4.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand__word { color: #fff; font-size: 1.3rem; }
.footer-brand p { margin-top: 1.1rem; max-width: 320px; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.78); margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 0.75rem; margin-top: 0.4rem; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--grey-line);
  border-radius: 50%;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.socials a:hover { background: var(--red); border-color: var(--red); }
/* Keep the multicolour Google logo legible — white circle on hover, not red */
.socials a.is-google:hover { background: #fff; border-color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--grey-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  font-family: var(--font-mono); letter-spacing: 0.04em;
}

/* ============================================================
   GALLERY (our-work.html)
   ============================================================ */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding-block: 4.5rem 3rem;
  position: relative;
}
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); margin-top: 0.8rem; }
.page-hero p { margin-top: 1rem; color: rgba(255,255,255,0.66); max-width: 620px; }

.gallery-section { background: var(--paper); padding-block: 2.5rem 6rem; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--grey-line-ink);
  color: var(--ink);
  background: #fff;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--red); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-btn .count { color: var(--red); margin-left: 0.4rem; }

.gallery-grid { columns: 4; column-gap: 1rem; }
.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-2);
}
.gallery-item img { width: 100%; transition: transform 0.6s var(--ease), filter 0.4s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(226,52,47,0.55), rgba(226,52,47,0) 55%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item[hidden] { display: none; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8, 8, 8, 0.94);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 100%; max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,0.8);
  animation: lb-in 0.3s var(--ease);
}
@keyframes lb-in { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: none; } }
.lightbox__close, .lightbox__nav {
  position: absolute;
  color: #fff;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  font-size: 2rem; line-height: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__close { top: 1.4rem; right: 1.4rem; font-size: 1.7rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   ESTIMATE FORM (estimate.html)
   ============================================================ */
.estimate-section { background: var(--paper); padding-block: 3.5rem 6rem; }
.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.estimate-form {
  background: #fff;
  border: 1px solid var(--grey-line-ink);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-block { border: 0; padding: 0; margin: 0 0 2.25rem; }
.form-block legend {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--grey-line-ink);
  width: 100%;
  margin-bottom: 1.5rem;
}
.form-note, .form-help { color: var(--grey); font-size: 0.92rem; margin: -0.6rem 0 1.4rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--red); }
.field .opt { color: var(--grey); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--grey-line-ink);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 52, 47, 0.14);
}
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-color: var(--red);
  background: rgba(226, 52, 47, 0.05);
}
.field input[type="file"] { padding: 0.65rem 0.7rem; background: #fff; cursor: pointer; }
.field-help { font-size: 0.82rem; color: var(--grey); margin: 0; }
.field-help.is-error { color: var(--red-dark); font-weight: 600; }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.form-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.form-status { margin: 0; font-size: 0.95rem; min-height: 1.2em; }
.form-status.is-error { color: var(--red-dark); font-weight: 600; }
.form-status.is-success { color: #1c7d3e; font-weight: 600; }
.form-status.is-pending { color: var(--grey); }

.estimate-aside { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 100px; }
.aside-card { background: #fff; border: 1px solid var(--grey-line-ink); border-radius: var(--radius); padding: 1.75rem; }
.aside-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.aside-card--ink { background: var(--ink); color: #fff; border-color: transparent; }
.steps { display: flex; flex-direction: column; gap: 1rem; }
.steps li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.steps li span {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  font-family: var(--font-mono); font-size: 0.82rem;
  border-radius: 50%;
}
.aside-phone { display: inline-block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0.3rem 0 1rem; }
.aside-phone:hover { color: var(--red-bright); }
.aside-meta { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); line-height: 1.7; }
.aside-card--ink p { color: rgba(255,255,255,0.75); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Tablet */
@media (max-width: 1024px) {
  .estimate-layout { grid-template-columns: 1fr; }
  .estimate-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .estimate-aside > * { flex: 1 1 260px; }
}
@media (max-width: 1000px) {
  .gallery-grid { columns: 3; }
  .area-wrap { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--grey-line);
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    height: auto;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { font-size: 1.05rem; padding: 0.7rem 0; width: 100%; }
  .site-nav .btn { margin: 0.6rem 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 2; }
  .work-teaser .wt-a, .work-teaser .wt-b { grid-column: span 12; }
  .work-teaser .wt-c, .work-teaser .wt-d, .work-teaser .wt-e { grid-column: span 4; }
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .estimate-form { padding: 1.5rem 1.25rem; }
  .form-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
@media (max-width: 560px) {
  .section { padding-block: 4rem; }
  .gallery-grid { columns: 1; }
  .hero__meta { gap: 0.8rem 1.5rem; }
  .work-teaser .wt-c, .work-teaser .wt-d, .work-teaser .wt-e { grid-column: span 6; aspect-ratio: 1; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .wire::after { display: none; }
}
