/* =====================================================
   AWA INVESTMENT GROUP – Global Stylesheet
   Premium Light Glassmorphism · ByKine Style
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    /* Core Palette */
    --white:         #ffffff;
    --off-white:     #faf9f7;
    --cream:         #f5f1ea;
    --warm-gray:     #f0ece4;
    --dark:          #0f0f0f;
    --dark-soft:     #1a1a1a;

    /* Gold */
    --gold:          #c9a84c;
    --gold-light:    #e4c97a;
    --gold-dark:     #a07830;
    --gold-alpha-8:  rgba(201, 168, 76, 0.08);
    --gold-alpha-15: rgba(201, 168, 76, 0.15);
    --gold-alpha-25: rgba(201, 168, 76, 0.25);
    --gold-alpha-40: rgba(201, 168, 76, 0.40);

    /* Text */
    --text-dark:     #0f0f0f;
    --text-body:     #2c2c2c;
    --text-muted:    #777;
    --text-light:    #aaa;

    /* Glass Surfaces */
    --glass-white:   rgba(255, 255, 255, 0.75);
    --glass-white-s: rgba(255, 255, 255, 0.55);
    --glass-border:  rgba(255, 255, 255, 0.6);
    --glass-shadow:  0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --glass-shadow-l:0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);

    /* Header height reference */
    --header-height: 68px;

    /* Layout */
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     32px;
    --radius-full:   999px;

    /* Fonts */
    --font-heading:  'Outfit', sans-serif;
    --font-body:     'Inter', sans-serif;

    /* Transitions */
    --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition:    all 0.35s var(--ease);
}

/* ===== Scrollbar ===== */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-alpha-40) transparent;
    background-color: #0a0a0a;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-alpha-40); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== Body ===== */
body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ===== Scroll-Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--glass-white);
    backdrop-filter: blur(32px) saturate(1.8);
    -webkit-backdrop-filter: blur(32px) saturate(1.8);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 1px 24px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    transition: padding 0.35s var(--ease);
}

.header--scrolled .header-inner { padding: 0.45rem 0; }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s var(--ease);
}
.logo:hover { transform: scale(1.03); }
.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: height 0.35s var(--ease);
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.15));
}
.header--scrolled .logo img { height: 42px; }

/* Nav Desktop */
.nav-desktop {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-desktop a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-body);
    text-decoration: none;
    letter-spacing: 0.01em;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    position: relative;
    transition: color 0.25s, background 0.25s;
}

.nav-desktop a:hover {
    color: var(--text-dark);
    background: rgba(0,0,0,0.04);
}

.nav-desktop a.active,
.nav-desktop a[aria-current="page"] {
    color: var(--gold-dark);
}

.nav-desktop a.cta-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 0.55rem 1.5rem;
    font-weight: 600;
    font-size: 0.86rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px var(--gold-alpha-25);
    transition: all 0.3s var(--ease);
}
.nav-desktop a.cta-nav::after { display: none; }
.nav-desktop a.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gold-alpha-40);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: white;
}

/* Hamburger */
.menu-toggle {
    display: none;
    position: relative;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0;
    transition: var(--transition);
    outline: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(12px);
}
.menu-toggle:hover { background: rgba(255,255,255,0.95); box-shadow: var(--glass-shadow); }
.menu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.menu-toggle span {
    position: absolute;
    left: 9px;
    width: 20px;
    height: 1.5px;
    background: var(--text-body);
    border-radius: var(--radius-full);
    transition: transform 0.3s var(--ease), opacity 0.25s, width 0.25s;
}
.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(2) { width: 14px; }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }
.menu-toggle:not(.open):hover span:nth-child(2) { width: 20px; }

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg); background: var(--gold-dark); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg); background: var(--gold-dark); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--glass-white);
    backdrop-filter: blur(32px) saturate(1.8);
    -webkit-backdrop-filter: blur(32px) saturate(1.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}
@keyframes menuSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open {
    display: block;
    animation: menuSlide 0.25s var(--ease) forwards;
}

.mobile-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    border-radius: var(--radius-md);
    margin: 0 0.75rem 0.2rem;
    transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--gold-alpha-8); color: var(--gold-dark); }
.mobile-menu a:last-child {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    text-align: center;
    font-weight: 600;
    margin-top: 0.4rem;
}
.mobile-menu a:last-child:hover {
    transform: none;
    box-shadow: 0 4px 16px var(--gold-alpha-25);
}

/* ===== Shared Buttons ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 0.95rem 2.4rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px var(--gold-alpha-25);
    transition: all 0.3s var(--ease);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--gold-alpha-40);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: white;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.95rem 2.4rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: 1.5px solid rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.btn-outline:hover {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.btn-gold-small {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--gold-alpha-25);
    transition: all 0.3s var(--ease);
}
.btn-gold-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--gold-alpha-40);
    color: white;
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--glass-white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.12);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease);
}
.btn-outline-small:hover {
    background: white;
    border-color: var(--gold-alpha-40);
    transform: translateY(-2px);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}
.section-title .gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* ===== Glass Card ===== */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}
.glass-card:hover {
    box-shadow: var(--glass-shadow-l);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-4px);
}

/* =====================================================
   FOOTER – Premium Redesign
   ===================================================== */

.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    overflow: hidden;
}

/* ── CTA Strip ── */
.footer-cta-strip {
    background: linear-gradient(135deg, #111008 0%, #1a1507 50%, #111008 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-cta-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.footer-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    line-height: 1.15;
}

.footer-cta-text h3 .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── Body ── */
.footer-body {
    padding: 4rem 0 3rem;
    position: relative;
}

/* Wasserzeichen */
.footer-watermark {
    position: absolute;
    top: -0.5rem;
    right: -2rem;
    font-family: var(--font-heading);
    font-size: 14rem;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* Brand Column */
.footer-brand {}

.footer-logo-img {
    margin-bottom: 1.2rem;
}
.footer-logo-img img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-tagline {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 260px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.footer-address svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Nav/Legal Columns */
.footer-col {}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.35rem 0;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: none;
}
.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 0.4rem;
}

/* Contact cards */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
}
.footer-contact-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.2);
}

.footer-contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.footer-contact-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: white;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    margin-bottom: 0.1rem;
}
.footer-contact-card span {
    display: block;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    margin-bottom: 0.3rem;
}
.footer-contact-card a {
    font-size: 0.78rem;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    display: block;
}
.footer-contact-card a:hover { color: var(--gold); }

/* ── Bottom Bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.footer-gold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    flex-shrink: 0;
    animation: pulse-dot 3s ease-in-out infinite;
}

.footer-bottom-right {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-watermark { font-size: 9rem; }
    .footer-cta-text h3 { font-size: 1.6rem; }
}
@media (max-width: 620px) {
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-text h3 { font-size: 1.4rem; }
    .footer-main-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-watermark { display: none; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(15,15,15,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.modal.open { display: flex; }

.modal-content {
    background: var(--glass-white);
    backdrop-filter: blur(40px) saturate(2);
    -webkit-backdrop-filter: blur(40px) saturate(2);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
    max-width: 700px;
    width: 100%;
    padding: 2.8rem;
    position: relative;
    animation: modalIn 0.4s var(--ease);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(-12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.close-modal {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}
.close-modal:hover { color: var(--text-dark); transform: rotate(90deg); }

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-dark);
    margin-bottom: 0.3rem;
}
.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.modal-header .subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 0.3rem;
    margin-bottom: 1.5rem;
}

.modal-body { margin-top: 1.5rem; }

.modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

.modal-info-section h4,
.modal-extra-info h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 0.9rem;
}

.info-list { list-style: none; padding: 0; }
.info-list li {
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    line-height: 1.5;
}
.info-list li strong { color: var(--text-dark); }

.company-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.company-tag {
    background: var(--gold-alpha-8);
    border: 1px solid var(--gold-alpha-25);
    color: var(--gold-dark);
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all 0.2s;
}
.company-tag:hover { background: var(--gold-alpha-15); }

.modal-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 1.8rem 0; }

.modal-extra-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

/* ===== Responsive ===== */
@media (max-width: 820px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .header-inner { padding: 0.9rem 0; min-height: 64px; }
    .header--scrolled .header-inner { padding: 0.65rem 0; }
    .logo img { height: 44px; }
    .header--scrolled .logo img { height: 38px; }

    .footer { padding: 3.5rem 0 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-logo { font-size: 1.5rem; }
    .footer-copy { font-size: 0.78rem; }

    .section-title { font-size: 2rem; }
    .container { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .section-title { font-size: 1.7rem; }
    .btn-gold { padding: 0.85rem 2rem; font-size: 0.88rem; }

    .modal-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 1.8rem; border-radius: var(--radius-lg); }
    .modal-header h2 { font-size: 1.6rem; }
}

/* ===== ByKine Pulsing ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    10%, 30%  { transform: scale(1.1); }
    20%, 40%  { transform: scale(1); }
}
.bykine-poch {
    display: inline-block;
    animation: pulse 4s ease-in-out infinite;
}
.bykine-poch:hover { animation-play-state: paused; transform: scale(1.05); }


/* =====================================================
   COOKIE BANNER – DSGVO
   ===================================================== */

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999;
    width: calc(100% - 3rem);
    max-width: 860px;
    background: rgba(15, 14, 12, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s;
    pointer-events: none;
    visibility: hidden;
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.cookie-banner-inner {
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cookie-banner-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.cookie-banner-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.55;
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    padding: 0.65rem 1.4rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}
.cookie-btn-accept:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.cookie-btn-decline {
    padding: 0.65rem 1.2rem;
    background: rgba(255,255,255,0.07);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}
.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.cookie-more {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color 0.2s;
}
.cookie-more:hover { color: var(--gold-light); }

@media (max-width: 620px) {
    .cookie-banner-inner { padding: 1.2rem 1.4rem; flex-direction: column; gap: 1rem; }
    .cookie-banner-actions { width: 100%; justify-content: flex-start; }
    .cookie-btn-accept, .cookie-btn-decline { font-size: 0.8rem; }
}

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

