/* Single polished look: dark hero, light site, color rhythm. No theme toggle. */

html {
  color-scheme: light;
}

html.dark-theme,
html.light-theme {
  /* neutralize leftover toggle classes */
}

body {
  background-color: #f4f5f7;
  color: #1e293b;
}

/* Header: dark over hero, light after scroll */
.header {
  background: rgba(11, 18, 32, 0.92) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header .brand-logo .logo-text {
  color: #f8fafc !important;
  font-size: 2.85rem !important;
}

.header .brand-logo .logo-tagline {
  color: rgba(226, 232, 240, 0.72) !important;
  font-size: 0.68rem !important;
}

.header .nav-menu a,
.header .nav-link {
  color: #e2e8f0 !important;
}

.header .nav-menu a:hover,
.header .nav-link:hover {
  color: #fca5a5 !important;
}

.header .mobile-toggle .line {
  background: #f1f5f9;
}

.header .header-phone {
  color: #e2e8f0 !important;
}

.header.scrolled {
  background: rgba(244, 245, 247, 0.97) !important;
  border-bottom-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header.scrolled .brand-logo .logo-text {
  color: #0f172a !important;
}

.header.scrolled .brand-logo .logo-tagline {
  color: #64748b !important;
}

.header.scrolled .nav-menu a,
.header.scrolled .nav-link,
.header.scrolled .header-phone {
  color: #1e293b !important;
}

.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-link:hover {
  color: #c41e1e !important;
}

.header.scrolled .mobile-toggle .line {
  background: #0f172a;
}

.theme-toggle,
.mobile-theme-toggle {
  display: none !important;
}

.brand-logo--footer .logo-text {
  font-size: 2.55rem !important;
}

/* Dark cinematic hero (kept from dark mode) */
.hero {
  color: #e8edf5;
}

.hero-bg::before,
.light-theme .hero-bg::before,
html:not(.dark-theme) .hero-bg::before,
.dark-theme .hero-bg::before {
  background: linear-gradient(
    105deg,
    rgba(11, 18, 32, 0.96) 0%,
    rgba(11, 18, 32, 0.82) 48%,
    rgba(11, 18, 32, 0.42) 100%
  ) !important;
}

.hero-title-lead {
  color: #cbd5e1 !important;
}

.hero-years {
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(196, 30, 30, 0.35);
}

.hero-subtitle {
  color: #cbd5e1 !important;
  max-width: 34rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-phone-btn {
  margin-top: 0.35rem;
}

.hero .btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  background: transparent !important;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.hero-form-container {
  background: #fff !important;
  color: #1e293b;
}

.hero-form-title,
.hero-form-subtitle {
  color: #1e293b !important;
}

.hero-form-subtitle {
  color: #64748b !important;
}

/* Section color rhythm */
.section.about {
  background: #f4f5f7;
}

.section.services {
  display: block !important;
  background: #fff;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.home .services {
  display: block !important;
}

.section.testimonials {
  background: #eef1f5;
}

.section.contact {
  background: #f4f5f7;
}

.section.portfolio {
  display: none !important;
}

.area-band {
  background: #0f172a;
  color: #e2e8f0;
  padding: 3.25rem 0 !important;
}

.area-band-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.area-band-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fca5a5;
}

.area-band-title {
  margin: 0 0 0.75rem;
  font-family: "Teko", sans-serif;
  font-size: 2.6rem;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 0.02em;
}

.area-band-text {
  margin: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
}

.area-band-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.area-band-list li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  font-weight: 600;
  color: #f1f5f9;
}

/* Services cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 30, 0.1);
  color: #c41e1e;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.service-header h3 {
  margin: 0;
  font-size: 1.45rem;
  color: #0f172a;
}

.service-content p {
  color: #475569;
  margin-bottom: 0.85rem;
}

.service-features {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  font-size: 0.95rem;
}

.service-feature i {
  color: #c41e1e;
  font-size: 0.8rem;
}

.hero-form-container,
.contact-form,
.testimonial-card,
.contact-info-content {
  background: #fff !important;
}

.testimonial-card {
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.section-header {
  margin-bottom: 2.75rem;
}

/* Cookie notice */
#cookie-notice {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  padding: 0 !important;
  background: rgba(15, 23, 42, 0.97) !important;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#cookie-notice .cookie-notice-container {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem !important;
  color: #e8edf5 !important;
  font-family: "Outfit", sans-serif;
}

#cn-notice-text,
#cookie-notice .cn-text-container {
  flex: 1 1 280px;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  color: rgba(232, 237, 245, 0.92) !important;
}

#cn-accept-cookie,
#cookie-notice .cn-button {
  appearance: none !important;
  border: 0 !important;
  background: #c41e1e !important;
  color: #fff !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  padding: 0.7rem 1.35rem !important;
  border-radius: 0.5rem !important;
  min-height: 42px;
  cursor: pointer;
}

#cn-accept-cookie:hover,
#cookie-notice .cn-button:hover {
  background: #a81919 !important;
}

#cn-close-notice:before,
#cn-close-notice:after {
  background: #fff !important;
}

@media (max-width: 992px) {
  .header-actions {
    display: flex !important;
    gap: 0.5rem;
  }

  .header-actions .header-phone,
  .header-actions .btn {
    display: none !important;
  }

  .area-band-inner,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .area-band-title {
    font-size: 2.2rem;
  }

  .header .brand-logo .logo-text,
  .header.scrolled .brand-logo .logo-text {
    font-size: 2.35rem !important;
  }
}

@media (max-width: 768px) {
  .header .brand-logo .logo-text,
  .header.scrolled .brand-logo .logo-text {
    font-size: 2.05rem !important;
  }

  .header .brand-logo .logo-tagline,
  .header.scrolled .brand-logo .logo-tagline {
    font-size: 0.54rem !important;
  }

  #cn-accept-cookie,
  #cookie-notice .cn-button,
  #cn-notice-buttons {
    width: 100%;
  }
}
