/* ============================================
   Bilderzeit Fotografie – Warm Beige Theme
   ============================================ */

:root {
    color-scheme: light;
    --bg: #f5efe6;
    --bg-soft: #ede5d8;
    --bg-card: #faf6f0;
    --bg-card-hover: #f0e8da;

    --gold: #b8975a;
    --gold-light: #caa86c;
    --gold-dark: #9a7b42;
    --gold-glow: rgba(184, 151, 90, 0.15);

    --beige: #c4a882;
    --beige-light: #d4c5a9;
    --beige-soft: rgba(196, 168, 130, 0.12);
    --beige-glow: rgba(196, 168, 130, 0.2);

    --text: #3a3530;
    --text-soft: #6b6258;
    --text-muted: #9a9088;

    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(184, 151, 90, 0.3);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
img { max-width: 100%; display: block; }

/* --- Custom Cursor --- */
.cursor, .cursor-follower {
    position: fixed; pointer-events: none; z-index: 99999;
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
.cursor { width: 8px; height: 8px; background: var(--gold); }
.cursor-follower {
    width: 40px; height: 40px; border: 1px solid rgba(184, 151, 90, 0.5);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
}
.cursor-follower.hovering {
    width: 60px; height: 60px; border-color: var(--gold);
    background: rgba(184, 151, 90, 0.08);
}
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* System-Cursor ausblenden */
*, *::before, *::after { cursor: none !important; }
a, button, input, select, textarea, [role="button"] { cursor: none !important; }

/* --- Loader --- */
.loader {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 100000; background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-text {
    display: block; font-family: var(--font-display); font-size: 2rem;
    color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-top: 1.5rem;
}
.loader-line {
    width: 120px; height: 1px; background: var(--border);
    margin: 0 auto; position: relative; overflow: hidden;
}
.loader-line::after {
    content: ''; position: absolute; left: -100%; top: 0;
    width: 100%; height: 100%; background: var(--gold);
    animation: loaderSlide 1.2s var(--ease) infinite;
}
@keyframes loaderSlide { 0% { left: -100%; } 100% { left: 100%; } }

/* --- Container --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* --- Navigation --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.5rem 3rem; display: flex; align-items: center;
    justify-content: space-between;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
    background: rgba(245, 239, 230, 0.92); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); padding: 1rem 3rem;
    border-bottom: 1px solid var(--border);
}
.nav-logo { display: block; line-height: 1; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.nav.scrolled .nav-logo { opacity: 1; pointer-events: auto; }
.nav-logo-img { height: 40px; width: auto; max-width: 200px; }
.nav-logo-black { display: none; }
.nav-logo-white { display: block; }
.nav.scrolled .nav-logo-black { display: block; }
.nav.scrolled .nav-logo-white { display: none; }
.nav-logo-main {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.1em;
}
.nav-logo-sub {
    font-family: var(--font-accent); font-size: 0.75rem; color: var(--text-soft);
    letter-spacing: 0.4em; text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
    font-size: 0.85rem; font-weight: 400; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.85);
    position: relative; padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0;
    height: 1px; background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--text-soft); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-toggle {
    display: none; flex-direction: column; gap: 6px; background: none;
    border: none; cursor: pointer; padding: 0.5rem; z-index: 1001;
}
.nav-toggle span {
    display: block; width: 28px; height: 1px; background: #fff;
    transition: all 0.3s var(--ease); transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.active span { background: var(--text); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.hero-slide {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-size: cover; background-position: center 25%;
    opacity: 0; transform: scale(1.05);
    transition: opacity 1.5s var(--ease), transform 6s var(--ease);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg,
        rgba(58,53,48,0.3) 0%, rgba(58,53,48,0.1) 40%, rgba(58,53,48,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; color: #fff; }
.hero-tag {
    font-family: var(--font-accent); font-size: 1.1rem; color: var(--beige-light);
    letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(30px);
}
.hero-tag.visible { opacity: 1; transform: translateY(0); transition: all 0.8s var(--ease-out); }
.hero-title { font-family: var(--font-display); font-weight: 400; line-height: 1.1; margin-bottom: 1.5rem; width: 100%; padding: 0 1rem; overflow-wrap: break-word; word-wrap: break-word; }
.hero-title-line {
    display: block; font-size: clamp(2rem, min(4vw, 6vh), 5rem);
}
.hero-title-italic {
    font-style: italic; color: var(--beige-light); font-size: clamp(1.6rem, min(3.5vw, 5vh), 4rem);
}
.hero-subtitle {
    font-family: var(--font-accent); font-size: 1.2rem; color: rgba(255,255,255,0.85);
    letter-spacing: 0.2em; margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(30px);
}
.hero-subtitle.visible { opacity: 1; transform: translateY(0); transition: all 0.8s var(--ease-out); }
.hero-logo-img {
    height: clamp(80px, 12vw, 140px); width: auto; margin: 0 auto 2.5rem; display: block;
    opacity: 0; transform: translateY(30px);
}
.hero-logo-img.visible { opacity: 1; transform: translateY(0); transition: all 0.8s var(--ease-out); }
.hero-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,0.6);
    padding: 1rem 2.5rem; transition: all 0.4s var(--ease);
    opacity: 0; transform: translateY(30px);
}
.hero-btn.visible { opacity: 1; transform: translateY(0); transition: all 0.8s var(--ease-out); }
.hero-btn:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.hero-btn svg { transition: transform 0.3s var(--ease); }
.hero-btn:hover svg { transform: translate(3px, -3px); }
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem; z-index: 2;
}
.hero-scroll span {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
    width: 1px; height: 60px; background: rgba(255,255,255,0.3);
    position: relative; overflow: hidden;
}
.hero-scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--gold);
    animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }
.hero-slide-counter {
    position: absolute; bottom: 2.5rem; right: 3rem; z-index: 2;
    font-family: var(--font-accent); font-size: 1rem; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 0.5rem;
}
.hero-slide-current { color: var(--gold); font-size: 1.5rem; }

/* --- Section Styles --- */
.section { padding: 8rem 0; }
.section-label {
    font-family: var(--font-accent); font-size: 0.85rem; color: var(--gold);
    letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-desc { color: var(--text-soft); font-size: 1.05rem; }

/* --- Animations --- */
[data-animate] { opacity: 0; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-up-3d"] { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].visible { opacity: 1; transform: none; }

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 10000;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform-origin: left; transform: scaleX(0);
    pointer-events: none;
}

/* --- Parallax Layers --- */
.hero-content, .about-img-main, .about-img-accent, .gallery-item {
    will-change: transform;
}

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { position: relative; overflow: hidden; }
.about-img-main img {
    width: 100%; height: 550px; object-fit: cover; transition: transform 0.6s var(--ease);
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-main::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border: 1px solid var(--gold);
    opacity: 0.2; transform: translate(15px, 15px); pointer-events: none;
}
.about-img-accent {
    position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px;
    overflow: hidden; border: 3px solid #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
    position: absolute; top: -20px; right: -20px; width: 130px; height: 130px;
    background: var(--gold); display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
}
.about-experience-num {
    font-family: var(--font-display); font-size: 2.5rem; color: #fff; line-height: 1;
}
.about-experience-text {
    font-size: 0.7rem; color: #fff; text-transform: uppercase;
    letter-spacing: 0.1em; line-height: 1.3; margin-top: 0.25rem;
}
.about-text { color: var(--text-soft); margin-bottom: 2rem; }
.about-text p { margin-bottom: 1rem; }
.about-text strong { color: var(--gold); }
.about-lead {
    font-family: var(--font-accent); font-size: 1.3rem; color: var(--text);
    font-style: italic; line-height: 1.7; margin-bottom: 1.5rem !important;
}

/* Pull Quote */
.about-pullquote {
    text-align: center; padding: 4rem 2rem; margin: 4rem auto;
    max-width: 700px; position: relative;
}
.about-pullquote::before, .about-pullquote::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    width: 60px; height: 1px; background: var(--gold);
}
.about-pullquote::before { top: 0; }
.about-pullquote::after { bottom: 0; }
.about-pullquote blockquote {
    font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400; font-style: italic; color: var(--text);
    line-height: 1.5;
}

/* Story Blocks */
/* --- About Editorial Layout --- */
.about-editorial { margin: 0 auto 4rem; }

.about-editorial-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; margin-bottom: 5rem;
}
.about-editorial-row--reverse { direction: rtl; }
.about-editorial-row--reverse > * { direction: ltr; }

.about-editorial-img {
    position: relative; overflow: hidden; border-radius: 2px;
}
.about-editorial-img img {
    width: 100%; height: auto; display: block;
}

.about-editorial-num {
    display: block; font-family: var(--font-accent); font-size: 0.8rem;
    letter-spacing: 0.3em; color: var(--gold-light); margin-bottom: 0.75rem;
}
.about-editorial-heading {
    font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400; color: var(--text); margin-bottom: 1.25rem;
    line-height: 1.2;
}
.about-editorial-text p {
    font-size: 0.95rem; color: var(--text-soft); line-height: 1.8;
    margin-bottom: 0.85rem;
}

/* Feature block — full-width highlight with background */
.about-editorial-feature {
    background: var(--bg-card);
    padding: 4rem; margin-bottom: 5rem;
    border-left: 3px solid var(--gold);
    position: relative;
}
.about-editorial-feature-inner { max-width: 700px; margin: 0 auto; }
.about-editorial-feature .about-editorial-heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--gold-dark);
}
.about-editorial-feature p {
    font-size: 1.05rem; color: var(--text-soft); line-height: 1.8;
    margin-bottom: 0.85rem;
}

/* Promise — centered, large type */
.about-editorial-promise {
    text-align: center; max-width: 700px; margin: 0 auto 3rem;
    padding: 2rem 0;
}
.about-editorial-promise .about-editorial-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem;
}
.about-editorial-promise p {
    font-size: 1rem; color: var(--text-soft); line-height: 1.8;
    margin-bottom: 0.85rem;
}
.about-promise-highlight {
    font-family: var(--font-display); font-style: italic;
    font-size: 1.3rem !important; color: var(--gold) !important;
    line-height: 1.6 !important; margin: 1.5rem 0 !important;
}
.about-emphasis {
    font-family: var(--font-accent); font-size: 1.15rem !important;
    color: var(--text) !important; font-style: italic;
    line-height: 1.8 !important; padding: 1rem 0 0.5rem;
    border-left: 2px solid var(--gold); padding-left: 1.25rem;
    margin-top: 0.5rem !important;
}

/* Closing */
.about-closing {
    text-align: center; padding: 3rem 0 0;
    max-width: 480px; margin: 0 auto;
    border-top: 1px solid var(--border);
}
.about-closing-text {
    font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400; color: var(--text); line-height: 1.6; margin-bottom: 2rem;
}
.about-closing-text em { color: var(--gold); }
.about-signature {
    display: flex; flex-direction: column; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.about-signature-name {
    font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold);
}
.about-signature-role {
    font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em;
    text-transform: uppercase; margin-top: 0.25rem;
}

/* --- Marquee --- */
.marquee {
    padding: 2rem 0; overflow: hidden;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span {
    font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300; color: var(--text-muted); padding: 0 1.5rem; flex-shrink: 0;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Services Magazine Layout --- */
.services { background: var(--bg-soft); }
/* Leistungs-Collage: Justified Rows (lückenlos, ungeschnitten).
   JS setzt die Breite jeder Karte so, dass jede Zeile randbündig die volle
   Breite füllt; die Höhe folgt aus dem echten Bildverhältnis (height:auto,
   kein object-fit:cover) -> nichts wird abgeschnitten. Fallback ohne JS: 3er-Wrap. */
.services-magazine {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.25rem;
}
.svc-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 auto;
    width: calc((100% - 2 * 1.25rem) / 3);   /* Fallback vor/ohne JS */
    container-type: inline-size;             /* Basis für cqi-Titelgröße (Schrift skaliert mit Kartenbreite) */
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-item--wide { width: calc((100% - 2 * 1.25rem) / 3); }  /* im Justified-Layout neutral */
.svc-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(58,53,48,0.18); }

.svc-item-img { display: block; line-height: 0; }
.svc-item-img img {
    width: 100%; height: auto; display: block;   /* ungeschnitten */
}

.svc-item-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(0deg,
        rgba(58,53,48,0.85) 0%, rgba(58,53,48,0.4) 40%,
        rgba(58,53,48,0.05) 70%, transparent 100%);
    transition: background 0.5s var(--ease);
}
.svc-item:hover .svc-item-overlay {
    background: linear-gradient(0deg,
        rgba(58,53,48,0.9) 0%, rgba(58,53,48,0.5) 50%,
        rgba(58,53,48,0.15) 100%);
}

.svc-item-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.75rem; z-index: 2; color: #fff;   /* etwas weniger -> mehr Platz für den Titel */
}
.svc-item-num {
    display: none; /* Nummern entfernt - passen nicht zum Masonry-Layout */
}
.svc-item-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2.5rem);     /* Fallback: skaliert mit Viewport */
    font-size: clamp(1.3rem, 9.5cqi, 2.5rem);    /* skaliert mit der KARTENBREITE (Container Query) */
    font-weight: 400; line-height: 1.12; margin-bottom: 0.25rem;
    overflow-wrap: break-word; hyphens: auto;    /* sehr lange Wörter brechen um statt abgeschnitten */
}
/* uniform 3x3 grid - no per-card title overrides */
.svc-item-cat {
    font-family: var(--font-accent); font-size: 0.85rem;
    color: var(--gold-light); letter-spacing: 0.2em;
    text-transform: uppercase; font-style: italic;
    display: block; margin-bottom: 1rem;
}
.svc-item-desc {
    font-size: 0.9rem; line-height: 1.6;
    color: rgba(255,255,255,0.85); max-width: 500px;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.svc-item:hover .svc-item-desc { opacity: 1; transform: translateY(0); }

.svc-item-link {
    display: inline-block; margin-top: 1.25rem;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-light); border-bottom: 1px solid var(--gold-light);
    padding-bottom: 0.2rem;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.5s var(--ease) 0.1s, transform 0.5s var(--ease) 0.1s, color 0.3s;
}
.svc-item:hover .svc-item-link { opacity: 1; transform: translateY(0); }
.svc-item-link:hover { color: #fff; }

/* Gold accent line on hero cards */
.svc-item:nth-child(1)::before,
.svc-item:nth-child(6)::before {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 3px; height: 0; background: var(--gold);
    z-index: 3; transition: height 0.6s var(--ease);
}
.svc-item:nth-child(1):hover::before,
.svc-item:nth-child(6):hover::before { height: 60%; }

/* --- Quote --- */
/* --- Scroll Text Reveal Section --- */
.scroll-text-section {
    position: relative; height: 150vh; background: #e6dac4;
}
.scroll-text-inner {
    position: -webkit-sticky; position: sticky; top: 0; height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 2rem 4rem;
}
.scroll-text {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.25;
    text-align: center; max-width: 1000px;
}
.sw {
    color: rgba(58,53,48,0.32); transition: color 0.3s ease;
    display: inline;
}
.sw.revealed { color: rgba(58,53,48,0.92); }
.sw--highlight { font-family: 'Dancing Script', cursive; font-weight: 700; font-size: 1.3em; }
.sw--highlight.revealed { color: var(--gold-dark); }
.sw--block { display: block; margin: 0.5rem 0; }
.sw--phone { font-size: 0.7em; letter-spacing: 0.05em; text-decoration: none; }
.sw--phone.revealed { color: var(--gold-dark) !important; }
.sw--phone-cta {
    display: block; margin: 1rem auto 0;
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    letter-spacing: 0.08em; text-decoration: none;
}
.sw--accent { font-weight: 600; }
.sw.sw--accent.revealed { color: rgba(58,53,48,0.95) !important; text-shadow: none; }
/* --- CTA: TextPressure (variable font, cursor-reactive) --- */
@font-face {
    font-family: 'Compressa VF';
    src: url('https://res.cloudinary.com/dr6lvwubh/raw/upload/v1529908256/CompressaPRO-GX.woff2') format('woff2-variations');
    font-style: normal;
    font-display: swap;
}
.sw--cta {
    display: block; width: 100%; max-width: 820px;
    margin: 1.5rem auto 0;
    text-decoration: none;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.sw.sw--cta.revealed { opacity: 1; }
.cta-pressure-title {
    font-family: 'Compressa VF', 'Playfair Display', serif;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    font-weight: 100;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform-origin: center top;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(74,64,57,0.18);
    transition: text-shadow 0.3s ease;
}
.cta-pressure-title span {
    display: inline-block;
    font-variation-settings: 'wght' 400, 'wdth' 100, 'ital' 0;
}
.sw--cta:hover .cta-pressure-title { text-shadow: 0 4px 22px rgba(200,163,106,0.5); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 1rem 2.5rem; border: none;
    cursor: pointer; transition: all 0.4s var(--ease);
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover {
    background: var(--gold-dark); transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(184,151,90,0.25);
}

/* --- Gallery (Grid-Masonry – Bilder im Originalformat, Querformat 2 Spalten breit) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 8px;
    grid-auto-flow: row dense;
    gap: 1rem;
    padding-top: 2rem;
}
.gallery-item {
    position: relative; cursor: pointer;
    border-radius: 2px; overflow: hidden;
    grid-row-end: span 40;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(58,53,48,0.18); }
.gallery-item img {
    width: 100%; height: auto; display: block;
}
.gallery-item-overlay { display: none; }

/* --- Lightbox --- */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.93);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; padding: 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
    max-width: 95vw; max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    cursor: zoom-out;
}
.lightbox-close {
    position: absolute; top: 1rem; right: 1.5rem;
    background: transparent; border: none;
    color: #fff; font-size: 3rem; line-height: 1;
    cursor: pointer; padding: 0.5rem;
    transition: opacity 0.2s ease;
}
.lightbox-close:hover { opacity: 0.6; }
.gallery-item-cat {
    font-family: var(--font-accent); font-size: 0.85rem; color: var(--beige-light);
    letter-spacing: 0.25em; text-transform: uppercase;
    transform: translateY(10px); transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-cat { transform: translateY(0); }

/* --- Packages Editorial --- */
.packages { background: var(--bg-soft); }
.packages-editorial { max-width: 1100px; margin: 0 auto; }
.pkg-strip {
    display: grid; grid-template-columns: 1fr 1fr 1.3fr 1fr;
    gap: 0; align-items: end;
}
.pkg-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 2.5rem 1.75rem; text-align: center; position: relative;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.pkg-card:first-child { border-right: none; }
.pkg-card:nth-child(2) { border-right: none; }
.pkg-card:nth-child(4) { border-left: none; }
.pkg-card:hover { border-color: var(--border-hover); }

.pkg-card--featured {
    border: 2px solid var(--gold) !important;
    background: linear-gradient(180deg, rgba(184,151,90,0.1) 0%, var(--bg-card) 50%);
    padding: 3.5rem 2rem 3rem; margin-bottom: -1.5rem;
    z-index: 2; box-shadow: 0 20px 60px rgba(184,151,90,0.15);
}
.pkg-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #fff; font-size: 0.7rem;
    font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.35rem 1.5rem;
}
.pkg-header { margin-bottom: 2rem; }
.pkg-size {
    font-family: var(--font-display); font-size: 4rem;
    color: var(--gold); line-height: 1; display: block;
}
.pkg-card--featured .pkg-size { font-size: 5.5rem; }
.pkg-label {
    display: block; font-size: 0.7rem; color: var(--text-muted);
    letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.5rem;
}
.pkg-highlight {
    margin-bottom: 1.5rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.pkg-count {
    font-family: var(--font-display); font-size: 2.5rem;
    font-weight: 400; color: var(--text); line-height: 1; display: block;
}
.pkg-card--featured .pkg-count { font-size: 3rem; color: var(--gold-dark); }
.pkg-count-label {
    font-family: var(--font-accent); font-size: 0.95rem;
    color: var(--text-soft); font-style: italic; display: block; margin-top: 0.25rem;
}
.pkg-details { margin-bottom: 2rem; }
.pkg-price {
    font-family: var(--font-accent); font-size: 1rem;
    color: var(--text-soft); font-style: italic; display: block; margin-bottom: 1rem;
}
.pkg-features { list-style: none; }
.pkg-features li {
    font-size: 0.85rem; color: var(--text-soft); padding: 0.35rem 0;
}
.pkg-features li::before {
    content: '\2713'; color: var(--gold); margin-right: 0.5rem; font-size: 0.75rem;
}
.pkg-btn {
    display: inline-block; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
    border: 1px solid var(--gold); padding: 0.85rem 2rem;
    transition: all 0.4s var(--ease);
}
.pkg-btn:hover { background: var(--gold); color: #fff; }
.pkg-card--featured .pkg-btn { background: var(--gold); color: #fff; }
.pkg-card--featured .pkg-btn:hover { background: var(--gold-dark); }

/* Scale bar */
.pkg-scale { margin-top: 3rem; padding: 0 2rem; }
.pkg-scale-bar {
    height: 3px; background: var(--border); position: relative; border-radius: 2px;
}
.pkg-scale-fill {
    position: absolute; left: 0; top: 0; height: 100%; width: 65%;
    background: linear-gradient(90deg, var(--beige), var(--gold)); border-radius: 2px;
}
.pkg-scale-labels {
    display: flex; justify-content: space-between; margin-top: 0.75rem;
}
.pkg-scale-labels span {
    font-family: var(--font-accent); font-size: 0.8rem;
    color: var(--text-muted); font-style: italic;
}
.pkg-note {
    text-align: center; font-family: var(--font-accent);
    font-size: 1rem; color: var(--text-soft); font-style: italic; margin-top: 2.5rem;
}

/* --- Voucher Banner --- */
/* --- Gift Card 3D --- */
/* --- Gift Envelope Reveal --- */
.gift-section {
    position: relative; padding: 6rem 2rem; background: var(--bg-soft); overflow: hidden;
}
.gift-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}
.gift-desc {
    font-size: 1.05rem; line-height: 1.8; color: var(--text-soft); margin-top: 1rem;
}
.gift-section-inner {
    position: relative; z-index: 2; max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.gift-text-col { padding-right: 2rem; }
.gift-card-col { display: flex; justify-content: center; perspective: 1200px; }

/* Floating card */
.gift-float-card {
    position: relative; width: 380px;
    animation: gift-float 4s ease-in-out infinite;
}
@keyframes gift-float {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-3deg); }
    50% { transform: translateY(-15px) rotateX(-2deg) rotateY(3deg); }
}
.gift-float-card-inner {
    position: relative; width: 100%; height: 0;
    padding-bottom: 62.5%; /* 16:10 ratio */
    border-radius: 12px; overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), 0 0 40px rgba(193,167,118,0.15);
    transition: box-shadow 0.4s ease;
}
.gift-float-card:hover .gift-float-card-inner {
    box-shadow: 0 35px 70px rgba(0,0,0,0.25), 0 0 60px rgba(193,167,118,0.25);
}
.gift-float-card:hover { animation-play-state: paused; }

/* Shadow on ground */
.gift-float-shadow {
    width: 85%; height: 20px; margin: 15px auto 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gift-shadow 4s ease-in-out infinite;
}
@keyframes gift-shadow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(0.85); opacity: 0.4; }
}
.gift-float-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.gift-float-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(58,53,48,0.18) 0%, rgba(58,53,48,0.04) 50%, rgba(58,53,48,0.16) 100%);
}
.gift-float-content {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 1.5rem 1.8rem;
}
.gift-float-logo { height: 26px; width: auto; opacity: 0.9; }
.gift-float-brand {
    font-family: var(--font-accent); font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.gift-float-center { text-align: center; }
.gift-float-label {
    display: block; font-family: var(--font-accent); font-size: 0.65rem;
    letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-light);
}
.gift-float-title {
    display: block; font-family: var(--font-display); font-size: 2.5rem;
    font-weight: 400; color: #fff; letter-spacing: 0.05em; line-height: 1.1;
}
.gift-float-footer {
    display: flex; justify-content: center; align-items: center; gap: 0.8rem;
    font-family: var(--font-accent); font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.gift-float-dot { color: var(--gold); }
.gift-float-border {
    position: absolute; top: 8px; right: 8px; bottom: 8px; left: 8px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
    z-index: 3; pointer-events: none;
}

/* Floating bubbles beneath card */
.gift-bubbles {
    position: absolute; top: 50%; left: 0; right: 0; bottom: -40px;
    pointer-events: none; z-index: -1;
}
.gift-bubble {
    position: absolute; left: var(--x); bottom: 0;
    width: var(--size); height: var(--size);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(193,167,118,0.4), rgba(193,167,118,0.1));
    border: 1px solid rgba(193,167,118,0.2);
    animation: bubble-rise var(--dur) ease-in-out var(--delay) infinite;
    opacity: 0;
}
@keyframes bubble-rise {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    15% { opacity: 0.7; }
    70% { opacity: 0.4; }
    100% { transform: translateY(-80px) scale(1); opacity: 0; }
}

/* Ambient floating bubbles across entire section */
.gift-ambient-bubbles {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; z-index: 1; overflow: hidden;
}
.gift-ambient {
    position: absolute; left: var(--x); top: var(--y);
    width: var(--size); height: var(--size);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(193,167,118,0.35), rgba(193,167,118,0.08));
    border: 1px solid rgba(193,167,118,0.15);
    animation: ambient-float var(--dur) ease-in-out var(--delay) infinite;
    opacity: 0;
}
@keyframes ambient-float {
    0% { transform: translateY(0) scale(0.6); opacity: 0; }
    20% { opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1); opacity: 0.3; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-60px) scale(0.7); opacity: 0; }
}

/* CTA Button with glow */
.gift-btn {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem;
    font-family: var(--font-accent); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); padding: 0.8rem 0;
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s ease, gap 0.3s ease;
    opacity: 0; transform: translateY(15px);
}
.gift-btn.visible {
    opacity: 1; transform: translateY(0);
    transition: color 0.3s ease, gap 0.3s ease, opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}
.gift-btn:hover { color: var(--text); gap: 0.8rem; }
.gift-btn--glow {
    position: relative;
}
.gift-btn--glow::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold), 0 0 20px rgba(193,167,118,0.3);
    animation: btn-glow 2s ease-in-out infinite;
}
@keyframes btn-glow {
    0%, 100% { box-shadow: 0 0 5px var(--gold), 0 0 10px rgba(193,167,118,0.2); }
    50% { box-shadow: 0 0 15px var(--gold), 0 0 30px rgba(193,167,118,0.4); }
}

/* --- Photo Stack --- */
.photo-stack-section {
    position: relative;
    height: 300vh; /* scroll distance for animation */
}
.photo-stack-inner {
    position: sticky; top: 0;
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    gap: 6rem; padding: 0 5%;
    overflow: hidden;
}
.photo-stack-text {
    flex: 0 0 300px; text-align: left;
}
.photo-stack-desc {
    color: var(--text-soft); font-size: 1.05rem; line-height: 1.7;
    margin-top: 1rem;
}
.photo-stack {
    position: relative;
    width: 340px; height: 520px;
    perspective: 1200px;
}
.photo-card {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: #fff;
    padding: 14px 14px 44px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.08);
    transform: rotate(var(--rot, 0deg)) translate(var(--x, 0), var(--y, 0));
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease;
    cursor: grab;
    will-change: transform, opacity;
}
.photo-card.fly-away {
    transform: translateX(calc(120% + 100px)) rotate(15deg) !important;
    opacity: 0;
    pointer-events: none;
}
.photo-card.fly-away-left {
    transform: translateX(calc(-120% - 100px)) rotate(-15deg) !important;
    opacity: 0;
    pointer-events: none;
}
.photo-card-img {
    width: 100%; height: 462px;
    overflow: hidden;
    background: #f4f1ec;
}
.photo-card-img img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.photo-card-caption { display: none; }
/* Counter */
.photo-stack::after {
    content: attr(data-counter);
    position: absolute; bottom: -40px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-accent); font-size: 0.8rem;
    color: var(--text-muted); letter-spacing: 0.2em;
}

/* --- Image Marquee --- */
.marquee-section {
    overflow: hidden;
    padding: 2rem 0;
    display: flex; flex-direction: column; gap: 1rem;
}
.marquee-row {
    overflow: hidden;
    width: 100%;
}
.marquee-track {
    display: flex; gap: 1rem;
    width: max-content;
    animation: marquee-scroll-left 240s linear infinite;
}
.marquee-row--right .marquee-track {
    animation: marquee-scroll-right 255s linear infinite;
}
.marquee-track img {
    height: 220px; width: auto;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
    filter: grayscale(0.15);
    transition: filter 0.4s ease, transform 0.4s ease;
}
.marquee-track img:hover {
    filter: grayscale(0);
    transform: scale(1.04);
    z-index: 2;
}
@keyframes marquee-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-section.marquee-paused .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-track img { height: 150px; }
    .marquee-section { gap: 0.5rem; padding: 1rem 0; }
}

@media (max-width: 1024px) {
    .photo-stack-inner { flex-direction: column; gap: 2rem; padding-top: 8vh; }
    .photo-stack-text { flex: none; text-align: center; }
    .photo-stack { width: 300px; height: 464px; }
    .photo-card { padding: 12px 12px 38px; }
    .photo-card-img { height: 414px; }
}
@media (max-width: 768px) {
    .photo-stack-section { height: 250vh; }
    .photo-stack { width: 260px; height: 404px; }
    .photo-card-img { height: 354px; }
    .photo-card-caption { font-size: 0.95rem; bottom: 14px; }
}

/* --- Contact --- */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.contact-text { color: var(--text-soft); margin-bottom: 2rem; font-size: 1.05rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
    width: 50px; height: 50px; display: flex; align-items: center;
    justify-content: center; border: 1px solid var(--border);
    color: var(--gold); flex-shrink: 0; transition: all 0.3s var(--ease);
}
.contact-item:hover .contact-icon {
    background: var(--gold); color: #fff; border-color: var(--gold);
}
.contact-item-label {
    display: block; font-size: 0.7rem; color: var(--text-muted);
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.15rem;
}
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--text); }
.contact-item span.contact-item-sub { display: block; font-size: 0.82rem; opacity: 0.75; margin-top: 0.2rem; line-height: 1.35; }
.contact-item a:hover { color: var(--gold); }
/* Regions */
.contact-regions {
    margin-bottom: 2rem; padding: 1.25rem 0;
    border-top: 1px solid var(--border);
}
.contact-regions .contact-item-label { margin-bottom: 0.75rem; }
.contact-region {
    display: flex; align-items: flex-start; gap: 0.6rem;
    margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-soft);
}
.contact-region svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-region strong { color: var(--text); }

.contact-social { display: flex; gap: 1rem; }
.contact-social a {
    width: 45px; height: 45px; display: flex; align-items: center;
    justify-content: center; border: 1px solid var(--border);
    color: var(--text-soft); transition: all 0.3s var(--ease);
}
.contact-social a:hover {
    background: var(--gold); color: #fff; border-color: var(--gold);
}

/* --- Contact Form --- */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { position: relative; }
.form-group--full { grid-column: 1 / -1; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
    padding: 1.25rem 1rem 0.75rem; outline: none;
    transition: border-color 0.3s var(--ease); -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group label {
    position: absolute; top: 1rem; left: 1rem; font-size: 0.85rem;
    color: var(--text-muted); pointer-events: none; transition: all 0.3s var(--ease);
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: 0.4rem; font-size: 0.65rem; color: var(--gold);
    letter-spacing: 0.1em; text-transform: uppercase;
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { grid-column: 1 / -1; justify-content: center; font-family: var(--font-body); width: 100%; }

/* --- Footer --- */
/* --- Contact Reveal (scroll-into-image) --- */
.contact-reveal {
    position: relative; min-height: 100vh; overflow: hidden;
}
.contact-reveal-img {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover; background-position: center 30%;
    background-attachment: fixed;
}
.contact-reveal-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg,
        rgba(58,53,48,0.85) 0%, rgba(58,53,48,0.7) 50%, rgba(58,53,48,0.6) 100%);
}
.contact-reveal-inner {
    position: relative; z-index: 2; padding: 6rem 0;
}
.contact-grid--reveal .contact-info { color: #fff; }
.contact-grid--reveal .contact-item { color: rgba(255,255,255,0.85); }
.contact-grid--reveal .contact-item span { color: rgba(255,255,255,0.9); }
.contact-grid--reveal .contact-item a { color: rgba(255,255,255,0.9); }
.contact-grid--reveal .contact-item a:hover { color: var(--gold-light); }
.contact-grid--reveal .contact-item-label { color: rgba(255,255,255,0.5); }
.contact-grid--reveal .contact-icon { border-color: rgba(255,255,255,0.2); color: var(--gold-light); }
.contact-grid--reveal .contact-social a { color: rgba(255,255,255,0.6); }
.contact-grid--reveal .contact-social a:hover { color: var(--gold-light); }
.contact-grid--reveal .form-group input,
.contact-grid--reveal .form-group textarea,
.contact-grid--reveal .form-group select {
    background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.contact-grid--reveal .form-group input:focus,
.contact-grid--reveal .form-group textarea:focus,
.contact-grid--reveal .form-group select:focus {
    border-color: var(--gold); background: rgba(255,255,255,0.12);
}
.contact-grid--reveal .form-group label { color: rgba(255,255,255,0.5); }
.contact-grid--reveal .form-group input:focus + label,
.contact-grid--reveal .form-group textarea:focus + label,
.contact-grid--reveal .form-group select:focus + label {
    color: var(--gold-light);
}

.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 3rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); display: block; }
.footer-logo-img { height: 50px; width: auto; max-width: 250px; display: block; margin-bottom: 0.5rem; }
.footer-logo-sub {
    display: block; font-family: var(--font-accent); font-size: 0.7rem;
    color: var(--text-muted); letter-spacing: 0.4em; text-transform: uppercase;
}
.footer-tagline { font-family: var(--font-accent); font-style: italic; color: var(--text-soft); margin-top: 0.75rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-regions {
    font-family: var(--font-accent); font-size: 0.85rem; font-style: italic;
    color: var(--text-muted); text-align: center;
    padding-bottom: 1.5rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.footer-bottom { }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-credit {
    font-size: 0.75rem; color: var(--text-muted); text-decoration: none;
    letter-spacing: 0.05em; transition: color 0.3s var(--ease);
}
.footer-credit span {
    color: var(--gold); font-weight: 500;
    background: linear-gradient(120deg, var(--gold), #d4a853);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.3s var(--ease);
}
.footer-credit:hover span { filter: brightness(1.2); }
.footer-credit:hover { color: var(--text); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--gold); }

/* --- Instagram Section --- */
.instagram-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    overflow: hidden;
}
.instagram-header {
    text-align: center; max-width: 550px; margin: 0 auto 3rem;
}
.instagram-header .section-label {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 600;
}
.instagram-header .section-title { margin-bottom: 1rem; }
.instagram-teaser {
    font-family: var(--font-accent); font-size: 1.15rem; color: var(--text-soft);
    font-style: italic; line-height: 1.6;
}
.instagram-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    margin-bottom: 3rem; width: 100%;
}
.instagram-item {
    position: relative; overflow: hidden; aspect-ratio: 1;
    cursor: pointer;
}
.instagram-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.instagram-item:hover img { transform: scale(1.1); filter: brightness(0.7); }
.instagram-item-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: opacity 0.4s var(--ease);
}
.instagram-item:hover .instagram-item-overlay { opacity: 1; }
.instagram-item-overlay svg {
    width: 32px; height: 32px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.instagram-cta {
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.instagram-btn {
    display: inline-flex; align-items: center; gap: 0.85rem;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: #fff; padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none; cursor: pointer; position: relative; overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.35);
}
.instagram-btn svg { transition: transform 0.3s var(--ease); }
.instagram-btn:hover svg { transform: scale(1.15); }
.instagram-handle {
    font-family: var(--font-accent); font-size: 1rem; color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* --- Floating Instagram Button --- */
.instagram-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s var(--ease);
    opacity: 0; pointer-events: none;
}
.instagram-float.visible { opacity: 1; pointer-events: auto; }
.instagram-float:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}
.instagram-float svg { width: 26px; height: 26px; color: #fff; }
.instagram-float-pulse {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(225, 48, 108, 0.4);
    animation: igPulse 2s var(--ease) infinite;
}
@keyframes igPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1024px) {
    .pkg-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .pkg-card:nth-child(n) { border: 1px solid var(--border); }
    .pkg-card--featured { border: 2px solid var(--gold) !important; margin-bottom: 0; grid-column: 1 / -1; max-width: 400px; margin-left: auto; margin-right: auto; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { gap: 3rem; }
    .gift-section-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .gift-text-col { padding-right: 0; }
    .gift-float-card { width: 340px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: var(--bg); flex-direction: column; align-items: center;
        justify-content: center; gap: 2rem; transition: right 0.5s var(--ease);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; color: var(--text); }
    .nav.scrolled .nav-links a { color: var(--text); }
    .nav-links a:hover,
    .nav-links a:active { color: var(--gold-dark); }
    .section { padding: 5rem 0; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-main img { height: 400px; }
    .about-experience { right: 10px; top: -10px; width: 110px; height: 110px; }
    .about-experience-num { font-size: 2rem; }
    .about-experience-text { font-size: 0.6rem; }
    .about-editorial-row { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
    .about-editorial-row--reverse { direction: ltr; }
    .about-editorial-feature { padding: 2.5rem 2rem; }
    .about-pullquote { padding: 2.5rem 1rem; margin: 2.5rem auto; }
    .services-magazine { display: block; }
    .svc-item, .svc-item--wide { width: 100%; margin: 0 0 1rem; }
    .svc-item-desc { opacity: 1; transform: none; }
    .svc-item-link { opacity: 1; transform: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); border-radius: 200px 200px 0 0; }
    .pkg-strip { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 1rem; }
    .pkg-card--featured { max-width: 100%; margin-left: 0; margin-right: 0; }
    .pkg-scale { display: none; }
    .gift-float-card { width: 280px; }
    .gift-float-title { font-size: 1.8rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form { grid-template-columns: 1fr; }
    .scroll-text-inner { padding: 2rem 1.5rem; }
    .scroll-text { font-size: clamp(1.6rem, 6vw, 2.5rem); }
    .contact-reveal-img { background-attachment: scroll; }
    .footer-top { flex-direction: column; gap: 2rem; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
    .footer-bottom { text-align: center; }
    .footer-bottom-row { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
    .hero { aspect-ratio: auto; height: 100svh; min-height: 500px; max-height: none; }
    .hero-slide { background-position: center 20%; }
    .hero-slide-counter { display: none; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .instagram-float { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }
    .instagram-float svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .gallery-grid { grid-template-columns: 1fr; border-radius: 120px 120px 0 0; }
    .gallery-item--wide { grid-column: span 1; }
    .hero-btn { padding: 0.85rem 2rem; font-size: 0.8rem; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-btn { padding: 0.9rem 2rem; font-size: 0.8rem; }
}

/* ============================== NEW (Ilka TODO Apr 2026) ============================== */

/* --- Contact Reveal Light Variant --- */
.contact-reveal--light .contact-reveal-overlay--light {
    background: linear-gradient(135deg,
        rgba(250,245,237,0.96) 0%, rgba(245,238,228,0.94) 50%, rgba(242,234,221,0.92) 100%);
}
.contact-reveal--light .contact-grid--reveal .contact-info { color: var(--text, #3a3530); }
.contact-reveal--light .contact-grid--reveal .section-label { color: var(--gold-dark, #8b7143); }
.contact-reveal--light .contact-grid--reveal .section-title { color: #3a3530 !important; }
.contact-reveal--light .contact-grid--reveal .contact-text { color: rgba(58,53,48,0.75) !important; }
.contact-reveal--light .contact-grid--reveal .contact-item { color: #3a3530; }
.contact-reveal--light .contact-grid--reveal .contact-item span,
.contact-reveal--light .contact-grid--reveal .contact-item a { color: #3a3530; }
.contact-reveal--light .contact-grid--reveal .contact-item a:hover { color: var(--gold); }
.contact-reveal--light .contact-grid--reveal .contact-item-label { color: rgba(58,53,48,0.55); }
.contact-reveal--light .contact-grid--reveal .contact-icon { border-color: rgba(139,113,67,0.35); color: var(--gold-dark, #8b7143); }
.contact-reveal--light .contact-grid--reveal .form-group input,
.contact-reveal--light .contact-grid--reveal .form-group textarea,
.contact-reveal--light .contact-grid--reveal .form-group select {
    background: rgba(255,255,255,0.75); border-color: rgba(58,53,48,0.25); color: #3a3530;
}
.contact-reveal--light .contact-grid--reveal .form-group input:focus,
.contact-reveal--light .contact-grid--reveal .form-group textarea:focus,
.contact-reveal--light .contact-grid--reveal .form-group select:focus {
    border-color: var(--gold); background: rgba(255,255,255,0.9);
}
.contact-reveal--light .contact-grid--reveal .form-group label { color: rgba(58,53,48,0.55); }
.contact-reveal--light .contact-grid--reveal .form-group input:focus + label,
.contact-reveal--light .contact-grid--reveal .form-group textarea:focus + label,
.contact-reveal--light .contact-grid--reveal .form-group select:focus + label {
    color: var(--gold-dark, #8b7143);
}

/* --- Social (prominent) --- */
.contact-social.contact-social--prominent {
    display: flex; gap: 1.25rem; margin-top: 2rem; flex-wrap: wrap;
}
.contact-social.contact-social--prominent .contact-social-btn,
a.contact-social-btn {
    width: auto !important; height: auto !important;
    display: inline-flex !important; align-items: center; gap: 0.75rem;
    padding: 0.85rem 1.5rem !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold-dark, #8b7143) !important;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.35s var(--ease);
    background: rgba(255,255,255,0.35) !important;
    border-radius: 4px;
    white-space: nowrap;
}
a.contact-social-btn svg { width: 28px; height: 28px; transition: transform 0.35s ease; flex-shrink: 0; }
a.contact-social-btn:hover {
    background: var(--gold) !important;
    color: #fff !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190,158,96,0.35);
}
a.contact-social-btn:hover svg { transform: scale(1.1); }

/* --- About Emphasis Block --- */
.about-emphasis-block {
    text-align: center; max-width: 700px; margin: 3rem auto;
}
.about-emphasis-block .about-emphasis {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--gold-dark, #8b7143);
    margin: 0.35rem 0;
    opacity: 0.85;
}

/* About WhatsApp Link */
.about-whatsapp {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
    margin: 2rem auto; padding: 1rem 1.5rem;
    max-width: 420px;
    background: #25D366; color: #fff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 999px;
    transition: all 0.35s var(--ease);
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.about-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    background: #1ebd5c;
}
.about-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }

/* --- Pakete: Bild-Hintergrund --- */
.pkg-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.pkg-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--pkg-bg);
    background-size: cover; background-position: center;
    opacity: 0.28;
    z-index: -2;
    transition: opacity 0.5s var(--ease);
}
.pkg-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(250,245,237,0.55) 0%,
        rgba(250,245,237,0.70) 60%,
        rgba(250,245,237,0.78) 100%);
    z-index: -1;
    pointer-events: none;
}
.pkg-card--featured .pkg-bg-overlay {
    background: linear-gradient(180deg,
        rgba(253,250,242,0.50) 0%,
        rgba(253,250,242,0.65) 60%,
        rgba(253,250,242,0.75) 100%);
}
.pkg-card:hover::before { opacity: 0.4; }

.pkg-body { position: relative; z-index: 1; }

/* Pakete: Info-Icon (als kleiner Circle oben rechts in der Karte) */
.pkg-actions {
    margin-top: 1rem;
    /* pkg-info is absolutely positioned; pkg-btn takes full width */
}
.pkg-actions .pkg-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* Info-Icon in Paket-Karten: kompakt oben rechts */
.pkg-card .pkg-info {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    width: 34px; height: 34px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--gold, #be9e60);
    background: rgba(255, 255, 255, 0.85);
    color: var(--gold-dark, #8b7143);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font: 0/0 sans-serif; /* hide text visually */
}
.pkg-card .pkg-info span {
    /* Accessible text but visually hidden */
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.pkg-card .pkg-info svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
}
.pkg-card .pkg-info:hover {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(190, 158, 96, 0.4);
}

/* Featured card: info-icon kontrastet stärker (Card ist hervorgehoben) */
.pkg-card--featured .pkg-info {
    background: rgba(255, 255, 255, 0.95);
}

/* Big info-button in Ablauf-Section: elegant outline style */
.pkg-info--big,
.ablauf-cta .pkg-info {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 1.15rem 2.75rem !important;
    border: 1px solid var(--gold) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--gold-dark, #8b7143) !important;
    font: 500 0.85rem/1 'Playfair Display', serif !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s var(--ease), letter-spacing 0.4s var(--ease),
                box-shadow 0.4s var(--ease), transform 0.35s var(--ease),
                border-color 0.4s var(--ease);
}
/* Gold sweep fill on hover (animated from left) */
.pkg-info--big::before,
.ablauf-cta .pkg-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s var(--ease);
    z-index: 0;
}
.pkg-info--big:hover::before,
.ablauf-cta .pkg-info:hover::before {
    transform: scaleX(1);
}
.pkg-info--big span,
.ablauf-cta .pkg-info span {
    position: relative !important;
    z-index: 1;
    width: auto !important; height: auto !important;
    clip: auto !important;
    overflow: visible !important;
    margin: 0 !important;
}
.pkg-info--big svg,
.ablauf-cta .pkg-info svg {
    position: relative;
    z-index: 1;
    width: 18px; height: 18px;
    transition: transform 0.4s var(--ease);
}
.pkg-info--big:hover,
.ablauf-cta .pkg-info:hover {
    color: #fff !important;
    letter-spacing: 0.24em;
    border-color: var(--gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(184,151,90,0.22) !important;
}
.pkg-info--big:hover svg,
.ablauf-cta .pkg-info:hover svg {
    transform: rotate(90deg);
}

/* Pakete: Info Modal (custom overlay — bulletproof across all browsers) */
.pkg-info-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.pkg-info-overlay.is-open {
    display: flex;
    animation: pkgOverlayIn 0.25s ease forwards;
}
.pkg-info-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(58,53,48,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}
.pkg-info-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    max-height: 88vh;
    background: var(--bg, #faf5ed);
    color: var(--text, #3a3530);
    border-radius: 8px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: pkgDialogIn 0.35s var(--ease) forwards;
}
@keyframes pkgOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes pkgDialogIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
body.pkg-modal-open { overflow: hidden; }
.pkg-info-close {
    position: absolute; top: 0.75rem; right: 1rem;
    background: transparent; border: none;
    font-size: 2rem; line-height: 1;
    color: var(--text, #3a3530);
    cursor: pointer;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.25s ease, transform 0.25s ease;
    z-index: 2;
}
.pkg-info-close:hover { color: var(--gold); transform: rotate(90deg); }
.pkg-info-content {
    padding: 3rem 2.5rem 2.5rem;
    overflow-y: auto;
    flex: 1 1 auto;
}
.pkg-info-heading {
    font-family: var(--font-display, 'Playfair Display'), serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--gold-dark, #8b7143);
}
.pkg-info-content h4 {
    font-family: var(--font-display, 'Playfair Display'), serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem; margin-bottom: 0.5rem;
    color: var(--text, #3a3530);
    letter-spacing: 0.02em;
}
.pkg-info-content p {
    font-family: var(--font-body, 'Inter'), sans-serif;
    font-size: 0.98rem; line-height: 1.65;
    color: rgba(58,53,48,0.85);
    margin-bottom: 0.75rem;
}
.pkg-info-emphasis {
    font-family: 'Playfair Display', serif;
    font-style: italic !important;
    color: var(--gold-dark, #8b7143) !important;
    font-size: 1.05rem !important;
    border-left: 3px solid var(--gold, #be9e60);
    padding-left: 1rem;
    margin: 1rem 0 !important;
}
.pkg-info-list {
    list-style: none; padding: 0; margin: 0.5rem 0 1rem;
}
.pkg-info-list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.5rem;
    color: rgba(58,53,48,0.85);
    font-size: 0.95rem;
}
.pkg-info-list li::before {
    content: '✦';
    position: absolute; left: 0;
    color: var(--gold, #be9e60);
    font-size: 0.85rem;
}
.pkg-info-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 2rem;
    background: var(--gold, #be9e60);
    color: #fff; text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.pkg-info-cta:hover {
    background: var(--gold-dark, #8b7143);
    transform: translateY(-2px);
}

/* --- Ablauf Section ("So läuft's ab") --- */
.ablauf {
    background: var(--bg-soft, #f5eee4);
    padding: 5rem 0;
}
.ablauf-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    max-width: 1100px; margin: 3rem auto 0;
}
.ablauf-card {
    background: #fff; padding: 2.5rem 2rem 2rem;
    border-radius: 4px;
    position: relative;
    border: 1px solid var(--border, rgba(58,53,48,0.12));
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ablauf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58,53,48,0.08);
}
.ablauf-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 300; font-style: italic;
    color: var(--gold, #be9e60);
    line-height: 1; display: block; margin-bottom: 0.5rem;
}
.ablauf-card h3 {
    font-family: var(--font-display, 'Playfair Display'), serif;
    font-size: 1.35rem; font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text, #3a3530);
}
.ablauf-card p {
    font-family: var(--font-body, 'Inter'), sans-serif;
    font-size: 0.95rem; line-height: 1.65;
    color: rgba(58,53,48,0.75);
}
.ablauf-cta {
    text-align: center; margin-top: 3rem;
}

@media (max-width: 900px) {
    .ablauf-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* --- Footer Bilderzeit: TextPressure (ReactBits port, vanilla) --- */
@font-face {
    font-family: 'Compressa VF';
    src: url('https://res.cloudinary.com/dr6lvwubh/raw/upload/v1529908256/CompressaPRO-GX.woff2') format('woff2-variations');
    font-style: normal;
    font-display: swap;
}

.tp-container {
    position: relative;
    width: 100%;
    height: clamp(120px, 20vw, 240px);
    margin: 0 auto 2rem;
    padding: 1rem 1rem 0;
    background: transparent;
    overflow: hidden;
}
.tp-title {
    font-family: 'Compressa VF', 'Playfair Display', serif;
    color: var(--gold, #be9e60);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    font-weight: 100;
    width: 100%;
    line-height: 1;
    letter-spacing: 0.01em;
}
.tp-title.flex {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.tp-title span {
    display: inline-block;
    color: var(--gold, #be9e60);
    transition: color 0.3s ease;
}
.tp-title span:hover { color: var(--gold-dark, #8b7143); }
@media (prefers-reduced-motion: reduce) {
    .tp-title span {
        font-variation-settings: 'wght' 500, 'wdth' 100, 'ital' 0 !important;
    }
}

/* Simpler footer layout with big BILDERZEIT centered */
.footer-top { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-brand { text-align: center; }
.footer-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--gold-dark, #8b7143);
    margin: 0;
}
.footer-links { justify-content: center; flex-wrap: wrap; }
