/* ============================================================================
   ROMANN MIETSERVICE — Design System
   Industriell · Robust · Vertrauen ·  Optimiert für Landtechnik-Vermietung
   ============================================================================ */

/* --- Design Tokens ------------------------------------------------------- */
:root {
    /* Brand */
    --brand: #DC1F2C;
    --brand-dark: #B81923;
    --brand-darker: #8E1219;
    --brand-tint: #FBE8EA;

    /* Ink */
    --ink: #0E1116;
    --ink-soft: #2A2F37;
    --ink-mute: #6B7280;
    --ink-faint: #9CA3AF;

    /* Surfaces */
    --cream: #FAF7F2;
    --paper: #FFFFFF;
    --paper-2: #F4F1EB;
    --border: #E6E2DA;
    --border-strong: #D0CBC0;

    /* Accents */
    --accent: #1F3A5F;
    --accent-2: #2C5282;

    /* Status */
    --success: #15803D;
    --success-bg: #DCFCE7;
    --warning: #B45309;
    --warning-bg: #FEF3C7;
    --danger: #B91C1C;
    --danger-bg: #FEE2E2;
    --info: #1F3A5F;
    --info-bg: #DBEAFE;

    /* Stars */
    --star: #F59E0B;

    /* Typography */
    --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

    /* Sizing */
    --container: 1280px;
    --container-narrow: 1080px;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 22px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
    --shadow-sm: 0 1px 3px rgba(14, 17, 22, 0.06), 0 1px 2px rgba(14, 17, 22, 0.04);
    --shadow-md: 0 4px 12px rgba(14, 17, 22, 0.06), 0 2px 4px rgba(14, 17, 22, 0.04);
    --shadow-lg: 0 12px 32px rgba(14, 17, 22, 0.08), 0 4px 8px rgba(14, 17, 22, 0.04);
    --shadow-brand: 0 8px 24px rgba(220, 31, 44, 0.18);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;

    /* Transitions */
    --t-fast: 120ms cubic-bezier(0.4, 0, 0.2, 1);
    --t: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 360ms cubic-bezier(0.4, 0, 0.2, 1);

    color-scheme: light;
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}
body {
    font-family: var(--font-body);
    color: var(--ink-soft);
    background: var(--cream);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: var(--brand); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-dark); }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; color: inherit; }

/* --- Typography ---------------------------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.1;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.02em; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--brand);
    display: inline-block;
}

/* --- Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
main { flex: 1; }
section { padding: var(--space-8) 0; }
@media (max-width: 768px) {
    section { padding: var(--space-7) 0; }
}

/* --- Header / Top Nav ---------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--ink);
}
.brand-mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.02em;
    line-height: 1;
}
.brand-subline {
    font-size: 0.6875rem;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
    line-height: 1.1;
    border-left: 2px solid var(--border);
    padding-left: 0.75rem;
    margin-left: 0;
}
.nav-primary {
    display: flex;
    gap: 0.25rem;
}
.nav-primary a {
    color: var(--ink-soft);
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background var(--t-fast), color var(--t-fast);
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
    background: var(--paper-2);
    color: var(--ink);
}
.nav-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.icon-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--ink-soft);
    transition: background var(--t-fast), color var(--t-fast);
    background: transparent;
    text-decoration: none;
}
.icon-btn:hover { background: var(--paper-2); color: var(--ink); }
.icon-btn svg { width: 20px; height: 20px; }

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.5rem 0.375rem 0.75rem;
    border-radius: var(--radius);
    background: var(--paper-2);
    color: var(--ink);
    font-weight: 500;
    font-size: 0.875rem;
    transition: background var(--t-fast);
}
.user-chip:hover { background: var(--border); color: var(--ink); }
.user-chip__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Mobile menu trigger */
.menu-toggle { display: none; }
@media (max-width: 880px) {
    .nav-primary {
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--paper);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: transform var(--t-slow);
        border-top: 1px solid var(--border);
        overflow-y: auto;
    }
    .nav-primary.is-open { transform: translateX(0); }
    .nav-primary a { padding: 0.875rem 1rem; font-size: 1rem; }
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius);
    }
    .menu-toggle:hover { background: var(--paper-2); }
    .brand-subline { display: none; }
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
    text-decoration: none;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--brand);
    color: white;
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.06) inset, 0 1px 2px rgba(0,0,0,0.06);
}
.btn-primary:hover { background: var(--brand-dark); color: white; box-shadow: var(--shadow-brand); }
.btn-secondary { background: var(--ink); color: white; }
.btn-secondary:hover { background: var(--ink-soft); color: white; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--paper-2); border-color: var(--ink-faint); }
.btn-link {
    background: transparent;
    color: var(--brand);
    padding: 0.25rem 0;
    border-radius: 0;
}
.btn-link:hover { color: var(--brand-dark); text-decoration: underline; }
.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 0.5rem 0.875rem; font-size: 0.8125rem; border-radius: var(--radius-sm); }
.btn[disabled], .btn.is-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* --- Forms --------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.01em;
}
.field-help { font-size: 0.75rem; color: var(--ink-mute); }
.field-error { font-size: 0.8125rem; color: var(--danger); display: flex; align-items: center; gap: 0.375rem; }
.input, .select, .textarea {
    background: var(--paper);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
    color: var(--ink);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    width: 100%;
    font-family: var(--font-body);
}
.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(220, 31, 44, 0.12);
}
.input::placeholder { color: var(--ink-faint); }
.select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.25rem;
}
.input-with-icon { position: relative; }
.input-with-icon .input { padding-left: 2.5rem; }
.input-with-icon__icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-mute);
    pointer-events: none;
    display: flex;
}
.input-with-icon__icon svg { width: 18px; height: 18px; }

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--ink-soft);
}
.checkbox input {
    accent-color: var(--brand);
    width: 18px;
    height: 18px;
    margin-top: 1px;
}
.toggle {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--border-strong);
    border-radius: 999px;
    transition: background var(--t-fast);
    cursor: pointer;
}
.toggle__slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    transition: transform var(--t-fast);
    box-shadow: var(--shadow-sm);
}
.toggle input:checked + .toggle__slider { background: var(--brand); }
.toggle input:checked + .toggle__slider::before { transform: translateX(18px); }

/* --- Cards / Product Card ------------------------------------------------ */
.card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    text-decoration: none;
    color: inherit;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
    color: inherit;
}
.product-card__media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--paper-2), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-card__media img,
.product-card__media svg {
    width: 88%;
    height: 88%;
    object-fit: contain;
    transition: transform var(--t-slow);
}
.product-card:hover .product-card__media img,
.product-card:hover .product-card__media svg { transform: scale(1.04); }

.product-card__body { padding: 1rem 1.125rem 1.125rem; display: flex; flex-direction: column; gap: 0.625rem; }
.product-card__title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.product-card__meta { font-size: 0.8125rem; color: var(--ink-mute); display: flex; flex-direction: column; gap: 0.25rem; }
.product-card__meta-line { display: inline-flex; align-items: center; gap: 0.375rem; }
.product-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.product-card__price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.product-card__price small { font-size: 0.75rem; color: var(--ink-mute); font-weight: 500; font-family: var(--font-body); }
.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: background var(--t-fast);
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
}
.product-card__cta:hover { background: var(--brand); color: white; }

/* --- Rating Stars -------------------------------------------------------- */
.rating { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.8125rem; color: var(--ink-soft); }
.rating__stars { display: inline-flex; gap: 1px; color: var(--star); }
.rating__count { color: var(--ink-mute); }
.star { width: 14px; height: 14px; }

/* --- Badges -------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-info { background: var(--info-bg); color: var(--info); }
.badge-neutral { background: var(--paper-2); color: var(--ink-soft); }

/* --- Category Pills ------------------------------------------------------ */
.category-pills {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    justify-content: center;
}
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--paper);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-weight: 500;
    color: var(--ink-soft);
    font-size: 0.9375rem;
    transition: all var(--t-fast);
    text-decoration: none;
}
.category-pill:hover { background: var(--ink); color: white; border-color: var(--ink); }
.category-pill[aria-current="page"] { background: var(--ink); color: white; border-color: var(--ink); }
.category-pill__icon { display: inline-flex; align-items: center; }
.category-pill__icon svg { width: 18px; height: 18px; }

/* --- Search Bar (Hero) --------------------------------------------------- */
.search-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    max-width: 880px;
    margin: 0 auto;
}
.search-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 0.625rem;
    align-items: end;
}
@media (max-width: 720px) {
    .search-grid { grid-template-columns: 1fr; }
}

/* --- Page Hero / Section Heads ------------------------------------------- */
.page-hero {
    text-align: center;
    padding: var(--space-9) 0 var(--space-6);
    position: relative;
    overflow: hidden;
}
.page-hero h1 { max-width: 18ch; margin: 0.5rem auto 0.75rem; }
.page-hero p { color: var(--ink-mute); max-width: 60ch; margin: 0 auto; }
.page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 30%, rgba(220, 31, 44, 0.06), transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(31, 58, 95, 0.05), transparent 40%);
    z-index: -1;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.section-head h2 { margin: 0; }
.section-head .all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
}
.section-head .all-link:hover { color: var(--brand); }

/* --- Product Grid -------------------------------------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

/* --- Product Detail ------------------------------------------------------ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: flex-start;
    padding-top: var(--space-6);
}
@media (max-width: 980px) {
    .product-detail { grid-template-columns: 1fr; gap: 2rem; }
}
.gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.gallery__main {
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, var(--paper-2), var(--cream));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery__main img,
.gallery__main svg { width: 80%; height: 80%; object-fit: contain; }
.gallery__thumbs { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.gallery__thumb {
    flex: 0 0 96px;
    aspect-ratio: 1 / 1;
    background: var(--paper-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--t-fast), transform var(--t-fast);
}
.gallery__thumb:hover { border-color: var(--brand); transform: translateY(-1px); }
.gallery__thumb[aria-current="true"] { border-color: var(--brand); border-width: 2px; }
.gallery__thumb img, .gallery__thumb svg { width: 76%; height: 76%; object-fit: contain; }

.product-info { display: flex; flex-direction: column; gap: 1rem; }
.product-info__brand { font-size: 0.875rem; color: var(--ink-mute); display: flex; gap: 0.625rem; align-items: center; }
.product-info h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0; }
.product-info__location {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--ink-soft);
    font-size: 0.9375rem;
}
.highlights { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; }
.highlights h3 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); font-weight: 700; margin-bottom: 0.875rem; font-family: var(--font-body); }
.highlights ul { display: flex; flex-direction: column; gap: 0.625rem; }
.highlights li { display: flex; align-items: baseline; gap: 0.75rem; font-size: 0.9375rem; }
.highlights li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-2px);
}

.booking-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.booking-card h3 { font-size: 1.0625rem; margin-bottom: 1rem; }
.booking-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; margin-bottom: 0.75rem; }
.booking-card__price-row { display: flex; align-items: baseline; justify-content: space-between; padding: 1rem 0; border-top: 1px solid var(--border); margin-top: 1rem; }
.booking-card__price { font-family: var(--font-display); font-size: 1.875rem; font-weight: 800; color: var(--ink); }
.booking-card__price small { font-size: 0.75rem; font-weight: 500; color: var(--ink-mute); display: block; margin-top: 2px; font-family: var(--font-body); }
.booking-card__flex-return {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.875rem 0; border-top: 1px solid var(--border); margin-top: 0.75rem;
    gap: 1rem;
}
.booking-card__flex-return-label strong { font-size: 0.9375rem; color: var(--ink); display: block; font-weight: 600; }
.booking-card__flex-return-label small { font-size: 0.75rem; color: var(--ink-mute); }

.trust-bar { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 1.25rem; }
.trust-item { display: inline-flex; gap: 0.625rem; align-items: center; color: var(--ink-soft); font-size: 0.875rem; }
.trust-item svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

/* --- Auth Pages ---------------------------------------------------------- */
.auth-wrap {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 64px);
    padding: 3rem 1.5rem;
    position: relative;
}
.auth-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(220,31,44,0.05), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(31,58,95,0.04), transparent 40%);
    pointer-events: none;
}
.auth-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.auth-card__head { text-align: center; margin-bottom: 1.75rem; }
.auth-card__head .brand-mark { font-size: 2rem; }
.auth-card__head h1 { font-size: 1.75rem; margin: 1.25rem 0 0.5rem; }
.auth-card__head p { color: var(--ink-mute); font-size: 0.9375rem; }
.auth-card form { display: flex; flex-direction: column; gap: 1rem; }
.auth-card__forgot { display: flex; justify-content: flex-end; margin-top: -0.25rem; }
.auth-card__forgot a { font-size: 0.8125rem; color: var(--brand); }
.auth-card__alt {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--ink-mute);
    font-size: 0.9375rem;
}

/* --- Stepper / Booking Progress ------------------------------------------ */
.stepper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 1rem;
    position: relative;
}
.stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
}
.stepper__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-mute);
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--t);
}
.stepper__step[data-state="active"] .stepper__dot { background: var(--brand); border-color: var(--brand); color: white; box-shadow: 0 0 0 4px rgba(220,31,44,0.18); }
.stepper__step[data-state="done"] .stepper__dot { background: var(--ink); border-color: var(--ink); color: white; }
.stepper__label {
    font-size: 0.75rem;
    color: var(--ink-mute);
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}
.stepper__step[data-state="active"] .stepper__label { color: var(--ink); font-weight: 600; }
.stepper__step[data-state="done"] .stepper__label { color: var(--ink); }
.stepper__line {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-strong);
    z-index: 1;
}
.stepper__progress {
    position: absolute;
    top: 14px;
    left: 0;
    height: 2px;
    background: var(--brand);
    z-index: 1;
    transition: width var(--t-slow);
}

/* --- Booking List Card --------------------------------------------------- */
.booking-list-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow var(--t);
}
.booking-list-card:hover { box-shadow: var(--shadow-sm); }
.booking-list-card__head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.booking-list-card__thumb {
    flex: 0 0 110px;
    aspect-ratio: 4/3;
    background: var(--paper-2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.booking-list-card__thumb img, .booking-list-card__thumb svg { width: 80%; height: 80%; object-fit: contain; }
.booking-list-card__title-block { flex: 1; }
.booking-list-card__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--ink); }
.booking-list-card__sub { color: var(--ink-mute); font-size: 0.875rem; }
.booking-list-card__number { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-faint); margin-top: 0.5rem; }
.booking-list-card__body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.booking-list-card__cell { display: flex; flex-direction: column; gap: 0.25rem; }
.booking-list-card__cell-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--ink-mute);
}
.booking-list-card__cell-value { font-size: 0.875rem; color: var(--ink); }
.booking-list-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; gap: 1rem; flex-wrap: wrap; }
.booking-list-card__total { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.booking-list-card__total small { display: block; font-size: 0.75rem; color: var(--ink-mute); font-weight: 500; font-family: var(--font-body); margin-top: 2px; }
.booking-list-card__actions { display: flex; gap: 0.625rem; }

/* --- Tabs ---------------------------------------------------------------- */
.tabs { display: flex; gap: 0.25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.tabs__tab {
    padding: 0.75rem 1rem;
    color: var(--ink-mute);
    font-weight: 500;
    font-size: 0.9375rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--t-fast), border-color var(--t-fast);
    text-decoration: none;
}
.tabs__tab:hover { color: var(--ink); }
.tabs__tab[aria-current="page"] {
    color: var(--brand);
    border-bottom-color: var(--brand);
    font-weight: 600;
}

/* --- Booking Review Layout ----------------------------------------------- */
.review-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    padding-top: var(--space-6);
}
@media (max-width: 960px) {
    .review-layout { grid-template-columns: 1fr; }
}
.review-summary {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}
.review-summary h3 { font-size: 1.0625rem; margin-bottom: 1.25rem; }
.review-summary__item { display: flex; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.review-summary__thumb {
    flex: 0 0 90px;
    aspect-ratio: 4/3;
    background: var(--paper-2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-summary__thumb img, .review-summary__thumb svg { width: 80%; height: 80%; object-fit: contain; }
.review-summary__name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.review-summary__sub { font-size: 0.8125rem; color: var(--ink-mute); margin-top: 2px; }
.review-summary__row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.875rem; color: var(--ink-soft); }
.review-summary__row.total {
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
}
.review-summary__small { font-size: 0.75rem; color: var(--ink-mute); }

.review-forms { display: flex; flex-direction: column; gap: 1.75rem; }
.review-section h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.review-section .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .review-section .grid-2 { grid-template-columns: 1fr; } }

.payment-options { display: flex; flex-direction: column; gap: 0.625rem; }
.payment-option {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    background: var(--paper);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color var(--t-fast), background var(--t-fast);
}
.payment-option:hover { border-color: var(--ink-faint); }
.payment-option input { accent-color: var(--brand); width: 18px; height: 18px; }
.payment-option__name { font-weight: 600; color: var(--ink); flex: 1; }
.payment-option__brands { display: inline-flex; gap: 0.375rem; opacity: 0.9; }
.payment-option__brand {
    background: white;
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ink);
}
.payment-option:has(input:checked) { border-color: var(--brand); background: var(--brand-tint); }

/* --- How it Works -------------------------------------------------------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.step-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: transform var(--t), box-shadow var(--t);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--brand-tint);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.step-card__icon svg { width: 28px; height: 28px; }
.step-card__num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink-faint);
}
.step-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.55; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}
.trust-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.trust-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--paper-2);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-card__icon svg { width: 22px; height: 22px; }
.trust-card h4 { font-size: 1rem; margin: 0; }
.trust-card p { font-size: 0.875rem; color: var(--ink-mute); }

/* --- Flash Messages ------------------------------------------------------ */
.flash-stack {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 380px;
}
.flash {
    padding: 0.875rem 1.125rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    background: white;
    border: 1px solid var(--border);
    animation: slideInRight 280ms cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
}
.flash-success { border-left: 4px solid var(--success); color: var(--success); }
.flash-error { border-left: 4px solid var(--danger); color: var(--danger); }
.flash-info { border-left: 4px solid var(--info); color: var(--info); }
@keyframes slideInRight { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* --- Empty State --------------------------------------------------------- */
.empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--paper);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    color: var(--ink-mute);
}
.empty h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--ink); }
.empty p { font-size: 0.9375rem; max-width: 40ch; margin: 0 auto 1.5rem; }

/* --- Page Header Bar (Back link) ----------------------------------------- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--ink-mute);
    font-weight: 500;
    margin-bottom: 1.25rem;
    transition: color var(--t-fast);
}
.back-link:hover { color: var(--ink); }
.back-link svg { width: 16px; height: 16px; }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: var(--space-7) 0 var(--space-5);
    margin-top: var(--space-8);
}
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--t-fast); }
.site-footer a:hover { color: white; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand-mark { color: white; }
.footer-brand p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; }
.footer-col h5 {
    font-family: var(--font-body);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9375rem; }
.footer-contact { font-size: 0.9375rem; line-height: 1.7; }
.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

/* --- Utility ------------------------------------------------------------- */
.text-mute { color: var(--ink-mute); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.5rem; } .mt-6 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-5 { margin-bottom: 1.5rem; } .mb-6 { margin-bottom: 2rem; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.full-width { width: 100%; }

/* --- Skip Link / A11y ---------------------------------------------------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 0.75rem 1rem;
    background: var(--ink);
    color: white;
    z-index: 1000;
    border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: white; }

/* --- Scroll Reveal — OPT-IN: hide nur wenn JS-Klasse js-reveal-ready am body */
.js-reveal-ready .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.js-reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Reduced-motion: gar nicht animieren */
@media (prefers-reduced-motion: reduce) {
    .js-reveal-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Subtle grain texture overlay (whole site, very subtle) -------------- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* --- Focus visible globally ---------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================================================
   TRUST & PEOPLE COMPONENTS — Lukas, Team, Testimonials, Stats
   ============================================================================ */

/* --- Stat Strip (Numbers) ---------------------------------------------- */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
}
.stat-block {
    background: var(--paper);
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.stat-block__num {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.025em;
}
.stat-block__num small {
    font-size: 0.6em;
    color: var(--brand);
    font-weight: 700;
    margin-left: 2px;
}
.stat-block__label {
    font-size: 0.8125rem;
    color: var(--ink-mute);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* --- Pull Quote / Lukas Statement -------------------------------------- */
.pullquote {
    position: relative;
    background: var(--paper);
    border-left: 4px solid var(--brand);
    padding: 2rem 2rem 2rem 2.5rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-sm);
    max-width: 720px;
    margin: 0 auto;
}
.pullquote__mark {
    position: absolute;
    top: -8px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--brand);
    line-height: 1;
    opacity: 0.3;
    font-weight: 800;
}
.pullquote__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
}
.pullquote__author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.pullquote__author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper-2);
    flex-shrink: 0;
    border: 2px solid var(--paper);
    box-shadow: var(--shadow-xs);
}
.pullquote__author-img img,
.pullquote__author-img svg { width: 100%; height: 100%; object-fit: cover; }
.pullquote__author-name { font-weight: 700; color: var(--ink); font-size: 0.9375rem; }
.pullquote__author-role { font-size: 0.8125rem; color: var(--ink-mute); }

/* --- Testimonials ----------------------------------------------------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.testimonial {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: var(--star); display: inline-flex; gap: 1px; }
.testimonial__text {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.6;
    flex: 1;
}
.testimonial__text::before {
    content: "„";
    font-family: var(--font-display);
    font-size: 1.5em;
    color: var(--brand);
    line-height: 0;
    vertical-align: -0.2em;
    margin-right: 2px;
    font-weight: 800;
}
.testimonial__text::after { content: "\201D"; color: var(--brand); }
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.testimonial__avatar[data-color="2"] { background: #2C5282; }
.testimonial__avatar[data-color="3"] { background: #15803D; }
.testimonial__avatar[data-color="4"] { background: #B45309; }
.testimonial__name { font-weight: 600; color: var(--ink); font-size: 0.875rem; }
.testimonial__meta { font-size: 0.75rem; color: var(--ink-mute); }
.testimonial__machine {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.6875rem;
    background: var(--paper-2);
    padding: 2px 8px;
    border-radius: 999px;
    color: var(--ink-soft);
}

/* --- Lukas-Card (homepage trust block) -------------------------------- */
.lukas-strip {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
    .lukas-strip { grid-template-columns: 1fr; }
}
.lukas-strip__media {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--brand-tint), var(--cream));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.lukas-strip__media img,
.lukas-strip__media svg { width: 100%; height: 100%; object-fit: cover; }
.lukas-strip__body { padding: 2rem; }
.lukas-strip__body h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}
.lukas-strip__body p {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.lukas-strip__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

/* --- Team Grid (Über uns) --------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.team-card {
    text-align: center;
}
.team-card__photo {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--paper-2);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-xs);
    transition: transform var(--t);
}
.team-card:hover .team-card__photo { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card__photo img, .team-card__photo svg { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
}
.team-card__role {
    font-size: 0.875rem;
    color: var(--ink-mute);
    margin-top: 2px;
}
.team-card__bio {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* --- Story Steps (Timeline) ------------------------------------------- */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    counter-reset: story;
}
.story-step {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    position: relative;
    counter-increment: story;
}
.story-step::before {
    content: counter(story, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    opacity: 0.2;
    line-height: 1;
}
.story-step h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}
.story-step p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* --- Big Hero (Über uns) ---------------------------------------------- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: var(--space-8) 0 var(--space-7);
    position: relative;
}
@media (max-width: 880px) {
    .about-hero { grid-template-columns: 1fr; gap: 2rem; }
}
.about-hero__media {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-tint), var(--cream));
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-hero__media img,
.about-hero__media svg { width: 100%; height: 100%; object-fit: cover; }
.about-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-xl);
}
.about-hero__signature {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: var(--ink);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    box-shadow: var(--shadow-md);
    transform: rotate(-2deg);
}
.about-hero__content h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1rem; }
.about-hero__content > p {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 60ch;
    margin-bottom: 1.5rem;
}
.about-hero__content .greeting {
    display: inline-block;
    color: var(--brand);
    font-weight: 700;
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

/* --- Values List ------------------------------------------------------ */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.value-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--t-fast);
}
.value-item:hover { border-color: var(--border-strong); }
.value-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-tint);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-item__icon svg { width: 24px; height: 24px; }
.value-item h4 { font-size: 1.0625rem; margin-bottom: 0.375rem; color: var(--ink); }
.value-item p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55; }

/* --- Wide Photo Block (Depot) ----------------------------------------- */
.photo-block {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--paper-2);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}
.photo-block img, .photo-block svg { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Mini Lukas Block (Sidebar / Product detail) ----------------------- */
.lukas-mini {
    background: linear-gradient(135deg, #FAF7F2 0%, #FBE8EA 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.25rem;
}
.lukas-mini__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper-2);
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: var(--shadow-xs);
}
.lukas-mini__photo svg, .lukas-mini__photo img { width: 100%; height: 100%; object-fit: cover; }
.lukas-mini h5 {
    font-size: 0.9375rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
    font-weight: 700;
}
.lukas-mini p { font-size: 0.8125rem; color: var(--ink-soft); line-height: 1.45; margin-bottom: 0.625rem; }
.lukas-mini__actions { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.lukas-mini__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.625rem;
    background: white;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink);
    transition: all var(--t-fast);
    text-decoration: none;
}
.lukas-mini__btn:hover { background: var(--ink); color: white; border-color: var(--ink); }
.lukas-mini__btn svg { width: 14px; height: 14px; }

/* --- Trust Badges Row ------------------------------------------------- */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.trust-badge svg { width: 18px; height: 18px; color: var(--success); }

/* --- Hand-written-like note ------------------------------------------- */
.handnote {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    color: var(--ink);
    font-size: 1.125rem;
    transform: rotate(-1deg);
    display: inline-block;
}

/* --- Bottom CTA block ------------------------------------------------- */
.bottom-cta {
    background: var(--ink);
    color: white;
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    margin: 3rem 0 0;
}
.bottom-cta h2 { color: white; margin-bottom: 0.75rem; }
.bottom-cta p { color: rgba(255,255,255,0.75); max-width: 60ch; margin: 0 auto 1.5rem; }
.bottom-cta .btn-primary:hover { background: white; color: var(--ink); }

/* --- Footer Personal Card --------------------------------------------- */
.footer-personal {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2.5rem;
}
.footer-personal__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-tint);
    border: 2px solid rgba(255,255,255,0.2);
}
.footer-personal__photo img,
.footer-personal__photo svg { width: 100%; height: 100%; object-fit: cover; }
.footer-personal__text { line-height: 1.5; }
.footer-personal__text strong {
    color: white;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    display: block;
    margin-bottom: 2px;
}
.footer-personal__text span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
}
.footer-personal__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer-personal__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background var(--t-fast);
}
.footer-personal__btn:hover { background: rgba(255,255,255,0.2); color: white; }
.footer-personal__btn svg { stroke: white; }
.footer-personal__btn--primary { background: var(--brand); }
.footer-personal__btn--primary:hover { background: var(--brand-dark); color: white; }
@media (max-width: 720px) {
    .footer-personal { grid-template-columns: 64px 1fr; }
    .footer-personal__actions { grid-column: 1 / -1; }
}

/* ============================================================================
   V2 — EDITORIAL TRUST DESIGN (komplett neu, ersetzt v1)
   ============================================================================ */

/* --- Hero-Lukas-Section (asymmetrisch, foto-dominant) ------------------ */
.lukas-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(3rem, 7vw, 5rem) 0;
}
@media (max-width: 880px) {
    .lukas-feature { grid-template-columns: 1fr; gap: 2rem; }
}
.lukas-feature__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    background: var(--brand-tint);
    box-shadow: 0 30px 60px -20px rgba(14, 17, 22, 0.25), 0 8px 16px rgba(14, 17, 22, 0.06);
}
.lukas-feature__media picture,
.lukas-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lukas-feature__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 18px;
    pointer-events: none;
}
.lukas-feature__tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(14, 17, 22, 0.92);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}
.lukas-feature__tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #48E68B;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(72, 230, 139, 0.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(72, 230, 139, 0.2); }
    50%     { box-shadow: 0 0 0 8px rgba(72, 230, 139, 0); }
}
.lukas-feature__tag-text {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}
.lukas-feature__tag-text small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-top: 1px;
}

.lukas-feature__body { max-width: 540px; }
.lukas-feature__body .eyebrow { margin-bottom: 1rem; }
.lukas-feature__body h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.lukas-feature__body .lead {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}
.lukas-feature__body .lead strong { color: var(--ink); font-weight: 700; }

/* Inline-Stat-Line (3 Zahlen in einem Strich, NICHT als Card-Grid) */
.stat-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0 clamp(1.5rem, 3vw, 2.5rem);
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-line__item { line-height: 1.2; }
.stat-line__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-line__num small {
    font-size: 0.5em;
    color: var(--brand);
    font-weight: 700;
    margin-left: 3px;
    vertical-align: 0.15em;
}
.stat-line__label {
    font-size: 0.8125rem;
    color: var(--ink-mute);
    margin-top: 6px;
    font-weight: 500;
}

.lukas-feature__actions { display: flex; gap: 0.625rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* Signature Quote-Block (handgeschrieben-feeling) */
.lukas-feature__signature {
    margin-top: 2rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--brand);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--ink);
    line-height: 1.45;
    max-width: 38ch;
}
.lukas-feature__signature::before {
    content: "„";
    color: var(--brand);
    font-weight: 800;
    margin-right: 2px;
}
.lukas-feature__signature::after { content: "\201D"; color: var(--brand); }

/* --- Featured Testimonial (1 Big + 2 Side) -------------------------- */
.featured-testimonial {
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}
.featured-testimonial::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 12rem;
    color: var(--brand);
    opacity: 0.12;
    line-height: 0.7;
    font-weight: 800;
    pointer-events: none;
}
.featured-testimonial__main { position: relative; z-index: 1; }
.featured-testimonial__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.35;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-bottom: 2rem;
    position: relative;
}
.featured-testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.featured-testimonial__author-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ink);
}
.featured-testimonial__author-meta { font-size: 0.875rem; color: var(--ink-mute); }
.featured-testimonial__tag {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.75rem;
    background: white;
    border: 1px solid var(--border-strong);
    padding: 3px 10px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 600;
}

/* Side-Mini Testimonials */
.mini-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.mini-test {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.375rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: transform var(--t), box-shadow var(--t);
}
.mini-test:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mini-test__quote {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.55;
    flex: 1;
}
.mini-test__quote::before { content: "„"; color: var(--brand); font-weight: 800; }
.mini-test__quote::after { content: "\201D"; color: var(--brand); }
.mini-test__foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
    padding-top: 0.875rem;
}
.mini-test__name { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.mini-test__name span { display:block; font-weight: 400; color: var(--ink-mute); font-size: 0.75rem; margin-top: 2px; }
.mini-test__stars { color: var(--star); display: inline-flex; gap: 1px; }

/* --- Versprechen (Promises) - magazin Liste mit grossen Nummern ---- */
.promises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    background: var(--paper);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.promise {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--border);
    position: relative;
}
.promise:last-child { border-right: 0; }
@media (max-width: 700px) {
    .promise { border-right: 0; border-bottom: 1px solid var(--border); }
    .promise:last-child { border-bottom: 0; }
}
.promise__num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.promise__num::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--brand);
    vertical-align: middle;
    margin-right: 8px;
}
.promise h4 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: var(--ink);
    line-height: 1.25;
}
.promise p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.5; }

/* --- Lukas Mini-Avatar (verwendet in mini-test, footer, produkt) --- */
.lukas-avatar-real {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-tint);
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(14,17,22,0.1);
}
.lukas-avatar-real picture,
.lukas-avatar-real img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lukas-avatar-real--lg { width: 64px; height: 64px; }
.lukas-avatar-real--xl { width: 96px; height: 96px; }

/* --- About-Hero v2 — Foto füllt halben Screen ---------------------- */
.about-hero-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem) 0;
}
@media (max-width: 920px) {
    .about-hero-v2 { grid-template-columns: 1fr; gap: 2rem; }
}
.about-hero-v2__media {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(14, 17, 22, 0.4);
    background: var(--brand-tint);
}
.about-hero-v2__media picture, .about-hero-v2__media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-hero-v2__media::before {
    content: "";
    position: absolute;
    top: -8%;
    right: -8%;
    width: 50%;
    height: 50%;
    background: var(--brand);
    border-radius: 24px;
    z-index: -1;
    transform: rotate(4deg);
    opacity: 0.08;
}
.about-hero-v2__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
}
.about-hero-v2__badge small { display: block; font-size: 0.6875rem; color: var(--ink-mute); font-weight: 500; margin-top: 2px; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; }

.about-hero-v2__body { max-width: 560px; }
.about-hero-v2__body .greeting {
    display: inline-block;
    background: var(--brand);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.about-hero-v2__body h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.about-hero-v2__body .lead {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

/* --- Long-form Story --------------------------------------------- */
.story-block {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) 0;
}
.story-block h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}
.story-block p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}
.story-block p strong { color: var(--ink); }
.story-block p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 4em;
    font-weight: 800;
    line-height: 0.85;
    color: var(--brand);
    float: left;
    margin-right: 12px;
    margin-top: 4px;
    margin-bottom: -4px;
}
.story-block .pullout {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 4px solid var(--brand);
    margin: 2rem 0;
    letter-spacing: -0.015em;
}

/* --- Team-Card v2 (mit oder ohne Foto) ---------------------------- */
.team-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.team-card-v2 {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}
.team-card-v2:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card-v2__photo {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--paper-2), var(--brand-tint));
    overflow: hidden;
}
.team-card-v2__photo picture, .team-card-v2__photo img,
.team-card-v2__photo svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card-v2__body { padding: 1.125rem 1.25rem 1.5rem; }
.team-card-v2__name { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); }
.team-card-v2__role { font-size: 0.8125rem; color: var(--brand); font-weight: 600; margin-top: 2px; }
.team-card-v2__bio { font-size: 0.875rem; color: var(--ink-soft); margin-top: 0.625rem; line-height: 1.5; }

/* --- Section-Heading Editorial Style ------------------------------ */
.section-heading {
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
    max-width: 720px;
}
.section-heading h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-top: 0.625rem;
}
.section-heading p {
    color: var(--ink-mute);
    font-size: 1.0625rem;
    margin-top: 0.625rem;
    max-width: 60ch;
}

/* --- Company-Card (Romann Landtechnik kompakt, kleines rundes Avatar) --- */
.company-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-sm);
}
.company-card__head {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.company-card__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--brand-tint);
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(14, 17, 22, 0.12);
}
.company-card__avatar picture,
.company-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.company-card__head-text { flex: 1; }
.company-card__head-text .eyebrow { margin-bottom: 0.375rem; }
.company-card__head-text h2,
.company-card__head-text h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.company-card__lead {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}
.company-card__lead strong { color: var(--ink); font-weight: 700; }
.company-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.company-card__signoff {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 0.9375rem;
}
@media (max-width: 600px) {
    .company-card__head { flex-direction: column; align-items: flex-start; text-align: left; gap: 1rem; }
    .company-card__avatar { width: 72px; height: 72px; }
}
