    /* ===========================
    BASE & VARIABLES
    =========================== */
    :root {
        --gold:        #d4af37;
        --gold-light:  #e8c84a;
        --gold-dark:   #b8960c;
        --dark:        #0a0a0a;
        --dark-2:      #111111;
        --dark-3:      #1a1a1a;
        --dark-4:      #222222;
        --gray:        #888888;
        --gray-light:  #cccccc;
        --white:       #ffffff;
        --red:         #e05c5c;
        --font-heading: "Playfair Display", serif;
        --font-body:    "Poppins", sans-serif;
        --transition:   all 0.3s ease;
        --shadow:       0 10px 40px rgba(0,0,0,0.5);
        --radius:       8px;
        --container:    1200px;
        --hero-image:   url("../images/3.png");
    }

    body.theme-light {
        --dark: #f6f7f9;
        --dark-2: #ffffff;
        --dark-3: #f0f2f6;
        --dark-4: #e8ebf0;
        --gray: #5f6774;
        --gray-light: #1f2430;
        --white: #0f1320;
        --shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
        --hero-image: url("../images/barber-shop.png");
    }

    body.theme-light .navbar {
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 2px 14px rgba(16, 24, 40, 0.08);
    }

    body.theme-light .navbar.scrolled {
        background: rgba(255, 255, 255, 0.34);
        border-bottom: 1px solid rgba(15, 19, 32, 0.08);
    }

    body.theme-light .navbar .logo-dark {
        display: none;
    }

    body.theme-light .navbar .logo-light {
        display: block;
    }

    body.theme-light .nav-links li a {
        color: #1f2430;
    }

    body.theme-light .nav-links li a:hover {
        color: var(--gold-dark);
    }

    body.theme-light .theme-toggle {
        background: #fff;
        border-color: rgba(184, 150, 12, 0.5);
    }

    body.theme-light .lang-switcher select {
        background: #fff;
        color: #1f2430;
        border-color: rgba(184, 150, 12, 0.45);
    }

    body.theme-light .lang-switcher select option {
        background: #fff;
        color: #1f2430;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
        font-family: var(--font-body);
        background: var(--dark);
        color: var(--gray-light);
        line-height: 1.7;
        overflow-x: hidden;
    }
    h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--white); line-height: 1.3; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; }

    .section-header { text-align: center; margin-bottom: 70px; }
    .section-tag {
        display: inline-block;
        color: var(--gold);
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }
    .section-header h2 { font-size: 2.8rem; margin-bottom: 18px; }
    .section-header p  { max-width: 600px; margin: 0 auto; color: var(--gray); font-size: 1rem; }
    .divider { width: 56px; height: 3px; background: var(--gold); margin: 18px auto 0; }
    .w-100  { width: 100%; justify-content: center; }

    /* BUTTONS */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 30px;
        min-height: 48px;
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.88rem;
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid transparent;
    }
    .btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }
    .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
    .btn-outline:hover { background: var(--white); color: var(--dark); }
    .btn-gold-outline { background: transparent; color: var(--gold); border-color: rgba(212,175,55,0.5); }
    .btn-gold-outline:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-2px); }

    /* NAVBAR */
    .navbar {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1000;
        padding: 18px 0;
        transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
        background: rgba(10, 10, 10, 0.72);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        overflow: visible;
    }


    .navbar.scrolled {
        background: rgba(36, 28, 28, 0.28);
        padding: 14px 0;
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 14px rgba(0,0,0,0.22);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar.scrolled::after {
        opacity: 0.95;
    }
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .navbar .logo {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        transform: scale(1.07);
        transform-origin: left center;
    }

    .navbar .logo-img {
        display: block;
        height: 120px;
        width: 312px;
        object-fit: contain;
        filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.4));
    }

    .navbar.scrolled .logo-img {
        height: 102px;
        width: 278px;
    }

    .navbar .logo-light {
        display: none;
    }

    .navbar .logo-dark {
        display: block;
    }

    .nav-links { display: flex; align-items: center; }
    .nav-links li a { color: rgba(255,255,255,0.88); font-size: 0.8rem; font-weight: 500; padding: 8px 11px; text-transform: uppercase; position: relative; white-space: nowrap; letter-spacing: 0.2px; }
    .nav-links li a::after { content: ""; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 48%; height: 1px; background: rgba(212,175,55,0.45); opacity: 0; transition: opacity 0.2s ease; }
    .nav-links li a:hover { color: #f2e5b4; }
    .nav-links li a:hover::after { opacity: 1; }

    .nav-links .btn-booking { background: var(--gold); color: var(--dark) !important; padding: 9px 20px; border-radius: var(--radius); font-weight: 700; margin-left: 8px; box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28); }
    .nav-links .btn-booking::after { display: none; }
    .nav-links .btn-booking:hover { background: var(--gold-light); }

    .theme-toggle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(212,175,55,0.45);
        background: rgba(255,255,255,0.08);
        color: var(--gold);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .theme-toggle:hover { background: rgba(212,175,55,0.16); color: #f5d777; border-color: rgba(212,175,55,0.65); }

    .lang-switcher { margin-left: 14px; }
    .lang-switcher select { background: rgba(255,255,255,0.07); color: var(--white); border: 1px solid rgba(212,175,55,0.4); padding: 6px 8px; border-radius: var(--radius); font-size: 0.72rem; cursor: pointer; outline: none; font-family: var(--font-body); }
    .lang-switcher select option { background: #111; color: #fff; }
    .lang-switcher select:hover { border-color: var(--gold); }

    /* --- Navbar dropdown "Meer" --- */
    .nav-dropdown { position: relative; }

    .nav-dropdown-toggle {
        background: none;
        border: none;
        color: var(--white);
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        cursor: pointer;
        padding: 6px 4px;
        display: flex;
        align-items: center;
        gap: 5px;
        text-transform: uppercase;
        transition: color .25s;
    }
    .nav-dropdown-toggle:hover { color: var(--gold); }

    body.theme-light .nav-dropdown-toggle { color: #1f2430; }
    body.theme-light .nav-dropdown-toggle:hover { color: var(--gold-dark); }

    .nav-dropdown-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        background: var(--dark-2);
        border: 1px solid rgba(212,175,55,0.25);
        border-radius: var(--radius);
        min-width: 180px;
        list-style: none;
        padding: 8px 0;
        margin: 0;
        box-shadow: 0 12px 36px rgba(0,0,0,0.5);
        z-index: 2000;
        backdrop-filter: blur(10px);
    }
    .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid rgba(212,175,55,0.25);
    }
    .nav-dropdown-menu li a {
        display: block;
        padding: 10px 18px;
        font-size: 0.84rem;
        color: var(--white);
        text-decoration: none;
        transition: background .2s, color .2s;
        text-transform: none;
        letter-spacing: 0;
        font-weight: 400;
    }
    .nav-dropdown-menu li a:hover {
        background: rgba(212,175,55,0.12);
        color: var(--gold);
    }

    .nav-dropdown.open .nav-dropdown-menu { display: block; animation: dropFade .18s ease; }
    @keyframes dropFade { from { opacity:0; transform: translateX(-50%) translateY(-6px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

    .scroll-top-btn {
        position: fixed;
        right: 24px;
        bottom: 24px;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(212, 175, 55, 0.55);
        border-radius: 50%;
        background: rgba(10, 10, 10, 0.82);
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1300;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
    }

    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        background: rgba(212, 175, 55, 0.2);
    }

    body.theme-light .scroll-top-btn {
        background: rgba(255, 255, 255, 0.95);
        color: var(--gold-dark);
        border-color: rgba(184, 150, 12, 0.55);
        box-shadow: 0 8px 18px rgba(16, 24, 40, 0.16);
    }

    body.theme-light .nav-dropdown-menu { background: #fff; border-color: rgba(0,0,0,.1); box-shadow: 0 12px 36px rgba(0,0,0,.15); }
    body.theme-light .nav-dropdown-menu li a { color: #1f2430; }
    body.theme-light .nav-dropdown-menu li a:hover { background: rgba(212,175,55,.1); color: var(--gold-dark); }

    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: transparent; z-index: 1100; }
    .burger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
    .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
    .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* HERO */
    .hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .hero-bg {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 78% 28%, rgba(212,175,55,0.34), transparent 38%),
            radial-gradient(circle at 18% 72%, rgba(255,255,255,0.08), transparent 34%),
            var(--hero-image) center 42%/cover no-repeat;
        transform: scale(1.06);
        animation: heroImageDrift 18s ease-in-out infinite alternate;
        filter: saturate(1.08) contrast(1.06) brightness(0.82);
        z-index: 0;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: -14% -10%;
        z-index: 1;
        background:
            radial-gradient(circle at 25% 18%, rgba(255,255,255,0.13), transparent 32%),
            radial-gradient(circle at 76% 78%, rgba(212,175,55,0.16), transparent 40%),
            repeating-linear-gradient(120deg, rgba(255,255,255,0.03) 0 2px, rgba(0,0,0,0) 2px 22px);
        mix-blend-mode: screen;
        animation: heroOverlayDrift 14s ease-in-out infinite alternate;
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(112deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.66) 45%, rgba(8,8,8,0.78) 100%);
        pointer-events: none;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(140deg, rgba(0,0,0,0.58) 8%, rgba(0,0,0,0.32) 52%, rgba(212,175,55,0.12) 100%);
        z-index: 3;
    }

    .hero-content { position: relative; z-index: 4; text-align: center; padding: 0 24px; max-width: 860px; margin: 0 auto; animation: heroFadeUp 1s ease both; direction: ltr; }
    @keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes heroImageDrift {
        0% { transform: scale(1.06) translate3d(0, 0, 0); }
        100% { transform: scale(1.11) translate3d(-1.4%, -1.2%, 0); }
    }
    @keyframes heroOverlayDrift {
        0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.56; }
        100% { transform: translate3d(-1%, 1%, 0) rotate(0.6deg); opacity: 0.78; }
    }

    .hero-tag { display: inline-flex; align-items: center; gap: 14px; color: var(--gold); font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
    .hero-tag::before, .hero-tag::after { content: ""; width: 36px; height: 1px; background: var(--gold); }

    .hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); color: var(--white); margin-bottom: 8px; font-weight: 700; }
    .hero h1 span { color: var(--gold); }
    .hero-subtitle { font-size: clamp(0.95rem, 2vw, 1.2rem); color: rgba(255,255,255,0.72); margin: 20px auto 42px; max-width: 560px; line-height: 1.8; }
    .hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

    .hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; }
    .hero-scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }
    @keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

    body.theme-light .hero-overlay {
        background: linear-gradient(140deg, rgba(255,255,255,0.66) 0%, rgba(246,247,249,0.44) 50%, rgba(232,200,74,0.2) 100%);
    }

    body.theme-light .hero::after {
        background: linear-gradient(110deg, rgba(255,255,255,0.76) 0%, rgba(246,247,249,0.34) 44%, rgba(246,247,249,0.52) 100%);
    }

    @media (prefers-reduced-motion: reduce) {
        .hero-bg,
        .hero::before,
        .hero-content {
            animation: none;
        }
    }
    body.theme-light .hero h1,
    body.theme-light .hero-tag,
    body.theme-light .hero-subtitle,
    body.theme-light .hero-scroll {
        color: #1f2430;
    }

    body.theme-light .hero-tag::before,
    body.theme-light .hero-tag::after,
    body.theme-light .hero-scroll::after {
        background: rgba(31, 36, 48, 0.35);
    }

    body.theme-light .btn-outline {
        border-color: rgba(31, 36, 48, 0.45);
        color: #1f2430;
    }

    body.theme-light .btn-outline:hover {
        background: #1f2430;
        color: #fff;
    }

    /* STATS */
    .stats-bar { background: var(--dark-3); border-top: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); padding: 50px 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { text-align: center; padding: 20px 10px; border-right: 1px solid rgba(255,255,255,0.16); }
    .stat-item:last-child { border-right: none; }
    .stat-number { font-family: var(--font-heading); font-size: 3.2rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
    .stat-label  { font-size: 0.72rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

    body.theme-light .stats-bar {
        border-top-color: rgba(31,36,48,0.2);
        border-bottom-color: rgba(31,36,48,0.2);
    }

    body.theme-light .stat-item {
        border-right-color: rgba(31,36,48,0.2);
    }

    /* SERVICES */
    .services-section { background: var(--dark-2); padding: 100px 0; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .service-card { background: var(--dark-3); border: 1px solid #1e1e1e; border-radius: var(--radius); padding: 40px 28px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
    .service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s; }
    .service-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-7px); box-shadow: var(--shadow); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 1.55rem; color: var(--gold); transition: var(--transition); }
    .service-card:hover .service-icon { background: var(--gold); color: var(--dark); box-shadow: 0 0 28px rgba(212,175,55,0.45); }
    .service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
    .service-card p  { font-size: 0.86rem; color: var(--gray); margin-bottom: 18px; line-height: 1.8; }
    .service-meta { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 22px; padding: 13px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; }
    .service-price    { font-size: 1.35rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
    .service-duration { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }

    /* ABOUT */
    .about-section { background: var(--dark); padding: 100px 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-image-wrapper { position: relative; }
    .about-image-wrapper img { width: 100%; border-radius: var(--radius); filter: grayscale(15%); }
    .about-image-wrapper .about-img-light { display: none; }
    .about-image-wrapper .about-img-dark { display: block; }
    body.theme-light .about-image-wrapper .about-img-dark { display: none; }
    body.theme-light .about-image-wrapper .about-img-light { display: block; }
    .about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--dark); width: 118px; height: 118px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; text-align: center; line-height: 1.2; box-shadow: 0 0 0 10px var(--dark); }
    .about-badge strong { font-size: 2rem; font-family: var(--font-heading); }
    .about-badge span   { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
    .about-content .section-tag { display: inline-block; }
    .about-content h2 { font-size: 2.4rem; margin: 12px 0 18px; }
    .about-content p  { color: var(--gray); margin-bottom: 14px; line-height: 1.9; }
    .about-features { margin: 28px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-feature-item { display: flex; align-items: center; gap: 10px; color: var(--gray-light); font-size: 0.86rem; }
    .about-feature-item i { color: var(--gold); font-size: 0.85rem; }

    /* TEAM */
    .team-section { background: var(--dark-3); padding: 100px 0; }
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .home-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 320px));
        justify-content: center;
    }
    .team-card { background: var(--dark-2); border: 1px solid #1e1e1e; border-radius: var(--radius); overflow: hidden; transition: var(--transition); text-align: center; }
    .team-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-7px); box-shadow: var(--shadow); }
    .team-photo { position: relative; overflow: hidden; height: 300px; background: var(--dark-4); }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .team-card:hover .team-photo img { transform: scale(1.06); }
    .team-photo-overlay { position: absolute; inset: 0; background: rgba(212,175,55,0.88); display: flex; align-items: center; justify-content: center; gap: 14px; opacity: 0; transition: opacity 0.35s; }
    .team-card:hover .team-photo-overlay { opacity: 1; }
    .team-photo-overlay a { width: 44px; height: 44px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
    .team-photo-overlay a:hover { background: var(--gold); color: var(--dark); transform: scale(1.12); }
    .team-info { padding: 22px 20px; }
    .team-info h3  { font-size: 1.15rem; margin-bottom: 6px; }
    .team-specialty { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
    .team-info p   { color: var(--gray); font-size: 0.84rem; line-height: 1.7; }

    .team-photo.no-photo {
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at 30% 18%, rgba(212,175,55,0.24), rgba(212,175,55,0.05) 42%, rgba(17,17,17,0.9) 100%);
        border-bottom: 1px solid rgba(212,175,55,0.2);
    }

    .team-photo.no-photo i {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: 1px solid rgba(212,175,55,0.45);
        color: var(--gold);
        font-size: 1.65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(10,10,10,0.5);
    }

    .team-quick-actions {
        margin-top: 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .team-quick-actions a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(212,175,55,0.35);
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(212,175,55,0.06);
    }

    .team-quick-actions a:hover {
        background: var(--gold);
        color: var(--dark);
    }

    .team-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
        justify-content: center;
    }

    .team-page-grid .team-mini {
        text-align: center;
        padding: 18px;
    }

    .team-page-grid .team-mini .team-photo.no-photo {
        height: 150px;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .team-page-grid .team-mini h3 {
        margin-bottom: 6px;
    }

    .team-page-grid .team-mini .team-specialty {
        color: var(--gold);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .team-page-grid .team-mini .team-bio {
        color: var(--gray);
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    body.theme-light .team-photo.no-photo {
        background: radial-gradient(circle at 30% 18%, rgba(184,150,12,0.22), rgba(184,150,12,0.05) 44%, rgba(240,242,246,1) 100%);
        border-bottom-color: rgba(184,150,12,0.25);
    }

    body.theme-light .team-photo.no-photo i {
        background: rgba(255,255,255,0.82);
        color: var(--gold-dark);
        border-color: rgba(184,150,12,0.45);
    }

    /* HOURS */
    .hours-section { background: var(--dark-2); padding: 100px 0; }
    .hours-section .hours-title {
        font-family: var(--font-body);
        font-weight: 700;
        letter-spacing: 0.4px;
    }
    .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .hours-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
    .hours-table td { padding: 13px 18px; font-size: 0.88rem; background: var(--dark-3); }
    .hours-table td:first-child { color: var(--gray-light); font-weight: 500; border-radius: var(--radius) 0 0 var(--radius); }
    .hours-table td:last-child  { color: var(--gold); font-weight: 600; text-align: right; border-radius: 0 var(--radius) var(--radius) 0; }
    .hours-table tr.closed td            { color: var(--gray); }
    .hours-table tr.closed td:last-child { color: var(--red); }
    .hours-table tr.today td             { background: rgba(212,175,55,0.09); }
    .hours-table tr.today td:first-child { border-left: 2px solid var(--gold); color: var(--white); }

    .contact-info  { display: flex; flex-direction: column; gap: 22px; }
    .contact-item  { display: flex; align-items: flex-start; gap: 16px; }
    .contact-item-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; }
    .contact-item-text h4 { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
    .contact-item-text p, .contact-item-text a { color: var(--gray-light); font-size: 0.9rem; line-height: 1.6; }
    .contact-item-text a:hover { color: var(--gold); }

    /* CTA BANNER */
    .cta-banner { background: linear-gradient(135deg, #b8960c 0%, var(--gold) 50%, var(--gold-light) 100%); padding: 80px 0; text-align: center; }
    .cta-banner h2 { color: var(--dark); font-size: 2.7rem; margin-bottom: 14px; }
    .cta-banner p  { color: rgba(0,0,0,0.65); font-size: 1.05rem; margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto; }
    .btn-dark { display: inline-flex; align-items: center; gap: 12px; background: var(--dark); color: var(--gold); padding: 16px 40px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; font-family: var(--font-body); transition: var(--transition); }
    .btn-dark:hover { background: #0f0f0f; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }

    /* FOOTER */
    footer { background: #060606; border-top: 1px solid #161616; padding: 80px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; margin-bottom: 60px; }
    .footer-brand .logo { font-size: 1.75rem; display: inline-block; margin-bottom: 14px; }
    .footer-brand .brand-logo,
    .brand-stack-home {
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
        line-height: 1;
        text-transform: none;
    }
    .footer-brand .brand-logo {
        margin-bottom: 14px;
    }
    .footer-brand .brand-main,
    .brand-stack-home .brand-stack-main {
        display: block;
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--white);
    }
    .footer-brand .brand-main {
        font-size: 2rem;
        letter-spacing: 0.6px;
    }
    .footer-brand .brand-sub,
    .brand-stack-home .brand-stack-sub {
        display: block;
        font-family: var(--font-body);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--gold);
    }
    .footer-brand .brand-sub {
        font-size: 0.78rem;
        margin-top: 2px;
    }
    .brand-stack-home {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 auto 10px;
        direction: ltr;
        unicode-bidi: isolate;
    }
    .brand-stack-home .brand-stack-main {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        line-height: 0.95;
        text-align: center;
    }
    .brand-stack-home .brand-stack-sub {
        font-size: 0.74rem;
        margin-top: 8px;
        text-align: center;
    }
    .footer-brand p { color: var(--gray); font-size: 0.88rem; line-height: 1.85; margin-bottom: 24px; max-width: 280px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a { width: 38px; height: 38px; background: #111; border: 1px solid #1e1e1e; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.9rem; transition: var(--transition); }
    .footer-social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-3px); }
    .footer-col h4 { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; font-family: var(--font-body); font-weight: 600; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links li a { color: var(--gray); font-size: 0.86rem; display: flex; align-items: center; gap: 7px; }
    .footer-links li a i { font-size: 0.55rem; color: var(--gold); }
    .footer-links li a:hover { color: var(--gold); padding-left: 4px; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; }
    .footer-contact-item i { color: var(--gold); font-size: 0.82rem; margin-top: 3px; min-width: 14px; }
    .footer-contact-item span, .footer-contact-item a { color: var(--gray); font-size: 0.86rem; line-height: 1.65; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid #111; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .footer-bottom p { color: #484848; font-size: 0.8rem; }
    .footer-bottom-links { display: flex; gap: 22px; }
    .footer-bottom-links a { color: #484848; font-size: 0.8rem; }
    .footer-bottom-links a:hover { color: var(--gold); }
    .footer-cookie-link {
        appearance: none;
        background: transparent;
        border: none;
        color: #484848;
        font-size: 0.8rem;
        font-family: var(--font-body);
        cursor: pointer;
        transition: var(--transition);
    }
    .footer-cookie-link:hover { color: var(--gold); }

    .cookie-banner {
        position: fixed;
        left: 24px;
        right: 24px;
        bottom: 24px;
        z-index: 1200;
    }

    .cookie-banner-inner {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 28px;
        background: rgba(10, 10, 10, 0.94);
        border: 1px solid rgba(212, 175, 55, 0.28);
        border-radius: 18px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(18px);
        padding: 24px 28px;
    }

    .cookie-banner-copy {
        max-width: 760px;
    }

    .cookie-banner-copy h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .cookie-banner-copy p {
        color: var(--gray-light);
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .cookie-banner-links {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 14px;
    }

    .cookie-banner-links a {
        color: var(--gold);
        font-size: 0.84rem;
    }

    .cookie-banner-links a:hover {
        color: var(--gold-light);
    }

    .cookie-banner-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-end;
    }

    body.cookie-banner-visible {
        padding-bottom: 170px;
    }

    body.theme-light footer {
        background: #f4f2ee;
        border-top-color: #e3ddd3;
    }

    body.theme-light .footer-social a {
        background: #fff;
        border-color: #e3ddd3;
        color: #5f6774;
    }

    body.theme-light .footer-bottom,
    body.theme-light .footer-bottom p,
    body.theme-light .footer-bottom-links a {
        border-top-color: #e8e3da;
        color: #6b7280;
    }

    body.theme-light .footer-cookie-link {
        color: #6b7280;
    }

    body.theme-light .footer-cookie-link:hover {
        color: var(--gold-dark);
    }

    body.theme-light .cookie-banner-inner {
        background: rgba(255, 255, 255, 0.96);
        border-color: rgba(184, 150, 12, 0.22);
        box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
    }

    body.theme-light .cookie-banner-copy p {
        color: #5f6774;
    }

    body.theme-light .cookie-banner-links a {
        color: var(--gold-dark);
    }

    /* INNER PAGES */
    .inner-hero {
        padding: 188px 0 70px;
        background: linear-gradient(160deg, rgba(212,175,55,0.12), rgba(0,0,0,0.4));
        border-bottom: 1px solid rgba(212,175,55,0.2);
    }
    .inner-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
    .inner-hero p { color: var(--gray); max-width: 700px; }

    .page-section { background: var(--dark-2); }
    .content-grid { display: grid; gap: 26px; }
    .content-grid.two-col { grid-template-columns: 1fr 1fr; }

    .page-card,
    .image-card {
        background: var(--dark-3);
        border: 1px solid rgba(212,175,55,0.2);
        border-radius: var(--radius);
        padding: 24px;
    }
    .page-card h3 { margin-bottom: 10px; }
    .page-card strong { color: var(--gold); }

    .about-page-grid {
        align-items: start;
    }

    .about-page-copy h2 {
        margin-bottom: 14px;
    }

    .about-page-copy > p {
        color: var(--gray-light);
        margin-bottom: 12px;
        line-height: 1.85;
    }

    .about-page-points {
        margin-top: 24px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-point-card {
        background: rgba(212, 175, 55, 0.06);
        border: 1px solid rgba(212, 175, 55, 0.22);
        border-radius: 10px;
        padding: 14px 16px;
    }

    .about-point-card h3 {
        margin-bottom: 6px;
        font-size: 1rem;
    }

    .about-point-card p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--gray-light);
    }

    .about-image-card {
        padding: 14px;
    }

    .about-image-card figure {
        position: relative;
        margin: 0;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .about-image-card img {
        width: 100%;
        min-height: 430px;
        object-fit: cover;
        object-position: center 38%;
        filter: brightness(1.04) contrast(1.1) saturate(1.08);
    }

    .about-image-card figcaption {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        background: rgba(10, 10, 10, 0.7);
        color: #fff;
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .about-image-note {
        margin-top: 12px;
        color: var(--gray-light);
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .about-extra-section {
        padding-top: 30px;
    }

    .about-extra-header {
        max-width: 760px;
        margin-bottom: 26px;
    }

    .about-extra-header h2 {
        margin: 10px 0;
    }

    .about-extra-header p {
        color: var(--gray-light);
    }

    .about-extra-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    body.theme-light .about-point-card {
        background: rgba(184, 150, 12, 0.08);
        border-color: rgba(184, 150, 12, 0.26);
    }

    body.theme-light .about-page-copy > p,
    body.theme-light .about-point-card p,
    body.theme-light .about-image-note,
    body.theme-light .about-extra-header p {
        color: #384252;
    }

    body.theme-light .about-image-card figcaption {
        background: rgba(15, 19, 32, 0.68);
    }

    .service-detail-meta {
        font-size: 0.8rem;
        color: var(--gray);
        margin-bottom: 6px;
    }

    .service-detail-price {
        font-size: 1rem;
        font-weight: 700;
        color: var(--gold);
    }

    .cards-3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .team-mini img { width: 100%; border-radius: 10px; margin-bottom: 12px; }

    .gallery-grid {
        column-count: 3;
        column-gap: 14px;
    }
    .gallery-item {
        position: relative;
        display: inline-block;
        width: 100%;
        margin: 0 0 14px;
        break-inside: avoid;
        border-radius: 10px;
        overflow: hidden;
    }
    .gallery-grid img {
        width: 100%;
        border-radius: 10px;
        border: 1px solid rgba(212,175,55,0.2);
        background: var(--dark-3);
        transition: transform 0.35s ease, filter 0.35s ease;
    }
    .gallery-item:hover img {
        transform: scale(1.03);
        filter: saturate(1.06);
    }
    .gallery-caption {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 10px;
        background: rgba(10, 10, 10, 0.62);
        color: #fff;
        border-radius: 8px;
        padding: 8px 10px;
        font-size: 0.8rem;
        opacity: 0;
        transform: translateY(8px);
        transition: all 0.3s ease;
    }
    .gallery-item:hover .gallery-caption {
        opacity: 1;
        transform: translateY(0);
    }

    .simple-form { display: grid; gap: 12px; }
    .simple-form input,
    .simple-form textarea {
        width: 100%;
        background: var(--dark-4);
        color: var(--gray-light);
        border: 1px solid rgba(212,175,55,0.2);
        border-radius: 8px;
        padding: 10px 12px;
    }

    .faq-list { display: grid; gap: 10px; }
    .faq-item {
        background: var(--dark-3);
        border: 1px solid rgba(212,175,55,0.2);
        border-radius: 8px;
        padding: 12px 14px;
    }
    .faq-item summary { cursor: pointer; color: var(--white); font-weight: 600; }
    .faq-item p { margin-top: 10px; color: var(--gray); }

    /* SCROLL ANIMATIONS */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }
    .fade-up:nth-child(6) { transition-delay: 0.5s; }

    /* RTL */
    [dir="rtl"] body { text-align: right; }
    [dir="rtl"] .nav-links { flex-direction: row-reverse; }
    [dir="rtl"] .about-grid, [dir="rtl"] .hours-grid, [dir="rtl"] .footer-grid { direction: rtl; }
    [dir="rtl"] .about-badge { right: auto; left: -20px; }
    [dir="rtl"] .hero-tag { flex-direction: row-reverse; }
    [dir="rtl"] .footer-links li a:hover { padding-left: 0; padding-right: 4px; }
    [dir="rtl"] .nav-links li a { text-align: right; }

    /* ===========================
    RESPONSIVE
    =========================== */
    @media (max-width: 1024px) {
        .services-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
        .about-grid    { gap: 50px; }
        .nav-links li a { padding: 8px 8px; font-size: 0.73rem; }
    }

    @media (max-width: 768px) {
        .inner-hero {
            padding: 214px 0 58px;
        }

        .navbar .container {
            align-items: center;
        }

        .navbar .logo {
            transform: scale(1.);
            overflow: hidden;
        }

        .navbar {
            padding: 34px 0;
        }

        .navbar::after {
            top: 100%;
            height: 18px;
            opacity: 0.8;
        }

        .navbar.scrolled {
            padding: 1px 0;
        }

        .navbar .logo-img {
            height: 102px;
            width: 260px;
            object-fit: cover;
            object-position: center 68%;
            filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
        }

        .navbar.scrolled .logo-img {
            height: 1px;
            width: 1px;
        }

        .section { padding: 70px 0; }
        .section-header { margin-bottom: 50px; }
        .section-header h2 { font-size: 2rem; }

        .nav-links {
            position: fixed;
            top: 0; right: -100%;
            width: min(300px, 85vw);
            height: 100vh;
            background: rgba(6,6,6,0.98);
            flex-direction: column;
            align-items: flex-start;
            padding: 90px 30px 40px;
            transition: right 0.4s ease;
            overflow-y: auto;
            border-left: 1px solid #1a1a1a;
            backdrop-filter: blur(10px);
        }
        body.theme-light .nav-links {
            background: rgba(255, 255, 255, 0.98);
            border-left-color: #e8e3da;
        }
        body.theme-light .nav-links li { border-bottom-color: #ece7de; }
        body.theme-light .nav-links li a { color: #1f2430; }
        .nav-links.open { right: 0; box-shadow: -10px 0 50px rgba(0,0,0,0.85); }
        .nav-links li { width: 100%; border-bottom: 1px solid #131313; }
        .nav-links li a { display: block; padding: 15px 0; font-size: 0.9rem; }
        .nav-links li a::after { display: none; }
        .nav-links .btn-booking { margin: 18px 0 0; text-align: center; display: block; padding: 12px 0; }
        .lang-switcher { margin: 18px 0 0; }
        .theme-toggle { margin-top: 18px; }
        /* Dropdown in mobiel menu: toon altijd als lijst */
        .nav-dropdown { width: 100%; }
        .nav-dropdown-toggle { width: 100%; padding: 15px 0; font-size: .9rem; justify-content: flex-start; }
        .nav-dropdown-menu {
            display: none;
            position: static;
            transform: none;
            background: rgba(255,255,255,0.05);
            border: none;
            border-radius: 0;
            box-shadow: none;
            padding: 0 0 0 16px;
            min-width: 0;
        }
        .nav-dropdown-menu::before { display: none; }
        .nav-dropdown.open .nav-dropdown-menu { display: block; animation: none; }
        .nav-dropdown-menu li a { padding: 10px 0; font-size: .85rem; color: var(--white); }
        body.theme-light .nav-dropdown-menu li a { color: #1f2430; }
        .burger {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            position: relative;
            top: -8px;
        }



        .scroll-top-btn {
            right: 16px;
            bottom: 16px;
            width: 40px;
            height: 40px;
        }

        .hero h1 { font-size: 2.3rem; }
        .hero-subtitle { font-size: 0.92rem; }
        .hero-actions { flex-direction: column; align-items: center; }
        .hero-actions .btn { width: 260px; justify-content: center; }
        .hero-scroll { display: none; }

        .stats-grid { grid-template-columns: repeat(2, 1fr); }
        .stat-item:nth-child(2) { border-right: none; }
        .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.16); }
        body.theme-light .stat-item:nth-child(3),
        body.theme-light .stat-item:nth-child(4) { border-top-color: rgba(31,36,48,0.2); }
        .stat-item:nth-child(4) { border-right: none; }

        .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

        .about-grid { grid-template-columns: 1fr; gap: 60px; }
        .about-badge { width: 92px; height: 92px; bottom: -14px; right: -10px; }
        .about-badge strong { font-size: 1.5rem; }
        .about-features { grid-template-columns: 1fr 1fr; }

        .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

        .hours-grid { grid-template-columns: 1fr; gap: 50px; }

        .cta-banner h2 { font-size: 1.9rem; }
        .cta-banner p  { font-size: 0.95rem; }

        .footer-grid { grid-template-columns: 1fr; gap: 36px; }
        .footer-brand p { max-width: 100%; }
        .footer-bottom { flex-direction: column; text-align: center; }
        .footer-bottom-links { justify-content: center; }
        .cookie-banner {
            left: 16px;
            right: 16px;
            bottom: 16px;
        }
        .cookie-banner-inner {
            flex-direction: column;
            align-items: stretch;
            padding: 20px;
        }
        .cookie-banner-actions {
            justify-content: stretch;
        }
        .cookie-banner-actions .btn {
            width: 100%;
            justify-content: center;
        }

        .content-grid.two-col,
        .cards-3,
        .gallery-grid { grid-template-columns: 1fr; }

        .about-image-card img {
            min-height: 320px;
        }

        .about-extra-grid {
            grid-template-columns: 1fr;
        }

        .gallery-grid { column-count: 1; }
    }

    @media (max-width: 1024px) {
        .gallery-grid { column-count: 2; }
    }

    @media (max-width: 640px) {
        .gallery-grid { column-count: 1; }
    }

    @media (max-width: 480px) {
        .container { padding: 0 16px; }
        .inner-hero { padding: 202px 0 52px; }
        .navbar .logo { transform: scale(1.16); overflow: hidden; }
        .navbar .logo-img { height: 60px; width: 100px; object-fit: cover; object-position: center 70%; }
        .burger { top: center; }
        .navbar.scrolled {
            padding: 0px 0;
        }
        .navbar.scrolled .logo { transform: scale(1.16); overflow: hidden; }
        .navbar.scrolled .logo-img { height: 60px; width: 100px; object-fit: cover; object-position: center 70%; }
        .navbar.scrolled .burger { top: -5x; }
        .hero h1 { font-size: 1.9rem; }
        .stat-number { font-size: 2.4rem; }
        .section-header h2 { font-size: 1.75rem; }
        .about-features { grid-template-columns: 1fr; }
        .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
        .team-grid, .services-grid { max-width: 100%; }
        .cta-banner h2 { font-size: 1.6rem; }
        body.cookie-banner-visible { padding-bottom: 220px; }
    }

    /* ===========================
    ADMIN KALENDER
    =========================== */
    .admin-calendar-wrapper {
        overflow-x: auto;
        margin-top: 8px;
    }

    .admin-calendar {
        width: 100%;
        border-collapse: collapse;
        min-width: 420px;
    }

    .admin-calendar th {
        background: var(--gold);
        color: #fff;
        padding: 8px 4px;
        text-align: center;
        font-size: .82rem;
        font-weight: 600;
    }

    .admin-calendar td {
        border: 1px solid rgba(128,128,128,.25);
        padding: 5px 4px;
        text-align: left;
        vertical-align: top;
        min-width: 50px;
        height: 60px;
        font-size: .8rem;
    }

    .admin-calendar .cal-empty {
        background: rgba(0,0,0,.04);
    }

    .admin-calendar .cal-day-num {
        display: block;
        font-weight: 700;
        font-size: .88rem;
        margin-bottom: 2px;
    }

    .cal-day-link {
        display: block;
        color: inherit;
    }

    .cal-day-link:hover {
        color: var(--gold);
    }

    .cal-apt {
        display: inline-block;
        background: #27ae60;
        color: #fff;
        border-radius: 10px;
        font-size: .68rem;
        padding: 1px 5px;
        margin-top: 2px;
    }

    .cal-absence {
        display: block;
        font-size: .68rem;
        border-radius: 3px;
        padding: 1px 4px;
        margin-top: 2px;
        color: #fff;
        white-space: nowrap;
    }

    .cal-absence.sick      { background: #e74c3c; }
    .cal-absence.vacation  { background: #e67e22; }
    .cal-absence.leave     { background: #3498db; }
    .cal-absence.holiday   { background: #9b59b6; }
    .cal-absence.other     { background: #7f8c8d; }

    .cal-nav {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .cal-nav h4 {
        margin: 0;
        font-size: 1.1rem;
    }

    .cal-nav a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 600;
        font-size: .9rem;
        padding: 4px 10px;
        border: 1px solid var(--gold);
        border-radius: 20px;
        transition: background .2s;
    }

    .cal-nav a:hover {
        background: var(--gold);
        color: #fff;
    }

    .admin-day-schedule {
        display: grid;
        gap: 12px;
    }

    .admin-hour-card {
        display: grid;
        grid-template-columns: 90px 1fr auto;
        gap: 16px;
        align-items: start;
        padding: 14px 16px;
        border: 1px solid rgba(212,175,55,.18);
        border-radius: 10px;
        background: var(--dark-3);
    }

    .admin-hour-time {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        color: var(--gold);
        line-height: 1;
        padding-top: 4px;
    }

    .admin-hour-body {
        min-width: 0;
    }

    /* Admin list & delete button */
    .admin-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .btn-icon-danger {
        background: none;
        border: 1px solid #e74c3c;
        color: #e74c3c;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        cursor: pointer;
        font-size: .75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background .2s, color .2s;
        flex-shrink: 0;
    }

    .btn-icon-danger:hover {
        background: #e74c3c;
        color: #fff;
    }

    /* Simple form labels */
    .simple-form label {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: .85rem;
        font-weight: 500;
    }

    .admin-section .page-card {
        scroll-margin-top: 96px;
    }

    .admin-recent-table th,
    .admin-recent-table td {
        vertical-align: top;
    }

    .admin-section .simple-form input,
    .admin-section .simple-form select,
    .admin-section .simple-form textarea {
        width: 100%;
        background: var(--dark-4);
        color: var(--gray-light);
        border: 1px solid rgba(212,175,55,0.24);
        border-radius: 8px;
        padding: 10px 12px;
        min-height: 42px;
    }

    .admin-section .simple-form select {
        appearance: none;
    }

    .admin-section .simple-form input:focus,
    .admin-section .simple-form select:focus,
    .admin-section .simple-form textarea:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 2px rgba(212,175,55,0.18);
    }

    .admin-section input[type="date"],
    .admin-section input[type="time"] {
        color-scheme: dark;
    }

    .admin-section input[type="date"]::-webkit-calendar-picker-indicator,
    .admin-section input[type="time"]::-webkit-calendar-picker-indicator {
        cursor: pointer;
        opacity: 1;
        filter: invert(78%) sepia(42%) saturate(674%) hue-rotate(2deg) brightness(99%) contrast(96%);
        background: rgba(212,175,55,0.16);
        border-radius: 6px;
        padding: 3px;
    }

    body.theme-light .admin-section .simple-form input,
    body.theme-light .admin-section .simple-form select,
    body.theme-light .admin-section .simple-form textarea {
        background: #fff;
        color: #1f2430;
        border-color: rgba(184,150,12,0.28);
    }

    body.theme-light .admin-section input[type="date"],
    body.theme-light .admin-section input[type="time"] {
        color-scheme: light;
    }

    body.theme-light .admin-section input[type="date"]::-webkit-calendar-picker-indicator,
    body.theme-light .admin-section input[type="time"]::-webkit-calendar-picker-indicator {
        filter: none;
        background: rgba(184,150,12,0.14);
    }

    .admin-toast {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 2000;
        background: rgba(14, 112, 66, 0.96);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 10px;
        padding: 12px 14px;
        font-size: 0.9rem;
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity .25s ease, transform .25s ease;
    }

    .admin-toast.show {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .admin-section {
            padding-top: 24px !important;
        }

        .admin-section .page-card {
            padding: 16px;
        }

        .admin-recent-table {
            min-width: 760px;
            font-size: .8rem !important;
        }

        .admin-recent-table th,
        .admin-recent-table td {
            padding: 6px !important;
        }

        .admin-section .simple-form .btn {
            width: 100%;
            justify-content: center;
        }

        .admin-section .cal-nav {
            justify-content: space-between;
        }

        .admin-toast {
            left: 14px;
            right: 14px;
            bottom: 14px;
        }

        .admin-hour-card {
            grid-template-columns: 1fr;
        }

        .admin-hour-time {
            font-size: 1.1rem;
        }
    }