:root {
  --bg: #f5f7fb;
  --bg-soft: #edf2f8;
  --surface: #ffffff;
  --surface-soft: #f1f5fa;
  --surface-blue: #eff5ff;
  --line: #d7e1ef;
  --line-strong: #c5d3e6;
  --text: #10233f;
  --muted: #61708a;
  --accent: #1a4fa3;
  --accent-strong: #113a81;
  --accent-soft: #dbe7fb;
  --accent-warm: #d7c5a1;
  --success: #e8f3e8;
  --shadow: 0 24px 50px rgba(18, 43, 88, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(26, 79, 163, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 48%, #edf2f8 100%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #103b83 0%, #1b56b0 55%, #235fb8 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(8, 30, 71, 0.2);
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  padding: 0.32rem 1rem 0.32rem 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(8, 30, 71, 0.14);
}

.brand img {
  width: 162px;
  max-width: 42vw;
  object-fit: contain;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #113b81, #1f5bb2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(8, 30, 71, 0.18);
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 230px;
  padding-right: 0.1rem;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 0.98rem;
  font-family: "Oswald", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
}

.brand-copy span,
.footer-brand span,
.small-label,
.meta-note,
.footer-meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.topbar .brand-copy strong {
  color: #ffffff;
}

.topbar .brand-copy span {
  color: rgba(255, 255, 255, 0.82);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.is-current {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.topbar .button {
  background: #ffffff;
  color: var(--accent-strong);
  box-shadow: 0 14px 26px rgba(8, 30, 71, 0.14);
}

.topbar .button:hover {
  background: #f4f8ff;
}

.nav-cta {
  margin-left: 0.55rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 18px rgba(8, 30, 71, 0.18);
  transform: translateY(-1px);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

@media (min-width: 821px) {
  .topbar-inner {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 250px;
  }

  .topbar .brand {
    margin-left: -8.5rem;
  }

  .nav {
    position: static;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    transform: none;
  }

  .topbar-actions {
    position: absolute;
    top: 50%;
    right: 0;
    margin: 0;
    transform: translateY(-50%);
  }
}

.button,
.button-secondary,
.button-ghost,
.filter-button,
.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.filter-button:hover,
.carousel-button:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, #1b56b0, #103b83);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(26, 79, 163, 0.18);
}

.button-secondary {
  background: var(--surface);
  color: var(--accent-strong);
  border-color: var(--line-strong);
}

.button-ghost,
.filter-button,
.carousel-button {
  background: var(--surface);
  color: var(--accent-strong);
  border-color: var(--line);
}

.filter-button.is-active {
  background: var(--accent-strong);
  color: #ffffff;
  border-color: var(--accent-strong);
}

.hero-home {
  padding: 2rem 0 5.5rem;
}

.page-hero {
  padding: 2.4rem 0 2.5rem;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  padding: 0 0 2rem;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 0;
}

.hero-stage::before {
  top: 5rem;
  right: 0;
  width: min(32vw, 440px);
  height: 360px;
  background: linear-gradient(180deg, rgba(238, 242, 248, 0.6), rgba(223, 230, 241, 0.95));
}

.hero-stage::after {
  right: 0;
  bottom: 4rem;
  width: min(28vw, 360px);
  height: 220px;
  background: #dfe6ef;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(100%, calc(100% - 12rem));
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) 0;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  top: 3rem;
  width: min(100%, 500px);
  padding: 6.8rem 3rem;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(15, 49, 112, 0.97), rgba(36, 67, 126, 0.93));
  color: #ffffff;
  box-shadow: 0 32px 54px rgba(12, 38, 82, 0.26);
}

.hero-card h1,
.hero-card h2,
.page-hero-copy h1,
.page-hero-copy h2,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

.hero-card h1 {
  max-width: 16ch;
  font-size: 3rem;
  line-height: 1.06;
}

.hero-price {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.intro-split,
.page-hero-grid,
.split-grid,
.contact-grid,
.footer-grid,
.section-grid,
.services-summary,
.electric-grid,
.news-grid,
.service-grid,
.inventory-grid,
.team-grid,
.stats-grid,
.contact-card-grid {
  display: grid;
  gap: 1.3rem;
}

.intro-split {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  margin-top: 0.6rem;
}

.intro-title {
  position: relative;
  padding-left: 1.4rem;
}

.intro-title::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 3px;
  height: 92px;
  background: linear-gradient(180deg, #25a6ff, var(--accent-strong));
}

.intro-title h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}

.intro-copy {
  max-width: 64ch;
  padding-top: 0.35rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section {
  padding: 2.2rem 0;
}

.section.is-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(236, 241, 248, 0.78));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.small-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.small-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
}

.section-head p,
.lead,
.copy-block p,
.service-card p,
.news-card p,
.electric-card p,
.inventory-card p,
.contact-card p,
.team-card p,
.callout p,
.guarantee-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  margin-top: 1rem;
  max-width: 60ch;
  font-size: 1.04rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
}

.page-hero-copy,
.copy-block,
.contact-panel,
.form-panel,
.footer-box {
  padding: 2rem;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-copy h1 {
  margin-top: 0.7rem;
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero-visual,
.image-card {
  position: relative;
  overflow: hidden;
}

.page-hero-visual img,
.image-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-badge,
.image-note {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(17, 58, 129, 0.9);
  color: #ffffff;
  font-weight: 700;
}

.carousel-shell {
  padding: 1.8rem;
}

.carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel-actions {
  display: flex;
  gap: 0.7rem;
}

.carousel-button {
  width: 48px;
  padding: 0;
}

.carousel-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding-bottom: 0.3rem;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: #c7d6eb;
  border-radius: 999px;
}

.carousel-card,
.inventory-card,
.service-card,
.electric-card,
.news-card,
.team-card,
.stat-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.carousel-card {
  flex: 0 0 292px;
  scroll-snap-align: start;
  overflow: hidden;
}

.carousel-card figure,
.inventory-card figure,
.team-card figure {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}

.carousel-card figure {
  display: grid;
  place-items: center;
  min-height: 208px;
  padding: 1.2rem;
}

.carousel-card figure img {
  max-height: 170px;
  object-fit: contain;
}

.card-copy {
  padding: 1.3rem 1.3rem 1.45rem;
}

.card-topline,
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  color: var(--accent-strong);
  font-weight: 700;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.specs span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.services-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 5.2rem;
}

.summary-card {
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
}

.summary-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.summary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  margin-bottom: 0.1rem;
  width: fit-content;
  min-height: auto;
  padding: 1rem 0 0;
  color: var(--accent-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(26, 79, 163, 0.16);
  box-shadow: none;
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.summary-card p {
  margin-bottom: 1.35rem;
}

.summary-link::after {
  content: "\2192";
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.summary-link:hover {
  color: var(--accent-strong);
  border-color: rgba(26, 79, 163, 0.28);
  transform: translateX(2px);
}

.summary-link:hover::after {
  transform: translateX(2px);
}

.guarantee-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #143d86 0%, #1d5db7 100%);
  color: #ffffff;
  box-shadow: 0 28px 52px rgba(20, 61, 134, 0.22);
}

.campaign-feature {
  overflow: hidden;
}

.campaign-feature img {
  width: 100%;
  height: auto;
}

.guarantee-number {
  display: grid;
  gap: 0.45rem;
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(4.6rem, 8vw, 6.8rem);
  line-height: 0.88;
}

.guarantee-number span {
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guarantee-copy .small-label,
.guarantee-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.guarantee-copy p {
  margin-top: 1.1rem;
}

.guarantee-copy .small-label::before {
  background: var(--accent-warm);
}

.electric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.electric-card {
  padding: 1.6rem;
}

.electric-card.media-card {
  padding: 0;
  overflow: hidden;
}

.electric-card.media-card img {
  height: 250px;
  object-fit: cover;
}

.electric-card.media-card .card-copy {
  padding-top: 1.5rem;
}

.section-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.check-list,
.footer-links {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.footer-links li {
  position: relative;
  padding-left: 1.3rem;
}

.check-list li + li,
.footer-links li + li {
  margin-top: 0.75rem;
}

.check-list li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  padding: 1.6rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.55rem;
}

.split-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.inventory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inventory-card {
  overflow: hidden;
}

.inventory-card figure {
  min-height: 220px;
  padding: 1rem;
}

.inventory-card figure img {
  height: 200px;
  object-fit: contain;
}

.inventory-card .button-ghost {
  margin-top: 1.1rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.is-hidden {
  display: none;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1f6ff 0%, #e7eef9 100%);
  border: 1px solid var(--line);
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  overflow: hidden;
}

.team-card figure img {
  height: 320px;
  object-fit: cover;
}

.stats-grid,
.contact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.contact-card {
  padding: 1.3rem;
}

.stat-card strong,
.contact-card h3 {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.contact-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f9fbfe;
  color: var(--text);
  padding: 0.95rem 1rem;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: var(--success);
  color: #1d4f2f;
  font-weight: 700;
}

.form-feedback.is-visible {
  display: block;
}

.footer {
  padding: 2.5rem 0 2rem;
}

.footer-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 251, 0.96));
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  align-items: start;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent-strong);
}

@media (max-width: 1100px) {
  .hero-stage {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-stage::before,
  .hero-stage::after {
    display: none;
  }

  .hero-media {
    width: 100%;
    min-height: 460px;
    border-radius: var(--radius-xl);
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 640px);
    margin: -4rem 0 0 auto;
    border-radius: var(--radius-xl);
  }

  .services-summary,
  .electric-grid,
  .news-grid,
  .service-grid,
  .inventory-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .section-grid,
  .footer-grid,
  .intro-split {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    min-height: 78px;
    justify-content: space-between;
  }

  .brand-copy {
    display: none;
  }

  .brand {
    padding: 0.22rem;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(17, 58, 129, 0.18);
  }

  .brand img {
    width: 154px;
    padding: 0.72rem 0.95rem;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav-cta {
    width: 100%;
    margin: 0;
  }

  .nav-social {
    margin: 0;
  }

  .nav-social a {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .topbar-actions {
    position: static;
    transform: none;
    margin-left: auto;
  }

  .hero-home {
    padding-top: 1.1rem;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-card {
    margin-top: -2rem;
    padding: 2rem 1.5rem;
  }

  .hero-card h1,
  .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .section-head,
  .carousel-head,
  .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-card {
    flex-basis: 252px;
  }

  .stats-grid,
  .contact-card-grid,
  .services-summary,
  .electric-grid,
  .news-grid,
  .service-grid,
  .inventory-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .page-hero-copy,
  .copy-block,
  .contact-panel,
  .form-panel,
  .footer-box,
  .carousel-shell,
  .service-card,
  .electric-card,
  .news-card {
    border-radius: 24px;
  }

  .hero-badge,
  .image-note {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
