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

:root {
    --black: #0c0b09;
    --surface: #141310;
    --surface-2: #1b1a16;
    --surface-3: #22211d;
    --border: #2a2925;
    --border-light: #3a3935;
    --red: #cc0000;
    --red-bright: #e60000;
    --red-dark: #990000;
    --red-glow: rgba(204, 0, 0, 0.08);
    --white: #ffffff;
    --white-off: #f0ece6;
    --white-dim: #b0aaa0;
    --white-muted: #666060;
    --pump: 'Bungee', 'Arial Black', sans-serif;
    --body: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white-off);
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--red);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 2px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 4vw, 64px);
    height: 70px;
    background: rgba(12, 11, 9, 0.75);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s;
}

nav.scrolled {
    height: 56px;
    background: rgba(12, 11, 9, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 22px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

.hero-logo {
    height: clamp(50px, 8vw, 110px);
    width: auto;
    display: block;
    margin-bottom: 28px;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-link.active {
    color: var(--white);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px 10px 28px;
    background: transparent;
    color: var(--white) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
    border: 1px solid var(--red);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    position: relative;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-cta::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    transition: background 0.3s;
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta:hover::after {
    background: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--pump);
    font-size: 32px;
    color: var(--white);
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--red);
}

.mobile-nav-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    margin-top: -16px;
}

.mobile-nav-sub a {
    font-family: var(--body) !important;
    font-size: 14px !important;
    color: var(--white-dim) !important;
    letter-spacing: 0.06em;
}

.mobile-nav-sub a:hover {
    color: var(--white) !important;
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.mobile-nav-contact a {
    font-family: var(--body) !important;
    font-size: 14px !important;
    color: var(--white-dim) !important;
}

.mobile-nav-contact a:hover {
    color: var(--red-bright) !important;
}

/* DROPDOWN */
.nav-item-has-dropdown {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    margin-top: 12px;
}

.nav-item-has-dropdown.dropdown-open .nav-dropdown {
    display: block;
}

.nav-dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 12px;
    color: var(--white-dim);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.nav-dropdown li a:hover {
    color: var(--white);
    background: rgba(204, 0, 0, 0.06);
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(12, 11, 9, 0.94) 0%, rgba(12, 11, 9, 0.6) 50%, rgba(12, 11, 9, 0.15) 100%),
        linear-gradient(to top, rgba(12, 11, 9, 0.95) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(120px, 14vh, 200px) clamp(32px, 5vw, 80px) clamp(60px, 8vh, 100px);
    max-width: 640px;
}

.hero-est {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: slideIn 0.7s 0.2s ease forwards;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 10px;
}

.hero-est::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--pump);
    font-size: clamp(64px, 9vw, 130px);
    color: var(--white);
    line-height: 0.92;
    margin-bottom: 28px;
    opacity: 0;
    animation: slideIn 0.8s 0.35s ease forwards;
}

.hero h1 .red {
    color: var(--red);
}

.hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--white-dim);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideIn 0.7s 0.5s ease forwards;
}

.hero-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
    opacity: 0;
    animation: slideIn 0.7s 0.6s ease forwards;
}

.hero-badge-tv {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    border-radius: 10px;
}

.hero-wk {
    font-family: var(--pump);
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--white);
    opacity: 0.6;
}

.hero-wk span {
    color: var(--red);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: slideIn 0.7s 0.7s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-big-year {
    font-family: var(--pump);
    font-size: clamp(80px, 28vw, 480px);
    color: var(--white);
    opacity: 0.03;
    line-height: 0.85;
    position: absolute;
    bottom: 4%;
    right: 4%;
    z-index: 1;
    pointer-events: none;
}

/* BUTTONS */
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    white-space: nowrap;
    background: var(--red);
    color: var(--white);
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.btn-red::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-red:hover::after {
    transform: translateX(100%);
}

.btn-red:hover {
    background: var(--red-bright);
    box-shadow: 0 6px 32px var(--red-glow);
    transform: translateY(-2px);
}

.btn-outline {
    padding: 16px 40px;
    white-space: nowrap;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--white-dim);
    font-family: var(--body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 12px;
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--white);
}

/* DIVIDERS */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 0 clamp(20px, 5vw, 80px);
}

.marquee-wrap {
    padding: 20px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--pump);
    font-size: clamp(13px, 1.4vw, 17px);
    color: var(--white-muted);
    white-space: nowrap;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-item .dot {
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SHARED */
section {
    padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.stitle {
    font-family: var(--pump);
    font-size: clamp(36px, 5vw, 60px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
}

.stitle .red {
    color: var(--red);
}

.sdesc {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--white-dim);
    max-width: 520px;
    line-height: 1.85;
}

/* ABOUT */
.about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--surface);
    overflow: hidden;
    border-radius: 24px;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--red);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 2;
    border-radius: 0 24px 0 0;
}

.about-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 3vw, 48px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.about-visual-year {
    font-family: var(--pump);
    font-size: clamp(80px, 12vw, 160px);
    color: var(--white);
    opacity: 0.12;
    line-height: 0.85;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.about-visual-label {
    font-family: var(--pump);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.1;
}

.about-visual-sub {
    font-size: 12px;
    color: var(--white-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
}

.about-content .sdesc {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
}

.stat {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.stat:not(:last-child) {
    border-right: 1px solid var(--border);
    padding-right: 24px;
}

.stat:not(:first-child) {
    padding-left: 24px;
}

.stat-num {
    font-family: var(--pump);
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--white-muted);
    letter-spacing: 0.06em;
}

/* FAME */
.fame {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.fame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.fame .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.fame-content {
    position: relative;
    z-index: 1;
}

.fame-quote {
    font-family: var(--pump);
    font-size: clamp(26px, 3.5vw, 44px);
    color: var(--white);
    line-height: 1.15;
    margin: 32px 0;
}

.fame-quote em {
    font-style: normal;
    color: var(--red);
}

.fame-shows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.fame-show {
    padding: 28px 32px;
    background: var(--surface-2);
    border-left: 3px solid var(--red);
    transition: all 0.3s;
    border-radius: 0 16px 16px 0;
}

.fame-show:hover {
    background: var(--surface-3);
    border-left-color: var(--red-bright);
}

.fame-show-name {
    font-family: var(--pump);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 4px;
}

.fame-show-channel {
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
}

.fame-show-desc {
    font-size: 13px;
    color: var(--white-muted);
    margin-top: 8px;
    line-height: 1.6;
}

/* SERVICES */
.services {
    background: var(--black);
}

.services-header {
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-card {
    background: var(--surface);
    padding: clamp(28px, 3vw, 44px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border-radius: 16px;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-card:hover {
    background: var(--surface-2);
}

.service-card:hover::after {
    width: 60%;
}

.service-num {
    font-family: var(--pump);
    font-size: 56px;
    color: var(--red);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 20px;
}

.service-name {
    font-family: var(--pump);
    font-size: clamp(20px, 2vw, 26px);
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.7;
}

/* PRODUCTS */
.products {
    background: var(--surface);
}

.products-header {
    text-align: center;
    margin-bottom: 56px;
}

.products-header .sdesc {
    margin: 0 auto;
}

.products-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-card {
    background: var(--surface-2);
    padding: 40px 36px;
    text-align: center;
    min-width: 180px;
    flex: 1;
    max-width: 240px;
    transition: all 0.3s;
    position: relative;
    border-radius: 16px;
    text-decoration: none;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 0 0 2px 2px;
}

.product-card:hover::before {
    width: 100%;
}

.product-card:hover {
    background: var(--surface-3);
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-sub {
    font-size: 10px;
    color: var(--white-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
}

.product-card-img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.product-card:hover .product-card-img {
    filter: brightness(1);
}

/* HOURS */
.hours {
    background: var(--black);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.hours-table {
    margin-top: 36px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 15px;
    color: var(--white-off);
    font-weight: 400;
}

.hours-time {
    font-size: 15px;
    color: var(--white-dim);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.hours-time.closed {
    color: var(--red);
    font-weight: 400;
}

.hours-row.today .hours-day {
    color: var(--white);
    font-weight: 500;
}

.hours-row.today .hours-time {
    color: var(--white);
}

.hours-row.today {
    background: rgba(204, 0, 0, 0.06);
    margin: 0 -16px;
    padding: 14px 16px;
    border-left: 2px solid var(--red);
    border-radius: 0 12px 12px 0;
}

.hours-note {
    padding: 32px;
    background: var(--surface);
    border-left: 3px solid var(--red);
    margin-bottom: 36px;
    border-radius: 0 16px 16px 0;
}

.hours-note p {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.8;
}

.hours-note strong {
    color: var(--red-bright);
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--white-dim);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
    border-radius: 50%;
}

.contact-item a {
    color: var(--white-off);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--red-bright);
}

/* ROUTE */
.route {
    background: var(--surface);
}

.route-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 48px;
}

.route-card {
    background: var(--surface-2);
    padding: clamp(28px, 3vw, 44px);
    transition: all 0.3s;
    border-radius: 16px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
}

.route-card:hover {
    background: var(--surface-3);
}

.route-card h3 {
    font-family: var(--pump);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}

.route-card p {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.8;
}

/* CTA */
.cta-section {
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vw, 180px) clamp(20px, 5vw, 80px);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--pump);
    font-size: clamp(120px, 18vw, 280px);
    color: var(--white);
    opacity: 0.02;
    white-space: nowrap;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner .label {
    justify-content: center;
}

.cta-inner .sdesc {
    margin: 0 auto 40px;
    text-align: center;
}

/* FOOTER */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 56px clamp(20px, 5vw, 80px) 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand .nav-logo-img {
    height: 20px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--white-muted);
    max-width: 260px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--white-muted);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--red-bright);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--white-muted);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    border-radius: 50%;
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red-bright);
    background: rgba(204, 0, 0, 0.08);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

/* SFEER IMAGES */
.about-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    filter: brightness(0.85) saturate(0.9);
    transition: all 0.4s;
}

.service-card:hover .service-card-img {
    filter: brightness(1) saturate(1);
}

.sfeer {
    background: var(--black);
    padding-top: 0;
}

.sfeer .container {
    padding-bottom: 40px;
}

.sfeer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 6px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 40px);
}

.sfeer-item {
    overflow: hidden;
    border-radius: 12px;
}

.sfeer-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sfeer-item:hover img {
    transform: scale(1.05);
}

.sfeer-item.sfeer-tall {
    grid-row: span 2;
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
    z-index: 0;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .hero-overlay {
        background:
            linear-gradient(to right, rgba(12, 11, 9, 0.92) 0%, rgba(12, 11, 9, 0.7) 100%),
            linear-gradient(to top, rgba(12, 11, 9, 0.95) 0%, transparent 50%);
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid,
    .fame .container,
    .hours-grid,
    .route-cards {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

    .sfeer-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .products-row {
        flex-direction: column;
    }

    .product-card {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat:not(:last-child) {
        border-right: none;
    }

    .stat:not(:first-child) {
        padding-left: 0;
    }

    .sfeer-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .sfeer-item.sfeer-tall {
        grid-row: span 1;
    }

    .service-card-img {
        height: 160px;
    }
}