:root {
  --orange: #e84810;
  --orange-deep: #c93600;
  --yellow: #ffdc0a;
  --graphite: #424446;
  --graphite-deep: #2c2e30;
  --ink: #26282a;
  --muted: #686b6d;
  --paper: #ffffff;
  --mist: #f4f3ef;
  --warm: #ece9e1;
  --line: #d9d8d3;
  --shadow: 0 22px 60px rgba(38, 40, 42, 0.13);
  --display: "Bahnschrift Condensed", "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --header-height: 104px;
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--graphite-deep);
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--graphite-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--paper);
  background: rgba(60, 62, 64, 0.97);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 8px 24px rgba(19, 20, 21, 0.13);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.brand {
  display: grid;
  flex: 0 0 auto;
  width: 96px;
  height: 90px;
  place-items: center;
  text-decoration: none;
}

.brand img {
  width: 86px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  padding-block: 11px;
  color: #f8f8f6;
  font-family: var(--display);
  font-size: 18px;
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--yellow);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: grid;
  width: 28px;
  gap: 6px;
}

.menu-toggle-icon i {
  display: block;
  height: 2px;
  background: var(--yellow);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 72%, rgba(255, 220, 10, 0.08) 72%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - 1180px) / 2 - 56px));
  width: 1px;
  background: linear-gradient(transparent, var(--line) 18%, var(--line) 82%, transparent);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(64px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.82fr);
  gap: clamp(56px, 8vw, 116px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 4px;
  background: var(--yellow);
  content: "";
}

.hero h1,
.section-heading h2,
.legal-hero h1,
.error-main h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  color: var(--graphite);
  font-size: clamp(68px, 7.2vw, 112px);
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 20px 0 0;
  color: #4e5153;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.hero-copy .hero-lead {
  margin-top: 30px;
  color: var(--ink);
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 650;
  line-height: 1.38;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 38px;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(232, 72, 16, 0.25);
}

.button-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 16px 32px rgba(232, 72, 16, 0.32);
}

.button-graphite {
  color: var(--paper);
  background: var(--graphite-deep);
}

.button-graphite:hover {
  color: var(--yellow);
  background: #1f2022;
}

.button-quiet {
  color: var(--graphite-deep);
  background: var(--mist);
  border: 1px solid var(--line);
}

.button-quiet:hover {
  background: var(--warm);
}

.text-link {
  color: var(--graphite);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
}

.portrait-stage {
  position: relative;
  min-height: min(680px, 70svh);
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f7f3 0%, #e8e4da 100%);
  border-radius: 36px 36px 8px 36px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.portrait-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(66, 68, 70, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 68, 70, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.portrait-stage picture {
  position: absolute;
  inset: 0;
}

.portrait-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.portrait-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(25, 26, 27, 0.2));
  content: "";
  pointer-events: none;
}

.portrait-stage figcaption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 17px 20px;
  color: var(--paper);
  background: rgba(44, 46, 48, 0.87);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  gap: 12px;
}

.portrait-stage figcaption strong {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.portrait-stage figcaption span {
  color: #e4e4df;
  font-size: 13px;
  text-align: right;
}

.portrait-accent {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.portrait-accent-one {
  top: -44px;
  right: -72px;
  width: 190px;
  height: 190px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.94;
}

.portrait-accent-two {
  top: 22%;
  left: -88px;
  width: 160px;
  height: 20px;
  background: var(--orange);
  transform: rotate(-48deg);
}

.hero-rule {
  height: 14px;
  background: var(--orange);
}

.hero-rule span {
  display: block;
  width: 28%;
  height: 100%;
  margin-left: auto;
  background: var(--yellow);
}

.expose-band {
  color: var(--paper);
  background: var(--orange);
}

.expose-inner {
  display: grid;
  align-items: center;
  min-height: 220px;
  padding-block: 42px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
}

.expose-inner p {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.section {
  padding-block: clamp(86px, 10vw, 150px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(44px, 6vw, 76px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  gap: 32px;
}

.section-heading h2 {
  color: var(--graphite);
  font-size: clamp(58px, 6vw, 88px);
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-number {
  margin: 0;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(66, 68, 70, 0.26);
}

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

.accordion-list {
  border-top: 1px solid var(--graphite);
}

.accordion-item {
  border-bottom: 1px solid var(--graphite);
}

.accordion-item summary,
.tip-item summary {
  list-style: none;
}

.accordion-item summary::-webkit-details-marker,
.tip-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary {
  display: grid;
  align-items: center;
  min-height: 92px;
  padding: 20px 14px;
  cursor: pointer;
  grid-template-columns: 62px minmax(0, 1fr) 46px;
  gap: 18px;
  transition: background 180ms ease, color 180ms ease;
}

.accordion-item summary:hover {
  background: var(--mist);
}

.accordion-item[open] summary {
  color: var(--paper);
  background: var(--graphite);
}

.accordion-index {
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.accordion-item[open] .accordion-index {
  color: var(--yellow);
}

.accordion-name {
  font-family: var(--display);
  font-size: clamp(31px, 3.6vw, 52px);
  font-weight: 750;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.accordion-toggle,
.tip-item summary i {
  position: relative;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.accordion-toggle::before,
.accordion-toggle::after,
.tip-item summary i::before,
.tip-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-toggle::after,
.tip-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item[open] .accordion-toggle::after,
.tip-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  display: grid;
  padding: 50px clamp(20px, 5vw, 76px) 60px;
  background: var(--mist);
  grid-template-columns: minmax(200px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(36px, 7vw, 94px);
  animation: content-in 240ms ease both;
}

.accordion-content h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.accordion-kicker,
.tip-kicker {
  margin: 0;
  color: var(--graphite);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.accordion-content > div:last-child {
  max-width: 760px;
}

.accordion-content > div:last-child p {
  margin: 0;
}

.accordion-content > div:last-child p + p {
  margin-top: 18px;
}

.estimate {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 220, 10, 0.12), transparent 36%),
    var(--mist);
}

.form-shell {
  display: grid;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #deddd7;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
}

.form-intro {
  position: relative;
  padding: clamp(34px, 5vw, 64px) clamp(28px, 4vw, 50px);
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 220, 10, 0.18), transparent 32%),
    var(--graphite);
}

.form-intro::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  border: 18px solid rgba(255, 220, 10, 0.18);
  border-radius: 50%;
  content: "";
}

.form-intro img {
  width: 58px;
  margin-bottom: 48px;
}

.form-intro h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.03;
  text-transform: uppercase;
}

.form-intro > p {
  color: #eeeeea;
}

.local-note {
  padding: 14px 16px;
  color: #55585a;
  background: #fff9d2;
  border-left: 4px solid var(--yellow);
  font-size: 14px;
  line-height: 1.5;
}

.form-intro .local-note {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  color: #f0f0ea;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--yellow);
}

.multi-step-form {
  min-width: 0;
  padding: clamp(32px, 5vw, 64px);
}

.form-intro > .button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 24px;
}

.estimate-guide > .eyebrow {
  margin-bottom: 14px;
}

.estimate-guide > h3,
.contact-options > h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.guide-grid {
  display: grid;
  margin: 34px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-grid section {
  padding: 22px 24px;
  background: var(--warm);
  border-left: 4px solid var(--orange);
  border-radius: 3px 12px 12px 3px;
}

.guide-grid h4 {
  margin: 0 0 12px;
  color: var(--graphite);
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.guide-grid ul,
.contact-options ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.6;
}

.guide-grid li + li,
.contact-options li + li {
  margin-top: 7px;
}

.guide-privacy,
.contact-privacy {
  margin: 24px 0 0;
  font-size: 14px;
}

.guide-privacy a {
  color: var(--graphite);
}

.step-nav {
  display: grid;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.step-nav li {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  color: #8a8c8c;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.1;
  text-transform: uppercase;
}

.step-nav li::after {
  flex: 1;
  height: 1px;
  margin-left: 4px;
  background: var(--line);
  content: "";
}

.step-nav li:last-child::after {
  display: none;
}

.step-nav li span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--graphite);
  background: var(--warm);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 13px;
  place-items: center;
}

.step-nav li.is-active {
  color: var(--orange);
}

.step-nav li.is-active span,
.step-nav li.is-complete span {
  color: var(--graphite-deep);
  background: var(--yellow);
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  animation: content-in 260ms ease both;
}

.form-step legend {
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
  color: var(--graphite);
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.form-step h3 {
  margin: 32px 0 18px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-step h3:first-of-type {
  margin-top: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.field-grid-spaced {
  margin-top: 30px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f9f9f7;
  border: 1px solid #c9c9c4;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.35;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #929492;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--paper);
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(232, 72, 16, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.11);
}

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

.check-grid label {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 550;
  gap: 9px;
}

.check-grid label:has(input:checked) {
  background: #fff9cf;
  border-color: #e8ca10;
}

.check-grid input,
.privacy-check input {
  width: 19px;
  min-height: 19px;
  margin: 0;
  padding: 0;
  accent-color: var(--orange);
}

.file-field {
  position: relative;
}

.file-drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 18px;
  color: #686a6b;
  background: var(--mist);
  border: 1px dashed #9c9d99;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  gap: 18px;
}

.file-drop span {
  color: var(--orange);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.file-field input[type="file"] {
  min-height: auto;
  padding: 9px;
  font-size: 14px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  gap: 11px;
}

.privacy-check input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.privacy-check a {
  color: var(--orange);
  font-weight: 700;
}

.required-note {
  margin: 20px 0 0;
  color: #777978;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.form-actions-end {
  justify-content: flex-end;
}

.form-status {
  display: none;
  margin: 0 0 24px;
  padding: 14px 16px;
  color: #3a3b3c;
  background: #fff9cf;
  border-left: 4px solid var(--yellow);
  font-size: 15px;
}

.form-status:not(:empty) {
  display: block;
}

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

.tip-tabs {
  display: grid;
  margin-bottom: 24px;
  padding: 6px;
  background: var(--mist);
  border-radius: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.tip-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px 22px;
  color: var(--graphite);
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tip-tab span {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.tip-tab.is-active {
  color: var(--paper);
  background: var(--graphite);
  box-shadow: 0 8px 18px rgba(44, 46, 48, 0.15);
}

.tip-tab.is-active span {
  color: var(--yellow);
}

.tip-panel {
  border-top: 1px solid var(--line);
}

.tip-panel:not(.is-active) {
  display: none;
}

.tip-item {
  border-bottom: 1px solid var(--line);
}

.tip-item summary {
  display: grid;
  align-items: center;
  min-height: 82px;
  padding: 18px 14px;
  cursor: pointer;
  grid-template-columns: 48px minmax(0, 1fr) 40px;
  gap: 18px;
  transition: color 180ms ease, background 180ms ease;
}

.tip-item summary:hover {
  background: var(--mist);
}

.tip-item[open] summary {
  color: var(--orange);
  background: #fffdf0;
}

.tip-item summary > span {
  color: #8b8d8e;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.tip-item summary strong {
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.tip-item > div {
  padding: 8px clamp(30px, 7vw, 92px) 48px 80px;
  animation: content-in 240ms ease both;
}

.tip-item h3 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--graphite);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.12;
}

.tip-item > div > p:last-child {
  max-width: 930px;
  margin: 0;
  color: #56595b;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 220, 10, 0.09), transparent 30%),
    var(--graphite);
}

.contact::before {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 340px;
  height: 340px;
  border: 46px solid rgba(232, 72, 16, 0.14);
  border-radius: 50%;
  content: "";
}

.section-heading-light {
  position: relative;
  z-index: 1;
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.section-heading-light h2 {
  color: var(--paper);
}

.section-heading-light .section-number {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.25);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(36px, 6vw, 78px);
}

.contact-form {
  padding: clamp(30px, 4.5vw, 54px);
  color: var(--paper);
  background: #36383a;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(23, 24, 25, 0.27);
}

.contact-options > .eyebrow {
  color: var(--yellow);
}

.contact-options > p,
.contact-options li {
  color: #eeeeea;
}

.contact-options ul {
  margin: 26px 0;
}

.contact-actions {
  display: flex;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.contact-actions > a:not(.button),
.contact-privacy a {
  color: var(--yellow);
  font-weight: 750;
}

.contact-form label {
  color: #f0f0ec;
}

.contact-form input,
.contact-form textarea {
  color: var(--paper);
  background: #2e3032;
  border-color: #626568;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #282a2c;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 220, 10, 0.12);
}

.contact-form .local-note {
  margin: 0 0 28px;
  color: #ecece7;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-check-dark a {
  color: var(--yellow);
}

.contact-form .required-note {
  color: #bfc0bc;
}

.contact-form .form-status {
  margin-top: 24px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card {
  padding: clamp(32px, 4.5vw, 52px);
  color: var(--graphite-deep);
  background: var(--yellow);
  border-radius: var(--radius) var(--radius) 6px var(--radius);
  box-shadow: 0 22px 52px rgba(23, 24, 25, 0.2);
}

.contact-card > img {
  width: 54px;
  margin-bottom: 38px;
  filter: brightness(0.27);
}

.contact-label {
  margin: 26px 0 4px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card address {
  font-style: normal;
  line-height: 1.45;
}

.contact-links {
  display: grid;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 46, 48, 0.28);
  gap: 16px;
}

.contact-links a {
  display: grid;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.contact-links a span {
  color: rgba(44, 46, 48, 0.7);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-links a:hover {
  text-decoration: underline;
}

.site-footer {
  color: #e8e8e4;
  background: var(--graphite-deep);
  border-top: 10px solid var(--orange);
}

.footer-grid {
  display: grid;
  padding-block: 62px 48px;
  grid-template-columns: 1.25fr 1fr 0.72fr 0.72fr;
  gap: 48px;
}

.footer-brand img {
  width: 108px;
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid address {
  margin: 0;
  color: #c9cac7;
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.footer-grid .footer-title {
  margin-bottom: 16px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid a {
  display: inline-block;
  margin-top: 7px;
  color: #f3f3ef;
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: #aeb0ad;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pflichtseiten */
.legal-body {
  background: var(--mist);
}

.legal-header .site-nav {
  margin-left: auto;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 9vw, 128px);
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 220, 10, 0.13), transparent 28%),
    var(--graphite);
  border-bottom: 10px solid var(--orange);
}

.legal-hero::after {
  position: absolute;
  right: -60px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 54px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.legal-hero .eyebrow {
  color: var(--yellow);
}

.legal-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  font-size: clamp(66px, 9vw, 132px);
}

.legal-hero p:last-child {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 26px 0 0;
  color: #e1e2df;
  font-size: 19px;
}

.legal-main {
  padding-block: clamp(66px, 8vw, 110px);
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 100px);
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 28px;
  background: var(--paper);
  border-top: 5px solid var(--yellow);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(38, 40, 42, 0.09);
}

.legal-aside img {
  width: 64px;
  margin-bottom: 24px;
}

.legal-aside p {
  margin: 0;
  color: #626466;
  font-size: 14px;
}

.legal-aside nav {
  display: grid;
  margin-top: 24px;
  gap: 10px;
}

.legal-aside a {
  color: var(--graphite);
  font-family: var(--display);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-aside a:hover,
.legal-aside a[aria-current="page"] {
  color: var(--orange);
}

.legal-content {
  min-width: 0;
  padding: clamp(30px, 5vw, 62px);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(38, 40, 42, 0.08);
}

.legal-content > section + section {
  margin-top: 50px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 30px 0 10px;
  color: var(--graphite);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
}

.legal-content h4 {
  margin: 26px 0 8px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: #4f5254;
  font-size: 16px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p {
  margin-top: 16px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--orange-deep);
  overflow-wrap: anywhere;
}

.legal-source-note {
  margin-bottom: 34px;
  padding: 18px 20px;
  color: #4c4d4e;
  background: #fff9d2;
  border-left: 5px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.55;
}

.legal-source-note strong {
  color: var(--graphite-deep);
}

.error-main {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  padding-block: 72px;
  background: var(--mist);
  place-items: center;
}

.error-card {
  width: min(760px, calc(100% - 48px));
  padding: clamp(38px, 7vw, 80px);
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.error-code {
  margin: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(84px, 15vw, 180px);
  font-weight: 800;
  line-height: 0.78;
  -webkit-text-stroke: 2px var(--graphite);
}

.error-main h1 {
  margin-top: 24px;
  color: var(--orange);
  font-size: clamp(44px, 7vw, 78px);
}

.error-main p:not(.error-code) {
  max-width: 520px;
  margin: 22px auto 32px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  :root {
    --header-height: 94px;
  }

  .shell {
    width: min(100% - 40px, 1040px);
  }

  .brand {
    width: 82px;
    height: 80px;
  }

  .brand img {
    width: 76px;
  }

  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 16px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 52px;
  }

  .portrait-stage {
    min-height: 610px;
  }

  .expose-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .expose-inner .button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    background: rgba(44, 46, 48, 0.99);
    opacity: 0;
    visibility: hidden;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    transition: max-height 280ms ease, opacity 180ms ease, padding 280ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    padding-block: 22px 30px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    display: flex;
    min-height: 58px;
    align-items: center;
    padding-inline: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 19px;
  }

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

  .hero-grid {
    min-height: auto;
    padding-top: 72px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .portrait-stage {
    width: min(660px, 100%);
    min-height: 700px;
    margin-inline: auto;
  }

  .form-shell {
    grid-template-columns: 1fr;
  }

  .form-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 28px;
  }

  .form-intro img {
    grid-row: 1 / 3;
    margin: 0;
  }

  .form-intro h3 {
    margin-bottom: 14px;
  }

  .form-intro > p:not(.local-note) {
    margin: 0;
  }

  .form-intro .local-note {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .form-intro > .button {
    width: auto;
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 28px;
  }

  .contact-card > img {
    grid-row: 1 / 5;
    margin: 0;
  }

  .contact-card .contact-label:first-of-type {
    margin-top: 0;
  }

  .contact-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

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

  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 600px);
  }

  .brand {
    width: 72px;
    height: 72px;
  }

  .brand img {
    width: 66px;
  }

  .menu-toggle-label {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    min-height: 52px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    padding-block: 52px 64px;
    gap: 42px;
  }

  .eyebrow {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(57px, 17vw, 78px);
  }

  .hero-copy .hero-lead {
    font-size: 20px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
  }

  .button-row .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .portrait-stage {
    min-height: 530px;
    border-radius: 24px 24px 6px 24px;
  }

  .portrait-stage figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px;
    gap: 4px;
  }

  .portrait-stage figcaption span {
    text-align: left;
  }

  .portrait-accent-one {
    width: 140px;
    height: 140px;
  }

  .expose-inner {
    min-height: 0;
    padding-block: 38px;
  }

  .expose-inner p {
    font-size: 29px;
  }

  .expose-inner .button {
    width: 100%;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 36px;
    padding-bottom: 20px;
  }

  .section-heading h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .section-number {
    font-size: 58px;
  }

  .accordion-item summary {
    min-height: 76px;
    padding-inline: 8px;
    grid-template-columns: 34px minmax(0, 1fr) 36px;
    gap: 10px;
  }

  .accordion-name {
    font-size: 28px;
  }

  .accordion-toggle,
  .tip-item summary i {
    width: 34px;
    height: 34px;
  }

  .accordion-content {
    padding: 34px 20px 42px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .accordion-content h3 {
    font-size: 34px;
  }

  .form-intro {
    display: block;
  }

  .form-intro img {
    margin-bottom: 28px;
  }

  .multi-step-form {
    padding: 28px 20px 34px;
  }

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

  .guide-grid section {
    padding: 20px;
  }

  .step-nav {
    margin-right: -20px;
    margin-left: -20px;
    padding-inline: 20px;
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(116px, 1fr));
    scrollbar-width: thin;
  }

  .step-nav li::after {
    display: none;
  }

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

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .file-drop {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

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

  .form-actions-end {
    flex-direction: column;
  }

  .tip-tabs {
    padding: 4px;
  }

  .tip-tab {
    min-height: 58px;
    padding: 12px 14px;
    font-size: 22px;
  }

  .tip-tab span {
    display: none;
  }

  .tip-item summary {
    min-height: 72px;
    padding-inline: 8px;
    grid-template-columns: 32px minmax(0, 1fr) 36px;
    gap: 10px;
  }

  .tip-item summary strong {
    font-size: 24px;
    line-height: 1.08;
  }

  .tip-item > div {
    padding: 8px 16px 40px 50px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .contact-card {
    display: block;
  }

  .contact-card > img {
    margin-bottom: 28px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .legal-hero {
    padding-block: 64px 72px;
  }

  .legal-hero h1 {
    font-size: clamp(58px, 18vw, 90px);
  }

  .legal-content {
    padding: 26px 20px 34px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 52px;
  }

  .portrait-stage {
    min-height: 465px;
  }

  .section-heading h2 {
    font-size: 48px;
  }

  .section-number {
    display: none;
  }

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

  .accordion-name {
    font-size: 25px;
  }

  .tip-item summary strong {
    font-size: 21px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
