:root {
  --ink: #171918;
  --graphite: #2b2b29;
  --ink-soft: #5c5751;
  --paper: #f5f2ec;
  --mist: #e8e0d8;
  --white: #fffdf9;
  --line: #d8cec4;
  --line-dark: #4b4641;
  --accent: #e86532;
  --accent-dark: #b94a25;
  --accent-soft: #f7e2d8;
  --warm-muted: #c9b8a7;
  --danger: #a94335;
  --container: 1220px;
  --header-height: 80px;
  --radius: 7px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

iframe,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.container {
  width: min(calc(100% - 48px - env(safe-area-inset-left) - env(safe-area-inset-right)), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -64px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background: var(--paper);
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding: 7px 0;
  background: rgba(245, 242, 236, 0.97);
  box-shadow: 0 1px 0 rgba(23, 25, 24, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px - env(safe-area-inset-left) - env(safe-area-inset-right)), 1320px);
  min-height: 64px;
  margin-inline: auto;
  padding: 0 11px 0 16px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(23, 25, 24, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 38px rgba(23, 25, 24, 0.09);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 182px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 750;
}

.main-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button > span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 180ms ease;
}

.button:hover > span[aria-hidden="true"] {
  transform: translate(3px, -1px);
}

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 184, 167, 0.92);
  outline-offset: 3px;
}

.button-primary {
  border-color: var(--accent-dark);
  background: var(--accent);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 rgba(23, 25, 24, 0.1);
}

.button-primary:hover {
  background: #f07b50;
}

.button-ghost {
  border-color: rgba(23, 25, 24, 0.25);
  background: rgba(255, 253, 249, 0.82);
  color: var(--ink);
}

.button-ghost:hover {
  background: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--accent);
}

.button-back {
  width: 48px;
  padding: 0;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-back:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

.header-cta {
  min-height: 46px;
  margin-left: 2px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #403b37;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--accent-dark);
}

.eyebrow-dark {
  color: #5f5750;
}

.eyebrow-light {
  color: #d8cec4;
}

.eyebrow-light > span {
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: var(--header-height);
  display: flex;
  overflow: hidden;
  background: #d8d0c7;
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: var(--header-height) 0 0;
  background: #d8d0c7 url("assets/hero-elektrotechnik.webp") 72% center / auto 100% no-repeat;
  content: "";
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: var(--header-height) auto 0 0;
  width: 60%;
  background: rgba(245, 242, 236, 0.86);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 53%);
  padding: 128px 0 72px;
}

.hero h1,
.section h2,
.wallbox-section h2,
.contact-section h2,
.legal-main h1 {
  margin: 0;
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: 64px;
  font-weight: 760;
  line-height: 1.02;
}

.hero h1 em {
  color: #5e5751;
  font-style: normal;
  font-weight: 450;
}

.hero-lead {
  max-width: 580px;
  margin: 25px 0 0;
  color: #49443f;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(23, 25, 24, 0.16);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.62);
  color: #514b46;
  font-size: 11px;
  font-weight: 750;
}

.hero-location {
  margin-top: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #625a53;
  font-size: 12px;
  font-weight: 750;
}

.hero-location span {
  color: var(--accent-dark);
}

.signal-band {
  border-top: 1px solid rgba(255, 253, 249, 0.08);
  background: var(--ink);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid article {
  min-height: 116px;
  padding: 27px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 253, 249, 0.13);
}

.signal-grid article:first-child {
  padding-left: 0;
}

.signal-grid article:last-child {
  border-right: 0;
}

.signal-number {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
}

.signal-grid strong,
.signal-grid small {
  display: block;
}

.signal-grid strong {
  font-size: 15px;
}

.signal-grid small {
  margin-top: 6px;
  color: #c4b8ad;
  font-size: 12px;
  line-height: 1.4;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.wallbox-section h2,
.contact-section h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
}

.split-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  --card-rx: 0deg;
  --card-ry: 0deg;
  min-height: 438px;
  padding: 0;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transform: perspective(1000px) rotateX(var(--card-rx)) rotateY(var(--card-ry));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #c3b7ac;
}

.service-card-media {
  height: 172px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--mist);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.025);
}

.service-card-content {
  min-width: 0;
  flex: 1;
  padding: 23px 25px 26px;
  display: flex;
  flex-direction: column;
}

.service-card-large {
  grid-column: span 4;
  min-height: 438px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  background: var(--graphite);
  color: var(--white);
}

.service-card-large .service-card-media {
  height: 100%;
  min-height: 436px;
}

.service-card-large .service-card-media img {
  object-position: 72% center;
}

.service-card-large .service-card-content {
  padding: 30px;
  background: var(--graphite);
}

.service-card-accent {
  grid-column: span 2;
  border-color: #dfcfc1;
}

.service-card-accent .service-card-content {
  background: var(--accent-soft);
}

.service-card-diagnose .service-card-media img {
  object-position: 58% center;
}

.service-card-maintenance .service-card-media img {
  object-position: center top;
}

.service-card-distribution .service-card-media img {
  object-position: 58% center;
}

.card-index {
  color: #756c64;
  font-size: 11px;
  font-weight: 850;
}

.service-card-large .card-index {
  color: var(--accent);
}

.service-card h3 {
  margin: 20px 0 13px;
  font-size: 23px;
  line-height: 1.15;
}

.service-card-large h3 {
  max-width: 530px;
  margin-top: 46px;
  font-size: 32px;
}

.service-card p {
  margin: 0;
  color: #665e57;
  font-size: 14px;
  line-height: 1.65;
}

.service-card-large p {
  max-width: 600px;
  color: #d1c6bc;
}

.service-card ul {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 249, 0.16);
  border-radius: 3px;
  color: #f1e9e1;
  font-size: 11px;
  font-weight: 750;
}

.service-card a {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 850;
}

.service-card a:hover {
  color: #a34121;
}

.service-card-large a:hover {
  color: var(--accent);
}

.verification-note {
  margin-top: auto;
  padding-top: 20px;
  color: #91493b;
  font-size: 11px;
  font-weight: 800;
}

.wallbox-section {
  padding: 112px 0;
  background: var(--graphite);
  color: var(--white);
}

.wallbox-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.wallbox-copy {
  position: sticky;
  top: 116px;
}

.wallbox-copy > p:not(.eyebrow):not(.demo-note) {
  margin: 24px 0 0;
  color: #cec3b9;
  font-size: 17px;
  line-height: 1.7;
}

.wallbox-factors {
  margin-top: 35px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 249, 0.14);
}

.wallbox-factors span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
  color: #eee5dc;
  font-size: 13px;
  font-weight: 750;
}

.wallbox-factors b {
  color: var(--accent);
  font-size: 10px;
}

.demo-note {
  margin: 28px 0 0;
  padding: 15px 16px;
  border-left: 3px solid var(--accent);
  background: #322f2c;
  color: #d0c5bb;
  font-size: 12px;
  line-height: 1.55;
}

.demo-note strong {
  color: var(--white);
}

.wallbox-calculator {
  min-height: 612px;
  padding: 34px;
  border: 1px solid rgba(255, 253, 249, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.calculator-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.calculator-kicker {
  margin-bottom: 6px;
  display: block;
  color: #756d65;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.calculator-head strong {
  font-size: 20px;
}

.calculator-step {
  color: #756d65;
  font-size: 13px;
  font-weight: 750;
}

.calculator-step b {
  color: var(--ink);
}

.calculator-progress {
  height: 3px;
  margin: 22px 0 32px;
  overflow: hidden;
  background: var(--mist);
}

.calculator-progress span {
  width: 25%;
  height: 100%;
  display: block;
  background: var(--accent-dark);
  transition: width 260ms ease;
}

.calculator-step-panel {
  display: none;
}

.calculator-step-panel.is-active {
  display: block;
  animation: panelIn 220ms ease both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wallbox-calculator fieldset,
.contact-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wallbox-calculator fieldset + fieldset {
  margin-top: 28px;
}

.wallbox-calculator legend,
.contact-form legend {
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 800;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.option-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.option-grid label,
.choice-grid label {
  position: relative;
  min-width: 0;
}

.option-grid input,
.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.option-grid label span,
.choice-grid label span {
  min-height: 49px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbf8f3;
  cursor: pointer;
  color: #514b46;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.option-grid label:hover span,
.choice-grid label:hover span {
  border-color: #bfb4a9;
}

.option-grid input:checked + span,
.choice-grid input:checked + span {
  border-color: var(--accent-dark);
  background: var(--accent-soft);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--accent-dark);
}

.option-grid input:focus-visible + span,
.choice-grid input:focus-visible + span {
  outline: 3px solid rgba(201, 184, 167, 0.9);
  outline-offset: 2px;
}

.option-grid-stack {
  grid-template-columns: 1fr;
}

.calculator-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.calculator-split fieldset + fieldset {
  margin-top: 0;
}

.calculator-error {
  min-height: 20px;
  margin: 18px 0 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 750;
}

.calculator-actions {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.calculator-actions[hidden] {
  display: none;
}

.calculator-actions .button-primary {
  min-width: 138px;
}

.calculator-result {
  padding: 4px 0 0;
}

.calculator-result[hidden] {
  display: none;
}

.result-label {
  display: block;
  color: #756d65;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.calculator-result > strong {
  margin-top: 10px;
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
}

.calculator-result h3 {
  margin: 10px 0 0;
  color: #4f4842;
  font-size: 16px;
  line-height: 1.4;
}

.calculator-result > p {
  max-width: 600px;
  margin: 18px 0;
  color: #665e57;
  font-size: 13px;
  line-height: 1.65;
}

.calculator-result > ul {
  margin: 0 0 26px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.calculator-result > ul li {
  position: relative;
  padding-left: 14px;
  color: #5d554f;
  font-size: 12px;
  line-height: 1.4;
}

.calculator-result > ul li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-dark);
  content: "";
}

.calculator-result .calculator-cost-notes {
  margin-bottom: 18px;
  grid-template-columns: 1fr;
  border-bottom: 0;
}

.calculator-result .calculator-cost-notes li {
  color: #6d4a3d;
}

.calculator-source {
  margin-top: -9px !important;
  font-size: 11px !important;
}

.calculator-source a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 800;
}

.calculator-reset {
  margin-left: 16px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid #a69c93;
  background: none;
  cursor: pointer;
  color: #655e57;
  font-size: 12px;
  font-weight: 800;
}

.process {
  background: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.process-grid::after {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms ease 100ms;
}

.process.is-visible .process-grid::after {
  transform: scaleX(1);
}

.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}

.process-grid article:not(:first-child) {
  padding-left: 28px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-dark);
  box-shadow: 0 0 0 4px var(--white);
  content: "";
}

.process-grid article:not(:first-child)::before {
  left: 28px;
}

.process-grid span {
  color: #756d65;
  font-size: 11px;
  font-weight: 850;
}

.process-grid h3 {
  margin: 42px 0 12px;
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: #685f58;
  font-size: 14px;
  line-height: 1.65;
}

.local {
  background: var(--mist);
}

.local-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 82px;
  align-items: center;
}

.local-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.audience-list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-list span {
  padding: 9px 12px;
  border: 1px solid #c8bdb2;
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.54);
  font-size: 12px;
  font-weight: 750;
}

.map-card {
  min-height: 470px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.map-placeholder[hidden],
.map-frame[hidden] {
  display: none !important;
}

.map-placeholder {
  position: relative;
  min-height: 410px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
}

.map-lines {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 253, 249, 0.08);
  transform: rotate(-5deg);
}

.map-lines::before,
.map-lines::after {
  position: absolute;
  background: rgba(201, 184, 167, 0.18);
  content: "";
}

.map-lines::before {
  top: 45%;
  right: -18%;
  left: -18%;
  height: 1px;
  transform: rotate(18deg);
}

.map-lines::after {
  top: -18%;
  bottom: -18%;
  left: 58%;
  width: 1px;
  transform: rotate(25deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 31%;
  left: 62%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 101, 50, 0.18);
  box-shadow: 0 0 0 13px rgba(232, 101, 50, 0.07);
  animation: mapPulse 2.8s ease-in-out infinite;
}

.map-pin i {
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--accent);
}

@keyframes mapPulse {
  0%,
  100% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1.08);
  }
}

.map-placeholder p,
.map-placeholder .button,
.map-placeholder small {
  position: relative;
  z-index: 2;
}

.map-placeholder p {
  margin: 0 0 20px;
  color: #d1c4b8;
  line-height: 1.35;
}

.map-placeholder p span,
.map-placeholder p strong {
  display: block;
}

.map-placeholder p span {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.map-placeholder p strong {
  color: var(--white);
  font-size: 29px;
}

.map-placeholder small {
  margin-top: 13px;
  color: #a3988d;
  font-size: 11px;
}

.map-frame {
  min-height: 410px;
  background: #ded5cc;
}

.map-frame iframe {
  width: 100%;
  height: 410px;
  display: block;
  border: 0;
}

.map-actions {
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #111210;
  color: #c7baae;
  font-size: 11px;
  font-weight: 740;
}

.map-actions a {
  color: var(--white);
  font-size: 12px;
}

.map-actions a:hover {
  color: var(--accent);
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 116px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 48px 24px 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  padding: 112px 0;
  background: var(--ink);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 82px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: #cec1b6;
  font-size: 17px;
  line-height: 1.7;
}

.contact-meta {
  margin-top: 42px;
  display: flex;
  gap: 34px;
}

.contact-meta span {
  font-weight: 800;
}

.contact-meta small {
  margin-bottom: 6px;
  display: block;
  color: #9d9186;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-form {
  min-height: 640px;
  padding: 36px;
  border: 1px solid rgba(255, 253, 249, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  display: flex;
  justify-content: space-between;
  color: #756d65;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-status span.is-active {
  color: var(--ink);
}

.form-progress {
  height: 3px;
  margin: 13px 0 34px;
  overflow: hidden;
  background: var(--mist);
}

.form-progress span {
  width: 50%;
  height: 100%;
  display: block;
  background: var(--accent-dark);
  transition: width 220ms ease;
}

.contact-form.is-step-two .form-progress span {
  width: 100%;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
  animation: panelIn 220ms ease both;
}

.form-kicker {
  margin: 0 0 24px;
  color: #756d65;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid label span {
  min-height: 55px;
}

.field-label {
  margin: 24px 0 9px;
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.field-label span,
.privacy-check b {
  color: #a34121;
}

.contact-form textarea,
.contact-form input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbf8f3;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 128px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]) {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
  color: #9d948b;
}

.timeline-field {
  margin-top: 24px !important;
}

.form-next {
  margin-top: 28px;
  float: right;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field-row > div {
  min-width: 0;
}

.field-row .field-label {
  margin-top: 0;
}

.field-row-spaced {
  margin-top: 16px;
}

.privacy-check {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #665f58;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent-dark);
}

.privacy-check a {
  border-bottom: 1px solid #aaa097;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-error {
  min-height: 20px;
  margin: 18px 0 0;
  clear: both;
  color: var(--danger);
  font-size: 12px;
  font-weight: 750;
}

.contact-form textarea.is-touched:invalid,
.contact-form input.is-touched:invalid:not([type="radio"]) {
  border-color: #c86e5e;
}

.form-success[hidden] {
  display: none;
}

.form-success {
  padding: 50px 0 20px;
}

.success-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.form-success h3 {
  margin: 24px 0 12px;
  font-size: 30px;
}

.form-success p {
  max-width: 620px;
  color: #6a625b;
  line-height: 1.65;
}

.success-summary {
  padding: 13px;
  border-left: 3px solid var(--accent-dark);
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 750;
}

.button-ghost-dark {
  margin-top: 10px;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.site-footer {
  padding-top: 58px;
  background: #111210;
  color: var(--white);
}

.footer-main {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.brand-logo-light {
  width: 190px;
}

.footer-main > p {
  margin: 0;
  color: #b8aca1;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
}

.footer-links a {
  color: #ddd3ca;
  font-size: 12px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  color: #a0958a;
  font-size: 11px;
}

.mobile-project-cta {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.legal-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  font-size: 13px;
  font-weight: 800;
}

.legal-main {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding: 82px 0 100px;
  flex: 1;
}

.legal-main h1 {
  margin-bottom: 36px;
  font-size: 52px;
}

.legal-main h2 {
  margin: 38px 0 11px;
  font-size: 20px;
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-main ul {
  padding-left: 20px;
}

.legal-main a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(164, 80, 47, 0.45);
  text-underline-offset: 3px;
}

.error-main {
  width: min(calc(100% - 48px), 760px);
  margin: auto;
  padding: 90px 0;
}

.error-main h1 {
  max-width: 680px;
  margin: 0;
  font-size: 58px;
  line-height: 1.03;
}

.error-main > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.error-main .hero-actions {
  margin-top: 34px;
}

.legal-notice {
  padding: 18px 20px;
  border-left: 3px solid var(--accent-dark);
  background: var(--accent-soft);
}

.legal-placeholder {
  padding: 2px 5px;
  border-radius: 3px;
  background: #fff0a8;
  color: #5f4610;
  overflow-wrap: anywhere;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.map-placeholder small a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .process-grid article {
    transition: background 180ms ease, padding-top 180ms ease;
  }

  .process-grid article:hover {
    padding-top: 24px;
    background: #fbf7f1;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 18px;
  }

  .brand-logo {
    width: 164px;
  }

  .main-nav {
    gap: 20px;
  }

  .header-cta {
    padding-inline: 15px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .wallbox-layout,
  .contact-layout {
    gap: 48px;
  }

  .wallbox-calculator {
    padding: 28px;
  }

  .option-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .local-layout,
  .faq-layout {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 8px 0;
  }

  .site-header.is-scrolled {
    padding: 6px 0;
  }

  .header-inner {
    position: relative;
    min-height: 56px;
    width: min(calc(100% - 24px - env(safe-area-inset-left) - env(safe-area-inset-right)), 840px);
    padding: 0 8px 0 13px;
  }

  .brand-logo {
    width: 158px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    margin-left: auto;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 4px;
    background: #eee7df;
    cursor: pointer;
  }

  .menu-lines {
    width: 19px;
    display: grid;
    gap: 5px;
  }

  .menu-lines i {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 10px;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 20px 45px rgba(23, 25, 24, 0.15);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    min-height: 45px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-radius: 4px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    background: var(--paper);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background-position: 66% center;
  }

  .hero-shade {
    width: 72%;
  }

  .hero-copy {
    width: 62%;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .signal-grid article {
    padding-inline: 18px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card,
  .service-card-accent {
    grid-column: auto;
  }

  .service-card-large {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  }

  .service-grid .service-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-grid .service-card:last-child .service-card-media {
    height: 100%;
    min-height: 436px;
  }

  .wallbox-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .wallbox-copy,
  .contact-copy,
  .faq-layout .section-heading {
    position: static;
  }

  .wallbox-copy {
    max-width: 720px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    border-top: 0;
  }

  .process-grid::after {
    display: none;
  }

  .process-grid article,
  .process-grid article:not(:first-child) {
    min-height: 220px;
    padding: 28px;
    border-top: 1px solid var(--line);
  }

  .process-grid article:nth-child(2n) {
    border-right: 0;
  }

  .process-grid article::before,
  .process-grid article:not(:first-child)::before {
    top: -5px;
    left: 28px;
  }

  .local-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .local-copy {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px - env(safe-area-inset-left) - env(safe-area-inset-right)), var(--container));
  }

  .header-inner {
    width: calc(100% - 18px - env(safe-area-inset-left) - env(safe-area-inset-right));
    min-height: 53px;
  }

  .brand-logo {
    width: 150px;
  }

  .section,
  .wallbox-section,
  .contact-section {
    padding: 78px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background-position: 70% center;
  }

  .hero-shade {
    width: 100%;
    background: rgba(245, 242, 236, 0.84);
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding: 128px 0 48px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 43px;
    line-height: 1.03;
  }

  .hero-lead {
    max-width: 500px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 6px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid article,
  .signal-grid article:first-child {
    min-height: 92px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 249, 0.13);
  }

  .signal-grid article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .wallbox-section h2,
  .contact-section h2 {
    font-size: 36px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card-large {
    grid-column: auto;
    display: flex;
  }

  .service-grid .service-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .service-card {
    min-height: 0;
  }

  .service-card-media,
  .service-card-large .service-card-media {
    height: 210px;
    min-height: 0;
  }

  .service-card-content,
  .service-card-large .service-card-content {
    min-height: 256px;
    padding: 23px 22px 25px;
  }

  .service-card-large h3 {
    margin-top: 25px;
    font-size: 27px;
  }

  .wallbox-layout {
    gap: 40px;
  }

  .wallbox-calculator,
  .contact-form {
    min-height: 0;
    padding: 23px 18px;
  }

  .calculator-head strong {
    font-size: 17px;
  }

  .option-grid,
  .option-grid-four,
  .option-grid-five {
    grid-template-columns: 1fr 1fr;
  }

  .calculator-split {
    grid-template-columns: 1fr;
  }

  .calculator-split fieldset + fieldset {
    margin-top: 24px;
  }

  .calculator-result > strong {
    font-size: 33px;
  }

  .calculator-result > ul {
    grid-template-columns: 1fr;
  }

  .calculator-result .button {
    width: 100%;
    min-height: 56px;
    line-height: 1.3;
  }

  .calculator-reset {
    margin: 13px auto 0;
    display: block;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:not(:first-child) {
    min-height: 0;
    padding: 28px 0 35px;
    border-right: 0;
  }

  .process-grid article::before,
  .process-grid article:not(:first-child)::before {
    left: 0;
  }

  .process-grid h3 {
    margin-top: 28px;
  }

  .local-layout,
  .faq-layout,
  .contact-layout {
    gap: 42px;
  }

  .map-card {
    min-height: 430px;
  }

  .map-placeholder {
    min-height: 370px;
    padding: 24px;
  }

  .map-actions {
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 14px;
  }

  .choice-grid,
  .choice-grid-three {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row > div + div {
    margin-top: 16px;
  }

  .contact-meta {
    gap: 22px;
    flex-wrap: wrap;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .legal-page .site-footer {
    padding-bottom: 0;
  }

  .mobile-project-cta {
    position: fixed;
    z-index: 45;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--accent-dark);
    border-radius: 5px;
    background: var(--accent);
    box-shadow: 0 10px 30px rgba(23, 25, 24, 0.2);
    font-size: 14px;
    font-weight: 850;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-project-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }

  .legal-header {
    min-height: 76px;
  }

  .legal-header .brand-logo {
    width: 145px;
  }

  .legal-main {
    width: calc(100% - 28px);
    padding: 58px 0 76px;
  }

  .legal-main h1 {
    font-size: 38px;
  }

  .error-main {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  .error-main h1 {
    font-size: 40px;
  }
}

@media (max-width: 420px) {
  .option-grid,
  .option-grid-four,
  .option-grid-five {
    grid-template-columns: 1fr;
  }

  .calculator-head {
    align-items: flex-start;
  }

  .calculator-head strong {
    max-width: 210px;
    display: block;
  }

  .calculator-result > strong {
    font-size: 29px;
  }

  .contact-meta {
    display: grid;
  }

  .legal-main h1 {
    font-size: 33px;
  }
}

@media (min-width: 1600px) {
  .hero::before {
    background-position: right center;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  :root {
    --header-height: 62px;
  }

  .site-header,
  .site-header.is-scrolled {
    padding: 4px 0;
  }

  .header-inner {
    min-height: 52px;
  }

  .brand-logo {
    width: 146px;
  }

  .hero {
    min-height: 580px;
  }

  .hero::before {
    background-position: 74% center;
  }

  .hero-shade {
    width: 65%;
    background: rgba(245, 242, 236, 0.88);
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-copy {
    width: 62%;
    padding: 100px 0 38px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-lead {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 18px;
    display: flex;
  }

  .hero-actions .button {
    width: auto;
    min-height: 44px;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .hero-location {
    margin-top: 14px;
  }

  .mobile-project-cta {
    right: max(14px, env(safe-area-inset-right));
    bottom: 10px;
    left: auto;
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
