/* ========================================
   UNBOX — Dynamite-Style Theme
   ======================================== */

/* ---------- @font-face: Aeonik Pro ---------- */
@font-face {
    font-family: 'Aeonik Pro';
    src: url('../fonts/AEONIK_PRO_REGULAR.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aeonik Pro';
    src: url('../fonts/AEONIK_PRO_BOLD.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #FFD700;
    --primary-dark: #e6c200;
    --dark: #0a0a0a;
    --dark-2: #111;
    --dark-3: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-600: #666;
    --gray-400: #999;
    --gray-200: #ddd;
    --gray-100: #f2f2f2;
    --white: #fff;
    --font-body: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Russo One', 'Bebas Neue', sans-serif;
    --font-heading: 'Russo One', 'Oswald', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    height: 42px;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar__phone,
.topbar__email,
.topbar__address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.topbar__phone:hover,
.topbar__email:hover,
.topbar__address:hover {
    color: var(--primary);
}

.topbar__sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar__link {
    font-size: 0.75rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.topbar__link:hover {
    color: var(--primary);
}

.topbar__quote-btn {
    padding: 8px 20px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--dark);
    background: var(--primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.topbar__quote-btn:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .topbar { height:36px; }
    .topbar__inner { padding:0 16px; }
    .topbar__email, .topbar__address, .topbar__link { display:none; }
    .topbar__sep { display:none; }
    .topbar__phone { font-size:0.7rem; }
    .topbar__quote-btn { padding:5px 12px; font-size:0.6rem; }

    .header { top:36px; height:60px; }
    .header__inner { padding:0 16px; }
    .header__nav { display:none; }
    .logo-text { font-size:22px; letter-spacing:2px; }
    .header__lang-dropdown { display:none; }
    .header__quote { display:none; }
}

/* ========================================
   HEADER — Logo left, nav center, icons right
   ======================================== */
.header {
    position: fixed;
    top: 42px; left: 0; right: 0;
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    transition: background 0.4s ease;
}

.header.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
}

/* Left group: hamburger + logo */
.header__left {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 200;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header__logo {
    display: flex;
    align-items: center;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    white-space: nowrap;
}

/* Center: Top Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header__nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    transition: var(--transition);
}
.header__nav-link:hover {
    color: var(--white);
}

/* Wizard link — red CTA button in nav */
.header__nav-link[href*="wizard"],
.header__nav-link[href*="event-wizard"] {
    background: #e53e3e;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    animation: wizardPulse 3s ease-in-out infinite;
}
.header__nav-link[href*="wizard"]:hover,
.header__nav-link[href*="event-wizard"]:hover {
    background: #c53030;
    transform: scale(1.05);
}

@keyframes wizardPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,62,62,0.4); }
    50% { box-shadow: 0 0 12px 4px rgba(229,62,62,0.2); }
}

/* Right group: language + icons */
.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 200;
}

/* Language Dropdown */
.header__lang-dropdown {
    position: relative;
}

.header__lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 7px 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.header__lang-btn:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.header__lang-btn img {
    border-radius: 2px;
    object-fit: cover;
}

.header__lang-btn span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header__lang-btn svg {
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.header__lang-dropdown.open .header__lang-btn svg {
    transform: rotate(180deg);
}

.header__lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 300;
}

.header__lang-dropdown.open .header__lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    color: #ccc;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
}

.header__lang-option:hover {
    background: rgba(255,215,0,0.1);
    color: var(--primary);
}

.header__lang-option img {
    border-radius: 2px;
    object-fit: cover;
}

/* Quote button */
.header__quote {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.header__quote:hover {
    background: var(--white);
}

/* ========================================
   SIDEBAR MENU (from left)
   ======================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -480px;
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    z-index: 300;
    padding: 80px 50px 40px;
    overflow-y: auto;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar.open {
    left: 0;
}

.sidebar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.sidebar__overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Sidebar language switcher */
.sidebar__lang { display:flex; gap:8px; padding:20px 40px; margin-top:auto; }
.sidebar__lang-btn { display:flex; align-items:center; gap:8px; padding:10px 16px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:8px; color:#888; font-size:0.85rem; text-decoration:none; transition:all 0.2s; flex:1; justify-content:center; }
.sidebar__lang-btn:hover { color:#fff; border-color:rgba(255,255,255,0.3); }
.sidebar__lang-btn.active { background:var(--primary); border-color:var(--primary); color:var(--dark); }
.sidebar__lang-btn img { border-radius:2px; }

.sidebar__close {
    position: absolute;
    top: 24px;
    left: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}
.sidebar__close:hover {
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.sidebar__menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar__link {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    padding: 10px 0;
    transition: var(--transition);
}
.sidebar__link:hover {
    color: var(--primary-dark);
    transform: translateX(8px);
}

.sidebar__link--sm {
    font-size: 20px;
    color: var(--gray-600);
}
.sidebar__link--sm:hover {
    color: var(--dark);
}

.sidebar__divider {
    height: 1px;
    background: var(--gray-200);
    margin: 16px 0;
}

/* Submenu */
.sidebar__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 16px;
}
.sidebar__item.has-submenu.active .sidebar__submenu {
    max-height: 300px;
}
.sidebar__submenu li a {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-600);
    padding: 6px 0;
    transition: var(--transition);
}
.sidebar__submenu li a:hover {
    color: var(--dark);
    transform: translateX(6px);
}

.has-submenu > .sidebar__link {
    cursor: pointer;
    position: relative;
}
.has-submenu > .sidebar__link::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 22px;
    font-weight: 400;
    transition: var(--transition);
}
.has-submenu.active > .sidebar__link::after {
    content: '−';
}

/* ========================================
   QUOTE MODAL (slides from right)
   ======================================== */
.quote-modal {
    position: fixed;
    top: 0;
    right: -520px;
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background: var(--dark);
    z-index: 300;
    padding: 80px 50px 40px;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-modal.open {
    right: 0;
}

.quote-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.quote-modal__overlay.open {
    opacity: 1;
    visibility: visible;
}

.quote-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
}
.quote-modal__close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.quote-modal__title {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 12px;
}

.quote-modal__text {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 30px;
}

.quote-modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quote-modal__form input,
.quote-modal__form select,
.quote-modal__form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    outline: none;
    transition: var(--transition);
}
.quote-modal__form input::placeholder,
.quote-modal__form textarea::placeholder {
    color: var(--gray-400);
}
.quote-modal__form input:focus,
.quote-modal__form select:focus,
.quote-modal__form textarea:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
}

.quote-modal__form select {
    appearance: none;
    cursor: pointer;
    color: var(--gray-400);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.quote-modal__form textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-modal__submit {
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.quote-modal__submit:hover {
    background: var(--white);
}

/* ========================================
   HERO — Fullscreen Video Background
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero__video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
}

/* Legacy slide classes (kept for backwards compat) */
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; z-index: 1; }
.hero__slide.active { opacity: 1; z-index: 2; }
.hero__slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }

.hero__slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    padding: 0 20px;
}

.hero__slide-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 90px);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: none;
}
.hero__slide.active .hero__slide-title {
    animation: slideUp 0.8s ease forwards 0.3s;
}

.hero__slide-highlight {
    color: var(--primary);
    font-style: italic;
}

.hero__slide-line {
    width: 80px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    margin: 20px auto;
    opacity: 0;
    animation: none;
}
.hero__slide.active .hero__slide-line {
    animation: fadeIn 0.6s ease forwards 0.8s;
}

.hero__slide-sub {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0;
    animation: none;
}
.hero__slide.active .hero__slide-sub {
    animation: slideUp 0.8s ease forwards 1s;
}

/* Hero Unified Content */
.hero__content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    max-width: 700px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero__title-highlight {
    color: var(--primary);
    font-style: italic;
}

.hero__description {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.hero__btn-icon {
    display: flex;
    align-items: center;
}

.hero__btn--events {
    background: var(--white);
    color: var(--dark);
}
.hero__btn--events:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.hero__btn--rentals {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}
.hero__btn--rentals:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero__btn--buy {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}
.hero__btn--buy:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Slider Arrows */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: var(--transition);
}
.hero__arrow:hover { color: var(--white); transform: translateY(-50%) scale(1.2); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

/* Scroll Down */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    animation: bounce 2s ease infinite;
    transition: var(--transition);
}
.hero__scroll:hover { color: var(--white); }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   VIDEO SHOWCASE
   ======================================== */
.video-showcase {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--dark);
}

.video-showcase__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-showcase__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.video-showcase__titles {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.video-showcase__title {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(80px, 15vw, 220px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
    text-stroke: 2px rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.3);
    transition: none;
}

.video-showcase__title.active {
    animation: videoTitleZoom 3s ease forwards;
}

.video-showcase__title.exiting {
    animation: videoTitleExit 0.8s ease forwards;
}

@keyframes videoTitleZoom {
    0% {
        opacity: 0;
        transform: scale(0.2);
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    }
    15% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: scale(1);
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
    }
}

@keyframes videoTitleExit {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

/* ========================================
   IMAGE SHOWCASE — Rotating Images + Titles
   ======================================== */
.img-showcase {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--dark);
}
.img-showcase__slider {
    position: absolute;
    inset: 0;
}
.img-showcase__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 8s ease;
}
.img-showcase__slide.active {
    opacity: 1;
    transform: scale(1.1);
}
.img-showcase__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    pointer-events: none;
    z-index: 2;
}
.img-showcase__titles {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}
.img-showcase__title {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(80px, 15vw, 220px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.85);
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.3);
}
.img-showcase__title.active { animation: videoTitleZoom 3s ease forwards; }
.img-showcase__title.exiting { animation: videoTitleExit 0.8s ease forwards; }

/* ========================================
   LIGHTBOX (Click image to view full size)
   ======================================== */
.pandora-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: zoom-out;
}
.pandora-lightbox.active { display: flex; }
.pandora-lightbox img {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.pandora-lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}
.pandora-lightbox__close:hover { color: var(--primary); }

/* Make showcase collage items clickable */
.showcase-collage__item[data-lightbox] { cursor: zoom-in; }

/* ========================================
   SHOWCASE BANNER + COLLAGE
   ======================================== */
.showcase-banner {
    background: var(--dark);
    padding: 100px 50px 80px;
}

.showcase-banner__text {
    max-width: 900px;
    margin-bottom: 60px;
}

.showcase-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
    text-stroke: 2px rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.showcase-banner__desc {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
}

.showcase-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 8px;
}

.showcase-collage__item {
    overflow: hidden;
    position: relative;
}

.showcase-collage__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.showcase-collage__item:hover img {
    transform: scale(1.05);
}

.showcase-collage__item--tall {
    grid-row: span 2;
}

.showcase-collage__item--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .showcase-banner { padding: 60px 20px 50px; }
    .showcase-banner__title { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8); }
    .showcase-collage {
        grid-template-columns: 1fr 1fr;
    }
    .showcase-collage__item--tall { grid-row: span 1; }
    .showcase-collage__item--wide { grid-column: span 2; }
}

@media (max-width: 480px) {
    .showcase-collage {
        grid-template-columns: 1fr;
    }
    .showcase-collage__item--wide { grid-column: span 1; }
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}

.intro__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.2;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.intro__highlight {
    color: var(--primary-dark);
    font-style: italic;
}

.intro__text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
}

.intro__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}
.intro__link:hover {
    color: var(--primary-dark);
}

/* ========================================
   CLIENTS LOGOS
   ======================================== */
.clients {
    padding: 60px 0;
    background: var(--gray-100);
}
.clients__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.clients__logo {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gray-400);
    text-transform: uppercase;
    padding: 10px 20px;
    opacity: 0.5;
    transition: var(--transition);
}
.clients__logo:hover { opacity: 1; }

/* ========================================
   EXPERIENCES — Unforgettable Experiences
   ======================================== */
.experiences {
    padding: 100px 0;
    background: var(--dark);
}

.experiences__heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.experiences__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.experiences__card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    margin-bottom: 24px;
}

.experiences__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.experiences__card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.experiences__card-text {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.experiences__card-more {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: #e74c5a;
    padding: 12px 24px;
    transition: var(--transition);
    align-self: flex-start;
}

.experiences__card-more:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .experiences__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .experiences { padding: 60px 0; }
    .experiences__heading { letter-spacing: 4px; margin-bottom: 40px; }
    .experiences__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================
   SERVICES — Cards like Dynamite
   ======================================== */
.services {
    padding: 80px 0;
    background: var(--white);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
}

.service-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}
.service-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card__image img {
    transform: scale(1.06);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    margin: 20px 0 8px;
}

.service-card__text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-card__more {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 600;
    transition: var(--transition);
}
.service-card:hover .service-card__more {
    letter-spacing: 4px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--gray-100);
}
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
    overflow: hidden;
}
.about__image {
    width: 100%;
    height: auto;
}

.about__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 24px;
}

.about__text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}
.about__stat {
    text-align: center;
}
.about__stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--primary-dark);
}
.about__stat-plus {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary-dark);
}
.about__stat-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio {
    padding: 80px 0;
    background: var(--white);
}
.portfolio__heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.portfolio__item--wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.portfolio__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio__item:hover img { transform: scale(1.06); }

.portfolio__item-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.portfolio__item:hover .portfolio__item-info {
    transform: translateY(0);
}

.portfolio__item-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 6px;
}
.portfolio__item-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 80px 0;
    background: var(--dark);
    overflow: hidden;
}

.testimonials__heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 4px;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.testimonials__slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    text-align: center;
    padding: 40px;
}

.testimonial-card__text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.testimonial-card__author strong {
    color: var(--white);
    font-size: 15px;
}
.testimonial-card__author span {
    color: var(--gray-400);
    font-size: 13px;
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonials__btn {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.testimonials__btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}
.testimonials__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}
.testimonials__dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 80px 0;
    background: var(--white);
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact__heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact__text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}
.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
}
.contact__detail svg { color: var(--primary-dark); flex-shrink: 0; }
.contact__detail a:hover { color: var(--primary-dark); }

.contact__socials {
    display: flex;
    gap: 12px;
}
.contact__socials a {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-600);
    transition: var(--transition);
}
.contact__socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* Contact Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 0;
    outline: none;
    transition: var(--transition);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--gray-400); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.contact__form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

.contact__submit {
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.contact__submit:hover {
    background: var(--dark);
    color: var(--white);
}

/* ========================================
   FOOTER — Dynamite style
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
}

.footer__main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 50px;
    padding: 60px 50px;
    align-items: start;
}

/* Social icons — vertical left column */
.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}
.footer__socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* Link columns */
.footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #e74c5a;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer__col a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer__col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Right contact column */
.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer__phone {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    color: #e74c5a;
    letter-spacing: 2px;
    line-height: 1.2;
    transition: var(--transition);
}
.footer__phone:hover { color: var(--white); }

.footer__email {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.2;
    transition: var(--transition);
}
.footer__email:hover { color: #e74c5a; }

.footer__newsletter {
    margin-top: 24px;
    text-align: right;
}
.footer__newsletter p {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__newsletter-form {
    display: flex;
    gap: 0;
}
.footer__newsletter-form input {
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    outline: none;
    width: 200px;
    transition: var(--transition);
}
.footer__newsletter-form input::placeholder { color: var(--gray-600); }
.footer__newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
}
.footer__newsletter-form button {
    padding: 12px 20px;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: #e74c5a;
    color: var(--white);
    border: 1px solid #e74c5a;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.footer__newsletter-form button:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* Bottom bar */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 50px;
    font-size: 13px;
    color: var(--gray-600);
}
.footer__bottom p { margin: 0; }
.footer__bottom a {
    color: var(--gray-600);
    text-decoration: underline;
}
.footer__bottom a:hover { color: var(--primary); }

/* ========================================
   PAGE HERO (shared sub-pages)
   ======================================== */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.page-hero__content {
    position: relative;
    z-index: 2;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero__breadcrumb {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.page-hero__breadcrumb a { color: var(--primary); }
.page-hero__breadcrumb a:hover { color: var(--white); }

/* ========================================
   NEWS MASONRY
   ======================================== */
.news {
    padding: 80px 0;
    background: var(--dark);
}
.news__heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 4px;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}
.news-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-2);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); }
.news-card--tall { grid-row: span 2; }
.news-card--wide { grid-column: span 2; }
.news-card__image {
    width: 100%;
    flex: 1;
    overflow: hidden;
}
.news-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.news-card:hover .news-card__image img { transform: scale(1.06); }
.news-card__body { padding: 20px; }
.news-card__date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}
.news-card__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.news-card__excerpt {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* News Modal */
.news-modal {
    position: fixed;
    top: 0;
    right: -600px;
    width: 560px;
    max-width: 90vw;
    height: 100vh;
    background: var(--dark-2);
    z-index: 300;
    padding: 80px 50px 40px;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-modal.open { right: 0; }
.news-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.news-modal__overlay.open {
    opacity: 1;
    visibility: visible;
}
.news-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
}
.news-modal__close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}
.news-modal__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 24px;
}
.news-modal__date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}
.news-modal__title {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}
.news-modal__content {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
.news-modal__content p { margin-bottom: 16px; }

/* ========================================
   SHARED CALENDAR GRID
   ======================================== */
.cal-day-header {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    text-align: center;
    padding: 8px 0;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
}
.cal-day--empty { background: none; }
.cal-day--available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    cursor: pointer;
}
.cal-day--available:hover {
    background: rgba(34, 197, 94, 0.3);
}
.cal-day--unavailable {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    cursor: not-allowed;
}
.cal-day--selected {
    background: var(--primary) !important;
    color: var(--dark) !important;
    font-weight: 700;
    cursor: pointer;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .header__nav { display: none; }
    .services__grid { grid-template-columns: 1fr 1fr; }
    .about__inner { gap: 40px; }
    .portfolio__grid { grid-template-columns: 1fr 1fr; }
    .portfolio__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
    .contact__inner { gap: 40px; }

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

    .footer__main { grid-template-columns: auto 1fr; gap: 30px; padding: 50px 30px; }
    .footer__columns { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer__contact { grid-column: 1 / -1; align-items: flex-start; }
    .footer__newsletter { text-align: left; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .header__nav { display: none; }
    .header__quote span { display: none; }
    .header__quote { padding: 10px 14px; }
    .header__lang { padding: 5px 10px; }

    .sidebar { width: 100%; max-width: 100%; left: -100%; }
    .quote-modal { width: 100%; max-width: 100%; right: -100%; }

    .hero__content { padding: 0 24px; padding-top: 80px; }
    .hero__title { font-size: clamp(30px, 8vw, 48px); }
    .hero__description { font-size: 15px; }
    .hero__buttons { gap: 12px; }
    .hero__btn { padding: 12px 20px; font-size: 13px; }
    .hero__arrow { display: none; }

    .video-showcase { height: 100vh; }

    .intro { padding: 60px 0; }
    .intro__title { font-size: clamp(24px, 6vw, 36px); }

    .clients__grid { gap: 20px; }

    .services { padding: 60px 0; }
    .services__grid { grid-template-columns: 1fr; gap: 30px; }

    .about { padding: 60px 0; }
    .about__inner { grid-template-columns: 1fr; gap: 30px; }

    .portfolio { padding: 60px 0; }
    .portfolio__grid { grid-template-columns: 1fr; }
    .portfolio__item, .portfolio__item--wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
    .portfolio__item-info { transform: translateY(0); }

    .testimonials { padding: 60px 0; }
    .testimonial-card { padding: 20px 10px; }
    .testimonial-card__text { font-size: 16px; }

    .news { padding: 60px 0; }
    .news__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .news-card--tall, .news-card--wide { grid-row: span 1; grid-column: span 1; }
    .news-modal { width: 100%; max-width: 100%; right: -100%; }

    .contact { padding: 60px 0; }
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    .contact__form-row { grid-template-columns: 1fr; }

    .footer__main { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px; }
    .footer__socials { flex-direction: row; }
    .footer__columns { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer__contact { align-items: flex-start; }
    .footer__newsletter { text-align: left; }
    .footer__newsletter-form input { width: 100%; }
    .footer__bottom { padding: 16px 20px; text-align: center; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 22px; letter-spacing: 3px; }
    .hero__title { font-size: clamp(26px, 8vw, 36px); }
    .hero__buttons { flex-direction: column; }
    .hero__btn { justify-content: center; }

    .footer__columns { grid-template-columns: 1fr; }
    .footer__phone, .footer__email { font-size: 28px; }
}

/* ========================================
   STOCK STATUS BADGES (Global)
   ======================================== */
.stock-badge { display:inline-flex; align-items:center; gap:5px; padding:4px 10px; font-family:var(--font-heading); font-size:0.7rem; letter-spacing:0.5px; border-radius:4px; font-weight:600; margin:6px 0 2px; }
.stock-badge::before { content:''; width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.stock-badge--available { color:#22c55e; background:rgba(34,197,94,0.1); }
.stock-badge--available::before { background:#22c55e; }
.stock-badge--contact { color:#f59e0b; background:rgba(245,158,11,0.1); }
.stock-badge--contact::before { background:#f59e0b; }
.stock-badge--days { color:#f59e0b; background:rgba(245,158,11,0.1); }
.stock-badge--days::before { background:#f59e0b; }
.stock-badge--unavailable { color:#ef4444; background:rgba(239,68,68,0.1); }
.stock-badge--unavailable::before { background:#ef4444; }
.sp-hero__info .stock-badge { font-size:0.8rem; padding:6px 14px; margin:8px 0 4px; }

/* ── Indicative price tooltip ── */
.price-indicative { position:relative; cursor:help; }
.price-indicative .price-ind-label { font-size:0.65rem; color:#999; display:inline-block; margin-top:4px; vertical-align:middle; }
.price-indicative .price-ind-icon { display:inline-flex; align-items:center; justify-content:center; width:14px; height:14px; border-radius:50%; background:rgba(255,255,255,0.08); color:#888; font-size:0.6rem; font-weight:700; margin-left:4px; cursor:pointer; vertical-align:middle; font-style:normal; font-family:serif; }
.price-ind-tooltip { display:none; position:absolute; bottom:calc(100% + 8px); left:50%; transform:translateX(-50%); background:#222; border:1px solid rgba(255,255,255,0.1); border-radius:8px; padding:10px 14px; font-size:0.75rem; color:#ccc; white-space:nowrap; z-index:50; pointer-events:none; }
.price-ind-tooltip::after { content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%); border:6px solid transparent; border-top-color:#222; }
.price-indicative:hover .price-ind-tooltip, .price-indicative:focus-within .price-ind-tooltip { display:block; }
