/* =========================================
   GRUNDEINSTELLUNGEN
========================================= */

:root {
    --dark: #180707;
    --dark-soft: #2a0b0b;
    --burgundy: #3a0909;
    --burgundy-light: #551111;

    --gold: #c99a43;
    --gold-light: #e1bb70;

    --cream: #f7f1e8;
    --cream-dark: #ebdfd0;

    --white: #ffffff;
    --gray: #6f6863;
    --gray-light: #a49b95;

    --border: #dfd1c0;

    --success-bg: #edf5e9;
    --success-border: #82a875;
    --success-text: #31542b;

    --error-bg: #f8e8e8;
    --error-border: #bb7777;
    --error-text: #762d2d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cream);
    color: var(--dark);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

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


/* =========================================
   NACH-OBEN-BUTTON
========================================= */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);
    border-radius: 50%;

    background-color: var(--dark);
    color: var(--gold-light);

    font-size: 1.2rem;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--burgundy-light);
}

@media (max-width: 520px) {

    .back-to-top {
        right: 16px;
        bottom: 16px;

        width: 44px;
        height: 44px;
    }
}


/* =========================================
   SKIP-LINK (BARRIEREFREIHEIT)
========================================= */

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 2000;

    padding: 14px 22px;

    background-color: var(--dark);
    color: var(--white);

    font-size: 0.85rem;
    font-weight: 700;

    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}


/* =========================================
   FOKUS-ZUSTÄNDE (BARRIEREFREIHEIT)
========================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.nav-contact:focus-visible {
    outline-offset: 2px;
}

.faq-question:focus-visible {
    outline-offset: -3px;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.header.scrolled {
    background-color: rgba(19, 5, 5, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(14px);
}

.navigation {
    min-height: 96px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* =========================================
   LOGO
========================================= */

.logo-image-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-image {
    width: 245px;
    height: 82px;

    object-fit: contain;
    object-position: left center;

    filter:
        drop-shadow(
            0 4px 14px rgba(0, 0, 0, 0.28)
        );

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.logo-image-link:hover .header-logo-image {
    transform: scale(1.02);
}


/* =========================================
   NAVIGATION
========================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;

    color: var(--white);

    font-size: 0.88rem;
    letter-spacing: 0.04rem;
}

.nav-menu a:not(.nav-contact)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background-color: var(--gold-light);

    transition: width 0.3s ease;
}

.nav-menu a:not(.nav-contact):hover::after {
    width: 100%;
}

.nav-menu a:not(.nav-contact).active {
    color: var(--gold-light);
}

.nav-menu a:not(.nav-contact).active::after {
    width: 100%;
}

.nav-contact.active {
    background-color: var(--gold-light);
    color: var(--dark);
}

.nav-contact {
    padding: 12px 22px;

    border: 1px solid var(--gold-light);

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.nav-contact:hover {
    background-color: var(--gold-light);
    color: var(--dark);
}


/* =========================================
   HAMBURGER-MENÜ
========================================= */

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background-color: transparent;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 28px;
    height: 2px;

    margin: 6px auto;

    background-color: var(--white);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 3, 3, 0.94) 0%,
            rgba(18, 7, 5, 0.82) 38%,
            rgba(22, 9, 7, 0.42) 68%,
            rgba(18, 7, 5, 0.12) 100%
        ),
        url("../assets/images/hero-luxury.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.28) 0%,
            rgba(0, 0, 0, 0.03) 42%,
            rgba(0, 0, 0, 0.25) 100%
        );

    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 76% 42%,
            rgba(255, 185, 91, 0.12),
            transparent 32%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    padding-top: 150px;
    padding-bottom: 100px;

    color: var(--white);
}

.hero .eyebrow {
    position: relative;

    display: inline-block;

    margin-bottom: 30px;

    color: var(--gold-light);

    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.hero .eyebrow::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -14px;

    width: 86px;
    height: 2px;

    background-color: var(--gold);
}

.hero h1 {
    max-width: 760px;

    color: var(--white);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 5.6vw, 6rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.1rem;

    text-shadow:
        0 5px 28px rgba(0, 0, 0, 0.32);
}

.hero-description {
    max-width: 580px;

    margin-top: 34px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.05rem;
    line-height: 1.85;

    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 40px;
}


/* =========================================
   BUTTONS
========================================= */

.button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.09rem;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

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

.button-gold {
    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );

    color: var(--dark);

    box-shadow:
        0 10px 28px
        rgba(199, 155, 69, 0.2);
}

.button-gold:hover {
    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            #f0ce89
        );
}

.button-outline {
    border-color: var(--gold);
    color: var(--white);

    background-color: rgba(15, 5, 5, 0.3);

    backdrop-filter: blur(6px);
}

.button-outline:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

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

.button-dark:hover {
    background-color: var(--burgundy-light);
}


/* =========================================
   SCROLL-INDIKATOR
========================================= */

.scroll-indicator {
    position: absolute;
    right: 52px;
    bottom: 42px;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 16px;

    color: var(--white);

    font-size: 0.68rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;

    transform: rotate(90deg);
    transform-origin: right center;
}

.scroll-line {
    display: block;

    width: 60px;
    height: 1px;

    background-color: var(--gold-light);
}


/* =========================================
   GEMEINSAME ÜBERSCHRIFTEN
========================================= */

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 60px;
}

.section-heading h2,
.trust-heading h2,
.about-content h2,
.process-heading h2,
.faq-intro h2,
.contact-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.05rem;
}

.section-heading h2,
.trust-heading h2,
.about-content h2,
.faq-intro h2,
.contact-content h2 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.section-description {
    max-width: 540px;

    color: var(--gray);

    line-height: 1.85;
}


/* =========================================
   LEISTUNGEN
========================================= */

.services-section {
    padding: 105px 0 115px;

    background:
        linear-gradient(
            180deg,
            #fbf8f3 0%,
            var(--cream) 100%
        );
}

.services-intro {
    max-width: 850px;

    margin: 0 auto 58px;

    text-align: center;
}

.services-intro .eyebrow {
    margin-bottom: 14px;
}

.services-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.05rem;
}

.services-intro > p:not(.eyebrow) {
    max-width: 760px;

    margin: 22px auto 0;

    color: var(--gray);

    line-height: 1.85;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card-compact {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 22px;

    padding: 30px 26px;

    border: 1px solid rgba(223, 209, 192, 0.9);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 246, 240, 0.96)
        );

    box-shadow:
        0 14px 34px
        rgba(43, 13, 10, 0.045);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card-compact::before {
    display: none;
}

.service-card-compact:hover {
    transform: translateY(-7px);

    border-color: rgba(199, 155, 69, 0.8);

    box-shadow:
        0 22px 45px
        rgba(43, 13, 10, 0.09);
}

.service-icon-round {
    flex-shrink: 0;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    border: 1px solid var(--gold);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--burgundy-light),
            var(--dark)
        );

    color: var(--gold-light);

    font-size: 1.75rem;
    line-height: 1;

    box-shadow:
        inset 0 0 0 5px
        rgba(255, 255, 255, 0.035);
}

.service-card-content {
    padding-top: 0;
}

.service-card-compact h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.2;
}

.service-card-compact p {
    margin-top: 10px;

    color: var(--gray);

    font-size: 0.9rem;
    line-height: 1.65;
}

/* =========================================
   IMMOBILIENBEWERTUNG
========================================= */

.valuation-section {
    position: relative;

    overflow: hidden;

    padding: 125px 0;

    background:
        linear-gradient(
            135deg,
            #160404,
            #360909
        );

    color: var(--white);
}

.valuation-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(201, 154, 67, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(201, 154, 67, 0.1),
            transparent 30%
        );

    pointer-events: none;
}

.valuation-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: start;

    gap: 90px;
}

.valuation-content {
    position: sticky;
    top: 130px;
}

.valuation-content h2 {
    max-width: 650px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(2.9rem, 5vw, 4.9rem);

    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -0.06rem;
}

.valuation-lead {
    max-width: 600px;

    margin-top: 30px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.3rem;
    line-height: 1.6;
}

.valuation-description {
    max-width: 600px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.64);

    line-height: 1.85;
}

.valuation-benefits {
    margin-top: 48px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);
}

.valuation-benefit {
    display: grid;
    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding: 23px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.14);
}

.valuation-benefit > span {
    color: var(--gold-light);

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.valuation-benefit h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.2rem;
    font-weight: 400;
}

.valuation-benefit p {
    max-width: 480px;

    margin-top: 5px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.86rem;
    line-height: 1.7;
}


/* Bewertungsformular */

.valuation-form {
    position: relative;

    padding: 50px;

    background-color: var(--white);
    color: var(--dark);

    box-shadow:
        0 30px 75px
        rgba(0, 0, 0, 0.26);
}

.valuation-form-header {
    margin-bottom: 38px;
    padding-bottom: 28px;

    border-bottom: 1px solid var(--border);
}

.valuation-form-header > span {
    color: var(--gold);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
}

.valuation-form-header h3 {
    margin-top: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2rem;
    font-weight: 400;
}

.valuation-form-header p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 0.82rem;
}

.valuation-divider {
    position: relative;

    margin: 12px 0 28px;

    text-align: center;
}

.valuation-divider::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 1px;

    background-color: var(--border);
}

.valuation-divider span {
    position: relative;

    display: inline-block;

    padding: 0 16px;

    background-color: var(--white);
    color: var(--gold);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13rem;
    text-transform: uppercase;
}

.valuation-submit {
    width: 100%;

    margin-top: 28px;

    border: 0;

    cursor: pointer;
}

.valuation-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.valuation-disclaimer {
    margin-top: 18px;

    color: var(--gray);

    font-size: 0.73rem;
    line-height: 1.6;
    text-align: center;
}


/* Responsive Immobilienbewertung */

@media (max-width: 1050px) {

    .valuation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .valuation-content {
        position: static;
    }
}


@media (max-width: 700px) {

    .valuation-section {
        padding: 85px 0;
    }

    .valuation-form {
        padding: 34px 24px;
    }
}


@media (max-width: 480px) {

    .valuation-form {
        padding: 30px 20px;
    }

    .valuation-form-header h3 {
        font-size: 1.7rem;
    }
}

/* =========================================
   IMMOBILIE VERKAUFEN
========================================= */

.seller-section {
    padding: 125px 0;

    background:
        linear-gradient(
            180deg,
            #fbf7f1 0%,
            var(--white) 100%
        );
}

.seller-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;

    align-items: start;

    gap: 95px;
}


/* Linke Inhaltsseite */

.seller-content {
    position: sticky;
    top: 130px;
}

.seller-content h2 {
    max-width: 700px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(2.8rem, 5vw, 4.8rem);

    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -0.06rem;
}

.seller-lead {
    max-width: 620px;

    margin-top: 30px;

    color: var(--dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.28rem;
    line-height: 1.65;
}

.seller-description {
    max-width: 620px;

    margin-top: 20px;

    color: var(--gray);

    line-height: 1.85;
}

.seller-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 32px;

    margin-top: 38px;
}


/* Inline-Telefonlink (ersetzt das frühere Highlight-Banner) */

.seller-inline-phone {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.seller-inline-phone span {
    color: var(--gray);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.seller-inline-phone strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.05rem;
    font-weight: 400;

    transition: color 0.3s ease;
}

.seller-inline-phone:hover strong {
    color: var(--gold);
}


/* Schritte */

.seller-steps {
    display: grid;
}

.seller-step {
    display: grid;
    grid-template-columns: 78px 1fr;

    gap: 28px;

    padding: 36px 0;

    border-bottom: 1px solid var(--border);
}

.seller-step:first-child {
    padding-top: 0;
}

.seller-step:last-child {
    border-bottom: 0;
}

.seller-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1rem;
}

.seller-step-label {
    color: var(--gold);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.seller-step-content h3 {
    margin-top: 7px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.3;
}

.seller-step-content p {
    max-width: 600px;

    margin-top: 12px;

    color: var(--gray);

    font-size: 0.92rem;
    line-height: 1.8;
}


/* Responsive */

@media (max-width: 1050px) {

    .seller-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .seller-content {
        position: static;
    }
}


@media (max-width: 760px) {

    .seller-section {
        padding: 85px 0;
    }

    .seller-step {
        grid-template-columns: 62px 1fr;
        gap: 18px;
    }

    .seller-step-number {
        width: 50px;
        height: 50px;
    }
}


@media (max-width: 480px) {

    .seller-step {
        grid-template-columns: 1fr;
    }

    .seller-step-number {
        margin-bottom: 2px;
    }

    .seller-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

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

/* =========================================
   ÜBER MICH
========================================= */

.about-section {
    padding: 125px 0;

    background:
        linear-gradient(
            180deg,
            var(--white) 0%,
            #fbf7f1 100%
        );
}

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;

    align-items: center;

    gap: 95px;
}


/* Linke Bildfläche */

.about-showcase {
    position: relative;

    min-height: 720px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    padding: 42px;

    background-color: #1d0909;

    box-shadow:
        0 30px 65px
        rgba(48, 12, 10, 0.18);
}

.about-showcase::before {
    content: "";

    position: absolute;
    inset: 22px;

    border:
        1px solid
        rgba(225, 187, 112, 0.4);

    pointer-events: none;
    z-index: 3;
}

.about-photo-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-photo {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transform: scale(1.01);
}

.about-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(15, 4, 4, 0.12) 0%,
            rgba(15, 4, 4, 0.2) 35%,
            rgba(15, 4, 4, 0.5) 68%,
            rgba(15, 4, 4, 0.82) 100%
        );
}

.about-badge {
    position: relative;
    z-index: 4;

    width: 210px;

    margin-left: auto;
    margin-bottom: 28px;
    padding: 24px;

    border:
        1px solid
        rgba(225, 187, 112, 0.6);

    background-color:
        rgba(20, 3, 3, 0.38);

    backdrop-filter: blur(8px);
}


.about-badge-text {
    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.28rem;
    line-height: 1.45;
}

.about-showcase-caption {
    position: relative;
    z-index: 4;

    max-width: 360px;
}

.about-showcase-caption span {
    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
}

.about-showcase-caption p {
    margin-top: 8px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    line-height: 1.65;
}


/* Rechte Textseite */

.about-content h2 {
    max-width: 720px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(2.7rem, 4.7vw, 4.6rem);

    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.05rem;
}

.about-lead {
    max-width: 650px;

    margin-top: 30px;

    color: var(--dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.34rem;
    line-height: 1.65;
}

.about-copy {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 28px;
}

.about-copy p {
    color: var(--gray);

    line-height: 1.85;
}


/* Werte */

.about-values {
    display: grid;

    margin-top: 42px;

    border-top:
        1px solid var(--border);
}

.about-value-card {
    display: grid;
    grid-template-columns: 56px 1fr;

    gap: 20px;

    padding: 23px 0;

    border-bottom:
        1px solid var(--border);
}

.about-value-number {
    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.05rem;
}

.about-value-card h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.25rem;
    font-weight: 400;
}

.about-value-card p {
    max-width: 520px;

    margin-top: 5px;

    color: var(--gray);

    font-size: 0.88rem;
    line-height: 1.65;
}


/* Aktionen */

.about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 32px;

    margin-top: 38px;
}

.about-phone-link {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.about-phone-link span {
    color: var(--gray);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.about-phone-link strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.05rem;
    font-weight: 400;

    transition: color 0.3s ease;
}

.about-phone-link:hover strong {
    color: var(--gold);
}


/* Responsive */

@media (max-width: 1050px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-showcase {
        min-height: 620px;
    }
}


@media (max-width: 700px) {

    .about-section {
        padding: 85px 0;
    }

    .about-showcase {
        min-height: 540px;
        padding: 30px;
    }

    .about-showcase::before {
        inset: 16px;
    }

    .about-badge {
        width: 185px;
        padding: 20px;
    }

    .about-copy {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 480px) {

    .about-showcase {
        min-height: 460px;
        padding: 24px;
    }

    .about-badge {
        width: 165px;
    }

    .about-badge-text {
        font-size: 1.08rem;
    }

    .about-value-card {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

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


/* =========================================
   VERTRAUENSBEREICH
========================================= */

.trust-section {
    padding: 130px 0;
    background-color: var(--cream);
}

.trust-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 65px;
}

.trust-heading > p {
    max-width: 520px;

    color: var(--gray);

    line-height: 1.85;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.trust-card {
    position: relative;

    min-height: 310px;

    padding: 42px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.trust-card:hover {
    z-index: 2;

    background-color: var(--white);

    transform: translateY(-6px);

    box-shadow:
        0 18px 42px
        rgba(45, 10, 10, 0.08);
}

.trust-number {
    display: block;

    margin-bottom: 70px;

    color: var(--gold);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.trust-card h3 {
    max-width: 400px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.25;
}

.trust-card p {
    max-width: 480px;

    margin-top: 18px;

    color: var(--gray);

    line-height: 1.8;
}


/* =========================================
   ABLAUF
========================================= */

.process-section {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(199, 155, 69, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--dark),
            var(--burgundy)
        );

    color: var(--white);
}

.process-heading {
    max-width: 850px;

    margin-bottom: 65px;
}

.process-heading h2 {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

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

.process-step {
    min-height: 320px;

    padding: 35px 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.15);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.process-step:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step:hover {
    background-color: rgba(199, 155, 69, 0.12);
    transform: translateY(-6px);
}

.process-step > span {
    display: block;

    margin-bottom: 55px;

    color: var(--gold-light);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.process-step h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
}

.process-step p {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;
    line-height: 1.75;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
    padding: 130px 0;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    align-items: start;

    gap: 90px;
}

.faq-intro {
    position: sticky;
    top: 125px;
}

.faq-intro > p:not(.eyebrow) {
    max-width: 500px;

    margin-top: 26px;

    color: var(--gray);

    line-height: 1.85;
}

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

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

.faq-question {
    width: 100%;
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 26px 0;

    border: 0;
    background-color: transparent;

    text-align: left;

    cursor: pointer;
}

.faq-question > span:first-child {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 1.4rem;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: var(--gold);
    color: var(--dark);

    transform: rotate(45deg);
}

.js .faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease,
        padding-bottom 0.4s ease;
}

.faq-answer p {
    max-width: 700px;

    padding-right: 70px;

    color: var(--gray);

    line-height: 1.85;
}

.js .faq-item.active .faq-answer {
    max-height: 320px;
    padding-bottom: 30px;
}

.no-js .faq-answer {
    padding-bottom: 26px;
}


/* =========================================
   KONTAKT
========================================= */

.contact-section {
    padding: 130px 0;
    background-color: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: start;

    gap: 90px;
}

.contact-content {
    position: sticky;
    top: 125px;
}

.contact-intro {
    max-width: 580px;

    margin-top: 28px;

    color: var(--gray);

    line-height: 1.85;
}

.contact-details {
    margin-top: 45px;

    border-top: 1px solid var(--border);
}

.contact-detail {
    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.contact-label {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.contact-detail a {
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-note {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 32px;
}

.contact-note span {
    padding: 9px 14px;

    border: 1px solid var(--border);

    color: var(--gray);

    font-size: 0.68rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}


/* Karte */

.contact-map {
    margin-top: 32px;

    border: 1px solid var(--border);

    overflow: hidden;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 280px;

    border: 0;

    filter: grayscale(35%) contrast(1.05);
}

.map-route-link {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 14px 16px;

    background-color: var(--white);
    color: var(--dark);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09rem;
    text-transform: uppercase;

    border-top: 1px solid var(--border);

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.map-route-link:hover {
    background-color: var(--dark);
    color: var(--gold-light);
}

.map-route-link span {
    transition: transform 0.3s ease;
}

.map-route-link:hover span {
    transform: translateX(3px);
}


/* =========================================
   KONTAKTFORMULAR
========================================= */

.contact-form {
    position: relative;

    padding: 50px;

    background-color: var(--white);

    box-shadow:
        0 25px 65px
        rgba(45, 10, 10, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);
    border-radius: 0;

    outline: none;

    background-color: var(--white);
    color: var(--dark);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
    min-height: 55px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 155px;

    padding: 16px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7d7369;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(199, 155, 69, 0.4);
}


/* Inline-Fehlermeldungen */

.field-error {
    margin-top: 8px;

    color: var(--error-text);

    font-size: 0.78rem;
    line-height: 1.4;
}

.field-error:empty {
    display: none;
    margin: 0;
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: var(--error-border);
}

.privacy-checkbox input[aria-invalid="true"] {
    outline: 2px solid var(--error-border);
    outline-offset: 3px;
}

.privacy-checkbox {
    display: grid;
    grid-template-columns: 20px 1fr;

    align-items: start;

    gap: 12px;

    color: var(--gray);

    font-size: 0.79rem;
    line-height: 1.6;

    cursor: pointer;
}

.privacy-checkbox input {
    width: 17px;
    height: 17px;

    margin-top: 3px;

    accent-color: var(--gold);
}

.privacy-checkbox a {
    color: var(--dark);

    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.privacy-checkbox a:hover {
    color: var(--gold);
}

.form-button {
    width: 100%;

    margin-top: 28px;

    border: 0;

    cursor: pointer;
}

.form-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    display: none;

    margin-top: 20px;
    padding: 14px 16px;

    font-size: 0.88rem;
    line-height: 1.5;
}

.form-message.success {
    display: block;

    border: 1px solid var(--success-border);
    background-color: var(--success-bg);
    color: var(--success-text);
}

.form-message.error {
    display: block;

    border: 1px solid var(--error-border);
    background-color: var(--error-bg);
    color: var(--error-text);
}

.form-message {
    border-radius: 2px;
    font-weight: 600;
}

.form-message.success,
.form-message.error {
    animation: formMessageFadeIn 0.35s ease;
}

@keyframes formMessageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.form-honeypot {
    position: absolute;
    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding-top: 80px;

    background:
        linear-gradient(
            135deg,
            #140303,
            #300707
        );

    color: var(--white);
}

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

    gap: 55px;

    padding-bottom: 65px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo-image-link {
    display: inline-block;
}

.footer-logo-image {
    width: 285px;
    max-height: 155px;

    object-fit: contain;
    object-position: left center;

    transition: transform 0.3s ease;
}

.footer-logo-image-link:hover .footer-logo-image {
    transform: scale(1.02);
}

.footer-brand p {
    max-width: 340px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.89rem;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 0.7rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.68);

    font-size: 0.87rem;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-column .footer-license-note {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.72rem;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 24px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.52);

    font-size: 0.74rem;
}

.footer-bottom a {
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* =========================================
   SCROLL-ANIMATIONEN
========================================= */

.js .reveal {
    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

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


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .header-logo-image {
        width: 205px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image-placeholder {
        min-height: 580px;
    }

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

    .process-step:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

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

    .contact-content {
        position: static;
    }

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


/* =========================================
   MOBILNAVIGATION
========================================= */

@media (max-width: 860px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .navigation {
        min-height: 82px;
    }

    .header-logo-image {
        width: 188px;
        height: 64px;
    }

    .js .menu-button {
        position: relative;
        z-index: 1002;

        display: block;
    }

    .js .nav-menu {
        position: fixed;
        inset: 0;
        z-index: 1001;

        display: flex;
        flex-direction: column;
        justify-content: center;

        gap: 28px;

        background:
            radial-gradient(
                circle at 70% 20%,
                rgba(199, 155, 69, 0.12),
                transparent 30%
            ),
            linear-gradient(
                135deg,
                rgba(24, 3, 3, 0.99),
                rgba(66, 9, 9, 0.99)
            );

        opacity: 0;
        visibility: hidden;

        transform: translateY(-20px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .js .nav-menu.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .no-js .nav-menu {
        flex-wrap: wrap;
        justify-content: center;

        gap: 12px 22px;

        padding: 16px 0 20px;

        border-top: 1px solid rgba(255, 255, 255, 0.1);

        background-color: var(--dark);
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .nav-contact {
        padding: 13px 28px;
    }

    .hero {
        min-height: 820px;
    }

    .hero-content {
        padding-top: 125px;
    }

    .hero h1 {
        font-size: clamp(3rem, 13vw, 5.2rem);
        letter-spacing: -0.05rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .button {
        width: 100%;
        max-width: 350px;
    }

    .scroll-indicator {
        display: none;
    }

    .services-section,
    .trust-section,
    .faq-section,
    .contact-section {
        padding: 90px 0;
    }

    .section-heading,
    .trust-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 45px;
    }

    .services-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .trust-card {
        min-height: 280px;
    }

    .trust-number {
        margin-bottom: 45px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .faq-intro {
        position: static;
    }
}


/* =========================================
   KLEINE TABLETS
========================================= */

@media (max-width: 650px) {

    .about-section {
        padding: 80px 0;
    }

    .about-image-placeholder {
        min-height: 430px;
    }

    .about-image-placeholder::before {
        inset: 20px;
    }

    .about-lead {
        font-size: 1.15rem;
    }

    .process-section {
        padding: 80px 0;
    }

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

    .process-step {
        min-height: auto;

        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .process-step > span {
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer {
        padding-top: 60px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================
   SMARTPHONE
========================================= */

@media (max-width: 520px) {

    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-logo-image {
        width: 158px;
        height: 56px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-description {
        margin-top: 22px;
        line-height: 1.68;
    }

    .services-section,
    .trust-section,
    .faq-section,
    .contact-section {
        padding: 75px 0;
    }

    .service-card {
        min-height: 380px;

        padding: 30px 24px;
    }

    .service-number {
        top: 22px;
        right: 22px;

        font-size: 2.7rem;
    }

    .service-card h3 {
        font-size: 1.75rem;
    }

    .trust-card {
        min-height: auto;

        padding: 32px 24px;
    }

    .trust-number {
        margin-bottom: 35px;
    }

    .trust-card h3 {
        font-size: 1.65rem;
    }

    .faq-question {
        min-height: 85px;

        gap: 18px;
    }

    .faq-question > span:first-child {
        font-size: 1.18rem;
    }

    .faq-icon {
        width: 34px;
        height: 34px;
    }

    .faq-answer p {
        padding-right: 0;
    }

    .footer-logo-image {
        width: 245px;
    }
}


/* =========================================
   404-SEITE
========================================= */

.header-static {
    position: static;

    background-color: var(--dark);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-menu-static {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.error-section {
    min-height: calc(100vh - 96px);

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            var(--dark),
            var(--burgundy)
        );

    color: var(--white);
}

.error-content {
    max-width: 680px;

    padding: 90px 0;
}

.error-content .eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    color: var(--gold-light);

    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.error-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.05rem;
}

.error-description {
    max-width: 520px;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.7);

    line-height: 1.85;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 40px;
}

.error-button-outline {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: transparent;
}

@media (max-width: 520px) {

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


/* =========================================
   REDUZIERTE BEWEGUNG
========================================= */

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

    html {
        scroll-behavior: auto;
    }

    .reveal,
    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

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


/* =========================================
   DRUCKANSICHT
========================================= */

@media print {

    .header,
    .skip-link,
    .back-to-top,
    .scroll-indicator,
    .menu-button,
    .hero-buttons,
    .valuation-form,
    .contact-form,
    .contact-map,
    .faq-icon,
    .about-badge,
    .about-showcase-overlay {
        display: none !important;
    }

    * {
        color: #000 !important;
        background: #fff !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    a[href^="http"]::after,
    a[href^="tel"]::after,
    a[href^="mailto"]::after {
        content: " (" attr(href) ")";

        font-size: 0.8em;
        font-weight: normal;
    }

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

    .container {
        width: 100%;
    }

    section {
        padding: 20px 0 !important;

        page-break-inside: avoid;
    }

    .hero {
        min-height: auto;
    }

    .faq-answer {
        max-height: none !important;
        overflow: visible !important;
    }
}