/* ============================================
   Action Electrical Services
   Direction: Trustworthy Trades-Pro
   ============================================ */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EDE2;
  --bg-warm: #FFF5EB;
  --surface: #FFFFFF;
  --ink: #1F1F1F;
  --ink-2: #2E2A26;
  --ink-soft: #56504A;
  --ink-mute: #8A847C;
  --rule: #E5DECF;
  --rule-strong: #D6CBB4;

  --orange: #F37021;
  --orange-deep: #D85B12;
  --orange-darker: #B14507;
  --orange-pale: #FFE6D2;

  --shadow-sm: 0 1px 2px rgba(31,31,31,0.04), 0 1px 3px rgba(31,31,31,0.06);
  --shadow-md: 0 6px 16px -4px rgba(31,31,31,0.08), 0 2px 6px rgba(31,31,31,0.05);
  --shadow-lg: 0 24px 48px -16px rgba(31,31,31,0.16), 0 8px 20px -8px rgba(31,31,31,0.08);
  --shadow-orange: 0 18px 40px -16px rgba(243,112,33,0.45);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--orange); color: #fff; }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Eyebrow --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.eyebrow__bar {
  display: inline-block; width: 28px; height: 2px;
  background: var(--orange);
}
.eyebrow--light { color: rgba(255,255,255,0.78); }
.eyebrow--light .eyebrow__bar { background: var(--orange); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  justify-content: center;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -16px rgba(216,91,18,0.55);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 28px; font-size: 17px; }
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 8px; }

/* --- Utility bar --- */
.utility {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid #2C2825;
}
.utility__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility__pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.55);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.utility__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 200ms var(--ease);
}
.utility__phone:hover { color: #fff; }
.utility__phone svg { color: var(--orange); }

/* --- Nav --- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,245,0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.brand__mark {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--orange-pale);
  border-radius: 10px;
  flex-shrink: 0;
}
.brand__mark svg { width: 32px; height: 32px; }
.brand__text {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand__name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 2px;
}

.nav__links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 200ms var(--ease);
}
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--orange);
  transition: width 240ms var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--orange-deep); }
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  border-radius: 2px;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: clamp(52px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(243,112,33,0.10), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(243,112,33,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 18px 0 22px;
}
.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  background: linear-gradient(180deg, transparent 62%, rgba(243,112,33,0.18) 62%, rgba(243,112,33,0.18) 92%, transparent 92%);
  padding: 0 4px;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  list-style: none;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.hero__trust svg { color: var(--orange); }

.hero__media {
  position: relative;
  perspective: 1400px;
}
.hero__media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
  transform: rotate(0.6deg);
  aspect-ratio: 4 / 5;
}
.hero__media-frame::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero__media-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media-card {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--surface);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
  min-width: 240px;
  transform: rotate(-1.2deg);
}
.hero__media-card-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hero__media-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.hero__media-card-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.hero__media-card-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-deep);
  letter-spacing: 0.02em;
}

/* --- Trust band --- */
.band {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(50% 100% at 0% 50%, rgba(243,112,33,0.12), transparent 70%),
    radial-gradient(50% 100% at 100% 50%, rgba(243,112,33,0.10), transparent 70%);
}
.band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
}
.band__item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 4px;
}
.band__item strong {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--orange);
}
.band__item span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.band__rule {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.15);
}

/* --- Section head --- */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 16px;
  color: var(--ink);
}
.section-head p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 580px;
}

/* --- Services --- */
.services {
  padding: clamp(72px, 10vw, 120px) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 30%, transparent 30%, transparent 100%);
  transition: background 320ms var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.service:hover::before {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 100%);
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--orange-deep);
  transition: transform 320ms var(--ease);
}
.service__icon svg { width: 30px; height: 30px; }
.service:hover .service__icon { transform: scale(1.06) rotate(-3deg); }
.service h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
  color: var(--ink);
}
.service p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* --- About --- */
.about {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg-alt);
  position: relative;
}
.about::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31,31,31,0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__signature {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(31,31,31,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 4px;
  color: #fff;
}
.about__signature-line {
  width: 32px; height: 2px; background: var(--orange);
  margin-bottom: 6px;
}
.about__signature-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.about__signature-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about__copy h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin: 18px 0 18px;
}
.about__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 28px;
}
.about__points {
  list-style: none;
  margin-bottom: 32px;
  display: grid; gap: 14px;
}
.about__points li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.about__points li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--orange);
}
.about__points li strong {
  color: var(--ink);
  font-weight: 700;
}

/* --- Service area --- */
.area {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  color: #fff;
  overflow: hidden;
}
.area__bg {
  position: absolute; inset: 0; z-index: 0;
}
.area__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.area__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,12,10,0.85) 0%, rgba(15,12,10,0.78) 60%, rgba(15,12,10,0.92) 100%),
    linear-gradient(90deg, rgba(243,112,33,0.18) 0%, transparent 60%);
}
.area__inner {
  position: relative; z-index: 2;
  max-width: 880px;
}
.area__inner h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 18px;
}
.area__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 620px;
}
.area__cities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 22px;
  margin-bottom: 22px;
}
.area__cities li {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 0;
  color: rgba(255,255,255,0.92);
  display: flex; align-items: center; gap: 10px;
}
.area__cities li::before {
  content: '·';
  color: var(--orange);
  font-weight: 800;
  font-size: 18px;
}
.area__note {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  font-style: italic;
}

/* --- CTA --- */
.cta {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg);
  position: relative;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.cta__copy h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 18px;
}
.cta__copy p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.55;
}
.cta__panel {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta__panel::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(243,112,33,0.32), transparent);
  border-radius: 50%;
}
.cta__phone {
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  transition: background 240ms var(--ease), border-color 240ms var(--ease), transform 240ms var(--ease);
}
.cta__phone:hover {
  background: rgba(243,112,33,0.10);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.cta__phone-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.cta__phone-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cta__email {
  display: flex; align-items: center; gap: 12px;
  position: relative;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  word-break: break-all;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 240ms var(--ease);
}
.cta__email:hover { color: var(--orange); }
.cta__email svg { color: var(--orange); flex-shrink: 0; }
.cta__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
  margin-top: 20px;
  position: relative;
}
.cta__pills li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
}

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(40px, 5vw, 64px) 0 28px;
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer__brand {
  display: flex; gap: 14px; align-items: flex-start;
}
.footer__brand .brand__mark {
  background: rgba(243,112,33,0.14);
}
.footer__brand strong {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer__contact {
  display: flex; flex-direction: column; gap: 8px;
}
.footer__contact a {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  word-break: break-all;
  transition: color 220ms var(--ease);
}
.footer__contact a:hover { color: var(--orange); }
.footer__meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer__meta span:first-child { color: rgba(255,255,255,0.78); }
.footer__credit {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}
.footer__credit a {
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  transition: color 220ms var(--ease);
}
.footer__credit a:hover { color: var(--orange); }

/* --- Reveal animation --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero__media {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__media-card { left: 0; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about__media { max-width: 540px; margin: 0 auto; aspect-ratio: 4 / 4; width: 100%; }

  .cta__inner { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .band__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    padding: 28px var(--gutter);
  }
  .band__rule { display: none; }

  .area__cities { grid-template-columns: repeat(3, 1fr); }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__meta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.10); }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    padding: 24px var(--gutter) 32px;
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 320ms var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 18px;
  }
  .nav__links a:last-child {
    border-bottom: 0;
    margin-top: 12px;
    padding: 14px 22px;
    text-align: center;
  }

  .utility__pill { font-size: 11px; }
  .utility__phone { font-size: 12px; }

  .services__grid { grid-template-columns: 1fr; }

  .area__cities { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__meta { flex-direction: column; }

  .hero__cta .btn { flex: 1 1 100%; }
  .hero__media-card { min-width: 0; right: 0; }
}

@media (max-width: 560px) {
  .utility__pill { display: none; }
  .utility__inner { justify-content: flex-end; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(34px, 9vw, 44px); }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
