:root {
  --ink: #1a1a1a;
  --ink-soft: #2e2e2e;
  --ink-2: #222222;
  --gray-900: #2e2e2e;
  --gray-800: #3a3a3a;
  --gray-700: #4a4a4a;
  --gray-600: #5d5d5d;
  --gray-500: #757575;
  --gray-400: #9b9b9b;
  --gray-300: #cfcfcf;
  --gray-200: #e5e5e5;
  --gray-100: #f2f2f2;
  --gray-50:  #f8f8f8;
  --bg: #ffffff;
  --accent: #b8392e;
  --accent-dark: #962d24;
  --accent-soft: rgba(184, 57, 46, 0.10);
  --accent-line: rgba(184, 57, 46, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 6.75rem; }
html, body { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
}

::selection { background: var(--ink); color: #ffffff; }

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

.container-app {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 1024px) {
  .container-app { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 1600px) {
  .container-app { max-width: 1480px; }
}

.section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
@media (min-width: 1024px) {
  .section { padding-top: 7rem; padding-bottom: 7rem; }
}

.about-section { background: var(--bg); }
.services-section { background: var(--gray-50); }
.refs-section { background: var(--bg); }
.contact-section { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-tag::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-header .section-tag::before { display: none; }
.section-header .section-tag {
  padding: 0.35rem 0.85rem;
  background: var(--accent-soft);
  border-radius: 999px;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}
.section-h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (min-width: 1024px) {
  .section-h2 { font-size: 2.75rem; }
}
.section-lead {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-top: 1rem;
}
@media (min-width: 1024px) { .section-lead { font-size: 1.0625rem; } }

.section-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  max-width: 60ch;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
}

#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 60;
  transition: width 0.1s linear;
  pointer-events: none;
}

#topbar {
  background: var(--accent);
  transition: transform 0.4s var(--ease);
}
#topbar.topbar-hidden { transform: translateY(-100%); }

.topbar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  gap: 0.85rem;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.25s;
}
.topbar-link:hover { color: #ffffff; }
.topbar-phone { display: none; }
.topbar-ig { display: none; }
.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
@media (min-width: 768px) {
  .topbar-grid { justify-content: space-between; }
  .topbar-phone { display: inline-flex; }
  .topbar-ig { display: inline-flex; }
}
@media (max-width: 460px) {
  .topbar-chip { font-size: 0.66rem; padding: 0.25rem 0.7rem; letter-spacing: 0.02em; }
}

#navbar {
  top: 0;
  transition: top 0.5s var(--ease);
}
#navbar.has-topbar { top: 2.4rem; }
#navbar.scrolled.has-topbar { top: 2.4rem; }
#navbar.scrolled.no-topbar { top: 0; }

.nav-h { height: 4.25rem; }
@media (min-width: 1024px) {
  .nav-h { height: 5.25rem; }
}

.navbar-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  pointer-events: none;
  z-index: 0;
  transition: box-shadow 0.4s var(--ease);
}
#navbar.scrolled .navbar-bg {
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.04), 0 4px 16px rgba(26, 26, 26, 0.03);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.brand-logo {
  height: 1.75rem;
  width: auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
@media (min-width: 768px) {
  .brand-logo { height: 2.4rem; }
}
@media (min-width: 1024px) {
  .brand-logo { height: 3.25rem; }
}
@media (min-width: 1280px) {
  .brand-logo { height: 3.6rem; }
}
.brand:hover .brand-logo { opacity: 0.75; }

.nav-link {
  position: relative;
  padding: 0.55rem 0.95rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.25s;
}
.nav-link:hover { color: var(--ink); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0.95rem;
  right: 0.95rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle .menu-bar {
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.menu-open .menu-toggle .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle .menu-bar:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-open .menu-toggle .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  background: var(--ink);
  z-index: 60;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-inner {
  padding: 5rem 1.5rem 3rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-menu-close {
  position: fixed;
  top: 0.85rem;
  right: 1rem;
  z-index: 65;
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#mobile-menu.active .mobile-menu-close { display: inline-flex; }
.mobile-menu-close:hover { background: var(--gray-100); transform: rotate(90deg); }
.mobile-menu-close svg { width: 1.4rem; height: 1.4rem; }

#mobile-menu.active { opacity: 1; pointer-events: auto; }
#mobile-menu .mobile-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.2s;
}
#mobile-menu .mobile-link:hover { color: var(--gray-300); }
#mobile-menu .mobile-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 2px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 8px 20px rgba(184, 57, 46, 0.35);
}
#mobile-menu .mobile-cta:hover { background: var(--accent-dark); }
#mobile-menu.active .mobile-link,
#mobile-menu.active .mobile-cta { opacity: 1; transform: translateY(0); }
#mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.06s; }
#mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.10s; }
#mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.14s; }
#mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.18s; }
#mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.22s; }
#mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.26s; }
#mobile-menu.active .mobile-cta { transition-delay: 0.30s; }
.mobile-info {
  margin-top: auto;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mobile-info-row {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
a.mobile-info-row:hover { color: #ffffff; }

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 18px rgba(184, 57, 46, 0.25);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(184, 57, 46, 0.32);
}
.btn-accent.btn-block { width: 100%; padding: 1.05rem 1.5rem; font-size: 1rem; }
.btn-accent.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; box-shadow: 0 4px 12px rgba(184, 57, 46, 0.22); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  background: var(--ink);
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); }
.btn-dark.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.8125rem;
}
.btn-dark.btn-block { width: 100%; padding: 1.05rem 1.5rem; font-size: 1rem; }

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  background: #ffffff;
  color: var(--ink);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-light:hover { background: var(--gray-100); transform: translateY(-2px); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1.65rem;
  background: transparent;
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1.65rem;
  background: transparent;
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-outline:hover {
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero { background: var(--ink); }
.hero-h {
  height: 92vh;
  min-height: 580px;
}
@supports (height: 100svh) {
  .hero-h { height: 92svh; }
}
.hero-bg img { filter: contrast(1.02) saturate(0.95); }
.hero-gradient {
  background:
    linear-gradient(180deg, rgba(26,26,26,0.45) 0%, rgba(26,26,26,0.30) 22%, rgba(26,26,26,0.55) 65%, rgba(26,26,26,0.92) 100%),
    linear-gradient(90deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0) 65%);
}
.hero-pad {
  padding-top: 9rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-pad { padding-bottom: 5.5rem; }
}
.hero-text { max-width: 880px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0.55rem 0.95rem 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184, 57, 46, 0.25);
}
.hero-h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: clamp(2.25rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-top: 1.5rem;
}
.hero-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 56ch;
  margin-top: 1.35rem;
  line-height: 1.6;
}
@media (min-width: 1024px) { .hero-sub { font-size: 1.0625rem; } }
.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 3px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .about-photo { max-width: 100%; margin: 0; }
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-photo:hover img { transform: scale(1.04); }

.about-stats {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.75rem;
}
@media (min-width: 640px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about-stat-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--accent);
}
@media (min-width: 1024px) {
  .about-stat-num { font-size: 3.1rem; }
}
.about-stat-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.about-creds {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}
.about-cred {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(184, 57, 46, 0.12);
}
.svc-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-200);
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body {
  padding: 1.4rem 1.5rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.svc-card-desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-600);
  flex: 1;
}

.solarlux-section {
  position: relative;
  overflow: clip;
  background: var(--ink);
  color: #ffffff;
}
.solarlux-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.solarlux-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
}
.solarlux-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.8);
}
.solarlux-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .solarlux-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}
.solarlux-content { color: #ffffff; }
@media (max-width: 1023px) {
  .solarlux-content { max-width: 36rem; }
}
.solarlux-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  overflow: hidden;
  background: var(--ink-2);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.solarlux-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.solarlux-photo:hover img { transform: scale(1.04); }
@media (min-width: 1024px) {
  .solarlux-photo { aspect-ratio: 4 / 5; max-height: 620px; border-radius: 18px; }
}
.solarlux-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  background: var(--accent);
  border-radius: 999px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.solarlux-logo {
  height: 2.4rem;
  width: auto;
  background: #ffffff;
  padding: 0.6rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1.85rem;
  display: block;
}
.solarlux-h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
}
@media (min-width: 1024px) { .solarlux-h2 { font-size: 2.5rem; } }
.solarlux-body {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.25rem;
}
.solarlux-list {
  list-style: none;
  padding: 0;
  margin: 1.85rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.solarlux-list li {
  position: relative;
  padding-left: 1.5rem;
}
.solarlux-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.solarlux-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.refs-section { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .refs-section { padding-top: 6rem; padding-bottom: 6rem; } }
.refs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  max-width: 60rem;
  margin: 0 auto;
}
.refs-list span {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  background: var(--gray-50);
  transition: all 0.25s var(--ease);
}
.refs-list span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #ffffff;
  transform: translateY(-2px);
}
@media (min-width: 1024px) { .refs-list span { font-size: 1.0625rem; } }
.refs-foot {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--gray-500);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.process-section { background: #ffffff; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.process-step {
  position: relative;
  text-align: left;
  padding-top: 0.25rem;
}
.process-step-num {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 22px rgba(184, 57, 46, 0.30), 0 0 0 6px rgba(184, 57, 46, 0.08);
  z-index: 1;
}
.process-step-line {
  display: none;
  position: absolute;
  top: 1.7rem;
  left: 3.4rem;
  right: -1rem;
  height: 2px;
  background: var(--accent-line);
  z-index: 0;
}
@media (min-width: 1024px) {
  .process-step-line { display: block; }
}
.process-step-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-step-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-600);
}

.cta-band {
  position: relative;
  overflow: clip;
  background: var(--ink);
  color: #ffffff;
  padding: 5rem 0;
}
@media (min-width: 1024px) { .cta-band { padding: 7rem 0; } }
.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.74);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  text-align: center;
  margin: 0 auto;
}
.cta-band-eyebrow {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-band-h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
}
.cta-band-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 1.25rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.instagram-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background: var(--ink-2);
  color: #ffffff;
}
@media (min-width: 1024px) {
  .instagram-section { padding-top: 6rem; padding-bottom: 6rem; }
}
.instagram-section .section-h2  { color: #ffffff; }
.instagram-section .section-lead { color: rgba(255, 255, 255, 0.7); }
.instagram-section .section-header .section-tag {
  color: #ffffff;
  background: var(--accent);
}
.instagram-feed {
  min-height: 380px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 1024px) {
  .instagram-feed { padding: 1.75rem; }
}
.instagram-feed > div { width: 100%; }
.instagram-cta {
  text-align: center;
  margin-top: 2.75rem;
}

.contact-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3rem;
}
.contact-lead {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-top: 1rem;
}
@media (min-width: 1024px) { .contact-lead { font-size: 1.0625rem; } }

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(26, 26, 26, 0.10), 0 0 0 1px var(--gray-200);
  background: #ffffff;
}
@media (min-width: 1024px) {
  .contact-card { grid-template-columns: 5fr 7fr; }
}

.contact-panel {
  background: var(--accent);
  color: #ffffff;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .contact-panel { padding: 3rem 2.5rem; } }

.contact-panel-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  position: relative;
}
.contact-panel-lead {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.7rem;
  position: relative;
}
.contact-panel-list {
  margin-top: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.contact-panel-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.35rem 0;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.25s var(--ease);
}
.contact-panel-row:not(.contact-panel-row-static):hover {
  transform: translateX(4px);
}
.contact-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #ffffff;
}
.contact-panel-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.contact-panel-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.contact-panel-value {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: #ffffff;
  word-break: break-word;
}
.contact-panel-foot {
  margin-top: auto;
  padding-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
}
.contact-panel-cred {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.contact-form-wrap {
  padding: 2.25rem;
  background: #ffffff;
}
@media (min-width: 1024px) { .contact-form-wrap { padding: 3rem 2.75rem; } }

.contact-form-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact-form-lead {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gray-600);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  max-width: 100%;
}
.contact-note {
  color: var(--gray-500);
  font-size: 0.8125rem;
  margin-top: 1rem;
  text-align: center;
}

.form-label {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-label span { color: var(--accent); margin-left: 0.1em; }
.form-input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: #ffffff;
  border: 1.5px solid var(--gray-300);
  border-radius: 3px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 57, 46, 0.14);
}

.footer {
  background: var(--ink);
  color: #ffffff;
  border-top: 4px solid var(--accent);
  position: relative;
}
.footer-pad {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .footer-pad { padding-top: 5.5rem; padding-bottom: 4.5rem; }
}

.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.25s;
}
.footer-wordmark:hover { opacity: 0.85; }
.footer-wordmark-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.footer-wordmark-text::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 2.5rem;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .footer-wordmark-text { font-size: 2.5rem; }
}
.footer-wordmark-meta {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-top: 1.5rem;
  max-width: 38ch;
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-heading {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.1rem;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.25s var(--ease);
  display: inline-block;
}
.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}
.footer-link-strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
}
.footer-link-strong:hover { color: var(--accent); }
.footer-emphasis {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.social-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 3px;
  transition: all 0.25s var(--ease);
}
.social-square:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }

.img-lazy { opacity: 0; transition: opacity 0.5s ease; }
.img-lazy.loaded { opacity: 1; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
  .reveal-up { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .brand-logo { height: 1.6rem; }
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .grid > div { min-width: 0; max-width: 100%; }
  .contact-form { padding: 1.5rem; }
  .contact-row { grid-template-columns: 6rem 1fr; }
}

#contact-form { max-width: 100%; min-width: 0; }
.ms-recaptcha-notice { text-align: center; }

.nav-link[aria-current="page"] { color: var(--ink); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.page-hero {
  position: relative;
  overflow: clip;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  min-height: 56vh;
  padding-top: 9.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .page-hero { min-height: 60vh; padding-top: 13rem; padding-bottom: 5rem; }
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.74) 0%, rgba(26, 26, 26, 0.52) 42%, rgba(26, 26, 26, 0.9) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero-h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.35rem, 6vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: #ffffff;
  max-width: 20ch;
}
.page-hero-sub {
  margin-top: 1.15rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}
@media (min-width: 1024px) { .page-hero-sub { font-size: 1.0625rem; } }
.page-hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.jobs-intro-section { background: var(--bg); }
.jobs-open-section { background: var(--gray-50); }
.jobs-req-section { background: var(--bg); }

.jobs-open {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.05);
}
@media (min-width: 768px) {
  .jobs-open { padding: 3rem 3rem 2.75rem; }
}
.jobs-open-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.jobs-open-text {
  margin-top: 0.9rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}
.jobs-open-cta {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .jobs-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}
.jobs-grid > div { min-width: 0; }
.jobs-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.jobs-list li {
  position: relative;
  padding-left: 2.15rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-700);
}
.jobs-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 3px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.mobile-menu-brand {
  position: fixed;
  top: 0.85rem;
  left: 1.25rem;
  z-index: 65;
  height: 2.75rem;
  display: none;
  align-items: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
}
#mobile-menu.active .mobile-menu-brand { display: inline-flex; }

.job-card {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.05);
  overflow: hidden;
}
.job-card-head {
  padding: 1.75rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
@media (min-width: 768px) {
  .job-card-head { padding: 2.25rem 2.5rem 1.9rem; }
}
.job-card-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.job-card-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}
.job-card-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-700);
}
.job-card-body {
  padding: 1.6rem 1.5rem 1.75rem;
}
@media (min-width: 768px) {
  .job-card-body { padding: 2.1rem 2.5rem 2.25rem; }
}
.job-card-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 44rem;
}
.job-card-text + .job-card-text { margin-top: 1rem; }
.job-card-sub {
  margin-top: 1.85rem;
  margin-bottom: 1rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.job-card-foot {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}
.job-card-foot-note {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--gray-500);
}
.jobs-spontan {
  max-width: 60rem;
  margin: 2rem auto 0;
  text-align: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
}
.jobs-spontan a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-line);
}
.jobs-spontan a:hover { color: var(--accent-dark); border-bottom-color: var(--accent); }

.map-section { background: var(--gray-50); }
.map-frame {
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.05);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
@media (min-width: 1024px) {
  .map-frame iframe { height: 460px; }
}
.map-foot {
  max-width: 68rem;
  margin: 1.25rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.contact-panel-photo { display: none; }
@media (min-width: 1024px) {
  .contact-panel-photo {
    display: block;
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
  }
  .contact-panel-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-panel-foot { margin-top: 2rem; }
}
