/* =====================================================
   HERO – Premium Full-Bleed · ByKine Vision
   ===================================================== */

.hero {
    height: calc(100vh - var(--header-height));
    min-height: 580px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0a0a;
}

/* ── Hintergrundbild: hero.png scharf & dunkel ── */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

/* ── Links dunkel (Text lesbar), rechts offen (Bild sichtbar) ── */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(8, 8, 8, 0.92) 0%,
            rgba(8, 8, 8, 0.75) 40%,
            rgba(8, 8, 8, 0.25) 70%,
            rgba(8, 8, 8, 0.10) 100%
        ),
        linear-gradient(to top,
            rgba(8, 8, 8, 0.7) 0%,
            transparent 35%
        );
}

/* ── Goldene Linie oben ── */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    z-index: 10;
}

/* ── Hauptinhalt ── */
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* ── Eyebrow ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.6rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    flex-shrink: 0;
}

.hero-eyebrow::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

/* ── Headline ── */
.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content h1 .gold {
    display: block;
    font-weight: 300;
    font-size: 0.85em;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.1em;
}

/* ── Subtext ── */
.hero-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 420px;
    margin-bottom: 1.6rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* ── Buttons ── */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Stat Strip ── */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 2.5rem;
}
.hero-stat-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 0.15rem;
}
.hero-stat-number span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Collage (rechts) ── */
.hero-collage {
    display: flex;
    gap: 0.75rem;
    height: 360px;
    align-items: stretch;
}

.collage-item {
    flex: 1;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    /* Glassmorphism border */
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 24px 64px rgba(0, 0, 0, 0.4);
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
}

/* Dunkler Gradient von unten */
.collage-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    z-index: 1;
    transition: background 0.4s;
}

/* Goldener Schimmer-Overlay beim Hover */
.collage-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.12) 0%,
        transparent 60%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
}

.collage-item:hover {
    flex: 2.5;
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.3),
        0 32px 80px rgba(0, 0, 0, 0.5);
}

.collage-item:hover::after { opacity: 1; }

/* Label */
.collage-content {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    z-index: 3;
}

.collage-content span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.collage-item:hover .collage-content span {
    color: var(--gold-light);
}

/* Dünne Goldlinie links am aktiven Panel */
.collage-item:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
}

/* ── Goldene Bodenleiste mit den 3 Sektionen ── */
.hero-pillars-bar {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
}

.hero-pillar-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}
.hero-pillar-tab:last-child { border-right: none; }

.hero-pillar-tab:hover {
    background: rgba(201, 168, 76, 0.06);
}

.hero-pillar-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    transition: opacity 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.hero-pillar-tab:hover .hero-pillar-number { opacity: 1; }

.hero-pillar-info {}
.hero-pillar-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.01em;
    margin-bottom: 0.05rem;
    display: block;
}
.hero-pillar-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    letter-spacing: 0.05em;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 820px) {
    .hero { height: 100dvh; min-height: 580px; flex-direction: column; }
    .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { max-width: 100%; font-size: 0.92rem; }
    .hero-collage { height: 200px; }
    .collage-item { border-radius: 14px; }
    .collage-content span { font-size: 0.88rem; }
    .hero-stats { gap: 0; flex-wrap: wrap; }
    .hero-stat-item { min-width: 50%; padding: 0.5rem 1rem 0.5rem 0; border-right: none; margin-right: 0; }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-pillars-bar { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-collage { height: 160px; gap: 0.5rem; }
    .hero-stat-item { min-width: 100%; }
}

    display: block;
    transition: var(--transition);
}

.collage-item:hover {
    flex: 2.2;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.12);
}

.collage-item:hover .collage-content span {
    color: var(--gold-light);
    transform: translateX(4px);
}

/* ===== TRUST STRIP ===== */
.trust {
    padding: 0;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.trust-item {
    padding: 3rem 2.5rem;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    transition: background 0.3s;
    cursor: default;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: #fffcf5; }

.trust-item .icon-container {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--gold-alpha-8);
    color: var(--gold-dark);
    transition: var(--transition);
}
.trust-item:hover .icon-container {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    box-shadow: 0 8px 24px var(--gold-alpha-25);
    transform: scale(1.08);
}
.trust-item svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }

.trust-item h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}
.trust-item p { color: var(--text-muted); font-size: 0.88rem; font-weight: 400; }

/* ===== BUSINESS SECTION ===== */
.business {
    padding: 7rem 0 8rem;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(201,168,76,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.business > .container { position: relative; z-index: 1; }

.business-column-layout {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 1rem;
}

.business-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.business-section.reverse { direction: rtl; }
.business-section.reverse > * { direction: ltr; }

/* Text side */
.business-text-box {}

.business-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-alpha-8);
    border: 1px solid var(--gold-alpha-25);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.1rem;
}

.business-text-box h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.business-text-box p {
    font-size: 0.97rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.business-pill-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.2rem 0 1.6rem;
}

.business-pill {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-body);
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all 0.25s;
}
.business-pill:hover { border-color: var(--gold-alpha-40); color: var(--gold-dark); background: var(--gold-alpha-8); }

/* Visual box */
.business-visual-box {
    border-radius: var(--radius-xl);
    min-height: 420px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: visible;
    box-shadow: 0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.business-visual-box:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 48px 100px rgba(0,0,0,0.18), 0 12px 32px rgba(0,0,0,0.1);
}

.real-estate-visual { background-image: url('../images/pillar_real_estate.png'); }
.hotels-visual      { background-image: url('../images/pillar_hotels.png'); }
.vehicles-visual    { background-image: url('../images/pillar_vehicles.png'); }

/* Overlay gradient on image */
.business-visual-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.08) 0%,
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
}

/* Booking card – glass float */
.booking-card {
    background: var(--glass-white);
    backdrop-filter: blur(28px) saturate(1.8);
    -webkit-backdrop-filter: blur(28px) saturate(1.8);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
    padding: 1.8rem;
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 320px;
    max-width: 90%;
    z-index: 10;
    transition: var(--transition);
}

.business-section:not(.reverse) .booking-card {
    left: -2rem;
    right: auto;
}

.business-visual-box:hover .booking-card {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.16), 0 6px 16px rgba(0,0,0,0.08);
}

.booking-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.booking-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

.booking-links { display: flex; flex-direction: column; gap: 0.5rem; }

.booking-btn {
    display: block;
    text-align: center;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.25s var(--ease);
    border: 1px solid transparent;
}
.booking-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--gold-alpha-25);
    color: white;
}

.booking-btn.secondary-booking-btn {
    background: transparent;
    color: var(--text-body);
    border: 1px solid rgba(0,0,0,0.15);
}
.booking-btn.secondary-booking-btn:hover {
    background: var(--gold-alpha-8);
    border-color: var(--gold-alpha-40);
    color: var(--gold-dark);
}

/* Pills in booking card */
.booking-card .business-pill-box { margin: 0.5rem 0 1rem; gap: 0.35rem; }
.booking-card .business-pill { font-size: 0.72rem; padding: 0.22rem 0.6rem; box-shadow: none; }

/* ===== FOUNDER SECTION ===== */
.founder {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image {
    border-radius: var(--radius-xl);
    height: 540px;
    background: url('../images/awa-ahmadi.png') no-repeat center 15% / cover;
    box-shadow: 0 40px 100px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
    position: relative;
    transition: var(--transition);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.15) 0%,
        transparent 40%
    );
    pointer-events: none;
}

.founder-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 56px 120px rgba(0,0,0,0.18), 0 12px 32px rgba(0,0,0,0.1);
}

.founder-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-alpha-8);
    border: 1px solid var(--gold-alpha-25);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.2rem;
}

.founder-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.4rem;
}
.founder-content h2 .gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

.founder-content p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.founder-content .signature {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1rem;
    margin-bottom: 1.6rem;
}

/* Gründer Detail Grid */
.founder-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0 2rem;
}
.founder-detail {
    padding: 0.85rem 1.1rem;
    background: #f8f6f2;
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.fd-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.fd-value {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
.fd-value a {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}
.fd-value a:hover { color: var(--gold); }
@media (max-width: 540px) {
    .founder-detail-grid { grid-template-columns: 1fr; }
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
    padding: 8rem 0;
    background: var(--off-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.philosophy .quote-mark {
    font-family: var(--font-heading);
    font-size: 9rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: -3rem;
    user-select: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
}

.philosophy blockquote {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.philosophy .quote-author {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 0.18em;
    display: inline-block;
    position: relative;
}
.philosophy .quote-author::before,
.philosophy .quote-author::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold-alpha-40);
}
.philosophy .quote-author::before { right: 100%; margin-right: 12px; }
.philosophy .quote-author::after  { left: 100%;  margin-left: 12px;  }


/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid { gap: 3rem; }
    .hero-content h1 { font-size: 3.2rem; }

    .business-section { grid-template-columns: 1fr; gap: 3rem; }
    .business-section.reverse { direction: ltr; }
    .business-text-box { text-align: center; align-items: center; display: flex; flex-direction: column; }
    .business-visual-box { min-height: 340px; }

    .booking-card,
    .business-section:not(.reverse) .booking-card {
        position: relative;
        bottom: auto; right: auto; left: auto;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg);
        margin-top: -1.5rem;
    }

    .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
    .founder-image { height: 400px; }
    .founder-content { text-align: center; }
    .founder-content .signature { display: block; }
}

/* Mobile */
@media (max-width: 820px) {
    /* Hero */
    .hero { height: 100dvh; min-height: 580px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; padding: 4.5rem 0 3.5rem; }
    .hero-content { display: contents; }
    .hero-eyebrow { display: none; }
    .hero-content h1 { font-size: 2.6rem; order: 1; }
    .hero-content p { margin-inline: auto; order: 2; font-size: 0.97rem; }
    .hero-actions { justify-content: center; order: 4; }
    .hero-stats { justify-content: center; order: 5; gap: 2rem; flex-wrap: wrap; }
    .hero-collage { order: 3; height: auto; gap: 0.7rem; }
    .collage-item { height: 180px; border-radius: var(--radius-lg); }
    .collage-item:hover { flex: 1.6; }

    /* Trust */
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: row; align-items: center; gap: 1.2rem; text-align: left; padding: 1.8rem 1.5rem; }
    .trust-item:last-child { border-bottom: none; }
    .trust-item .icon-container { min-width: 56px; margin: 0; }

    /* Business */
    .business { padding: 4rem 0 5rem; }
    .business-column-layout { gap: 4rem; }
    .business-section { grid-template-columns: 1fr; gap: 0; }
    .business-section.reverse { direction: ltr; }
    .business-text-box { text-align: center; display: flex; flex-direction: column; align-items: center; padding-bottom: 2rem; }
    .business-text-box h3 { font-size: 1.7rem; }
    .business-visual-box { min-height: 280px; border-radius: var(--radius-lg); }
    .booking-card,
    .business-section:not(.reverse) .booking-card {
        position: relative;
        bottom: auto; right: auto; left: auto;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg);
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    /* Founder */
    .founder { padding: 4rem 0; }
    .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .founder-image { height: 340px; background-position: center 20%; }
    .founder-content { text-align: center; }
    .founder-content h2 { font-size: 2rem; }
    .founder-content p { font-size: 0.92rem; max-width: 480px; margin-inline: auto; }

    /* Philosophy */
    .philosophy { padding: 4.5rem 0; }
    .philosophy blockquote { font-size: 1.2rem; line-height: 1.6; }
    .philosophy .quote-mark { font-size: 6rem; margin-bottom: -2rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-grid { padding: 3.5rem 0 2.5rem; }
    .hero-content h1 { font-size: 2.1rem; }
    .hero-content p { font-size: 0.92rem; }
    .collage-item { height: 150px; }
    .collage-item:hover { flex: 1; }

    .business { padding: 3rem 0 4rem; }
    .business-text-box h3 { font-size: 1.4rem; }
    .business-visual-box { min-height: 240px; }

    .founder { padding: 3rem 0; }
    .founder-image { height: 280px; }
    .founder-content h2 { font-size: 1.7rem; }

    .philosophy { padding: 3rem 0; }
    .philosophy blockquote { font-size: 1.05rem; }
    .philosophy .quote-mark { font-size: 4.5rem; margin-bottom: -1.5rem; }
    .philosophy-inner { padding: 0 1rem; }
}


/* =====================================================
   FOUNDATION SECTION
   ===================================================== */

.foundation {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.foundation::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(201,168,76,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(201,168,76,0.05) 0%, transparent 45%);
    pointer-events: none;
}

.foundation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.foundation-text {}
.foundation-text h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: white;
    margin-bottom: 1.2rem;
}
.foundation-text h2 .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}
.foundation-text p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.58);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.foundation-values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.foundation-value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
}
.foundation-value:hover {
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.2);
    transform: translateX(4px);
}
.fv-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(201,168,76,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
    transition: var(--transition);
}
.foundation-value:hover .fv-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
}
.foundation-value strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.15rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}
.foundation-value span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}

/* Right visual */
.foundation-visual {}
.foundation-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.foundation-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}
.foundation-quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    border-left: 3px solid var(--gold);
    padding-left: 1.2rem;
}
.foundation-card cite {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-style: normal;
}

.foundation-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.foundation-stat {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}
.foundation-stat:last-child { border-right: none; }
.foundation-stat:hover { background: rgba(201,168,76,0.06); }

.foundation-stat-num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.25rem;
}
.foundation-stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    display: block;
}

/* Foundation Responsive */
@media (max-width: 820px) {
    .foundation { padding: 4rem 0; }
    .foundation-grid { grid-template-columns: 1fr; gap: 3rem; }
    .foundation-text h2 { font-size: 1.9rem; }
}
@media (max-width: 480px) {
    .foundation-text h2 { font-size: 1.6rem; }
    .foundation-card { padding: 1.5rem; }
}


/* =====================================================
   DEAL SECTION (WIR SUCHEN / BIETEN)
   ===================================================== */

.deal-section {
    padding: 7rem 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.deal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 55%);
    pointer-events: none;
}

.deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.deal-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    transition: all 0.35s var(--ease);
    position: relative;
}
.deal-card:hover {
    box-shadow: 0 28px 70px rgba(0,0,0,0.09);
    transform: translateY(-5px);
    border-color: var(--gold-alpha-40);
}

.deal-card--bieten {
    background: linear-gradient(145deg, #11100e 0%, #1a1712 100%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.deal-card--bieten:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(201, 168, 76, 0.2);
}

.deal-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.deal-card--bieten .deal-card-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.deal-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deal-card-header.suchen .deal-card-icon {
    background: var(--gold-alpha-8);
    color: var(--gold-dark);
    border: 1px solid var(--gold-alpha-25);
}

.deal-card-header.bieten .deal-card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    box-shadow: 0 4px 16px var(--gold-alpha-25);
}

.deal-card-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.deal-card--bieten .deal-card-eyebrow {
    color: var(--gold-light);
}

.deal-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    line-height: 1;
}
.deal-card--bieten .deal-card-header h3 {
    color: white;
}

.deal-badge-pill {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(0,0,0,0.05);
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.08);
    white-space: nowrap;
}
.deal-badge-pill--gold {
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
    border-color: rgba(201,168,76,0.35);
}

.deal-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1;
}

.deal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
    background: var(--off-white);
    transition: all 0.25s var(--ease);
}
.deal-card--bieten .deal-item {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.deal-item:hover {
    background: white;
    border-color: var(--gold-alpha-40);
    box-shadow: 0 4px 16px rgba(201,168,76,0.1);
}
.deal-card--bieten .deal-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.4);
}

.deal-icon-box {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(201,168,76,0.1);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.deal-card--bieten .deal-icon-box {
    background: rgba(201,168,76,0.18);
    color: var(--gold-light);
}

.deal-item-content strong {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    margin-bottom: 0.2rem;
}
.deal-card--bieten .deal-item-content strong {
    color: white;
}

.deal-item-content span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}
.deal-card--bieten .deal-item-content span {
    color: rgba(255,255,255,0.65);
}

.deal-action-btn {
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
}

/* Deal Responsive */
@media (max-width: 820px) {
    .deal-section { padding: 4rem 0; }
    .deal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .deal-card { padding: 1.6rem; }
    .deal-card-header h3 { font-size: 1.4rem; }
}

/* =============================================
   IMMOBILIEN TEASER (Startseite)
   ============================================= */
.immo-teaser-section {
    padding: 6rem 0;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}
.immo-teaser-section .container {
    position: relative;
    z-index: 1;
}
.immo-teaser-section .section-eyebrow {
    color: var(--gold-dark);
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.3);
}
.immo-teaser-section .section-subtitle {
    color: var(--text-muted);
}

/* Prop-Grid auf Startseite: prop-card CSS kommt aus immobilien.css,
   das auf index.html ebenfalls geladen wird via <link rel="stylesheet" href="style/immobilien.css">
   Falls nicht vorhanden: Mini-Grid hier definieren */
.immo-teaser-section .prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .immo-teaser-section .prop-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 580px) {
    .immo-teaser-section .prop-grid {
        grid-template-columns: 1fr;
    }
    .immo-teaser-section { padding: 4rem 0; }
}
