/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C0131A;
  --red-dark:   #9A0F15;
  --red-light:  #E8181F;
  --dark:       #2B2B2B;
  --dark-2:     #1E1E1E;
  --mid:        #6B6B6B;
  --light:      #F5F5F0;
  --beige:      #E8E0D5;
  --beige-dark: #D9CFC2;
  --white:      #FFFFFF;
  --border:     #E2DDD8;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w:      1200px;
  --section-v:  80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── TOPBAR ───────────────────────────────────────── */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .9;
}
.topbar-item i { font-size: 14px; }
.topbar-emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  padding: 3px 12px 3px 8px;
  font-weight: 600;
  letter-spacing: .02em;
}
.topbar-emergency i { font-size: 15px; }
.topbar-emergency span.label {
  opacity: .8;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: 4px;
}

/* ─── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .01em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background .2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }
.nav-cta i { font-size: 16px; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 26px;
  padding: 4px;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--dark-2);
  color: var(--white);
  overflow: hidden;
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(30,30,30,.97) 42%, rgba(30,30,30,.6) 68%, rgba(30,30,30,.1) 100%);
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  opacity: .6;
}
.hero-deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: .07;
  z-index: 1;
}
.hero-deco svg { width: 100%; height: 100%; }

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-content {
  max-width: 640px;
}
.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
}
.hero-pretitle::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red-light);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: #f0c0c0;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn i { font-size: 17px; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,19,26,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
}
.hero-trust-item i {
  font-size: 16px;
  color: var(--red-light);
  flex-shrink: 0;
}

/* ─── STATS / TRUST BAR ────────────────────────────── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stat-sub {
  font-size: 12.5px;
  color: var(--mid);
  margin-top: 3px;
}

/* ─── SECTION HELPERS ──────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section-beige { background: var(--beige); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }
.section-dark { background: var(--dark-2); color: var(--white); }

.section-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-head.left {
  text-align: left;
  margin-inline: 0;
}
.pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.pretitle::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}
h2.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-dark h2.section-title { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--mid);
  font-weight: 400;
  line-height: 1.65;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.6); }

/* ─── SERVICES ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background .2s, transform .2s;
  position: relative;
}
.service-card:hover { background: var(--light); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .2s;
}
.service-card:hover .service-icon {
  background: rgba(192,19,26,.08);
}
.service-icon i {
  font-size: 24px;
  color: var(--red);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.3;
}
.service-card p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .01em;
  transition: gap .2s;
}
.service-link:hover { gap: 9px; }
.service-link i { font-size: 14px; }

/* ─── ABOUT / SPLIT ────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--beige-dark) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder i {
  font-size: 48px;
  color: var(--beige-dark);
  opacity: .5;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(192,19,26,.3);
}
.about-img-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 4px;
}
.about-img-badge .badge-label {
  font-size: 12px;
  font-weight: 500;
  opacity: .85;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
}
.about-list li i {
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── ENERGY RENOVATION CTA ────────────────────────── */
.energy-cta {
  background: var(--dark-2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.energy-cta-deco {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 30%, rgba(192,19,26,.15) 100%);
  pointer-events: none;
}
.energy-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.energy-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,19,26,.2);
  border: 1px solid rgba(192,19,26,.4);
  color: #ff8080;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.energy-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--white);
}
.energy-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  line-height: 1.65;
}
.energy-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}
.energy-cta-actions .btn { width: 100%; justify-content: center; }
.energy-note {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 4px;
}

/* ─── NEWS ─────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.news-card-img {
  aspect-ratio: 16/9;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card-img i { font-size: 36px; color: var(--beige-dark); }
.news-card-body { padding: 24px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,19,26,.07);
  padding: 3px 10px;
  border-radius: 4px;
}
.news-date {
  font-size: 12.5px;
  color: var(--mid);
}
.news-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark);
}
.news-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 18px;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  transition: color .2s, gap .2s;
}
.news-link:hover { color: var(--red); gap: 9px; }
.news-link i { font-size: 14px; }

.section-footer-link {
  text-align: center;
  margin-top: 44px;
}

/* ─── CONTACT ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(192,19,26,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i { font-size: 22px; color: var(--red); }
.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.contact-card-sub {
  font-size: 13px;
  color: var(--mid);
  margin-top: 2px;
}
.contact-emergency-block {
  background: var(--dark-2);
  color: var(--white);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-emergency-block i {
  font-size: 28px;
  color: var(--red-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-emergency-block h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.contact-emergency-block .phones {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
.contact-emergency-block .phones span {
  display: block;
  color: var(--white);
}
.contact-emergency-block .note {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--dark);
}
.contact-form-wrap .form-sub {
  font-size: 14.5px;
  color: var(--mid);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .01em;
}
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,19,26,.08);
}
textarea { resize: vertical; min-height: 120px; }

/* ─── MAP PLACEHOLDER ──────────────────────────────── */
.map-placeholder {
  border-radius: 10px;
  overflow: hidden;
  background: var(--beige);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-placeholder i { font-size: 32px; color: var(--red); opacity: .5; }
.map-placeholder span { font-size: 13px; color: var(--mid); }

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); opacity: .85; }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 17px;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); }
.footer-links i { font-size: 13px; color: var(--red); opacity: .7; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  align-items: flex-start;
}
.footer-contact-item i {
  font-size: 15px;
  color: var(--red);
  opacity: .8;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .energy-cta .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .energy-cta-actions {
    flex-direction: row;
    min-width: auto;
  }
  .energy-cta-actions .btn { width: auto; }
}

@media (max-width: 900px) {
  :root { --section-v: 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:last-child { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-img-badge { right: 10px; bottom: -15px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar-left .topbar-item:not(:first-child) { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 200;
  }
  .nav-links.open a { padding: 12px 24px; }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    margin: 8px 24px 0;
    justify-content: center;
  }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .energy-cta-actions { flex-direction: column; }
}

/* ─── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pretitle { animation: fadeUp .5s .1s both; }
.hero h1       { animation: fadeUp .5s .2s both; }
.hero-sub      { animation: fadeUp .5s .3s both; }
.hero-actions  { animation: fadeUp .5s .4s both; }
.hero-trust    { animation: fadeUp .5s .5s both; }
