/* ====================================================================
   Ben King & Son Electric — Rebuilt with Real Imagery
   Classic blue (#1e40af) + amber/gold (#d97706) accent
   ==================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --blue-900: #1e3a5f;
  --blue-800: #1e40af;
  --blue-700: #2449b8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --amber-50: #fffbeb;

  /* Neutrals */
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Cabinet Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'General Sans', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--blue-800);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 999;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* --- Section Utilities --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 12px;
}
.section-label--light { color: var(--amber-400); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  margin-top: 12px;
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--blue-800);
  color: var(--white);
}
.btn--primary:hover { background: var(--blue-700); }

.btn--accent {
  background: var(--amber-600);
  color: var(--white);
}
.btn--accent:hover { background: var(--amber-500); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }

.btn--white {
  background: var(--white);
  color: var(--blue-800);
}
.btn--white:hover { background: var(--blue-50); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn--large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

/* ====================================================================
   HEADER
   ==================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.header--scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
  background: rgba(255,255,255,0.97);
}
.header--hidden { transform: translateY(-100%); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-800);
  flex-shrink: 0;
}
.header__logo svg { color: var(--blue-800); }

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--gray-900);
}
.header__tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-600);
}

.header__nav-list {
  display: flex;
  gap: 32px;
}
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-600);
  transition: width 0.25s var(--ease-out);
}
.header__nav-link:hover { color: var(--blue-800); }
.header__nav-link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__cta i { font-size: 16px; }

.header__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s var(--ease-out);
}
.hamburger { top: 50%; transform: translate(-50%, -50%); }
.hamburger::before { content: ''; top: -7px; left: 0; transform: none; }
.hamburger::after { content: ''; top: 7px; left: 0; transform: none; }

.header__menu-toggle.is-active .hamburger { background: transparent; }
.header__menu-toggle.is-active .hamburger::before { top: 0; transform: rotate(45deg); }
.header__menu-toggle.is-active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ====================================================================
   HERO — Real photo background
   ==================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.82) 0%,
    rgba(30, 64, 175, 0.72) 40%,
    rgba(30, 58, 95, 0.68) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.hero__badge i { color: var(--amber-400); font-size: 16px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.hero__trust-item i { color: var(--amber-400); font-size: 16px; }

/* ====================================================================
   SERVICES
   ==================================================================== */
.services {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out);
  opacity: 0;
  transform: translateY(16px);
}
.service-card.revealed { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-color: var(--blue-100);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-800);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.25s var(--ease-out);
}
.service-card:hover .service-card__icon {
  background: var(--amber-600);
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* ====================================================================
   FEATURE BAND — Generator photo band
   ==================================================================== */
.feature-band {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}

.feature-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 24, 39, 0.88) 0%,
    rgba(30, 58, 95, 0.75) 50%,
    rgba(30, 64, 175, 0.5) 100%
  );
}

.feature-band__inner {
  position: relative;
  z-index: 2;
}

.feature-band__content {
  max-width: 560px;
}

.feature-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-band__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* ====================================================================
   ABOUT — Real team photo
   ==================================================================== */
.about {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--gray-50);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-col { position: relative; }

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--amber-600);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about__text-col .section-label { margin-bottom: 12px; }
.about__text-col .section-title { margin-bottom: 20px; }

.about__lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 16px;
}

.about__text-col p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.4s var(--ease-out);
}
.about__highlight.revealed { opacity: 1; transform: translateX(0); }
.about__highlight:nth-child(2).revealed { transition-delay: 0.1s; }
.about__highlight:nth-child(3).revealed { transition-delay: 0.2s; }

.about__highlight-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  color: var(--amber-600);
  border-radius: var(--radius-sm);
  font-size: 18px;
  flex-shrink: 0;
}

.about__highlight strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}
.about__highlight span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ====================================================================
   SERVICE AREA
   ==================================================================== */
.area {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--white);
}

.area__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.area__map {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area__map svg { width: 100%; max-width: 360px; height: auto; }

.area__towns-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.area__towns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area__town {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.25s var(--ease-out);
  opacity: 0;
  transform: translateY(8px);
}
.area__town.revealed { opacity: 1; transform: translateY(0); }
.area__town:hover {
  border-color: var(--blue-100);
  background: var(--blue-50);
  color: var(--blue-800);
}
.area__town i { color: var(--amber-600); font-size: 16px; }

.area__note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.area__note a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.area__note a:hover { color: var(--blue-800); }

/* ====================================================================
   CTA BAND
   ==================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  line-height: 1.15;
}
.cta-band__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--gray-50);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact__card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease-out);
}
.contact__card-item.revealed { opacity: 1; transform: translateY(0); }
.contact__card-item:nth-child(2).revealed { transition-delay: 0.08s; }
.contact__card-item:nth-child(3).revealed { transition-delay: 0.16s; }

.contact__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-800);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 20px;
  flex-shrink: 0;
}

.contact__card-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.contact__card-item a,
.contact__card-item span {
  font-size: 14px;
  color: var(--gray-600);
  display: block;
}
.contact__card-item a { color: var(--blue-600); font-weight: 600; }
.contact__card-item a:hover { color: var(--blue-800); text-decoration: underline; }

.contact__emergency {
  color: var(--amber-600) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-top: 2px;
}

.contact__brands {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: var(--radius-md);
}
.contact__brands-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-600);
  margin-bottom: 10px;
}
.contact__brands-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact__brand {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--amber-100);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.contact__cta-card {
  background: var(--blue-800);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__cta-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 24px;
  color: var(--amber-400);
  margin-bottom: 20px;
}
.contact__cta-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}
.contact__cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact__cta-btn { width: 100%; justify-content: center; }
.contact__cta-note {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 56px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__logo svg { color: var(--white); }
.footer__logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 300px;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  margin-bottom: 14px;
}
.footer__col li {
  font-size: 14px;
  color: var(--gray-500);
  padding: 3px 0;
}
.footer__col li a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--gray-600);
}

.footer__credits {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.footer__credits a {
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer__credits a:hover { color: var(--amber-400); }
.footer__sep { color: var(--gray-700); }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__layout { gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Header */
  .header__inner { height: 64px; }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease-out);
    z-index: 90;
  }
  .header__nav.is-open { opacity: 1; visibility: visible; }
  .header__nav-list {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .header__nav-link {
    font-size: 24px;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 12px 0;
    display: block;
  }
  .header__menu-toggle { display: block; z-index: 100; }
  .header__cta span { display: none; }
  .header__cta { padding: 10px; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }

  /* Hero */
  .hero { min-height: 90vh; padding: 100px 0 60px; }
  .hero__title { font-size: clamp(32px, 8vw, 48px); }
  .hero__subtitle { font-size: 15px; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 12px; }

  /* Services */
  .services { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }

  /* Feature Band */
  .feature-band { padding: 64px 0; }
  .feature-band__overlay {
    background: linear-gradient(
      to bottom,
      rgba(17, 24, 39, 0.88) 0%,
      rgba(30, 58, 95, 0.82) 100%
    );
  }

  /* About */
  .about { padding: 64px 0; }
  .about__layout { grid-template-columns: 1fr; gap: 32px; }
  .about__image-accent { bottom: -8px; right: -8px; }

  /* Area */
  .area { padding: 64px 0; }
  .area__layout { grid-template-columns: 1fr; }
  .area__map { max-height: 300px; }

  /* CTA Band */
  .cta-band { padding: 40px 0; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__inner .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact { padding: 64px 0; }
  .contact__layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__credits { flex-direction: column; gap: 4px; }
  .footer__sep { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  .area__towns-grid { grid-template-columns: 1fr; }
  .contact__brands-list { flex-direction: column; }
}

/* --- Stagger delays for grid items --- */
.service-card:nth-child(1).revealed { transition-delay: 0s; }
.service-card:nth-child(2).revealed { transition-delay: 0.06s; }
.service-card:nth-child(3).revealed { transition-delay: 0.12s; }
.service-card:nth-child(4).revealed { transition-delay: 0.18s; }
.service-card:nth-child(5).revealed { transition-delay: 0.24s; }
.service-card:nth-child(6).revealed { transition-delay: 0.3s; }

.area__town:nth-child(1).revealed { transition-delay: 0s; }
.area__town:nth-child(2).revealed { transition-delay: 0.04s; }
.area__town:nth-child(3).revealed { transition-delay: 0.08s; }
.area__town:nth-child(4).revealed { transition-delay: 0.12s; }
.area__town:nth-child(5).revealed { transition-delay: 0.16s; }
.area__town:nth-child(6).revealed { transition-delay: 0.2s; }
.area__town:nth-child(7).revealed { transition-delay: 0.24s; }
.area__town:nth-child(8).revealed { transition-delay: 0.28s; }
.area__town:nth-child(9).revealed { transition-delay: 0.32s; }
.area__town:nth-child(10).revealed { transition-delay: 0.36s; }
.area__town:nth-child(11).revealed { transition-delay: 0.4s; }
.area__town:nth-child(12).revealed { transition-delay: 0.44s; }
