:root {
    --ink: #1a1710;
    --deep: #111009;
    --mid: #2a2416;
    --accent: #b8952a;
    --accent-light: #d4af50;
    --warm: #e8c96a;
    --cream: #faf8f0;
    --muted: #8a8070;
    --card-bg: #ffffff;
    --bg: #faf8f0;
    --nav-bg: rgba(250, 248, 243, 0.85);
    --border: rgba(26,23,16,0.08);
    --card-border: rgba(26,23,16,0.06);
    --section-alt: #ffffff;
    --hero-circle: rgba(184,149,42,0.08);
}

[data-theme="dark"] {
    --ink: #f0ece0;
    --deep: #111009;
    --mid: #2a2416;
    --accent: #e8c96a;
    --accent-light: #f0d878;
    --warm: #e8c96a;
    --cream: #faf8f0;
    --muted: #9a9080;
    --card-bg: #1e1c14;
    --bg: #111009;
    --nav-bg: rgba(17, 16, 9, 0.92);
    --border: rgba(184,149,42,0.12);
    --card-border: rgba(184,149,42,0.1);
    --section-alt: #161410;
    --hero-circle: rgba(184,149,42,0.12);
}

* {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

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

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ─── NAVIGATION ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 12px 8%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

nav img {
    height: 42px;
    transition: transform 0.3s ease;
}

nav img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--ink) !important;
    color: var(--cream) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #b8952a, #d4af50) !important;
    transform: scale(1.03) !important;
    color: white !important;
}

/* ─── HAMBURGER MENU ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 8% 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,149,42,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-text {
    animation: fadeSlideUp 0.9s ease both;
}

.hero-tag {
    display: inline-block;
    background: rgba(184,149,42,0.1);
    color: var(--accent);
    border: 1px solid rgba(184,149,42,0.35);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(135deg, #b8952a, #e8c96a, #b8952a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 14px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--ink);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8952a, #d4af50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184,149,42,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(26,23,16,0.2);
}

.btn-secondary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeSlideUp 1.1s ease both;
}

.hero-logo-wrap {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(184,149,42,0.07), rgba(26,23,16,0.06));
    animation: pulse-ring 3s ease-in-out infinite;
}

.hero-logo-wrap img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.12));
}

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

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(26,23,16,0.1);
    margin-bottom: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─── SECTION SHARED ─── */
section {
    padding: 100px 8%;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
}

.section-header.centered p {
    margin: 0 auto;
}

/* ─── NOVOSTI ─── */
.novosti-section {
    background: var(--section-alt);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26,23,16,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--warm));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card-body {
    padding: 30px;
}

.news-card-body .date {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card-body p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

.news-card-tag {
    display: inline-block;
    background: rgba(184,149,42,0.08);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 14px;
}

/* ─── TIM ─── */
.news-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.read-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.tim-section {
    background: #1a1710;
    color: white;
}

.tim-section .section-label {
    color: var(--warm);
}

.tim-section .section-header h2 {
    color: white;
}

.tim-section .section-header p {
    color: rgba(255,255,255,0.5);
}

.coming-soon-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184,149,42,0.18), transparent 70%);
    pointer-events: none;
}

.coming-soon-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.coming-soon-card p {
    color: rgba(255,255,255,0.5);
    max-width: 420px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.placeholder-avatars {
    display: flex;
    justify-content: center;
    gap: -10px;
    margin-bottom: 30px;
}

.placeholder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--ink);
    background: linear-gradient(135deg, rgba(184,149,42,0.35), rgba(26,23,16,0.5));
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.placeholder-avatar:first-child {
    margin-left: 0;
}

/* ─── KONTAKT ─── */
.kontakt-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.kontakt-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184,149,42,0.07), transparent 70%);
    pointer-events: none;
}

.kontakt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.kontakt-info {
    position: relative;
    z-index: 1;
}

.kontakt-info .section-header {
    margin-bottom: 30px;
}

.kontakt-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid rgba(26,23,16,0.07);
    margin-bottom: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s ease;
}

.kontakt-detail:hover {
    border-color: var(--accent);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.kontakt-icon {
    width: 44px;
    height: 44px;
    background: rgba(184,149,42,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.kontakt-detail-text strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 2px;
}

.kontakt-detail-text span {
    font-size: 0.95rem;
    font-weight: 500;
}

.kontakt-cta {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(26,23,16,0.07);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.kontakt-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.kontakt-cta p {
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ─── FOOTER ─── */
footer {
    background: var(--deep);
    color: rgba(255,255,255,0.6);
    padding: 50px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand img {
    height: 36px;
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* ─── SCROLL REVEAL ─── */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── BACK TO TOP ─── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ─── O NAMA ─── */
.o-nama-section {
    padding: 100px 8%;
    background: var(--bg);
}

.o-nama-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.o-nama-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.o-nama-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 28px 30px;
    border: 1px solid rgba(26,23,16,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.o-nama-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.o-nama-card-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.o-nama-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.o-nama-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .o-nama-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 130px 6% 70px;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .kontakt-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250,248,243,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 8%;
        gap: 16px;
        border-top: 1px solid rgba(26,23,16,0.08);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    nav ul.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 70px 6%;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ─── TIM PREVIEW (index.html) ─── */
.team-preview {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.team-preview-card {
    width: 200px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.team-preview-photo {
    height: 160px;
    background: #111009;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-preview-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8952a, #e8c96a, #b8952a, transparent);
}

.team-preview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-preview-avatar {
    font-size: 2.5rem;
}

.team-preview-info {
    padding: 16px 16px 18px;
    text-align: center;
}

.team-preview-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.team-preview-info p {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b8952a;
}

.btn-outline-gold {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 100px;
    border: 1.5px solid rgba(184,149,42,0.5);
    color: #b8952a;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, #b8952a, #d4af50);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184,149,42,0.3);
}

/* ─── NEWS TICKER ─── */
.news-ticker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    background: rgba(184,149,42,0.06);
    border: 1px solid rgba(184,149,42,0.2);
    border-radius: 100px;
    padding: 10px 18px;
    overflow: hidden;
    max-width: 480px;
    white-space: nowrap;
}

.ticker-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #b8952a;
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
    border-right: 1px solid rgba(184,149,42,0.3);
    padding-right: 12px;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
    flex-shrink: 0;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 0.82rem;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    transition: color 0.3s;
    flex-shrink: 0;
}

.ticker-item:hover {
    color: #b8952a;
}

.ticker-sep {
    color: rgba(184,149,42,0.5);
    font-size: 0.9rem;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--muted);
    transition: color 0.3s;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: var(--accent);
}

.scroll-indicator-text {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-indicator-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 900px) {
    .news-ticker { max-width: 100%; }
    .scroll-indicator { display: none; }
}

/* ─── NEWS BULLETS ─── */
.news-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
}

.news-bullet-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.5;
}

.news-bullet-item:hover {
    color: var(--accent);
}

/* ─── DARK MODE TOGGLE ─── */
.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--accent);
    background: rgba(184,149,42,0.08);
    transform: scale(1.1);
}

/* ─── DARK MODE OVERRIDES ─── */
[data-theme="dark"] nav {
    background: var(--nav-bg);
    border-bottom-color: var(--border);
}

[data-theme="dark"] .hero-logo-wrap {
    background: rgba(255,255,255,0.03);
    border-color: rgba(184,149,42,0.15);
}

[data-theme="dark"] .hero-logo-wrap img {
    filter: drop-shadow(0 20px 60px rgba(184,149,42,0.15));
}

[data-theme="dark"] .hero-logo-wrap::before {
    border-radius: 24px;
    background: radial-gradient(circle at 40% 40%, rgba(184,149,42,0.1), rgba(17,16,9,0.08));
}

[data-theme="dark"] .o-nama-card {
    border-color: rgba(184,149,42,0.1);
}

[data-theme="dark"] .news-card {
    background: #1a1810;
    border-color: rgba(184,149,42,0.1);
}

[data-theme="dark"] .news-card:hover {
    border-color: rgba(184,149,42,0.3);
}

[data-theme="dark"] .kontakt-detail {
    border-color: rgba(184,149,42,0.1);
}

[data-theme="dark"] .kontakt-cta {
    border-color: rgba(184,149,42,0.1);
}

[data-theme="dark"] .hero-stats {
    border-top-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .hamburger span {
    background: var(--ink);
}

[data-theme="dark"] .nav-cta {
    background: var(--accent) !important;
    color: var(--deep) !important;
}

[data-theme="dark"] .news-bullet-item {
    color: rgba(240,236,224,0.75);
}

[data-theme="dark"] .news-bullet-item:hover {
    color: var(--accent);
}

[data-theme="dark"] footer {
    background: #0a0907;
    border-top-color: rgba(184,149,42,0.1);
}

/* ─── DARK MODE TEXT FIXES ─── */
[data-theme="dark"] .tim-section {
    background: #1a1710;
}

[data-theme="dark"] .tim-section .section-label,
[data-theme="dark"] .tim-section .section-header h2,
[data-theme="dark"] .tim-section .section-header p,
[data-theme="dark"] .team-preview-info h3,
[data-theme="dark"] .team-preview-info p {
    color: inherit;
}

[data-theme="dark"] .o-nama-section {
    background: var(--bg);
}

[data-theme="dark"] .o-nama-card {
    background: #1e1c14;
    border-color: rgba(184,149,42,0.12);
}

[data-theme="dark"] .o-nama-card h4 {
    color: var(--ink);
}

[data-theme="dark"] .o-nama-card p {
    color: var(--muted);
}

[data-theme="dark"] .section-label {
    color: var(--accent);
}

[data-theme="dark"] .news-card-tag {
    background: rgba(184,149,42,0.15);
}

[data-theme="dark"] .news-card-title {
    color: var(--ink);
}

[data-theme="dark"] .news-card-excerpt {
    color: var(--muted);
}

[data-theme="dark"] .news-card-date {
    color: var(--muted);
}

[data-theme="dark"] .kontakt-section h2,
[data-theme="dark"] .kontakt-section p {
    color: var(--ink);
}

[data-theme="dark"] .hero p {
    color: rgba(240,236,224,0.65);
}

[data-theme="dark"] .stat-num {
    color: var(--ink);
}

[data-theme="dark"] .stat-label {
    color: var(--muted);
}
