/* =====================================================
   ROBOGENZ — SHARED STYLESHEET  v2.0
   css/style.css
   ===================================================== */

/* --- CORE ENGINEERING TOKENS --- */
:root {
    --onyx-sheen: #050505;
    --deep-amethyst: #a020f0;
    --sunspun-amber: #ffa500;
    --stark-chalk: #fcfefc;
    --terminal-gray: #0e0e10;
    --wire-border: #1c1c22;
    --header-height: 100px;
    --header-scroll-height: 70px;
    --wa-bottom: 30px;
}

/* --- HARD RESET: ABSOLUTE SHARP EDGES PRINCIPLE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0px !important;
    font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--onyx-sheen);
    color: var(--stark-chalk);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: var(--header-height);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* --- SECTION HEADERS --- */
.section-header {
    margin-bottom: 60px;
    border-left: 3px solid var(--deep-amethyst);
    padding-left: 20px;
    transition: border-color 0.3s ease, padding-left 0.3s ease;
}

.section-header:hover,
.section-header:active {
    border-color: var(--sunspun-amber);
    padding-left: 28px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.section-title span { color: var(--sunspun-amber); }

.section-subtitle {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 10px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    background: transparent;
    text-decoration: none;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-prime { background-color: var(--deep-amethyst); color: var(--stark-chalk); border: 1px solid var(--deep-amethyst); }
.btn-prime::before { background-color: var(--sunspun-amber); }
.btn-prime:hover { color: var(--onyx-sheen); }
.btn-prime:hover::before { transform: translateX(100%); }

.btn-amber { background-color: var(--sunspun-amber); color: var(--onyx-sheen); border: 1px solid var(--sunspun-amber); }
.btn-amber::before { background-color: var(--deep-amethyst); }
.btn-amber:hover { color: var(--stark-chalk); }
.btn-amber:hover::before { transform: translateX(100%); }

.btn-ghost { background-color: transparent; color: var(--stark-chalk); border: 1px solid var(--wire-border); }
.btn-ghost::before { background-color: var(--wire-border); }
.btn-ghost:hover::before { transform: translateX(100%); }

.btn-slow-transition { transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important; }
.btn-slow-transition::before { transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important; }

.text-heavy { font-weight: 900 !important; letter-spacing: 2px !important; }

/* --- NAVIGATION HEADER --- */
header {
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--wire-border);
    position: fixed;
    top: 0; width: 100%; height: var(--header-height);
    z-index: 1000;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

header.scrolled { height: var(--header-scroll-height); background-color: rgba(2, 2, 3, 0.98); }

.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
}

.brand-logo-img {
    height: 40px; display: block; object-fit: contain;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
header.scrolled .brand-logo-img { height: 30px; }

nav { display: flex; align-items: center; }

.nav-links { display: flex; list-style: none; gap: 35px; align-items: center; }
.nav-links a {
    font-size: 0.8rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 1.5px; color: #f0f0f4; text-decoration: none;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--sunspun-amber); }
.nav-links a.btn-prime:hover { color: var(--onyx-sheen); }

.menu-btn {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 4px;
    order: 3; margin-left: auto;
}
.menu-btn div { width: 24px; height: 2px; background-color: var(--stark-chalk); }

/* --- STATS MODULE --- */
.stats-section {
    background-color: var(--terminal-gray);
    border-top: 1px solid var(--wire-border);
    border-bottom: 1px solid var(--wire-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; text-align: center; }
.stats-card { padding: 40px 20px; }
.stats-card h2 { font-size: 2.8rem; font-weight: 900; color: var(--deep-amethyst); margin-bottom: 10px; }
.stats-card p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #8e8e96; }

/* --- FOOTER ARCHITECTURE --- */
footer {
    background-color: #020203;
    border-top: 1px solid var(--wire-border);
    padding: 80px 0 40px;
}
.footer-matrix {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}
.footer-logo-box img { height: 45px; object-fit: contain; display: block; }
.footer-meta-brand p { color: #666; margin-top: 20px; font-size: 0.85rem; max-width: 320px; }
.footer-grid-col h5 {
    text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px;
    color: var(--stark-chalk); margin-bottom: 25px;
}
.footer-grid-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-grid-col ul li { color: #666; font-size: 0.85rem; }
.footer-grid-col ul li a {
    color: #8e8e96; font-size: 0.85rem; display: inline-block;
    text-decoration: none; transition: all 0.2s;
}
.footer-grid-col ul li a:hover { color: var(--deep-amethyst); padding-left: 4px; }
.map-frame-wrapper {
    width: 100%; height: 200px; margin-top: 15px;
    border: 1px solid var(--wire-border); overflow: hidden;
}
.social-log-row { display: flex; gap: 14px; margin-top: 18px; }
.social-icon-anchor {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background-color: #121215;
    border: 1px solid var(--wire-border); color: #8e8e96;
    text-decoration: none; font-size: 1.1rem; transition: all 0.3s;
}
.social-icon-anchor:hover {
    background-color: var(--deep-amethyst); color: var(--stark-chalk);
    border-color: var(--deep-amethyst); transform: scale(1.05);
}
.footer-terminal-logs {
    border-top: 1px solid var(--wire-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 0.75rem;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 10px;
}

/* --- WHATSAPP PERSISTENT TRIGGER --- */
.whatsapp-persistent-trigger {
    position: fixed; bottom: var(--wa-bottom); right: 30px;
    width: 60px; height: 60px; background-color: #25D366;
    z-index: 999; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: bottom 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.whatsapp-persistent-trigger:hover { transform: scale(1.1) translateY(-3px); }
.whatsapp-persistent-trigger svg { width: 30px; height: 30px; fill: #fff; }

/* --- COOKIE CONSENT BANNER --- */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background-color: #08080a;
    border-top: 1px solid var(--wire-border);
    padding: 16px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10000;
    flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.8rem; color: #8e8e96; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--deep-amethyst); text-decoration: none; }
#cookie-banner a:hover { text-decoration: underline; }
.cookie-btn-group { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-accept {
    padding: 9px 22px; background-color: var(--deep-amethyst);
    color: var(--stark-chalk); border: 1px solid var(--deep-amethyst);
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; font-family: 'Montserrat', sans-serif;
    transition: background-color 0.2s;
}
#cookie-accept:hover { background-color: #8a18d0; }
#cookie-decline {
    padding: 9px 22px; background-color: transparent;
    color: #666; border: 1px solid var(--wire-border);
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; font-family: 'Montserrat', sans-serif;
}
#cookie-decline:hover { color: var(--stark-chalk); border-color: #666; }

/* --- REGISTRATION MODAL --- */
.reg-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}
.reg-modal-overlay.open { opacity: 1; pointer-events: all; }

.reg-modal-box {
    background-color: var(--terminal-gray);
    border: 1px solid var(--wire-border);
    border-top: 3px solid var(--deep-amethyst);
    width: 100%; max-width: 580px;
    max-height: 90vh; overflow-y: auto;
    padding: 48px;
    position: relative;
}
.reg-modal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: 1px solid var(--wire-border);
    color: #666; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem; transition: all 0.2s;
}
.reg-modal-close:hover { border-color: var(--deep-amethyst); color: var(--stark-chalk); }

.reg-modal-tag {
    font-size: 0.7rem; text-transform: uppercase; font-weight: 700;
    letter-spacing: 2px; color: var(--deep-amethyst); margin-bottom: 12px;
}
.reg-modal-box h3 {
    font-size: 1.4rem; font-weight: 900; text-transform: uppercase;
    margin-bottom: 28px; line-height: 1.2;
}
.reg-modal-box h3 .reg-event-name { color: var(--sunspun-amber); }

.form-field { margin-bottom: 18px; }
.form-field label {
    display: block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: #8e8e96; margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%; background-color: #0a0a0c;
    border: 1px solid var(--wire-border); color: var(--stark-chalk);
    padding: 12px 16px; font-size: 0.88rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s; outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--deep-amethyst); }
.form-field select option { background-color: #0a0a0c; }

.form-consent {
    display: flex; align-items: flex-start;
    gap: 12px; margin-bottom: 14px; cursor: pointer;
}
.form-consent input[type="checkbox"] {
    width: 16px; height: 16px; flex-shrink: 0;
    accent-color: var(--deep-amethyst); margin-top: 2px; cursor: pointer;
}
.form-consent-text { font-size: 0.78rem; color: #8e8e96; line-height: 1.55; }
.form-consent-text a { color: var(--deep-amethyst); text-decoration: none; }
.form-consent-text a:hover { text-decoration: underline; }

.form-submit-row { margin-top: 24px; }
.form-submit-row .btn { width: 100%; justify-content: center; }

.form-success {
    display: none; background-color: rgba(160, 32, 240, 0.08);
    border: 1px solid var(--deep-amethyst);
    padding: 24px; text-align: center; margin-top: 16px;
}
.form-success p { font-size: 0.9rem; color: var(--stark-chalk); }
.form-success .success-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }

/* Form structure utilities — shared: standalone pages + modal */
.form-section-label {
    font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: #3a3a4a; border-bottom: 1px solid #181820;
    padding-bottom: 7px; margin: 22px 0 14px;
}
.form-section-label:first-child { margin-top: 0; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-radio-group { display: flex; gap: 10px; margin-top: 2px; }
.form-radio-opt {
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-size: 0.8rem; color: #6a6a7a; padding: 10px 14px;
    border: 1px solid var(--wire-border); flex: 1;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.form-radio-opt:has(input:checked) {
    border-color: var(--deep-amethyst); background: rgba(160,32,240,0.06); color: var(--stark-chalk);
}
.form-radio-opt input[type="radio"] { accent-color: var(--deep-amethyst); flex-shrink: 0; }
#sama-id-field { display: none; margin-top: 4px; }

/* --- CAMP WIDGET (centered popup + robot icon above WhatsApp) --- */

/* Robot wrap — fixed anchor, stacked above WhatsApp button (right side) */
.camp-robot-wrap {
    position: fixed;
    bottom: calc(var(--wa-bottom, 30px) + 70px);
    right: 30px;
    width: 56px;
    z-index: 1001;
    transition: bottom 0.3s ease;
}

/* Sonar ping — square expanding border, plays when .has-active is set by JS */
.camp-robot-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--deep-amethyst);
    opacity: 0;
    pointer-events: none;
}
.camp-robot-wrap.has-active::after {
    animation: robot-ping 3.5s ease-out infinite;
}
@keyframes robot-ping {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Notification badge — sharp square count, hidden by default */
.camp-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 3px;
    background: #e8192c;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    display: none;
    z-index: 1;
}

/* Robot icon button — visual only, .camp-robot-wrap handles positioning */
.camp-robot-btn {
    width: 56px; height: 56px;
    background-color: var(--terminal-gray);
    border: 2px solid var(--deep-amethyst);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 6px;
    animation: robot-bob 2.5s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(160, 32, 240, 0.3);
    transition: box-shadow 0.3s ease;
}
.camp-robot-btn:hover { box-shadow: 0 0 22px rgba(160, 32, 240, 0.6); }
.camp-robot-btn svg { width: 100%; height: 100%; }
.robot-chest { animation: robot-pulse 1.8s ease-in-out infinite; }

@keyframes robot-bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}
@keyframes robot-pulse {
    0%, 100% { opacity: 0.45; }
    50%       { opacity: 1; }
}

/* Backdrop — only when .open (click), not on hover */
.camp-widget-backdrop {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9499;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.camp-widget.open .camp-widget-backdrop {
    opacity: 1; pointer-events: all;
}

/* Card — centered in viewport */
.camp-widget-card {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: min(460px, calc(100vw - 48px));
    background-color: var(--terminal-gray);
    border: 1px solid var(--wire-border);
    border-top: 3px solid var(--deep-amethyst);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    z-index: 9500;
    opacity: 0; pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.camp-widget.open .camp-widget-card,
.camp-widget.hovered .camp-widget-card {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; pointer-events: all;
}

.camp-widget-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--wire-border);
    gap: 10px;
}
.camp-widget-tag {
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--deep-amethyst); font-weight: 700; display: block; margin-bottom: 5px;
}
.camp-widget-title {
    font-size: 1.2rem; font-weight: 900; text-transform: uppercase;
    line-height: 1.2; color: var(--stark-chalk); margin: 0;
}
.camp-widget-title span { color: var(--sunspun-amber); }
.camp-widget-close {
    background: none; border: 1px solid var(--wire-border); color: #555;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; flex-shrink: 0;
    transition: all 0.2s;
}
.camp-widget-close:hover { border-color: var(--stark-chalk); color: var(--stark-chalk); }

.camp-widget-body { padding: 18px; }

.camp-widget-chips {
    display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px;
}
.camp-widget-chips span {
    font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    background-color: #0a0a0c; border: 1px solid var(--wire-border);
    color: #8e8e96; padding: 4px 10px;
}

.camp-widget-meta-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-bottom: 14px;
}
.camp-widget-meta-item {
    background-color: #080809; border: 1px solid var(--wire-border);
    padding: 10px 12px;
}
.camp-meta-label {
    display: block; font-size: 0.57rem; text-transform: uppercase;
    letter-spacing: 1px; color: #555; margin-bottom: 3px;
}
.camp-meta-val { font-size: 0.8rem; font-weight: 700; color: var(--stark-chalk); }

.camp-widget-offer {
    font-size: 0.65rem; color: var(--sunspun-amber); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    background-color: rgba(255, 165, 0, 0.04);
    padding: 9px 12px;
}

/* Widget camp list (simplified — stacked list, no carousel) */
.widget-camp-list { margin-bottom: 4px; }
.widget-camp-entry { padding: 12px 0; }
.widget-entry-name {
    font-size: 0.8rem; font-weight: 800;
    color: var(--stark-chalk); text-transform: uppercase;
    letter-spacing: 0.5px; margin: 0 0 3px;
}
.widget-entry-venue { font-size: 0.7rem; color: #777; margin: 0 0 2px; }
.widget-entry-dates {
    font-size: 0.72rem; color: var(--sunspun-amber);
    font-weight: 700; margin: 0;
}
.widget-entry-divider { height: 1px; background: var(--wire-border); margin: 4px 0; }

/* Carousel navigation (rendered by JS when multiple camps are active) */
.camp-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px 0;
    border-top: 1px solid var(--wire-border);
    margin-top: 14px;
}
.camp-carousel-arrow {
    background: none;
    border: 1px solid var(--wire-border);
    color: #8e8e96;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}
.camp-carousel-arrow:hover {
    border-color: var(--deep-amethyst);
    color: var(--stark-chalk);
}
.camp-carousel-dots { display: flex; gap: 5px; align-items: center; }
.carousel-dot {
    width: 7px;
    height: 7px;
    background: var(--wire-border);
    border: 1px solid #333;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.carousel-dot.active {
    background: var(--deep-amethyst);
    border-color: var(--deep-amethyst);
}

/* --- GALLERY GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 4px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: block;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: grayscale(40%) brightness(0.7);
    transition: filter 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img,
.gallery-item:focus img {
    filter: grayscale(0%) brightness(0.88);
    transform: scale(1.05);
}
.gallery-item-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(5,5,5,0.9));
    color: var(--stark-chalk);
    font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 24px 12px 10px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-item-label,
.gallery-item:focus .gallery-item-label { transform: translateY(0); }

/* --- GALLERY LIGHTBOX (native <dialog>) --- */
.gallery-lightbox {
    background: rgba(0, 0, 0, 0.97);
    border: 1px solid var(--wire-border);
    padding: 0;
    max-width: min(900px, 95vw);
    width: 100%;
    max-height: 92vh;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    overflow: hidden;
}
.gallery-lightbox::backdrop { background: rgba(0,0,0,0.92); }
.lightbox-close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: 1px solid var(--wire-border);
    color: #666; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem; z-index: 2;
    transition: all 0.2s;
}
.lightbox-close:hover { border-color: var(--stark-chalk); color: var(--stark-chalk); }
#lightbox-img {
    display: block; width: 100%;
    max-height: calc(92vh - 56px);
    object-fit: contain; background-color: #000;
}
.lightbox-caption {
    padding: 12px 16px;
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 1.5px; color: #555;
    text-align: center; border-top: 1px solid var(--wire-border);
}

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */

@media (max-width: 1100px) {
    .footer-matrix { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --header-height: 80px; --header-scroll-height: 70px; }

    /* Hamburger far-right fix */
    .menu-btn { display: flex; }
    nav { position: static; }

    .nav-links {
        position: fixed;
        top: var(--header-height); left: 0;
        width: 100%; height: calc(100vh - var(--header-height));
        background-color: var(--onyx-sheen);
        border-top: 1px solid var(--wire-border);
        flex-direction: column;
        padding: 40px; gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        z-index: 998;
    }
    .nav-links.active-drawer { transform: translateX(0); }

    /* Stats */
    .stats-card { padding: 20px 10px; }
    .stats-card h2 { font-size: 2rem; margin-bottom: 4px; }
    .stats-card p { font-size: 0.7rem; letter-spacing: 0.5px; }

    /* Footer */
    .footer-matrix { grid-template-columns: 1fr 1fr; gap: 30px; }

    /* Panel bullet list alignment fix */
    .panel-bullet-list li { align-items: flex-start; }
    .panel-bullet-list li span { min-width: max-content; white-space: nowrap; }

    /* Modal */
    .reg-modal-box { padding: 32px 20px; }

    /* Camp widget — card is min(460px, 100vw-48px) so already responsive */
    .camp-robot-wrap { right: 16px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
    .gallery-lightbox { max-width: 100vw; max-height: 100vh; }
}

@media (max-width: 480px) {
    .footer-matrix { grid-template-columns: 1fr; }
    .cookie-btn-group { width: 100%; }
    #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
    .reg-modal-box { padding: 24px 16px; }

    /* Camp widget — tighten card padding on tiny screens */
    .camp-widget-header { padding: 14px 14px 12px; }
    .camp-widget-body { padding: 14px; }
    .camp-widget-meta-grid { grid-template-columns: 1fr; gap: 6px; }
    .camp-robot-wrap { right: 12px; }
    .camp-carousel-nav { padding: 10px 14px 0; gap: 7px; }
    .camp-carousel-arrow { width: 24px; height: 24px; font-size: 0.75rem; }
    .carousel-dot { width: 6px; height: 6px; }
}
