
/* ============================================
   FONT FACES — lokal aus /fonts
   ============================================ */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/outfit-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/outfit-700.woff2') format('woff2');
}
/* ============================================
   DESIGN TOKENS — Hell & Kompakt
   ============================================ */
:root {
    --bg-base:        #FAF8F4;
    --bg-pure:        #FFFFFF;
    --bg-soft:        #F2EEE6;
    --bg-warm:        #ECE5D6;

    --ink-deep:       #14253D;
    --ink-mid:        #2E3F5C;
    --ink-soft:       #5A6B82;
    --ink-muted:      #8B97AB;

    --gold:           #B8924A;
    --gold-bright:    #D4AF6E;
    --gold-deep:      #8C6E2F;
    --gold-soft:      rgba(184, 146, 74, 0.12);

    --hairline:       rgba(20, 37, 61, 0.08);
    --hairline-mid:   rgba(20, 37, 61, 0.15);
    --glass-light:    rgba(255, 255, 255, 0.7);

    --font-display:   'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body:      'Inter', -apple-system, sans-serif;

    --container:      1240px;
    --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 6rem; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink-deep);
    background: var(--bg-base);
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--bg-pure); }

/* ============================================
   BACKGROUNDS
   ============================================ */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(212, 175, 110, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 90%, rgba(20, 37, 61, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-base) 0%, #F5F0E5 100%);
}

.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.5;
    overflow: hidden;
}

.bg-mesh::before,
.bg-mesh::after {
    content: '';
    position: absolute;
    width: 55vmax;
    height: 55vmax;
    border-radius: 50%;
    filter: blur(110px);
    will-change: transform;
}

.bg-mesh::before {
    background: radial-gradient(circle, rgba(212, 175, 110, 0.32) 0%, transparent 65%);
    top: -20vmax;
    left: -15vmax;
    animation: meshDrift1 32s var(--ease-soft) infinite alternate;
}

.bg-mesh::after {
    background: radial-gradient(circle, rgba(20, 37, 61, 0.1) 0%, transparent 65%);
    bottom: -25vmax;
    right: -20vmax;
    animation: meshDrift2 40s var(--ease-soft) infinite alternate;
}

@keyframes meshDrift1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25vmax, 18vmax) scale(1.25); }
}

@keyframes meshDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-22vmax, -12vmax) scale(1.15); }
}

#particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
}

/* ============================================
   NAVIGATION (kompakter)
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 0.65rem 0;
    background: rgba(250, 248, 244, 0.88);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--hairline);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink-deep);
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    position: relative;
    overflow: hidden;
    background: var(--bg-pure);
    padding: 6px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-deep);
    letter-spacing: -0.01em;
}

.brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 500;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-mid);
    letter-spacing: -0.012em;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s var(--ease-out);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--ink-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--ink-deep);
    color: var(--bg-pure);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.012em;
    transition: transform 0.35s var(--ease-out), color 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.nav-cta span,
.nav-cta svg {
    position: relative;
    z-index: 1;
}

.nav-cta:hover { transform: scale(1.035); }
.nav-cta:hover::before { transform: scaleX(1); }

.menu-toggle { display: none; }

/* ============================================
   HERO (kompakt: 75vh statt 100vh)
   ============================================ */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 3rem;
    overflow: hidden;
}

.hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: -5%;
    right: 0;
    width: 65%;
    height: 110%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.92;
    will-change: transform;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 25%, black 55%, black 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 25%, black 55%, black 100%);
}

.hero-bg-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg-base) 0%, rgba(250, 248, 244, 0.6) 35%, transparent 70%),
        linear-gradient(180deg, transparent 0%, transparent 70%, var(--bg-base) 100%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
    width: 100%;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: rise 1s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-deep);
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--ink-deep);
}

.hero h1 .accent {
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-top: 0.15em;
}

.hero h1 .name {
    font-size: 0.78em;
    display: block;
    margin-top: 0.05em;
    font-weight: 600;
}

.hero h1 > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: rise 1.1s var(--ease-out) forwards;
}

.hero h1 > span:nth-child(1) { animation-delay: 0.35s; }
.hero h1 > span:nth-child(2) { animation-delay: 0.5s; }
.hero h1 > span:nth-child(3) { animation-delay: 0.65s; }

.hero-lede {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-mid);
    max-width: 500px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: rise 1s var(--ease-out) 0.85s forwards;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    font-size: 0.825rem;
    color: var(--ink-soft);
    opacity: 0;
    animation: rise 1s var(--ease-out) 1s forwards;
}

.hero-meta .dot {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-meta a { color: var(--gold-deep); font-weight: 500; }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    opacity: 0;
    animation: rise 1s var(--ease-out) 1.15s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.75rem;
    font-size: 0.825rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    transform: scale(1);
    will-change: transform;
}

.btn:hover {
    transform: scale(1.035);
}

.btn-primary {
    background: var(--ink-deep);
    color: var(--bg-pure);
    border: 1px solid var(--ink-deep);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s var(--ease-out);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s var(--ease-out);
}

.btn-primary:hover { border-color: var(--gold); }
.btn-primary:hover::before { transform: scaleY(1); }
.btn-primary:hover span,
.btn-primary:hover svg { color: var(--ink-deep); }

.btn-primary svg { transition: transform 0.4s var(--ease-out), color 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
    color: var(--ink-deep);
    border: 1px solid var(--hairline-mid);
    background: var(--glass-light);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--ink-deep);
    background: var(--bg-pure);
}

/* Hero Portrait — kompakter */
.hero-portrait {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 380px;
    margin-left: auto;
    opacity: 0;
    animation: portraitReveal 1.4s var(--ease-out) 0.8s forwards;
}

.hero-portrait::before {
    content: '';
    position: absolute;
    inset: 1.25rem -1.25rem -1.25rem 1.25rem;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.hero-portrait::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 32px;
    height: 32px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: 2;
    pointer-events: none;
}

.hero-portrait-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--bg-soft);
}

.hero-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 6s var(--ease-soft);
}

.hero-portrait:hover .hero-portrait-frame img { transform: scale(1.05); }

.hero-portrait-corner {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 32px;
    height: 32px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    z-index: 2;
}

.hero-portrait-tag {
    position: absolute;
    bottom: -1rem;
    right: 0.75rem;
    background: var(--ink-deep);
    color: var(--bg-pure);
    padding: 0.5rem 1rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 3;
}

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

@keyframes portraitReveal {
    0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
    100% { opacity: 1; clip-path: inset(0 0 0 0); }
}

/* ============================================
   SECTION COMMON (kompakter: 5rem statt 8rem)
   ============================================ */
section { position: relative; padding: 5rem 0; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: 0.85rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.8vw, 3rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.022em;
    margin-bottom: 1rem;
    color: var(--ink-deep);
}

.section-title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
}

.section-intro {
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--ink-mid);
    max-width: 560px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* ============================================
   COMBINED: ÜBER MICH + LEISTUNGEN (kompakt)
   ============================================ */
.combined {
    background: var(--bg-soft);
    position: relative;
    border-top: 1px solid var(--hairline);
}

.combined-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: end;
}

.combined-intro p {
    color: var(--ink-mid);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.combined-intro p strong {
    color: var(--ink-deep);
    font-weight: 500;
}

.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hairline);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--ink-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Service Grid — 4 Karten, kompakter */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-pure);
    border: 1px solid var(--hairline);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.7s var(--ease-out), opacity 0.4s;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--gold-soft) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(20, 37, 61, 0.15);
}

.service-card:hover::before { opacity: 1; transform: translateX(0); }
.service-card:hover::after { opacity: 1; }

.service-num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink-deep);
    color: var(--ink-deep);
    transition: all 0.5s var(--ease-out);
    position: relative;
    z-index: 1;
    background: var(--bg-pure);
}

.service-card:hover .service-icon {
    background: var(--ink-deep);
    color: var(--gold-bright);
    transform: rotate(-4deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink-deep);
    margin-bottom: 0.65rem;
    letter-spacing: -0.018em;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--ink-mid);
    font-size: 0.825rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-list {
    list-style: none;
    border-top: 1px solid var(--hairline);
    padding-top: 0.85rem;
    position: relative;
    z-index: 1;
}

.service-list li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.1rem;
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.45;
    transition: color 0.3s var(--ease-out);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.service-card:hover .service-list li { color: var(--ink-mid); }
.service-card:hover .service-list li::before { width: 12px; }

/* ============================================
   COMPACT VALUES + CTA (kombiniert)
   ============================================ */
.bottom-block {
    position: relative;
    background: var(--ink-deep);
    color: var(--bg-base);
    overflow: hidden;
}

.bottom-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 110, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 110, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.bottom-block-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    overflow: hidden;
    mix-blend-mode: luminosity;
}

.bottom-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    will-change: transform;
    filter: contrast(1.1) brightness(0.9);
}

.bottom-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.25rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(250, 248, 244, 0.1);
    align-items: start;
}

.value-row:first-child { padding-top: 0; }
.value-row:last-child { border-bottom: none; padding-bottom: 0; }

.value-num {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold-bright);
    line-height: 1;
    padding-top: 0.4rem;
}

.value-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bg-base);
    margin-bottom: 0.25rem;
    letter-spacing: -0.018em;
    line-height: 1.25;
}

.value-content p {
    color: rgba(250, 248, 244, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.bottom-cta .section-label {
    color: var(--gold-bright);
}

.bottom-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    line-height: 1.1;
    font-weight: 600;
    color: var(--bg-base);
    margin-bottom: 1rem;
    letter-spacing: -0.022em;
}

.bottom-cta h2 em {
    font-style: normal;
    color: var(--gold-bright);
    font-weight: 700;
}

.bottom-cta p {
    color: rgba(250, 248, 244, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bottom-cta .quote {
    border-left: 2px solid var(--gold-bright);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.bottom-cta .quote p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bg-base);
    margin-bottom: 0.5rem;
}

.bottom-cta .quote cite {
    font-style: normal;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-bright);
    font-weight: 500;
}

.bottom-cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-light {
    background: var(--gold-bright);
    color: var(--ink-deep);
    border: 1px solid var(--gold-bright);
}

.btn-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-base);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s var(--ease-out);
}

.btn-light span,
.btn-light svg {
    position: relative;
    z-index: 1;
}

.btn-light:hover::before { transform: scaleY(1); }
.btn-light svg { transition: transform 0.4s var(--ease-out); }
.btn-light:hover svg { transform: translateX(4px); }

.btn-outline-light {
    color: var(--bg-base);
    border: 1px solid rgba(250, 248, 244, 0.25);
    background: transparent;
}

.btn-outline-light:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

/* ============================================
   COMPACT FOOTER
   ============================================ */
footer {
    background: #0E1A2C;
    color: rgba(250, 248, 244, 0.6);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(250, 248, 244, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .brand-mark {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    border-color: var(--gold-bright);
    background: transparent;
    padding: 6px;
}

.footer-brand .brand-mark img {
    filter: invert(1) brightness(1.2) sepia(0.3) hue-rotate(15deg);
}

.footer-brand .brand-name {
    color: var(--bg-base);
    font-size: 1.2rem;
}

.footer-brand p {
    color: rgba(250, 248, 244, 0.55);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 0.85rem;
    max-width: 320px;
}

footer h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-bright);
    font-weight: 500;
    margin-bottom: 1rem;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; font-size: 0.825rem; }

footer ul li a,
footer ul li {
    color: rgba(250, 248, 244, 0.55);
    transition: color 0.3s var(--ease-out);
}

footer ul li a:hover { color: var(--gold-bright); }

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 244, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(250, 248, 244, 0.4);
}

.footer-legal {
    font-size: 0.7rem;
    color: rgba(250, 248, 244, 0.4);
    line-height: 1.5;
    margin-top: 1rem;
}

.footer-legal a { color: var(--gold-bright); }

/* ============================================
   DOWNLOAD MODAL
   ============================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(20, 37, 61, 0.65);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: var(--bg-pure);
    border: 1px solid var(--hairline-mid);
    box-shadow: 0 60px 120px -30px rgba(20, 37, 61, 0.45);
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: all 0.5s var(--ease-out);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-backdrop.open .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
}

.modal-header {
    padding: 2.25rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--hairline);
    position: relative;
}

.modal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: 0.85rem;
}

.modal-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ink-deep);
    line-height: 1.1;
    letter-spacing: -0.022em;
    margin-bottom: 0.65rem;
}

.modal-title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
}

.modal-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-mid);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    border: 1px solid var(--hairline-mid);
    background: var(--bg-pure);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.modal-close svg {
    pointer-events: none;
}

.modal-close:hover {
    color: var(--bg-pure);
    background: var(--ink-deep);
    border-color: var(--ink-deep);
}

.modal-body {
    padding: 1.5rem 2.5rem 2.5rem;
}

.download-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    color: inherit;
}

.download-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease-out);
}

.download-item:hover {
    background: var(--bg-pure);
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: 0 12px 30px -10px rgba(20, 37, 61, 0.15);
}

.download-item:hover::before {
    transform: scaleY(1);
}

.download-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--bg-pure);
    border: 1px solid var(--hairline-mid);
    color: var(--ink-deep);
    transition: all 0.4s var(--ease-out);
}

.download-item:hover .download-icon {
    background: var(--ink-deep);
    color: var(--gold-bright);
    border-color: var(--ink-deep);
}

.download-info {
    min-width: 0;
}

.download-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-deep);
    line-height: 1.25;
    margin-bottom: 0.25rem;
    letter-spacing: -0.018em;
}

.download-meta {
    font-size: 0.75rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.download-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-deep);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: gap 0.3s var(--ease-out);
}

.download-item:hover .download-action {
    color: var(--gold);
    gap: 0.7rem;
}

.modal-footer-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hairline);
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .modal-header { padding: 1.75rem 1.5rem 1.25rem; }
    .modal-body { padding: 1.25rem 1.5rem 2rem; }
    .modal-title { font-size: 1.5rem; }
    .download-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        padding: 1rem 1.25rem;
    }
    .download-icon { width: 40px; height: 40px; }
    .download-action {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--hairline);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-portrait { max-width: 320px; margin: 0 auto; }
    .combined-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .bottom-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-bg-image {
        width: 100%;
        opacity: 0.35;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 100%);
        mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 100%);
    }
}

@media (max-width: 900px) {
    section { padding: 3.5rem 0; }
    .nav-links, .nav-cta { display: none; }
    .menu-toggle {
        display: grid; place-items: center;
        width: 40px; height: 40px;
        border: 1px solid var(--ink-deep);
        color: var(--ink-deep);
        background: var(--bg-pure);
        cursor: pointer;
        transition: all 0.3s var(--ease-out);
    }
    .menu-toggle:hover {
        background: var(--ink-deep);
        color: var(--bg-pure);
    }
    .menu-toggle svg {
        pointer-events: none;
    }
    .hero { padding: 6rem 0 2.5rem; min-height: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { flex-wrap: wrap; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   SUBPAGE — Common
   ============================================ */
.subpage-hero {
    position: relative;
    padding: 9rem 0 4rem;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.4;
    margin-top: 5rem;
}

.subpage-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
    position: relative;
    z-index: 2;
}

.subpage-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-deep);
    font-weight: 500;
}

.subpage-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.subpage-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--ink-deep);
}

.subpage-title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
}

.subpage-lede {
    font-size: 1.075rem;
    line-height: 1.65;
    color: var(--ink-mid);
    max-width: 640px;
    font-weight: 400;
}

/* ============================================
   SUBPAGE — Content
   ============================================ */
.subpage-content {
    position: relative;
    padding: 2rem 0 6rem;
}

.subpage-content-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   KONTAKT — Layout
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info {
    background: var(--bg-pure);
    border: 1px solid var(--hairline);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink-deep);
    letter-spacing: -0.018em;
    margin-bottom: 1.75rem;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    align-items: start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    color: var(--gold-deep);
}

.contact-info-content h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.925rem;
    color: var(--ink-deep);
    line-height: 1.55;
    transition: color 0.3s var(--ease-out);
}

.contact-info-content a:hover {
    color: var(--gold-deep);
}

.contact-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hairline);
    font-size: 0.825rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.contact-hours strong {
    color: var(--ink-deep);
    font-weight: 500;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--ink-deep);
    letter-spacing: 0.01em;
}

.form-group label .required {
    color: var(--gold);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.925rem;
    color: var(--ink-deep);
    background: var(--bg-pure);
    border: 1px solid var(--hairline-mid);
    transition: all 0.3s var(--ease-out);
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    font-family: inherit;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A6B82' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-muted);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
    cursor: pointer;
}

.form-checkbox span {
    font-size: 0.825rem;
    color: var(--ink-mid);
    line-height: 1.55;
}

.form-checkbox span a {
    color: var(--gold-deep);
    font-weight: 500;
    transition: color 0.3s var(--ease-out);
}

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

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

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-required-note {
    font-size: 0.78rem;
    color: var(--ink-soft);
}

.form-required-note .required {
    color: var(--gold);
}

.form-flash {
    padding: 1.25rem 1.5rem;
    border: 1px solid;
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
    line-height: 1.5;
}

.form-flash.success {
    background: #F0F7F0;
    border-color: #B8D4B8;
    color: #2D5A2D;
}

.form-flash.error {
    background: #FAF0F0;
    border-color: #D4B8B8;
    color: #722929;
}

.form-flash strong {
    font-weight: 600;
}

/* ============================================
   IMPRESSUM / DATENSCHUTZ — Prose
   ============================================ */
.prose {
    max-width: 820px;
    color: var(--ink-mid);
    font-size: 1rem;
    line-height: 1.75;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink-deep);
    letter-spacing: -0.022em;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hairline);
    position: relative;
}

.prose h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.prose h2::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.prose h2:first-child::before {
    display: none;
}

.prose h3 {
    font-family: var(--font-display);
    font-size: 1.075rem;
    font-weight: 600;
    color: var(--ink-deep);
    letter-spacing: -0.012em;
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
}

.prose p {
    margin-bottom: 1rem;
}

.prose p strong,
.prose strong {
    color: var(--ink-deep);
    font-weight: 600;
}

.prose a {
    color: var(--gold-deep);
    font-weight: 500;
    border-bottom: 1px solid var(--gold-soft);
    transition: all 0.3s var(--ease-out);
}

.prose a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.prose ul {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding: 0;
}

.prose ul li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.5rem;
}

.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.prose .impressum-block {
    background: var(--bg-soft);
    padding: 1.5rem 1.75rem;
    border-left: 2px solid var(--gold);
    margin: 1.25rem 0 1.5rem;
}

.prose .impressum-block p {
    margin-bottom: 0.4rem;
}

.prose .impressum-block p:last-child {
    margin-bottom: 0;
}

.prose .meta-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hairline);
    font-size: 0.825rem;
    color: var(--ink-soft);
}

/* ============================================
   SUBPAGE — Responsive
   ============================================ */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .subpage-hero { padding: 7rem 0 2.5rem; }
    .subpage-hero::before { margin-top: 4rem; }
    .subpage-content { padding: 1rem 0 4rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit { flex-direction: column; align-items: stretch; }
    .form-submit .btn { width: 100%; justify-content: center; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
}

@media (max-width: 900px) {
    .mobile-menu {
        display: block;
        visibility: hidden;
        pointer-events: none;
    }
    .mobile-menu.open {
        visibility: visible;
        pointer-events: auto;
    }
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 37, 61, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 88vw);
    background: var(--bg-base);
    box-shadow: -30px 0 80px -20px rgba(20, 37, 61, 0.35);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--hairline);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    border: 1px solid var(--hairline-mid);
    background: var(--bg-pure);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.mobile-menu-close svg {
    pointer-events: none;
}

.mobile-menu-close:hover {
    background: var(--ink-deep);
    color: var(--bg-pure);
    border-color: var(--ink-deep);
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
}

.mobile-menu-nav a {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink-deep);
    letter-spacing: -0.018em;
    padding: 0.85rem 1.75rem;
    border-bottom: 1px solid var(--hairline);
    transition: all 0.3s var(--ease-out);
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-menu-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus {
    color: var(--gold-deep);
    padding-left: 2.25rem;
    background: var(--bg-soft);
}

.mobile-menu-nav a:hover::before,
.mobile-menu-nav a:focus::before {
    width: 3px;
}

.mobile-menu-footer {
    padding: 1.75rem;
    border-top: 1px solid var(--hairline);
    background: var(--bg-soft);
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.mobile-menu-contact a {
    font-size: 0.875rem;
    color: var(--ink-soft);
    transition: color 0.3s var(--ease-out);
}

.mobile-menu-contact a:hover {
    color: var(--gold-deep);
}

body.mobile-menu-open {
    overflow: hidden;
}
