/* =========================================================================
   ZypernScout — Social-Landingpage
   style.css

   Eigenständige, schlanke Landingpage im visuellen Stil des Nordzypern-
   Kompasses. Bewusst OHNE Fragen-, Step-, Score- oder Ergebnislogik.

   Aufbau:
   1.  Design-Tokens (aus dem Kompass übernommen)
   2.  Reset & Grundlagen
   3.  Layout-Hülle & Abschnittsrhythmus
   4.  Wiederkehrende Elemente (Eyebrow, Gold-Haarlinie, Buttons, Karten)
   5.  Kopfzeile (Logo)
   6.  Hero
   7.  Vertrauens-USPs
   8.  Kontakt-Formular (dunkles Petrol-Band)
   9.  „Warum ZypernScout?"
   10. Impressionen
   11. Fußzeile
   12. Sticky-CTA (nur Mobile)
   13. Responsiv (Tablet / Desktop)
   14. Barrierefreiheit
   ========================================================================= */


/* =========================================================================
   1. DESIGN-TOKENS  — identisch zum Kompass, damit die Seite als Geschwister
      wirkt: Sand, Creme, Tiefblau/Petrol, Oliv, dezentes Gold.
   ========================================================================= */
:root {
    --ink:        #12303C;
    --ink-2:      #1C4A5A;
    --ink-soft:   #496670;
    --cream:      #F7F2E8;
    --cream-2:    #FCF9F2;
    --sand:       #E8DABF;
    --sand-deep:  #DAC8A2;
    --olive:      #5E6B47;
    --olive-2:    #76845C;
    --gold:       #BE9C54;
    --gold-soft:  #DBC18A;
    --white:      #FFFFFF;

    --line:       rgba(18, 48, 60, .12);
    --line-soft:  rgba(18, 48, 60, .07);

    /* DSGVO-freundlich: keine externen Schriften, nur Systemstacks. */
    --serif: "Hoefler Text", "Iowan Old Style", "Palatino Linotype",
             Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
    --sans:  "Avenir Next", "Segoe UI", system-ui, -apple-system,
             "Helvetica Neue", Arial, sans-serif;

    --shadow-sm:   0 2px 8px rgba(18, 48, 60, .06);
    --shadow-md:   0 10px 30px rgba(18, 48, 60, .10);
    --shadow-lg:   0 24px 60px rgba(18, 48, 60, .16);
    --shadow-gold: 0 14px 34px rgba(190, 156, 84, .26);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --maxw: 1120px;
    --gut:  clamp(20px, 5vw, 56px);

    --ease: cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================================
   2. RESET & GRUNDLAGEN
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-image:
        radial-gradient(120% 80% at 80% -10%, #FBF6EC 0%, rgba(251,246,236,0) 55%),
        radial-gradient(90% 70% at 0% 0%, #F2EAD8 0%, rgba(242,234,216,0) 60%);
    background-attachment: fixed;
}

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

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
a { color: var(--ink-2); }
button { font-family: inherit; cursor: pointer; }


/* =========================================================================
   3. LAYOUT-HÜLLE & ABSCHNITTSRHYTHMUS
   ========================================================================= */
.shell {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--gut);
}

/* Einheitlicher vertikaler Rhythmus je Abschnitt */
.section { padding-block: clamp(56px, 9vw, 104px); }


/* =========================================================================
   4. WIEDERKEHRENDE ELEMENTE
   ========================================================================= */

/* Eyebrow – kleine, ruhige Auszeichnungszeile mit Gold-Strich */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    font-family: var(--sans);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--olive);
    margin: 0 0 1.1rem;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 1px;
    background: var(--gold);
}
.eyebrow--gold { color: var(--gold-soft); }
.eyebrow--gold::before { background: var(--gold-soft); }

/* Signatur-Element: feine Gold-Haarlinie mit Raute in der Mitte.
   Ein zurückhaltender Kartografie-/Horizont-Verweis – Orientierung nach
   Nordzypern, ohne das Kompass-Quiz zu wiederholen. */
.hairline {
    display: flex; align-items: center; gap: .85rem;
    margin: 0 0 1.4rem;
}
.hairline::before, .hairline::after {
    content: ""; height: 1px; flex: 1 1 auto;
}
.hairline::before { background: linear-gradient(90deg, transparent, rgba(190,156,84,.55)); }
.hairline::after  { background: linear-gradient(90deg, rgba(190,156,84,.55), transparent); }
.hairline i {
    width: 8px; height: 8px; flex: none;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}
.hairline--start { justify-content: flex-start; }
.hairline--start::before { display: none; }
.hairline--start::after { max-width: 140px; }

/* Buttons (aus dem Kompass) */
.btn {
    --bg: var(--ink);
    --fg: var(--cream-2);
    appearance: none;
    border: 0;
    background: var(--bg);
    color: var(--fg);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 1.05rem 2.1rem;
    border-radius: 100px;
    box-shadow: var(--shadow-md);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease),
                background .25s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65em;
    text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn--gold  { --bg: linear-gradient(135deg, var(--gold) 0%, #A9883F 100%);
              --fg: #fff; box-shadow: var(--shadow-gold); }
.btn--full  { width: 100%; }
.btn--ghost { --bg: transparent; --fg: var(--ink);
              border: 1px solid var(--line); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.6); box-shadow: var(--shadow-sm); }

.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn.is-loading { opacity: .75; cursor: progress; }

/* Vertrauenspunkte mit Gold-Punkt (aus dem Kompass) */
.trustline {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.5rem;
    list-style: none;
    padding: 0;
    font-size: .94rem;
    color: var(--ink);
    font-weight: 500;
}
.trustline li { display: inline-flex; align-items: center; gap: .55em; }
.trustline li::before {
    content: "";
    width: 7px; height: 7px; border-radius: 50%; flex: none;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(190,156,84,.16);
}


/* =========================================================================
   5. KOPFZEILE
   ========================================================================= */
.topbar {
    position: relative; z-index: 3;
    display: flex; align-items: center; justify-content: space-between;
    padding-block: clamp(14px, 2.4vw, 22px);
}
.topbar__logo { height: clamp(40px, 8vw, 52px); width: auto; }
.topbar__link {
    font-size: .9rem; font-weight: 600; color: var(--ink);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .5em;
    padding: .55rem .95rem; border-radius: 100px;
    border: 1px solid var(--line);
    transition: background .2s var(--ease), border-color .2s var(--ease);
}
.topbar__link:hover { background: rgba(255,255,255,.65); border-color: var(--gold-soft); }
.topbar__link .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
    box-shadow: 0 0 0 4px rgba(190,156,84,.16);
}


/* =========================================================================
   6. HERO
   ========================================================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(28px, 6vw, 64px);
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(70% 55% at 82% 8%, rgba(216,193,138,.45) 0%, rgba(216,193,138,0) 60%),
        radial-gradient(80% 60% at 6% 96%, rgba(94,107,71,.14) 0%, rgba(94,107,71,0) 55%),
        linear-gradient(168deg, #FBF7EE 0%, #F2E8D4 100%);
}
.hero .shell { position: relative; z-index: 1; }

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(26px, 5vw, 48px);
    align-items: center;
    padding-top: clamp(8px, 2vw, 26px);
}

.hero__copy { max-width: 40rem; }
.hero h1 {
    font-size: clamp(2.15rem, 8.4vw, 3.6rem);
    margin: 0 0 .7rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--ink-2);
}
.hero__sub {
    font-size: clamp(1.02rem, 3.4vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 34rem;
    margin: 0 0 1.6rem;
}
.hero__cta {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: .9rem 1.2rem;
    margin: 0 0 1.5rem;
}
.hero__meta { font-size: .9rem; color: var(--ink-soft); }

.hero__media {
    position: relative;
    margin: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.6);
    aspect-ratio: 16 / 11;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* zarter Gold-Rahmen-Schimmer */
.hero__media::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(190,156,84,.22);
    pointer-events: none;
}


/* =========================================================================
   7. VERTRAUENS-USPS  (Band direkt unter dem Hero)
   ========================================================================= */
.usps {
    position: relative; z-index: 1;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.4);
}
.usps__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.4rem;
    padding-block: clamp(20px, 4vw, 30px);
}
.usp {
    display: flex; align-items: flex-start; gap: .7rem;
    font-size: .92rem; font-weight: 600; color: var(--ink);
    line-height: 1.3;
}
.usp svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 1px; }


/* =========================================================================
   8. KONTAKT-FORMULAR  — dunkles Petrol-Band für maximalen Fokus
   ========================================================================= */
.contact {
    position: relative;
    color: var(--cream);
    background:
        radial-gradient(80% 60% at 85% 0%, rgba(190,156,84,.20) 0%, rgba(190,156,84,0) 55%),
        radial-gradient(70% 70% at 0% 100%, rgba(46,102,115,.35) 0%, rgba(46,102,115,0) 60%),
        linear-gradient(165deg, #163A47 0%, #102B35 100%);
}
.contact__head { text-align: center; max-width: 40rem; margin: 0 auto clamp(26px, 4vw, 38px); }
.contact__head .hairline { max-width: 260px; margin-inline: auto; }
.contact__head h2 {
    color: var(--cream-2);
    font-size: clamp(1.7rem, 6vw, 2.5rem);
    margin: 0 0 .6rem;
}
.contact__head p {
    color: rgba(247,242,232,.82);
    margin: 0;
    font-size: clamp(1rem, 3.2vw, 1.1rem);
}

.form-card {
    background: linear-gradient(180deg, var(--cream-2), #FBF6EC);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: clamp(22px, 5vw, 40px);
    max-width: 640px;
    margin: 0 auto;
}

/* Formularfelder (aus dem Kompass) */
.field { margin-bottom: 1.05rem; }
.field label {
    display: block; font-size: .85rem; font-weight: 600;
    color: var(--ink); margin-bottom: .4rem;
}
.field .req { color: var(--gold); }
.field .opt { color: var(--ink-soft); font-weight: 500; }
.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: inherit; font-size: 1rem; color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: .9rem 1rem;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--olive);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(94,107,71,.15);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #B4503C; background: #FCF1EE; }
.field__err { display: none; color: #B4503C; font-size: .82rem; margin-top: .35rem; }
.field.has-error .field__err { display: block; }

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

/* Honeypot – für echte Nutzer unsichtbar, fängt Bots ab */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Kurzer Vertrauenssatz über dem Absende-Button */
.form-trust {
    display: flex; align-items: center; gap: .55rem;
    margin: .3rem 0 1rem;
    font-size: .9rem; font-weight: 600; color: var(--ink);
}
.form-trust::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(190,156,84,.16);
}

.form-hint { font-size: .82rem; color: var(--ink-soft); margin: .8rem 0 0; text-align: center; }

/* Versand-Fehlermeldung */
.form-error {
    margin-top: .9rem;
    padding: .85rem 1rem;
    border-radius: var(--r-md);
    background: #FBF1EA;
    border: 1px solid #E7C9B7;
    color: #8A4B2B;
    font-size: .9rem;
    line-height: 1.5;
}
.form-error a { color: #8A4B2B; font-weight: 600; }
.form-error[hidden] { display: none; }

/* Erfolgsmeldung nach Absenden */
.form-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
    animation: fade-in .5s var(--ease) both;
}
.form-success.is-on { display: block; }
.success-badge {
    width: 76px; height: 76px; margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    display: grid; place-items: center;
    box-shadow: var(--shadow-gold);
}
.success-badge svg { width: 36px; height: 36px; color: #fff; }
.form-success h3 { color: var(--ink); font-size: 1.6rem; margin: 0 0 .5rem; }
.form-success p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto; }


/* =========================================================================
   9. „WARUM ZYPERNSCOUT?"
   ========================================================================= */
.why__head { text-align: center; max-width: 40rem; margin: 0 auto clamp(30px, 5vw, 46px); }
.why__head .hairline { max-width: 240px; margin-inline: auto; }
.why__head h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); margin: 0; }

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2.6vw, 22px);
}
.card {
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
    border: 1px solid rgba(255,255,255,.8);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(22px, 4vw, 30px);
}
.card__icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(219,193,138,.35), rgba(190,156,84,.18));
    margin-bottom: 1rem;
}
.card__icon svg { width: 26px; height: 26px; color: var(--gold); }
.card h3 { font-size: 1.2rem; margin: 0 0 .45rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: .96rem; }


/* =========================================================================
   10. IMPRESSIONEN
   ========================================================================= */
.impress { padding-top: 0; }
.impress__head { text-align: center; margin: 0 0 clamp(20px, 3.4vw, 30px); }
.impress__head .eyebrow { margin-bottom: 0; }
.impress__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 1.6vw, 16px);
}
.impress__grid figure {
    margin: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,.6);
    aspect-ratio: 4 / 3;
    position: relative;
}
.impress__grid img { width: 100%; height: 100%; object-fit: cover; }
.impress__grid figure::after {
    content: ""; position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px rgba(190,156,84,.18);
    pointer-events: none; border-radius: inherit;
}


/* =========================================================================
   11. FUSSZEILE
   ========================================================================= */
.foot {
    border-top: 1px solid var(--line);
    padding: clamp(30px, 5vw, 44px) 0;
    padding-bottom: calc(clamp(30px, 5vw, 44px) + env(safe-area-inset-bottom, 0px));
    text-align: center;
    color: var(--ink-soft);
    font-size: .88rem;
}
.foot__logo { height: 44px; width: auto; margin: 0 auto 1rem; opacity: .95; }
.foot__brand {
    font-family: var(--serif); font-weight: 600; color: var(--ink);
    font-size: 1.05rem; margin: 0 0 .5rem;
}
.foot__contact { margin: 0 0 1rem; }
.foot__contact a { color: var(--ink-2); font-weight: 600; text-decoration: none; }
.foot__contact a:hover { text-decoration: underline; }
.foot__links {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: .5rem 1.4rem; list-style: none; padding: 0; margin: 0 0 1.1rem;
}
.foot__links a { color: var(--ink-soft); text-decoration: none; }
.foot__links a:hover { color: var(--ink); }
.foot__copy { font-size: .8rem; color: var(--ink-soft); margin: 0; opacity: .8; }


/* =========================================================================
   12. STICKY-CTA — nur Mobile, dezent, erscheint nach dem Hero
   ========================================================================= */
.sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px var(--gut);
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(247,242,232,0), rgba(247,242,232,.92) 34%);
    transform: translateY(120%);
    transition: transform .35s var(--ease);
    pointer-events: none;
}
.sticky-cta.is-visible { transform: translateY(0); pointer-events: auto; }
.sticky-cta .btn { width: 100%; box-shadow: var(--shadow-gold); }


/* =========================================================================
   13. RESPONSIV — Tablet / Desktop
   ========================================================================= */
@media (min-width: 720px) {
    body { font-size: 18px; }

    .usps__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .field-row  { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .cards      { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
    .hero__inner {
        grid-template-columns: 1.02fr 1fr;
        gap: clamp(40px, 5vw, 72px);
    }
    .hero__media { aspect-ratio: auto; height: 100%; min-height: 440px; }
    /* Sticky-CTA ist ein Mobile-Element */
    .sticky-cta { display: none; }
}

@media (min-width: 1120px) {
    .hero h1 { font-size: 3.9rem; }
}


/* =========================================================================
   14. BARRIEREFREIHEIT
   ========================================================================= */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Auf dem dunklen Kontakt-Band einen hellen Fokusring nutzen */
.contact :focus-visible { outline-color: var(--gold-soft); }

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__copy, .hero__media { animation: fade-in .6s var(--ease) both; }
.hero__media { animation-delay: .08s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .sticky-cta { transition: none; }
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* =========================================================================
   14. NORDZYPERN-BILDWELT  (Fotos: Hero, Showcase, Emotion, Kontakt)
   Rein visuell – Formular, Versandlogik und Tracking bleiben unverändert.
   Navy/Creme/Gold-Farbwelt, WCAG-taugliche Overlays, kein CLS.
   ========================================================================= */

/* ---- Topbar liegt über dem Hero-Foto (helle Variante) ---- */
.topbar { position: absolute; top: 0; left: 0; right: 0; margin-inline: auto; }
.topbar__logo { filter: drop-shadow(0 4px 16px rgba(0,0,0,.45)); }
.topbar__link {
    color: #fff;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.topbar__link:hover { background: rgba(255,255,255,.20); border-color: var(--gold-soft); }
.topbar__link .dot { box-shadow: 0 0 0 4px rgba(190,156,84,.28); }

/* ---- 14.1  Hero mit Vollflächen-Foto ---- */
.hero.has-photo {
    min-height: min(94svh, 880px);
    display: flex; align-items: center;
    padding-top: clamp(92px, 15vw, 132px);     /* Platz für die überlagernde Topbar */
    padding-bottom: clamp(48px, 9vw, 96px);
}
.hero.has-photo .hero__bg { display: none; }
.hero.has-photo .hero__inner { grid-template-columns: 1fr; padding-top: 0; }

.hero__photo { position: absolute; inset: 0; z-index: 0; display: block; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }
.hero__scrim {
    position: absolute; inset: 0; z-index: 0;
    background:
        linear-gradient(180deg, rgba(9,22,28,.58) 0%, rgba(9,22,28,.40) 34%, rgba(9,22,28,.80) 100%),
        linear-gradient(96deg,  rgba(9,22,28,.74) 0%, rgba(9,22,28,.30) 55%, rgba(9,22,28,0) 100%);
}
/* Hero-Text hell (Kontrast geprüft) */
.hero.has-photo .eyebrow { color: var(--gold-soft); }
.hero.has-photo .eyebrow::before { background: var(--gold-soft); }
.hero.has-photo h1 { color: #fff; text-shadow: 0 2px 28px rgba(0,0,0,.42); }
.hero.has-photo h1 em { color: var(--gold-soft); }
.hero.has-photo .hero__sub { color: rgba(255,255,255,.95); text-shadow: 0 1px 16px rgba(0,0,0,.34); }
.hero.has-photo .hero__meta { color: rgba(255,255,255,.9); }
.hero.has-photo .trustline, .hero.has-photo .trustline li { color: #fff; }

/* ---- 14.2  Showcase (Immobilien / Lifestyle): Bild + Text ---- */
.showcase__grid {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 44px); align-items: center;
}
.showcase__media {
    position: relative; margin: 0;
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
    aspect-ratio: 3 / 2; background: var(--sand);   /* aspect-ratio => kein CLS */
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.showcase__media::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(190,156,84,.22); pointer-events: none;
}
.showcase__copy .eyebrow { color: var(--olive); }
.showcase__copy h2 { font-size: clamp(1.55rem, 5vw, 2.3rem); margin: .3rem 0 .6rem; }
.showcase__copy p  { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 1.4rem; max-width: 42ch; }

@media (min-width: 900px) {
    .showcase__grid { grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 72px); }
    .showcase--reverse .showcase__media { order: 2; }
}

/* ---- 14.3  Kontaktbereich: Terrassenfoto (emotionaler Abschluss) unter dem Navy-Overlay ---- */
.contact.has-photo { position: relative; }
.contact__photo { position: absolute; inset: 0; z-index: 0; display: block; }
.contact__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }
/* Overlay oben nahezu deckend -> weiche, saubere Kante zur hellen Sektion darüber;
   zur Mitte/unten wird das Foto sichtbar (Sehnsuchtsbild hinter dem Formular). */
.contact__overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg,
        rgba(18,48,60,.985) 0%, rgba(18,48,60,.93) 14%,
        rgba(18,48,60,.88) 46%, rgba(14,38,48,.93) 100%);
}
.contact.has-photo .shell { position: relative; z-index: 1; }

/* poetischer Bogen zum Formular – ersetzt den früheren, separaten Bild-Streifen */
.contact__kicker {
    font-family: var(--serif); font-style: italic; font-weight: 600;
    color: var(--gold-soft);
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    letter-spacing: .01em; line-height: 1.35;
    margin: 0 auto .9rem; max-width: 30ch;
    text-shadow: 0 1px 14px rgba(0,0,0,.35);
}
