:root {
    color-scheme: dark;
    --black: #030303;
    --black-soft: #080808;
    --panel: rgba(255, 255, 255, 0.055);
    --panel-strong: rgba(255, 255, 255, 0.09);
    --line: rgba(255, 255, 255, 0.16);
    --line-soft: rgba(255, 255, 255, 0.09);
    --white: #f7f7f7;
    --muted: #909090;
    --muted-strong: #c5c5c5;
    --accent: #ffffff;
    --accent-muted: rgba(255, 255, 255, 0.72);
    --glass: rgba(255, 255, 255, 0.07);
    --glass-strong: rgba(255, 255, 255, 0.12);
    --radius-soft: 16px;
    --radius-card: 28px;
    --radius-large: 34px;
    --shadow-card: 0 26px 80px rgba(0, 0, 0, 0.16);
    --shadow-dark: 0 28px 86px rgba(0, 0, 0, 0.42);
    --content-max: 1200px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 40px;
    --space-5: 64px;
    --header-height: 102px;
    --header-gap: 18px;
    --text-small: 0.875rem;
    --text-body: 1rem;
    --text-lead: 1.125rem;
    --heading-hero: clamp(3.75rem, 12vw, 7rem);
    --heading-section: clamp(2.75rem, 6vw, 4.6rem);
    --image-why: url("./images/why-house.jpg");
    --image-mirror: url("./images/image13.png");
    --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --display-font: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

div {
    text-align: left;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

main[id],
section[id],
footer [id],
.hero-media[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, #020202 0%, #070707 48%, #020202 100%);
    color: var(--white);
    font-family: var(--body-font);
    font-size: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

.no-js .reveal {
    opacity: 1;
    transform: none;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    opacity: 1;
    border: 0;
}

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

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

button {
    border: 0;
}

.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;
}

.site-header {
    position: sticky;
    top: var(--header-gap);
    z-index: 20;
    width: min(calc(100% - var(--space-3)), 1320px);
    min-height: 64px;
    margin: var(--header-gap) auto 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    /* needed so .site-nav absolute dropdown is contained */
    overflow: visible;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    width: fit-content;
    color: var(--black);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-logo {
    width: 76px;
    height: 54px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand-text {
    display: none;
}

.nav-toggle {
    display: none;
}

.site-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
    color: var(--black);
    background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
    min-height: 40px !important;
    margin: 0 2px;
    padding: 0 14px !important;
    border-radius: 999px;
    background: var(--black);
    color: var(--white) !important;
}

.nav-cta:hover {
    background: rgba(0, 0, 0, 0.84);
    color: var(--white) !important;
}

.nav-socials {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 0 2px;
}

.site-nav .social-link {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

.site-nav .social-link svg {
    width: 16px;
    height: 16px;
}

.social-link,
.social-button {
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    color: currentColor;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    color: var(--black);
}

.social-link svg,
.social-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    margin-top: calc(-1 * (var(--header-gap) + 72px));
    padding-top: calc(var(--header-gap) + 72px + var(--space-3));
    display: grid;
    gap: var(--space-4);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 1), rgba(232, 232, 232, 0.86) 52%, rgba(205, 205, 205, 0.96) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -22% -10%;
    background-image: var(--image-mirror);
    background-repeat: repeat;
    background-size: 190px 171px;
    opacity: 0.05;
    transform: perspective(820px) rotateX(54deg) scale(1.18);
    transform-origin: center top;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 14%, rgba(0, 0, 0, 0.18), transparent 30%),
        radial-gradient(circle at 8% 100%, rgba(0, 0, 0, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.14));
    pointer-events: none;
    z-index: 0;
}

.hero-media {
    position: relative;
    z-index: 3;
    width: min(100% - var(--space-4), 560px);
    margin: 0 auto var(--space-3);
    display: grid;
    gap: 0;
    border-radius: var(--radius-large);
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
    isolation: isolate;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 18px -20px -24px 20px;
    z-index: -1;
    border-radius: calc(var(--radius-large) + 6px);
    background: rgba(0, 0, 0, 0.18);
    filter: blur(20px);
}

.hero-photo {
    position: relative;
    z-index: 1;
    aspect-ratio: 427 / 640;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.4);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(0, 0, 0, 0.34) 100%),
        radial-gradient(circle at 50% 32%, transparent 34%, rgba(255, 255, 255, 0.14) 100%);
    pointer-events: none;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
}

.hero-assurance {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0;
    margin: -57px var(--space-3) 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(24px) saturate(140%);
}

.hero-assurance div {
    display: grid;
    gap: var(--space-1);
    padding: 14px var(--space-2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-assurance div:last-child {
    border-bottom: 0;
}

.hero-assurance span {
    color: rgba(0, 0, 0, 0.54);
    font-size: var(--text-small);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-assurance strong {
    color: rgba(0, 0, 0, 0.84);
    font-size: 0.9rem;
    line-height: 1.35;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: min(1040px, 100%);
    padding: var(--space-5) var(--space-3);
}

.hero-content::before {
    content: "";
    width: var(--space-4);
    height: 2px;
    margin-bottom: var(--space-2);
    background: var(--black);
}

.hero .eyebrow {
    color: rgba(0, 0, 0, 0.78);
}

.eyebrow {
    margin: 0 0 var(--space-3);
    color: var(--accent-muted);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--display-font);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

.hero h1 {
    color: var(--black);
}

.hero h1 {
    max-width: 760px;
    font-size: var(--heading-hero);
    line-height: 0.94;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    color: rgba(0, 0, 0, 0.54);
}

h2 span {
    display: block;
    color: var(--accent-muted);
}

.hero-line {
    max-width: 560px;
    margin: var(--space-3) 0 0;
    color: rgba(0, 0, 0, 0.68);
    font-size: var(--text-lead);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 var(--space-3);
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--white);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.button-primary {
    background: var(--black);
    color: var(--white);
}

.button-primary:hover {
    background: rgba(0, 0, 0, 0.82);
}

.button-secondary {
    border-color: rgba(0, 0, 0, 0.16);
    background: rgba(255, 255, 255, 0.52);
    color: var(--black);
    backdrop-filter: blur(18px) saturate(130%);
}

.button-secondary:hover {
    border-color: rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.7);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    gap: 0;
    margin: var(--space-5) 0 0;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.hero-proof div {
    display: grid;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-2) 0 0;
}

.hero-proof div + div {
    padding-left: var(--space-3);
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.hero-proof dt {
    color: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 29px;
    font-weight: 900;
    line-height: 0.9;
}

.hero-proof dd {
    margin: 0 -13px;
    padding-left: 0px;
    padding-right: 0px;
    height: 36px;
    color: rgba(0, 0, 0, 0.5);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-watermark {
    position: absolute;
    left: -4px;
    bottom: -0.12em;
    z-index: -1;
    color: rgba(0, 0, 0, 0.045);
    font-family: var(--display-font);
    font-size: clamp(4.6rem, 17vw, 15rem);
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.section,
.contact {
    padding: var(--space-5) 0;
    background: var(--black);
}

.section-compact {
    padding: 0;
}

.section-inner {
    width: min(100% - var(--space-4), var(--content-max));
    margin-inline: auto;
}

.section-light {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), rgba(242, 242, 242, 0.62) 48%, rgba(231, 231, 231, 0.94) 100%);
    color: var(--black);
}

.section-light::before {
    content: "";
    position: absolute;
    inset: -12%;
    background-image: var(--image-mirror);
    background-repeat: repeat;
    background-size: 178px 160px;
    opacity: 0.024;
    transform: rotate(-4deg);
    pointer-events: none;
}

.section-light > .section-inner {
    position: relative;
    z-index: 1;
}

.section-light .eyebrow,
.section-light h2,
.section-light h3,
.section-light strong,
.section-light .contact-note strong {
    color: var(--black);
}

.section-light p,
.section-light .section-copy p,
.section-light .section-heading p,
.section-light .contact-copy p,
.section-light .contact-note span,
.section-light .service p,
.section-light .timeline-item p,
.section-light .issue p,
.section-light .process-card p,
.section-light .process-card span,
.section-light .form-status {
    color: rgba(0, 0, 0, 0.68);
}

.section-light h2 span,
.section-light .trust-item span,
.section-light .timeline-item > span,
.section-light .testimonial figcaption {
    color: rgba(0, 0, 0, 0.55);
}

.section-light .trust-item,
.section-light .service,
.section-light .process-card,
.section-light .contact-form {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64));
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--black);
    box-shadow: var(--shadow-card);
}

.section-light .trust-item strong {
    color: rgba(0, 0, 0, 0.84);
}

.section-light .trust-grid,
.section-light .service-layout,
.section-light .service-list,
.section-light .timeline,
.section-light .timeline-item,
.section-light .contact-note {
    border-color: rgba(0, 0, 0, 0.12);
}

.section-light input,
.section-light select,
.section-light textarea {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--black);
}

.section-light label,
.section-light .privacy {
    color: rgba(0, 0, 0, 0.76);
}

.section-light input:focus,
.section-light select:focus,
.section-light textarea:focus {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.72);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.section-light ::placeholder {
    color: rgba(0, 0, 0, 0.48);
}

.section-light .button-primary {
    background: var(--black);
    color: var(--white);
}

.section-light .button-primary:hover {
    background: rgba(0, 0, 0, 0.82);
}

.trust {
    background:
        linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
    border-bottom: 1px solid var(--line-soft);
}

.trust-grid {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--line-soft);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.trust-item {
    display: grid;
    gap: var(--space-2);
    min-height: 150px;
    padding: var(--space-3);
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(130%);
}

.trust-item span {
    color: var(--accent-muted);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.trust-item strong {
    max-width: 440px;
    color: var(--white);
    font-size: var(--text-lead);
    line-height: 1.35;
}

.identity-mirror {
    position: relative;
    overflow: hidden;
    padding: var(--space-5) 0;
}

.identity-mirror::before {
    content: "";
    position: absolute;
    inset: -28% -10%;
    background-image: var(--image-mirror);
    background-repeat: repeat;
    background-size: 150px 136px;
    opacity: 0.055;
    transform: perspective(780px) rotateX(58deg) scale(1.18);
    transform-origin: center top;
}

.identity-mirror::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(239, 239, 239, 0.86));
    pointer-events: none;
}

.mirror-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-4);
    align-items: center;
}

.mirror-copy {
    max-width: 680px;
}

.mirror-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: var(--space-3) 0 0;
    color: rgba(0, 0, 0, 0.62);
    font-size: var(--text-lead);
}

.mirror-panel {
    position: relative;
    min-height: 320px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-large);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
}

.mirror-panel::before,
.mirror-panel::after {
    content: "";
    position: absolute;
    inset: -20%;
    background-image: var(--image-mirror);
    background-size: 132px 119px;
    background-repeat: repeat;
    opacity: 0.075;
}

.mirror-panel::after {
    transform: scaleX(-1) translateX(28px);
    opacity: 0.045;
}

.mirror-panel img {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(54%, 260px);
    height: auto;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.16));
}

.section-copy,
.section-heading,
.contact-copy {
    max-width: 920px;
    min-width: 0;
}

.section-copy {
    margin-bottom: var(--space-5);
}

h2 {
    max-width: 1050px;
    font-size: var(--heading-section);
    line-height: 0.92;
    text-wrap: balance;
    overflow-wrap: normal;
    hyphens: auto;
}

h3 {
    margin: 0;
    color: var(--white);
    font-family: Times;
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-proof strong,
.process-card strong,
.contact-note strong,
.trust-item strong,
.legal-info strong {
    font-family: Times;
}

#hero-title {
    font-family: helvetica;
    letter-spacing: -2.1px;
    font-size: 62px;
    line-height: 68px;
}

#why-title {
    font-family: Times;
    opacity: 1;
    border-radius: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    line-height: 80px;
    letter-spacing: -2.5px;
}

#identity-title {
    font-family: helvetica;
}

p {
    color: var(--muted);
    line-height: 1.7;
}

.section-copy p,
.contact-copy p,
.why-content p {
    max-width: 640px;
    margin: var(--space-3) 0 0;
    color: var(--muted-strong);
    font-size: var(--text-lead);
}

.problems {
    background: var(--black);
}

.issue-list {
    display: grid;
    background: transparent;
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dark);
}

.issue {
    display: grid;
    align-content: center;
    min-height: 240px;
    gap: var(--space-4);
    padding: var(--space-4);
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--panel);
    backdrop-filter: blur(18px) saturate(130%);
}

.issue > span {
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--display-font);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.72;
}

.issue p,
.service p,
.timeline-item p {
    margin: var(--space-2) 0 0;
    color: var(--muted);
    font-size: var(--text-body);
    line-height: 1.65;
}

.services {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.section-heading {
    margin-bottom: var(--space-5);
}

.service-layout {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.service-image {
    min-height: 360px;
    overflow: hidden;
    background: var(--panel);
    backdrop-filter: blur(18px) saturate(130%);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    filter: contrast(1.04) brightness(0.98);
    transition: transform 700ms ease;
}

.service-image:hover img {
    transform: scale(1.035);
}

.service-list {
    display: grid;
    border-right: 1px solid var(--line);
}

.service {
    display: grid;
    align-content: center;
    min-height: 160px;
    padding: var(--space-4);
    border-bottom: 1px solid var(--line);
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(130%);
}

.why {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--black);
    border-bottom: 1px solid var(--line-soft);
}

.why-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.76) 42%, rgba(3, 3, 3, 0.24) 100%),
        var(--image-why) center / cover;
    filter: contrast(1.04) brightness(0.82);
}

.why-content {
    position: relative;
    z-index: 1;
    width: min(100% - var(--space-4), 760px);
    margin: 0 auto var(--space-5);
    padding: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-large);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(26px) saturate(140%);
}

.section-inner.why-content {
    margin-top: 50px;
}

.why-content p {
    max-width: 680px;
}

.check-list {
    display: grid;
    gap: 0;
    max-width: 720px;
    margin: var(--space-4) 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-soft);
}

.check-list li {
    position: relative;
    padding: var(--space-3) 0 var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted-strong);
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    width: var(--space-3);
    height: 2px;
    background: var(--accent);
}

.process {
    background: var(--black);
    border-bottom: 1px solid var(--line-soft);
}

.process-layout {
    display: grid;
    gap: var(--space-4);
}

.process-card {
    min-height: 320px;
    display: grid;
    align-content: end;
    gap: var(--space-2);
    padding: var(--space-4);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        var(--glass);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(22px) saturate(130%);
    color: var(--white);
}

.process-card span {
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.process-card strong {
    font-family: var(--display-font);
    font-size: clamp(5rem, 14vw, 7rem);
    line-height: 0.78;
}

.process-card h3 {
    font-family: Times;
    font-size: 47px;
    line-height: 0.9;
}

.process-card p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.timeline {
    display: grid;
    align-content: start;
    margin: 0;
    padding: var(--space-1) 0;
    list-style: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.28);
    box-shadow: var(--shadow-card);
}

.timeline-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: var(--space-3);
    min-height: auto;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
    border-bottom: 0;
}

.timeline-item > span {
    color: var(--accent-muted);
    font-size: var(--text-small);
    font-weight: 900;
}

.testimonials {
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--line-soft);
}

.testimonial-grid {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dark);
}

.testimonial {
    margin: 0;
    min-width: 0;
    min-height: 280px;
    display: grid;
    align-content: space-between;
    padding: var(--space-4);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(130%);
    overflow: hidden;
}

.testimonial blockquote {
    margin: 0;
    color: var(--white);
    max-width: 34ch;
    font-family: var(--body-font);
    font-size: var(--text-lead);
    font-weight: 800;
    line-height: 1.45;
    text-transform: none;
    overflow-wrap: normal;
    hyphens: none;
}

.testimonial figcaption {
    margin-top: var(--space-4);
    color: var(--accent-muted);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact {
    background: var(--black);
}

.services.section-light,
.process.section-light,
.contact.section-light {
    background:
        linear-gradient(180deg, #ffffff 0%, #eeeeee 100%);
    color: var(--black);
}

.contact-layout {
    display: grid;
    gap: var(--space-5);
}

.contact-copy p {
    max-width: 650px;
}

.contact-note {
    display: grid;
    gap: var(--space-1);
    max-width: 620px;
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--line);
}

.contact-note strong {
    color: var(--white);
    font-size: 0.96rem;
}

.contact-note span {
    color: var(--muted);
    line-height: 1.55;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.social-button {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 var(--space-2);
    border-color: rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
    color: var(--black);
    font-size: var(--text-small);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-socials svg {
    width: 19px;
    height: 19px;
}

.contact-form {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-4);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    color: var(--white);
    backdrop-filter: blur(24px) saturate(130%);
}

.form-hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field-grid {
    display: grid;
    gap: var(--space-3);
}

label {
    display: grid;
    gap: var(--space-1);
    color: var(--white);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-soft);
    background: rgba(0, 0, 0, 0.38);
    color: var(--white);
    padding: var(--space-2);
    outline: none;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    background: var(--black);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.privacy {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 12px;
    color: var(--muted);
    font-size: var(--text-small);
    font-weight: 700;
    line-height: 1.5;
    text-transform: none;
}

.privacy input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 1px;
    accent-color: var(--white);
    border-radius: 5px;
}

.form-submit {
    width: 100%;
    min-height: 64px;
}

.form-status {
    min-height: 1.5em;
    margin: 0;
    color: var(--accent-muted);
    font-size: var(--text-small);
    font-weight: 800;
}

.form-status.is-success {
    color: var(--white);
}

.form-status.is-error {
    color: var(--white);
}

.site-footer {
    background: var(--black);
    border-top: 1px solid var(--line-soft);
    padding: var(--space-4) 0;
}

.footer-inner {
    width: min(100% - var(--space-4), var(--content-max));
    margin-inline: auto;
    display: grid;
    gap: var(--space-3);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.site-footer a:not(.brand) {
    color: var(--muted);
    font-size: var(--text-small);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: var(--text-small);
}

.site-footer .brand {
    min-height: 52px;
}

.site-footer .brand-logo {
    width: 52px;
    height: 52px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.legal-info {
    display: grid;
    gap: var(--space-1);
    padding-top: var(--space-3);
    border-top: 1px solid var(--line-soft);
}

.legal-info p {
    max-width: 780px;
    line-height: 1.55;
}

.legal-info strong {
    color: var(--white);
}

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

/* ── Improved reveal base: spring easing, proper opacity ── */
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

/* ── Hero containers: disable generic reveal, use own animations ── */
.js .hero .hero-content.reveal,
.js .hero .hero-media.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
}

/* ── Hero content children: staged entrance on load ── */
.js .hero-content > .eyebrow {
    animation: itemEnter 800ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.js .hero-content > h1 {
    animation: itemEnter 900ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.js .hero-content > .hero-line {
    animation: itemEnter 800ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.js .hero-content > .hero-actions {
    animation: itemEnter 700ms cubic-bezier(0.16, 1, 0.3, 1) 560ms both;
}

.js .hero-content > .hero-proof {
    animation: itemEnter 700ms cubic-bezier(0.16, 1, 0.3, 1) 700ms both;
}

/* ── Hero media card: slides + scales in ── */
.js .hero-media {
    animation: mediaEnter 1100ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both;
}

@keyframes itemEnter {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mediaEnter {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Scroll progress bar ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--black);
    z-index: 200;
    pointer-events: none;
    transform-origin: left;
    transition: width 60ms linear;
}

/* ── Section h2 clip reveal ── */
.js .section-heading,
.js .section-copy,
.js .mirror-copy {
    overflow: visible;
}

.js .section-heading.reveal h2,
.js .section-copy.reveal h2,
.js .mirror-copy.reveal h2 {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
        transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.js .section-heading.reveal.is-visible h2,
.js .section-copy.reveal.is-visible h2,
.js .mirror-copy.reveal.is-visible h2 {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────────
   SUBPAGES
───────────────────────────────────────────── */

/* Hero — light, full-bleed, overlaps sticky header */
.page-hero {
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(var(--header-height) + var(--space-5));
    padding-bottom: var(--space-5);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 1), rgba(232, 232, 232, 0.86) 52%, rgba(205, 205, 205, 0.96) 100%);
    color: var(--black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: -18% -8%;
    background-image: var(--image-mirror);
    background-repeat: repeat;
    background-size: 170px 153px;
    opacity: 0.042;
    transform: perspective(820px) rotateX(52deg) scale(1.16);
    transform-origin: center top;
    pointer-events: none;
    z-index: 0;
}

.page-hero .section-inner {
    position: relative;
    z-index: 1;
}

.page-hero-grid {
    display: grid;
    gap: var(--space-5);
    align-items: center;
}

.page-copy {
    max-width: 680px;
}

.page-copy::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin-bottom: var(--space-2);
    background: var(--black);
}

.page-copy h1 {
    margin: 0;
    font-family: Times, "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--black);
    text-wrap: balance;
}

.page-copy h1 span {
    display: block;
    color: rgba(0, 0, 0, 0.45);
}

.page-lead {
    max-width: 540px;
    margin: var(--space-3) 0 0;
    color: rgba(0, 0, 0, 0.64);
    font-size: var(--text-lead);
    line-height: 1.65;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.page-media-card {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
    isolation: isolate;
}

.page-media-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Sections */
.page-section {
    padding: var(--space-5) 0;
}

.page-section.dark {
    background: var(--black);
    border-bottom: 1px solid var(--line-soft);
}

.page-section.light {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eeeeee 100%);
    color: var(--black);
}

.page-section.dark .eyebrow {
    color: var(--accent-muted);
}

.page-section.light .eyebrow {
    color: rgba(0, 0, 0, 0.5);
}

.page-section.dark h2,
.page-section.dark h3 {
    color: var(--white);
}

.page-section.light h2,
.page-section.light h3 {
    color: var(--black);
}

/* Card grid */
.page-grid {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.page-card {
    display: grid;
    gap: var(--space-2);
    align-content: end;
    min-height: 220px;
    padding: var(--space-4);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        var(--glass);
    color: var(--white);
}

.page-section.light .page-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    color: var(--black);
}

.page-card > span {
    color: var(--accent-muted);
    font-size: var(--text-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.page-section.light .page-card > span {
    color: rgba(0, 0, 0, 0.42);
}

.page-card h3 {
    font-family: Times, "Times New Roman", serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    text-transform: none;
}

.page-section.light .page-card h3 {
    color: var(--black);
}

.page-card p {
    margin: var(--space-1) 0 0;
    color: var(--muted);
    font-size: var(--text-body);
    line-height: 1.65;
}

.page-section.light .page-card p {
    color: rgba(0, 0, 0, 0.62);
}

/* Split layout */
.page-split {
    display: grid;
    gap: var(--space-5);
    align-items: start;
}

/* List with strong/span entries */
.page-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-soft);
}

.page-section.light .page-list {
    border-color: rgba(0, 0, 0, 0.1);
}

.page-list li {
    display: grid;
    gap: 6px;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--line-soft);
}

.page-section.light .page-list li {
    border-color: rgba(0, 0, 0, 0.1);
}

.page-list strong {
    font-family: Times, "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--white);
}

.page-section.light .page-list strong,
.page-section.dark .page-list strong {
    color: var(--white);
}

.page-section.light .page-list strong {
    color: var(--black);
}

.page-list span {
    color: var(--muted);
    font-size: var(--text-body);
    line-height: 1.6;
}

.page-section.light .page-list span {
    color: rgba(0, 0, 0, 0.62);
}

/* Desktop subpage layout */
@media (min-width: 900px) {
    .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
        gap: var(--space-5);
    }

    .page-split {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
        gap: var(--space-5);
    }

    .page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: var(--radius-card);
    }

    .page-card {
        border: 0;
        border-radius: 0;
        border-right: 1px solid var(--line-soft);
        border-bottom: 1px solid var(--line-soft);
        min-height: 260px;
    }

    .page-section.light .page-card {
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: none;
    }

    .page-card:last-child {
        border-right: 0;
    }

    .page-section.dark .page-grid {
        border-color: var(--line);
    }

    .page-section.light .page-grid {
        border-color: rgba(0, 0, 0, 0.1);
    }
}

/* Mobile subpage overrides */
@media (max-width: 899px) {
    .page-hero {
        margin-top: calc(-1 * (var(--header-gap) + 60px));
        padding-top: calc(var(--header-gap) + 60px + var(--space-4));
        padding-bottom: var(--space-4);
    }

    .page-hero-grid {
        gap: var(--space-4);
    }

    .page-media-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .page-section {
        padding: var(--space-4) 0;
    }

    .page-grid {
        gap: var(--space-2);
    }

    .page-card {
        min-height: auto;
        padding: var(--space-3);
    }

    .page-split {
        gap: var(--space-4);
    }
}

/* ─────────────────────────────────────────────
   END SUBPAGES
───────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   LEGAL PAGES (Impressum / Datenschutz)
───────────────────────────────────────────── */

.legal-page {
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(var(--header-height) + var(--space-5));
    padding-bottom: var(--space-5);
    background: var(--black);
}

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

.legal-copy h1 {
    margin: var(--space-3) 0 var(--space-4);
    font-family: Times, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 0.96;
    color: var(--white);
}

.legal-copy .page-lead {
    color: var(--muted-strong);
    margin-bottom: var(--space-4);
}

.legal-panel {
    margin-top: var(--space-4);
    padding: var(--space-4);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--glass);
}

.legal-panel h2 {
    margin: 0 0 var(--space-3);
    font-family: Times, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0;
}

.placeholder-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-soft);
}

.placeholder-list li {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) 1fr;
    gap: var(--space-2);
    align-items: baseline;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--line-soft);
}

.placeholder-list strong {
    font-family: var(--body-font);
    font-size: var(--text-small);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent-muted);
    letter-spacing: 0;
}

.placeholder-list span {
    color: var(--muted-strong);
    font-size: var(--text-body);
    line-height: 1.5;
}

@media (max-width: 899px) {
    .legal-page {
        margin-top: calc(-1 * (var(--header-gap) + 60px));
        padding-top: calc(var(--header-gap) + 60px + var(--space-4));
    }

    .placeholder-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* ─────────────────────────────────────────────
   FOOTER — MOBILE
───────────────────────────────────────────── */

@media (max-width: 899px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .site-footer nav {
        flex-wrap: wrap;
        gap: var(--space-2) var(--space-3);
    }

    .site-footer .brand {
        justify-content: flex-start;
    }
}

@keyframes heroFocus {
    to {
        transform: scale(1);
    }
}

@keyframes mirrorDrift {
    to {
        background-position: 150px 136px;
    }
}

@media (prefers-reduced-motion: reduce) {

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

    .js .reveal,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }

    .js .hero-content > *,
    .js .hero-media,
    .js .section-heading.reveal h2,
    .js .section-copy.reveal h2,
    .js .mirror-copy.reveal h2 {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

@media (min-width: 640px) {

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

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

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

    .field-grid label:last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 900px) {
    :root {
        --header-height: 112px;
    }

    .site-header {
        width: fit-content;
        max-width: calc(100% - var(--space-5));
        min-height: 72px;
        grid-template-columns: auto auto;
        justify-content: center;
        gap: var(--space-2);
        padding: 8px 10px;
        border-radius: 999px;
    }

    .site-nav {
        gap: 8px;
    }

    .site-nav a {
        min-height: 44px;
        padding-inline: var(--space-2);
        font-size: var(--text-small);
        color: rgba(0, 0, 0, 0.54);
    }

    .nav-cta {
        min-height: 48px !important;
        padding: 0 var(--space-4) !important;
    }

    .site-nav .social-link {
        width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .site-nav .social-link svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        display: grid;
        grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
        align-items: center;
        column-gap: var(--space-5);
        padding: 0 var(--space-5);
        margin-top: calc(-1 * var(--header-height));
        padding-top: var(--header-height);
    }

    .hero-media {
        position: relative;
        inset: auto;
        grid-column: 2;
        grid-row: 1;
        width: min(37vw, 500px);
        height: auto;
        margin: var(--space-5) auto;
    }

    .hero-photo {
        aspect-ratio: 4 / 5;
    }

    .hero-assurance {
        position: absolute;
        left: var(--space-2);
        right: var(--space-2);
        bottom: var(--space-4);
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 0;
        border-radius: 22px;
    }

    .hero-assurance div {
        min-height: 84px;
        align-content: start;
        padding: 14px var(--space-2);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 0;
    }

    .hero-assurance div:last-child {
        border-right: 0;
    }

    .hero-assurance strong {
        font-size: 0.82rem;
    }

    .hero-content {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        min-height: calc(100svh - var(--header-height));
        padding: var(--space-5) 0;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(5rem, 7.4vw, 7rem);
    }

    .hero-watermark {
        bottom: 7%;
    }

    .section-inner {
        width: min(100% - 80px, var(--content-max));
    }

    .mirror-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    }

    .mirror-panel {
        min-height: 420px;
    }

    .service-layout {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .service-image,
    .service-image img {
        min-height: 560px;
    }

    .process-layout {
        grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
        align-items: start;
        gap: var(--space-4);
    }

    .process-card {
        min-height: 360px;
    }

    .timeline-item {
        grid-template-columns: 72px 1fr;
        padding: 30px var(--space-4);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
        align-items: start;
    }

    .contact-copy {
        position: sticky;
        top: calc(var(--header-height) + var(--space-4));
    }

    .footer-inner {
        grid-template-columns: 1fr auto auto;
        align-items: center;
    }

    .legal-info {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1280px) {

    .section-inner,
    .footer-inner {
        width: min(100% - 128px, var(--content-max));
    }
}

@media (max-width: 899px) {

    /* ── HEADER: Logo zentriert, Hamburger rechts ── */
    .site-header {
        grid-template-columns: 1fr auto 1fr;
        min-height: 60px;
        padding: 6px 10px;
        gap: 8px;
        border-radius: 26px;
    }

    .brand {
        grid-column: 2;
        justify-self: center;
        min-height: 48px;
    }

    .nav-toggle {
        grid-column: 3;
        justify-self: end;
        display: inline-grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.06);
        color: var(--black);
        cursor: pointer;
        flex-shrink: 0;
    }

    .nav-toggle svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
    }

    /* ── DROPDOWN NAV ── */
    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 25;
        display: grid;
        grid-template-columns: 1fr;
        flex-wrap: nowrap;
        gap: 2px;
        padding: 8px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform 200ms ease, opacity 200ms ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 48px;
        padding: 0 var(--space-2);
        border-radius: 14px;
        font-size: var(--text-small);
        color: rgba(0, 0, 0, 0.7);
    }

    .site-nav a:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-cta {
        justify-content: center;
        min-height: 52px !important;
        margin: 6px 0 0 !important;
        padding: 0 var(--space-3) !important;
        border-radius: 999px;
        font-size: var(--text-small);
    }

    .nav-socials {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 6px 0 0;
        padding: 8px 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-nav .social-link {
        width: 40px;
        height: 40px;
        min-height: 40px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.03);
    }

    /* ── BACKDROP FILTER AUS ── */
    .hero-assurance,
    .trust-item,
    .issue,
    .service,
    .process-card,
    .testimonial,
    .contact-form,
    .why-content,
    .button-secondary,
    .mirror-panel {
        backdrop-filter: none;
    }

    .hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: var(--space-3);
        padding-right: 0;
        padding-bottom: var(--space-4);
        padding-left: 0;
    }

    .hero-content {
        order: 1;
        padding: var(--space-3) var(--space-3) 0;
    }

    .hero-media {
        order: 2;
        width: min(100% - var(--space-3), 360px);
        margin: 0 auto;
    }

    .hero-photo {
        aspect-ratio: 1 / 1;
    }

    .hero-assurance {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: -24px var(--space-3) 0;
    }

    .hero-assurance div {
        padding: 10px 12px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 0;
    }

    .hero-assurance div:last-child {
        border-right: 0;
    }

    .hero-assurance span {
        font-size: 0.7rem;
    }

    .hero-assurance strong {
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .hero-watermark {
        display: none;
    }

    .identity-mirror,
    .section,
    .contact {
        padding: var(--space-4) 0;
    }

    .section-copy {
        margin-bottom: var(--space-4);
    }

    .section-heading {
        margin-bottom: var(--space-4);
    }

    .mirror-panel {
        min-height: 260px;
    }

    .service-image,
    .service-image img {
        min-height: 280px;
    }

    .why {
        min-height: 520px;
    }

    .why-content {
        padding: var(--space-3);
    }

    .process-card {
        min-height: auto;
        padding: var(--space-3);
    }

    .process-card h3 {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .process-card strong {
        font-size: clamp(3.5rem, 12vw, 5rem);
    }

    .testimonial {
        min-height: auto;
        padding: var(--space-3);
    }

    .issue {
        min-height: auto;
        padding: var(--space-3);
        gap: var(--space-2);
    }

    .service {
        padding: var(--space-3);
        min-height: auto;
    }

    .contact-form {
        padding: var(--space-3);
    }

    #hero-title {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
        line-height: 1.05;
        letter-spacing: -0.8px;
    }

    #why-title {
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .hero-proof dt {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-proof dd {
        margin: 0;
        padding: 0;
        height: auto;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-top: calc(var(--header-gap) + 96px + var(--space-3));
    }

    .site-header {
        width: min(calc(100% - var(--space-2)), 1320px);
        min-height: 56px;
        padding: 4px 6px;
        border-radius: 28px;
        gap: 6px;
    }

    .brand {
        min-height: 48px;
    }

    .brand-logo {
        width: 48px;
        height: 36px;
    }

    .site-nav {
        gap: 0;
    }

    .site-nav a {
        min-height: 36px;
        padding: 0 7px;
        font-size: 0.7rem;
    }

    .nav-cta {
        min-height: 36px !important;
        padding: 0 10px !important;
    }

    .nav-socials {
        display: none;
    }

    .hero-content {
        padding-top: var(--space-3);
    }

    .hero-content::before {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 10.5vw, 3.6rem);
    }

    .hero-line {
        margin-top: var(--space-2);
        font-size: var(--text-body);
    }

    .hero-actions {
        margin-top: var(--space-3);
        gap: var(--space-2);
    }

    .hero-media {
        width: min(100% - var(--space-2), 280px);
    }

    .hero-photo {
        aspect-ratio: 4 / 5;
    }

    .hero-assurance {
        grid-template-columns: 1fr;
        margin: -20px var(--space-2) 0;
    }

    .hero-assurance div {
        padding: 12px var(--space-2);
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .hero-assurance div:last-child {
        border-bottom: 0;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-top: var(--space-4);
    }

    .hero-proof div + div {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.12);
    }

    .hero-proof div {
        padding: var(--space-2) 0;
    }

    .button {
        width: 100%;
        padding-inline: var(--space-2);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.05;
    }

    .timeline-item {
        grid-template-columns: var(--space-4) 1fr;
        gap: var(--space-2);
        padding: var(--space-3) var(--space-2);
    }

    .timeline-item h3,
    .issue h3,
    .service h3 {
        font-size: 0.95rem;
    }
}
