/* ==========================================================================
   Andrea — Fitness & Pilates | Landing Page
   Palette: Rosé · Nude · Gold · Lavendel
   ========================================================================== */

:root {
    /* Brand colors */
    --rose-50:  #FBEFF0;
    --rose-100: #F4D7DA;
    --rose-200: #E8B4B8;
    --rose-300: #DC949A;
    --rose-500: #C47278;

    --nude-50:  #FBF7F2;
    --nude-100: #F5EADE;
    --nude-200: #EDDCC9;
    --nude-300: #E0C8AE;

    --gold-300: #D9BE8A;
    --gold-400: #C9A96E;
    --gold-500: #B8945C;
    --gold-600: #9A7B48;

    --lavender-100: #EEE7F7;
    --lavender-200: #D7C6EC;
    --lavender-300: #C8B6E2;
    --lavender-500: #9A85BF;

    /* Neutrals */
    --ink-900: #241A14;
    --ink-700: #4A3B30;
    --ink-500: #7B6B5E;
    --ink-300: #B8AA9C;
    --ink-100: #EDE4D9;

    --bg:       #FDFBF7;
    --bg-alt:   #F8F1E8;
    --surface:  #FFFFFF;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-y: clamp(4rem, 9vw, 8rem);
    --container: 1200px;

    /* Radii */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 24px;
    --r-xl: 36px;
    --r-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(36, 26, 20, 0.05);
    --shadow-md: 0 8px 30px rgba(36, 26, 20, 0.08);
    --shadow-lg: 0 20px 60px rgba(36, 26, 20, 0.12);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== Reset ========== */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-900);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--rose-500); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink-900);
    margin: 0;
    letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

::selection { background: var(--rose-200); color: var(--ink-900); }

/* ========== Layout ========== */
.container {
    width: 100%;
    max-width: var(--container);
    padding: 0 clamp(1.25rem, 4vw, 2rem);
    margin: 0 auto;
}

.section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    max-width: 760px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    color: var(--ink-500);
    max-width: 560px;
}

.accent {
    font-style: italic;
    color: var(--gold-500);
    position: relative;
}

.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--ink-700);
    margin-bottom: 1.25rem;
}

/* ========== Eyebrow ========== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 600;
    color: var(--gold-600);
    margin-bottom: 1.25rem;
}

.eyebrow-center {
    justify-content: center;
}

.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
}

.eyebrow-light {
    color: var(--nude-100);
}

.eyebrow-light .eyebrow-dot {
    background: var(--gold-300);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.6rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    line-height: 1;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--rose-300), var(--rose-500));
    color: #fff;
    box-shadow: 0 8px 24px rgba(196, 114, 120, 0.35);
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 12px 32px rgba(196, 114, 120, 0.45);
}

.btn-outline {
    background: transparent;
    border-color: var(--ink-900);
    color: var(--ink-900);
}

.btn-outline:hover {
    background: var(--ink-900);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--ink-900);
    border-color: var(--ink-100);
}

.btn-ghost:hover {
    background: var(--ink-100);
    color: var(--ink-900);
}

.btn-ghost-light {
    background: transparent;
    color: var(--nude-50);
    border-color: rgba(255,255,255,.35);
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

/* ========== Header / Nav ========== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(253, 251, 247, 0.8);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    transition: box-shadow .3s var(--ease), padding .3s var(--ease), background .3s var(--ease);
}

.site-header.scrolled {
    padding: .55rem 0;
    box-shadow: 0 4px 20px rgba(36,26,20,.06);
    background: rgba(253, 251, 247, 0.92);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--ink-900);
    font-weight: 600;
}

.logo-mark {
    width: 38px; height: 38px;
    color: var(--gold-500);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: .01em;
}

.logo-text em {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--ink-500);
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    gap: 2.25rem;
}

.main-nav a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-700);
    position: relative;
    padding: .25rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: -2px;
    width: 0; height: 2px;
    background: var(--gold-400);
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav-login-mobile { display: none; }

.nav-login-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--rose-600) !important;
    font-weight: 600 !important;
}

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    transform-origin: left;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(2px, -1px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(2px, 1px); }

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 7rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--nude-50) 0%, var(--rose-50) 50%, var(--lavender-100) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .6;
    animation: float 18s ease-in-out infinite;
}

.blob-1 {
    width: 480px; height: 480px;
    background: var(--rose-200);
    top: -120px; right: -80px;
}

.blob-2 {
    width: 380px; height: 380px;
    background: var(--lavender-300);
    bottom: -100px; left: -60px;
    animation-delay: -6s;
}

.blob-3 {
    width: 280px; height: 280px;
    background: var(--gold-300);
    top: 40%; left: 45%;
    opacity: .35;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-title {
    font-size: clamp(2.75rem, 6.5vw, 5.25rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    color: var(--ink-700);
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-meta {
    display: flex;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    padding-top: 2rem;
    border-top: 1px solid var(--ink-100);
}

.meta-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--ink-900);
    line-height: 1.1;
    margin-bottom: .15rem;
}

.meta-item span {
    font-size: .8rem;
    color: var(--ink-500);
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.5deg);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid var(--gold-400);
    border-radius: calc(var(--r-xl) + 12px);
    transform: rotate(-3deg);
    z-index: -1;
    opacity: .6;
}

.hero-image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: .65rem 1rem;
    border-radius: var(--r-full);
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-900);
    box-shadow: var(--shadow-md);
}

.hero-badge svg { color: var(--gold-500); }

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 40px;
    border: 2px solid var(--ink-500);
    border-radius: 15px;
    z-index: 2;
}

.scroll-indicator span {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--ink-500);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 10px); opacity: .3; }
}

/* ========== About ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    inset: auto -20px -20px auto;
    width: 140px; height: 140px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-radius: 50%;
    z-index: -1;
}

.about-list {
    display: grid;
    gap: .85rem;
    margin: 1.75rem 0 2.25rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1rem;
    color: var(--ink-700);
}

.about-list svg {
    color: var(--gold-500);
    flex-shrink: 0;
    background: var(--nude-100);
    padding: 4px;
    border-radius: 50%;
    box-sizing: content-box;
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* ========== Services ========== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card--featured {
    transform: scale(1.02);
}

.service-card--featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-image {
    aspect-ratio: 16/11;
    overflow: hidden;
}

.service-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-body {
    padding: 2rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-num {
    display: block;
    font-family: var(--font-serif);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    margin-bottom: .75rem;
    color: var(--ink-300);
}

.service-body h3 {
    font-size: 1.75rem;
    margin-bottom: .75rem;
}

.service-body p {
    color: var(--ink-700);
    font-size: .97rem;
}

.service-list {
    display: grid;
    gap: .5rem;
    margin: 1rem 0 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ink-100);
    flex: 1;
}

.service-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: .9rem;
    color: var(--ink-500);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink-900);
    margin-top: auto;
    padding-top: .5rem;
}

.service-link svg {
    transition: transform .25s var(--ease);
}

.service-link:hover svg {
    transform: translateX(4px);
}

.service-tag {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: var(--rose-200);
    color: var(--ink-900);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: var(--r-full);
}

.service-card--lavender { border-top: 3px solid var(--lavender-300); }
.service-card--rose { border-top: 3px solid var(--rose-300); }
.service-card--gold { border-top: 3px solid var(--gold-400); }
.service-card--nude { border-top: 3px solid var(--nude-300); }

.service-card--lavender .service-num { color: var(--lavender-500); }
.service-card--rose .service-num { color: var(--rose-500); }
.service-card--gold .service-num { color: var(--gold-500); }
.service-card--nude .service-num { color: var(--gold-600); }

/* ========== Why ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1.25rem;
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--nude-100), var(--rose-50));
    color: var(--gold-500);
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

.why-item p {
    color: var(--ink-500);
    font-size: .93rem;
}

/* ========== CTA Strip (Probetraining) ========== */
.cta-strip {
    position: relative;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(232, 180, 184, .35), transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(200, 182, 226, .3), transparent 55%),
        linear-gradient(135deg, #2b2019 0%, #3d2d22 100%);
    color: var(--nude-50);
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%23ffffff' fill-opacity='0.02' d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-strip-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.cta-strip-text .section-title {
    color: var(--nude-50);
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: .75rem;
}

.cta-strip-text .accent { color: var(--gold-300); }

.cta-strip-text p {
    color: var(--nude-100);
    opacity: .85;
    margin: 0;
}

.cta-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cta-strip-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-strip .eyebrow-center,
    .cta-strip .eyebrow { justify-content: center; }
    .cta-strip-actions { justify-content: center; }
    .cta-strip-actions .btn { width: 100%; justify-content: center; }
}

/* ========== Gutschein ========== */
.gutschein {
    position: relative;
    background: linear-gradient(160deg, var(--nude-50) 0%, var(--rose-50) 55%, var(--lavender-100) 100%);
    overflow: hidden;
}

.gutschein-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob-gs-1 {
    width: 420px; height: 420px;
    background: var(--rose-200);
    top: -140px; right: -120px;
}

.blob-gs-2 {
    width: 340px; height: 340px;
    background: var(--gold-300);
    bottom: -100px; left: -80px;
    opacity: .4;
    animation-delay: -8s;
}

.gutschein-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.gutschein-list {
    display: grid;
    gap: .85rem;
    margin: 1.5rem 0 2rem;
}

.gutschein-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--ink-700);
    font-size: 1rem;
    line-height: 1.5;
}

.gutschein-list li strong {
    color: var(--ink-900);
    font-weight: 600;
}

.gutschein-list svg {
    color: var(--gold-500);
    flex-shrink: 0;
    background: rgba(255,255,255,.7);
    padding: 4px;
    border-radius: 50%;
    box-sizing: content-box;
    margin-top: 2px;
}

.gutschein-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* --- Voucher-Visual --- */
.gutschein-visual {
    position: relative;
    height: clamp(340px, 42vw, 440px);
}

.voucher {
    position: absolute;
    width: 82%;
    aspect-ratio: 16/10;
    border-radius: var(--r-lg);
    padding: clamp(1.25rem, 2vw, 1.75rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    transition: transform .5s var(--ease);
    overflow: hidden;
}

.voucher::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(255,255,255,.7);
    border-radius: calc(var(--r-lg) - 6px);
    pointer-events: none;
}

.voucher--wert {
    top: 0; left: 0;
    background: linear-gradient(135deg, var(--rose-100) 0%, var(--rose-300) 100%);
    color: var(--ink-900);
    transform: rotate(-5deg);
    z-index: 2;
}

.voucher--leistung {
    bottom: 0; right: 0;
    background: linear-gradient(135deg, var(--lavender-200) 0%, var(--lavender-500) 100%);
    color: #fff;
    transform: rotate(4deg);
    z-index: 1;
}

.voucher--leistung::before {
    border-color: rgba(255,255,255,.55);
}

.gutschein-visual:hover .voucher--wert { transform: rotate(-6deg) translate(-6px, -6px); }
.gutschein-visual:hover .voucher--leistung { transform: rotate(5deg) translate(6px, 6px); }

.voucher-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.voucher-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
}

.voucher-value {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.25rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.voucher-value span {
    font-size: .55em;
    opacity: .8;
    margin-right: .2em;
}

.voucher--leistung .voucher-value span {
    margin-right: 0;
    margin-left: .05em;
}

.voucher-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: .8rem;
    opacity: .85;
}

.voucher-brand {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 500;
    opacity: .75;
}

@media (max-width: 1024px) {
    .gutschein-grid { grid-template-columns: 1fr; }
    .gutschein-visual { max-width: 480px; margin: 1rem auto 0; height: 360px; }
}

@media (max-width: 560px) {
    .gutschein-visual {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        padding: .5rem 0;
    }
    .voucher {
        position: static;
        width: 100%;
        max-width: 340px;
        aspect-ratio: 16/10;
        padding: 1.25rem 1.35rem;
    }
    .voucher--wert { top: auto; left: auto; transform: rotate(-2deg); }
    .voucher--leistung { bottom: auto; right: auto; transform: rotate(2deg); }
    .gutschein-visual:hover .voucher--wert { transform: rotate(-2deg); }
    .gutschein-visual:hover .voucher--leistung { transform: rotate(2deg); }
    .voucher-value { font-size: 2.8rem; }
    .voucher-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
        font-size: .78rem;
    }
    .voucher-brand { font-size: 1rem; }
    .gutschein-actions .btn { width: 100%; justify-content: center; }
}

/* ========== Instagram ========== */
.instagram-head {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.instagram-handle {
    margin-top: 1.5rem;
}

.instagram-handle svg {
    color: var(--rose-500);
}

.instagram-embed {
    position: relative;
}

.instagram-embed iframe,
.instagram-embed .lightwidget-widget {
    width: 100%;
    border: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.ig-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--r-md);
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.ig-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 180, 184, .85), rgba(200, 182, 226, .85));
    color: #fff;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.ig-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ig-tile:hover img {
    transform: scale(1.08);
}

.ig-tile:hover .ig-overlay {
    opacity: 1;
}

@media (max-width: 1024px) {
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
}

/* ========== CTA Login ========== */
.cta-login-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    border-radius: var(--r-xl);
    background:
        radial-gradient(circle at 20% 20%, rgba(232, 180, 184, .5), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 182, 226, .4), transparent 50%),
        linear-gradient(135deg, #2b2019, #3d2d22);
    color: var(--nude-50);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.cta-login-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%23ffffff' fill-opacity='0.02' d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-login-text,
.cta-login-actions {
    position: relative;
    z-index: 1;
}

.cta-login-card .section-title {
    color: var(--nude-50);
}

.cta-login-card .accent { color: var(--gold-300); }

.cta-login-card p {
    color: var(--nude-100);
    opacity: .85;
}

.cta-login-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: flex-start;
}

/* ========== Location ========== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.location-details {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-detail-icon {
    width: 44px; height: 44px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.location-detail strong {
    display: block;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-500);
    margin-bottom: .25rem;
    font-weight: 600;
}

.location-detail p {
    margin: 0;
    color: var(--ink-900);
    font-weight: 500;
}

.location-map {
    aspect-ratio: 4/3;
    border-radius: var(--r-lg);
    background: var(--nude-100);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
    color: var(--ink-300);
}

.map-placeholder p {
    margin-top: 1rem;
    color: var(--ink-500);
}

.map-placeholder small {
    color: var(--ink-300);
}

/* ========== Contact ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.contact-direct {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.05rem;
    color: var(--ink-900);
    font-weight: 500;
}

.contact-link svg { color: var(--gold-500); }
.contact-link:hover { color: var(--rose-500); }

.socials {
    display: flex;
    gap: .75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--surface);
    border-radius: 50%;
    color: var(--ink-700);
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--rose-500);
}

/* --- Form --- */
.contact-form {
    background: var(--surface);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 1.25rem;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.contact-form label {
    display: grid;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink-700);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: inherit;
    font-size: .95rem;
    padding: .85rem 1rem;
    border: 1.5px solid var(--ink-100);
    border-radius: var(--r-sm);
    background: var(--bg);
    color: var(--ink-900);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--rose-300);
    box-shadow: 0 0 0 4px var(--rose-50);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    display: flex !important;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem !important;
    color: var(--ink-500) !important;
    font-weight: 400 !important;
}

.form-consent input {
    width: auto;
    margin-top: .15rem;
    accent-color: var(--rose-500);
}

.form-consent a {
    color: var(--rose-500);
    text-decoration: underline;
}

.contact-form .btn {
    justify-self: start;
}

.form-status {
    padding: .75rem 1rem;
    border-radius: var(--r-sm);
    background: var(--lavender-100);
    color: var(--lavender-500);
    font-size: .9rem;
    margin: 0;
}

.form-status.success {
    background: #E8F4E3;
    color: #3F6B2E;
}

.form-status.error {
    background: var(--rose-50);
    color: var(--rose-500);
}

/* ========== Footer ========== */
.site-footer {
    background: #1E1612;
    color: var(--nude-100);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-footer .logo { color: var(--nude-50); }
.site-footer .logo-mark { color: var(--gold-400); }
.site-footer .logo-text em { color: rgba(255,255,255,.5); }

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255,255,255,.55);
    max-width: 320px;
    font-size: .9rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--gold-400);
    margin-bottom: 1.25rem;
}

.footer-col ul { display: grid; gap: .75rem; }

.footer-col a {
    color: rgba(255,255,255,.7);
    font-size: .93rem;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

.footer-bottom p { margin: 0; }

/* ========== Reveal animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .location-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .hero-visual { max-width: 480px; margin: 0 auto; }

    .service-card--featured { transform: none; }
    .service-card--featured:hover { transform: translateY(-8px); }

    .why-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-login-card { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(80vw, 320px);
        background: var(--bg);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,.1);
    }

    .main-nav.is-open { transform: translateX(0); }

    .main-nav ul {
        flex-direction: column;
        gap: 1.25rem;
    }

    .main-nav a {
        font-size: 1.15rem;
    }

    .nav-toggle { display: flex; }

    .main-nav a::after { display: none; }

    .hero { min-height: auto; padding-top: 6rem; padding-bottom: 3rem; }

    .hero-meta {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .service-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .why-item { padding: 1.25rem .5rem; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { justify-content: center; text-align: center; }

    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .nav-cta .btn-ghost { display: none; }
    .nav-login-mobile { display: list-item; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ===================== Map Placeholder (Consent-Gate) ===================== */
.location-map { position: relative; overflow: hidden; }

.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f5ece7 0%, #eee3dc 100%);
    color: var(--ink-700);
}

.map-placeholder svg { color: var(--rose-500); opacity: .85; }
.map-placeholder h3 { font-size: 1.1rem; margin: 0; color: var(--ink-900); }
.map-placeholder p { font-size: .9rem; max-width: 34ch; margin: 0; line-height: 1.5; }
.map-placeholder .btn { margin-top: .25rem; }

.map-fallback-link {
    font-size: .85rem;
    color: var(--ink-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===================== Cookie Banner ===================== */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    background: var(--surface, #fff);
    border-radius: var(--r-lg, 16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    border: 1px solid rgba(0, 0, 0, .06);
    animation: cookieSlide .4s var(--ease, ease-out);
}

@keyframes cookieSlide {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.1rem 1.35rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner-text { flex: 1 1 320px; min-width: 0; }
.cookie-banner-text strong { display: block; font-size: .95rem; margin-bottom: .25rem; color: var(--ink-900); }
.cookie-banner-text p { font-size: .85rem; line-height: 1.5; color: var(--ink-700); margin: 0; }
.cookie-banner-text a { color: var(--rose-600); text-decoration: underline; text-underline-offset: 2px; }

.cookie-banner-actions {
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .cookie-banner { left: .5rem; right: .5rem; bottom: .5rem; }
    .cookie-banner-inner { padding: 1rem; gap: .85rem; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

.cookie-reopen {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 900;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .08);
    background: var(--surface, #fff);
    color: var(--ink-700);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: .75;
    transition: opacity .2s, transform .2s;
}
.cookie-reopen:hover { opacity: 1; transform: scale(1.05); }
.cookie-reopen[hidden] { display: none; }
