/* ==========================================================================
   Elektroservice Feith – Website Styles
   Farbpalette abgeleitet aus dem Firmenlogo (assets/logo.svg)
   ========================================================================== */

:root {
  --color-dark: #231f20;
  --color-dark-soft: #322c2b;
  --color-dark-border: #423a38;

  --color-yellow: #ecdb1e;
  --color-yellow-dark: #c7ba0f;

  --color-green: #4c7a45;
  --color-green-light: #94d48a;

  --color-blue: #3d84a8;
  --color-blue-light: #9fccca;

  --color-brown: #806319;

  --color-bg: #faf9f6;
  --color-white: #ffffff;
  --color-text: #231f20;
  --color-text-muted: #5c5654;

  --radius: 10px;
  --shadow: 0 10px 30px rgba(35, 31, 32, 0.08);
  --max-width: 1180px;

  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

a { color: var(--color-green); text-decoration: none; }
a:hover { color: var(--color-dark); }

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

h1, h2, h3, h4 {
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-green);
  background: rgba(76, 122, 69, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark {
  background: var(--color-dark);
  color: #ece7e5;
}
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--muted { background: var(--color-white); }

.section-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { color: var(--color-text-muted); font-size: 1.05rem; }
.section--dark .section-head p { color: #cfc9c7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-dark);
}
.btn--primary:hover { background: var(--color-yellow-dark); color: var(--color-dark); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: var(--color-white); }

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn--dark:hover { background: #000; color: var(--color-white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(35,31,32,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 75px; width: auto; }
@media (max-width: 720px) {
  .brand img { height: 60px; }
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.98rem;
}
.main-nav a.active { color: var(--color-green); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 20px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-dark);
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(236, 219, 30, 0.12), transparent 55%),
    var(--color-dark);
  color: var(--color-white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}
.hero-badges span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-badges span b { color: var(--color-yellow); margin-right: 6px; }
.hero p.lead { font-size: 1.15rem; color: #d9d4d2; max-width: 540px; }
.hero h1, .hero h2, .hero h3 { color: var(--color-white); }
.hero .eyebrow { background: rgba(236, 219, 30, 0.16); color: var(--color-yellow); }

.hero-visual {
  background: var(--color-dark-soft);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img { max-width: 260px; }
.hero-visual.illu { padding: 0; background: none; border: none; }
.hero-visual.illu img { max-width: 100%; width: 100%; border-radius: var(--radius); }
/* Hero-Illustration: randlos, verschmilzt mit dem Hintergrund */
.hero .hero-visual.illu img {
  border-radius: 0;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.35));
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #ece7e5;
}
.trust-bar .trust-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-yellow);
}

/* Grids */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35,31,32,0.06);
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(236, 219, 30, 0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card p { color: var(--color-text-muted); margin-bottom: 0; }
.card a.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--color-green);
}

/* Value tiles (Why us) */
.value-tile {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--color-dark-soft);
  border: 1px solid var(--color-dark-border);
}
.value-tile .icon { color: var(--color-yellow); font-size: 1.6rem; margin-bottom: 10px; }
.value-tile h3 { color: var(--color-white); font-size: 1.05rem; }
.value-tile p { color: #cfc9c7; margin: 0; font-size: 0.95rem; }

.stat-row { display: flex; gap: 48px; flex-wrap: wrap; margin: 30px 0; }
.stat-row .stat b {
  display: block;
  font-size: 2.2rem;
  color: var(--color-yellow);
}
.stat-row .stat span { color: #cfc9c7; font-size: 0.9rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.badge-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.badge-row .badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid rgba(35,31,32,0.08);
  padding: 16px 18px;
  border-radius: var(--radius);
  flex: 1 1 220px;
}
.badge .badge-icon { font-size: 1.3rem; }
.badge b { display: block; color: var(--color-dark); }
.badge span { color: var(--color-text-muted); font-size: 0.9rem; }

/* Referenzen */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(35,31,32,0.06);
}
.project-card .project-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
}
.project-card .project-photo:has(img) { padding: 0; }
.project-card .project-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-illu { width: 100%; border-radius: var(--radius); margin: 32px 0; display: block; }
.project-card .project-body { padding: 24px; }
.project-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  background: rgba(61, 132, 168, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35,31,32,0.06);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.testimonial .stars { color: var(--color-yellow-dark); font-size: 1.2rem; margin-bottom: 14px; }
.testimonial p.quote { font-size: 1.15rem; font-style: italic; color: var(--color-dark); }
.testimonial .author { margin-top: 16px; font-weight: 700; color: var(--color-text-muted); }

/* MyHammer-Bewertungen */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}
.rating-summary .rating-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid rgba(35,31,32,0.1);
  border-radius: var(--radius);
  padding: 14px 22px;
  box-shadow: var(--shadow);
}
.rating-summary .rating-score b { font-size: 2rem; color: var(--color-dark); }
.rating-summary .rating-score .stars { color: var(--color-yellow-dark); font-size: 1.1rem; }
.rating-summary .rating-score span { color: var(--color-text-muted); font-size: 0.9rem; }
.rating-summary .rating-seals { display: flex; gap: 10px; flex-wrap: wrap; }
.rating-summary .seal {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-green);
  background: rgba(76,122,69,0.1);
  border: 1px solid rgba(76,122,69,0.25);
  padding: 8px 14px;
  border-radius: 999px;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35,31,32,0.06);
  display: flex;
  flex-direction: column;
}
.review-card .stars { color: var(--color-yellow-dark); margin-bottom: 10px; }
.review-card p.quote { font-style: italic; color: var(--color-dark); margin: 0 0 14px; flex: 1; }
.review-card .author { font-weight: 700; color: var(--color-text-muted); font-size: 0.92rem; }
.review-card .job { color: var(--color-text-muted); font-size: 0.82rem; margin-top: 4px; }
.rating-source {
  text-align: center;
  margin-top: 32px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Leistungs-Unterseiten */
.service-detail h2 { margin-top: 36px; }
.service-detail ul { color: var(--color-text-muted); padding-left: 20px; }
.service-detail ul li { margin-bottom: 8px; }
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(35,31,32,0.08);
  color: var(--color-text-muted);
}
.steps li::before {
  content: counter(step);
  flex: 0 0 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li b { color: var(--color-dark); display: block; }
.service-photo {
  height: 260px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  margin: 32px 0;
}
.back-link { display: inline-block; margin-bottom: 18px; font-weight: 700; }
figure { margin: 0; }
figure .form-note { margin-top: -22px; margin-bottom: 32px; text-align: center; }

/* Einzugsgebiet */
.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.region-chips span {
  background: var(--color-white);
  border: 1px solid rgba(35,31,32,0.12);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--color-dark);
  box-shadow: var(--shadow);
}
.region-chips span::before { content: "📍 "; }

/* Foto-Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(35,31,32,0.06);
}
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; display: block; }
.gallery-grid figcaption {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Schwebender WhatsApp-Button */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }
.float-whatsapp svg { width: 30px; height: 30px; fill: currentColor; }

/* Sticky Anruf-Leiste (nur mobil) */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 89;
  background: var(--color-dark);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 999px;
  font-size: 0.95rem;
}
.mobile-cta-bar .bar-call { background: var(--color-yellow); color: var(--color-dark); }
.mobile-cta-bar .bar-mail { background: rgba(255,255,255,0.14); color: var(--color-white); }
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }
  .float-whatsapp { bottom: 88px; }
}

/* Hinweis-Badge im Hero (Verfügbarkeit) */
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: rgba(148, 212, 138, 0.14);
  border: 1px solid rgba(148, 212, 138, 0.35);
  color: #b9e6b1;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* KNX-Badge */
.badge img.knx { height: 60px; width: auto; border-radius: 6px; }

/* ==========================================================================
   Leistungs-Kacheln: 3 oben, 4 unten
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.services-grid > .card { grid-column: span 4; }
.services-grid > .card:nth-child(n+4) { grid-column: span 3; }
@media (max-width: 900px) {
  .services-grid > .card,
  .services-grid > .card:nth-child(n+4) { grid-column: span 6; }
}
@media (max-width: 720px) {
  .services-grid > .card,
  .services-grid > .card:nth-child(n+4) { grid-column: span 12; }
}

/* ==========================================================================
   Effekte (dezent, mit Ruecksicht auf prefers-reduced-motion)
   ========================================================================== */

/* Karten-Hover: leichtes Anheben */
.card, .project-card, .review-card, .value-tile {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .project-card:hover, .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(35, 31, 32, 0.13);
}
.value-tile:hover { transform: translateY(-4px); }

/* Glow auf dem primaeren CTA */
.btn--primary {
  box-shadow: 0 6px 22px rgba(236, 219, 30, 0.35);
}
.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(236, 219, 30, 0.55);
}

/* Shine: glaenzender Streifen, nur bei Hover (kein Dauerloop) */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
@keyframes btn-shine { to { left: 130%; } }
.btn--primary:hover::before { animation: btn-shine 0.7s ease; }
.shine-once::before { animation: btn-shine 0.9s ease 1.4s; }

/* Ripple beim Klick */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.55s ease-out forwards;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.btn--primary .ripple { background: rgba(35, 31, 32, 0.22); }
@keyframes ripple {
  to { transform: scale(3); opacity: 0; }
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Animierter Hero-Gradient: sehr langsame Drift */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(600px circle at 22% 30%, rgba(96, 174, 207, 0.09), transparent 60%),
    radial-gradient(720px circle at 80% 72%, rgba(236, 219, 30, 0.08), transparent 60%);
  animation: gradient-drift 26s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes gradient-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3%, 2.5%, 0) scale(1.05); }
}
.hero .container { position: relative; z-index: 1; }

/* Glassmorphism: mobile Kontakt-Leiste */
.mobile-cta-bar {
  background: rgba(35, 31, 32, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero::before { animation: none; }
  .btn::before, .shine-once::before { animation: none !important; }
  .btn .ripple { animation: none; display: none; }
  .card, .project-card, .review-card, .value-tile { transition: none; }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(35,31,32,0.1);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 20px 0;
  color: var(--color-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-green);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--color-text-muted); padding-bottom: 20px; margin: 0; }
.faq-item summary:hover { color: var(--color-green); }
.faq-item summary:focus-visible { outline: 2px solid var(--color-green); outline-offset: 4px; border-radius: 4px; }

/* FAQ in dunklen Sektionen: heller Text fuer klaren Kontrast */
.section--dark .faq-item { border-bottom-color: rgba(255, 255, 255, 0.18); }
.section--dark .faq-item summary { color: var(--color-white); }
.section--dark .faq-item summary:hover { color: var(--color-yellow); }
.section--dark .faq-item summary::after { color: var(--color-yellow); }
.section--dark .faq-item summary:focus-visible { outline-color: var(--color-yellow); }
.section--dark .faq-item p { color: #cfc9c7; }

/* CTA banner */
.cta-banner {
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); }
.cta-banner p { color: #d9d4d2; max-width: 560px; margin: 0 auto 28px; }
.cta-banner .btn-row { justify-content: center; }

/* Forms */
.form-grid { display: grid; gap: 18px; }
label { font-weight: 700; font-size: 0.9rem; color: var(--color-dark); display: block; margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(35,31,32,0.18);
  font-family: var(--font);
  font-size: 0.98rem;
  background: var(--color-white);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(76,122,69,0.15);
}
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-row input { width: auto; margin-top: 4px; }
.checkbox-row label { font-weight: 400; font-size: 0.88rem; color: var(--color-text-muted); }
.form-note { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 10px; }

/* Contact info page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(35,31,32,0.08);
}
.info-list .info-icon { font-size: 1.3rem; }
.info-list b { display: block; color: var(--color-dark); }
.info-list span, .info-list a { color: var(--color-text-muted); }

/* Legal pages */
.legal-content h2 { margin-top: 40px; }
.legal-content p, .legal-content li { color: var(--color-text-muted); }
.legal-notice {
  background: rgba(236, 219, 30, 0.14);
  border: 1px solid rgba(236, 219, 30, 0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 36px;
  color: var(--color-dark);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #cfc9c7;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--color-white); font-size: 1rem; }
.footer-grid a { color: #cfc9c7; }
.footer-grid a:hover { color: var(--color-yellow); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-brand img { height: 76px; width: auto; margin-bottom: 14px; }
@media (max-width: 480px) {
  .footer-brand img { height: 60px; }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: #cfc9c7; }

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn span.btn-text { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 22px; }
  .section { padding: 60px 0; }
}

/* Mobile nav panel */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(35,31,32,0.1);
  gap: 18px;
}
