/* =========================================================
   SPHETHU'S SHISANYAMA & CARWASH
   Main Website Styles
   ========================================================= */

/* ---------- RESET ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}

.section {
    padding: 95px 0;
}


/* =========================================================
   COLOURS
   ========================================================= */

:root {
    --black: #080808;
    --dark: #111111;
    --dark-light: #191919;
    --orange: #ff6a00;
    --orange-light: #ff9d00;
    --red: #e41e12;
    --blue: #00a9f4;
    --white: #ffffff;
    --grey: #b9b9b9;
    --light-grey: #eeeeee;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);
}

.nav-container {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 90px;
    height: 76px;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.7px;

    transition: 0.25s ease;
    position: relative;
}

.navbar a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: 0.25s ease;
}

.navbar a:hover {
    color: var(--orange);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.navbar a.active {
    color: var(--orange);
}

.menu-toggle {
    display: none;

    background: transparent;
    color: white;

    border: 0;

    font-size: 30px;
    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: calc(100vh - 88px);

    position: relative;

    display: flex;
    align-items: center;

    /*
       We will replace this gradient with an actual
       Sphethu's hero photograph once the website
       structure is complete.
    */

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(255,106,0,0.25),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            #050505 0%,
            #0d0d0d 48%,
            #241006 100%
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: -100px;

    background: var(--orange);

    opacity: 0.08;

    border-radius: 50%;

    filter: blur(20px);
}

.hero::after {
    content: "🔥";

    position: absolute;

    right: 7%;
    bottom: -40px;

    font-size: 350px;

    opacity: 0.06;

    transform: rotate(-10deg);

    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.5),
            transparent
        );
}

.hero-content {
    position: relative;
    z-index: 5;

    max-width: 850px;
}

.hero-small {
    display: inline-block;

    color: var(--orange);

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 18px;

    font-size: 13px;
}

.hero h1 {
    font-size: clamp(62px, 9vw, 120px);

    line-height: 0.87;

    letter-spacing: -5px;

    margin-bottom: 30px;

    font-weight: 900;
}

.hero h1 span {
    display: block;

    margin-top: 20px;

    font-size: clamp(27px, 4vw, 52px);

    letter-spacing: -1px;

    color: var(--orange);

    text-transform: uppercase;
}

.hero-tagline {
    font-size: clamp(21px, 3vw, 31px);

    font-weight: 800;

    margin-bottom: 12px;
}

.hero-description {
    max-width: 680px;

    color: #cccccc;

    font-size: 17px;

    margin-bottom: 35px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons,
.combo-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    border-radius: 5px;

    font-weight: 800;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    transition: all 0.25s ease;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );

    color: #080808;

    border: 2px solid var(--orange);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(255,106,0,0.25);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.7);

    color: white;
}

.btn-outline:hover {
    background: white;

    color: black;
}

.btn-outline-light {
    border: 2px solid white;

    color: white;
}

.btn-outline-light:hover {
    background: white;

    color: black;
}

.btn-dark {
    background: #111;

    border: 2px solid #333;

    color: white;
}

.btn-dark:hover {
    border-color: var(--orange);

    color: var(--orange);
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {
    text-align: center;

    max-width: 760px;

    margin: 0 auto 55px;
}

.section-heading span,
.section-label {
    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-heading h2,
.combo-content h2,
.community h2 {
    font-size: clamp(34px, 5vw, 55px);

    line-height: 1.05;

    margin: 12px 0 18px;

    letter-spacing: -1.5px;
}

.section-heading p {
    color: #777;

    font-size: 16px;
}


/* =========================================================
   EXPERIENCE / SERVICES
   ========================================================= */

.experience {
    background: #ffffff;

    color: #111111;
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    padding: 42px 35px;

    background: #f6f6f6;

    border: 1px solid #e9e9e9;

    border-radius: 10px;

    transition: 0.3s ease;

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 5px;
    height: 0;

    left: 0;
    top: 0;

    background: var(--orange);

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #111;

    border-radius: 50%;

    font-size: 29px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;

    margin-bottom: 12px;
}

.service-card p {
    color: #666;

    margin-bottom: 22px;
}

.service-card a {
    color: #d95300;

    font-weight: 800;

    font-size: 14px;
}


/* =========================================================
   BRAAI + WASH
   ========================================================= */

.combo-section {
    background:
        linear-gradient(
            135deg,
            #111111,
            #1d0c04
        );
}

.combo-container {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.combo-content p {
    color: #bdbdbd;

    max-width: 600px;

    margin-bottom: 30px;

    font-size: 17px;
}

.combo-box {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.combo-step {
    min-height: 170px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    padding: 28px;

    border-radius: 8px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: 0.3s ease;
}

.combo-step:hover {
    background: rgba(255,106,0,0.08);

    border-color: rgba(255,106,0,0.5);
}

.combo-step strong {
    font-size: 38px;

    color: var(--orange);
}

.combo-step span {
    font-size: 17px;

    font-weight: 800;
}


/* =========================================================
   EVENTS
   ========================================================= */

.events-preview {
    background: #f5f5f5;

    color: #111;
}

.event-placeholder {
    max-width: 950px;

    margin: auto;

    background: #111;

    color: white;

    padding: 50px;

    border-radius: 12px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-left: 6px solid var(--orange);
}

.event-badge {
    display: inline-block;

    background: var(--orange);

    color: #111;

    padding: 5px 10px;

    border-radius: 3px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.event-placeholder h3 {
    font-size: 29px;

    margin-bottom: 8px;
}

.event-placeholder p {
    color: #aaa;
}


/* =========================================================
   COMMUNITY
   ========================================================= */

.community {
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255,106,0,0.18),
            transparent 45%
        ),
        #080808;
}

.community-content {
    max-width: 800px;
}

.community p {
    color: #bbb;

    font-size: 18px;

    max-width: 680px;

    margin: 0 auto 30px;
}


/* =========================================================
   LOCATION
   ========================================================= */

.location {
    background: white;

    color: #111;
}

.location-card {
    max-width: 900px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #f4f4f4;

    padding: 42px;

    border-radius: 10px;

    border: 1px solid #e5e5e5;
}

.location-icon {
    font-size: 35px;
}

.location-card h3 {
    margin: 10px 0;

    font-size: 23px;
}

.location-card p {
    color: #666;
}

.temporary-info {
    font-size: 12px;

    margin-top: 10px;

    font-style: italic;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    padding: 90px 0;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #df3c00,
            #ff8500
        );

    color: #111;
}

.final-cta h2 {
    font-size: clamp(40px, 6vw, 70px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.final-cta p {
    font-size: 19px;

    font-weight: 600;

    margin-bottom: 30px;
}

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

.final-cta .btn-primary {
    background: #111;

    border-color: #111;

    color: white;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #060606;

    padding: 70px 0 25px;

    color: #aaa;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 45px;
}

.footer-brand img {
    width: 125px;

    margin-bottom: 18px;
}

.footer h4 {
    color: white;

    margin-bottom: 20px;

    font-size: 15px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer a {
    display: block;

    margin-bottom: 10px;

    font-size: 14px;

    transition: 0.2s ease;
}

.footer a:hover {
    color: var(--orange);
}

.footer p {
    font-size: 14px;
}

.footer-bottom {
    width: min(1180px, 90%);

    margin: 55px auto 0;

    padding-top: 22px;

    border-top: 1px solid #222;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .section {
        padding: 75px 0;
    }


    /* Navigation */

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;

        top: 88px;
        left: 0;

        width: 100%;

        background: #090909;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 0;

        max-height: 0;

        overflow: hidden;

        transition: max-height 0.35s ease;
    }

    .navbar.open {
        max-height: 550px;

        border-bottom: 1px solid #222;
    }

    .navbar a {
        width: 90%;

        margin: auto;

        padding: 17px 0;

        border-bottom: 1px solid #1c1c1c;
    }

    .navbar a::after {
        display: none;
    }


    /* Hero */

    .hero {
        min-height: 760px;
    }


    /* Services */

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


    /* Combo */

    .combo-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: 91%;
    }

    .section {
        padding: 65px 0;
    }


    /* Header */

    .nav-container {
        min-height: 75px;
    }

    .logo {
        width: 72px;
        height: 65px;
    }

    .navbar {
        top: 75px;
    }


    /* Hero */

    .hero {
        min-height: calc(100vh - 75px);

        padding: 70px 0;

        align-items: center;
    }

    .hero h1 {
        font-size: 58px;

        letter-spacing: -3px;
    }

    .hero h1 span {
        font-size: 25px;

        margin-top: 16px;
    }

    .hero-tagline {
        font-size: 21px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* Cards */

    .service-card {
        padding: 32px 25px;
    }


    /* Combo */

    .combo-box {
        grid-template-columns: 1fr 1fr;
    }

    .combo-step {
        min-height: 145px;

        padding: 20px;
    }

    .combo-step strong {
        font-size: 30px;
    }

    .combo-step span {
        font-size: 14px;
    }

    .combo-actions {
        flex-direction: column;
    }


    /* Events */

    .event-placeholder {
        padding: 30px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    /* Location */

    .location-card {
        padding: 30px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    /* Footer */

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

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 48px;
    }

    .combo-box {
        grid-template-columns: 1fr;
    }

} 

/* =========================================================
   INTERNAL PAGE HERO
   ========================================================= */

.page-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255,106,0,0.28),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #050505,
            #1e0c03
        );

    border-bottom: 1px solid #222;
}

.page-hero::after {
    content: "🔥";

    position: absolute;

    right: 10%;
    bottom: -45px;

    font-size: 260px;

    opacity: 0.06;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content > span {
    color: var(--orange);

    font-size: 12px;

    letter-spacing: 4px;

    font-weight: 900;
}

.page-hero h1 {
    font-size: clamp(58px, 9vw, 100px);

    line-height: 0.95;

    margin: 12px 0 18px;

    letter-spacing: -4px;
}

.page-hero p {
    max-width: 600px;

    color: #ccc;

    font-size: 19px;
}


/* =========================================================
   MENU
   ========================================================= */

.menu-section {
    background: #f5f5f5;

    color: #111;
}

.menu-categories {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 75px;
}

.category-btn {
    border: 1px solid #d5d5d5;

    background: white;

    color: #222;

    padding: 12px 22px;

    border-radius: 30px;

    cursor: pointer;

    font-weight: 800;

    font-size: 12px;

    text-transform: uppercase;

    transition: 0.25s;
}

.category-btn:hover,
.category-btn.active {
    background: #111;

    border-color: #111;

    color: var(--orange);
}

.menu-category-block {
    margin-bottom: 80px;
}

.menu-category-title {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid #ddd;
}

.menu-category-title span {
    color: #d95800;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.menu-category-title h2 {
    font-size: 36px;

    line-height: 1;

    margin-top: 7px;
}

.menu-category-title p {
    color: #777;

    font-size: 14px;
}

.menu-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.menu-item {
    background: white;

    padding: 27px;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    transition: 0.25s ease;
}

.menu-item:hover {
    transform: translateY(-4px);

    border-color: rgba(255,106,0,0.5);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.07);
}

.menu-item-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;
}

.menu-item h3 {
    font-size: 22px;
}

.menu-item > p {
    color: #777;

    font-size: 14px;

    margin-top: 10px;
}

.menu-label {
    color: #d95800;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.menu-price {
    color: #d95800;

    font-size: 19px;

    font-weight: 900;

    white-space: nowrap;
}

.featured-menu-item {
    border: 2px solid var(--orange);

    position: relative;
}

.compact-menu-grid .menu-item {
    padding: 22px 27px;
}


/* Hidden menu filtering state */

.menu-item.menu-hidden {
    display: none;
}


/* =========================================================
   ORDER SECTION
   ========================================================= */

.order-section {
    background: #0b0b0b;
}

.order-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.order-layout > div:first-child h2 {
    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    margin: 15px 0 20px;

    letter-spacing: -2px;
}

.order-layout > div:first-child p {
    color: #aaa;

    max-width: 520px;
}

.order-steps {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.order-step {
    display: flex;

    gap: 25px;

    align-items: center;

    padding: 25px;

    background: #151515;

    border: 1px solid #222;

    border-radius: 7px;
}

.order-step strong {
    color: var(--orange);

    font-size: 29px;
}

.order-step h3 {
    margin-bottom: 3px;
}

.order-step p {
    color: #888;

    font-size: 13px;
}


/* =========================================================
   QR MENU SECTION
   ========================================================= */

.qr-section {
    padding: 90px 0;

    background: white;

    color: #111;
}

.qr-layout {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    align-items: center;

    gap: 70px;
}

.qr-demo {
    display: flex;

    justify-content: center;
}

.fake-qr {
    width: 230px;
    height: 230px;

    background:
        linear-gradient(90deg, #111 10px, transparent 10px) 0 0 / 35px 35px,
        linear-gradient(#111 10px, transparent 10px) 0 0 / 35px 35px,
        #fff;

    border: 15px solid #111;

    display: flex;

    align-items: center;
    justify-content: center;
}

.fake-qr span {
    background: white;

    padding: 10px;

    color: #111;

    font-weight: 900;
}

.qr-layout h2 {
    font-size: clamp(38px, 5vw, 58px);

    line-height: 1;

    margin: 12px 0 20px;
}

.qr-layout p {
    color: #666;

    max-width: 600px;

    margin-bottom: 15px;
}

.qr-layout small {
    color: #999;
}


/* =========================================================
   MENU CTA
   ========================================================= */

.menu-cta {
    padding: 90px 0;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(255,106,0,0.16),
            transparent 45%
        ),
        #080808;
}

.menu-cta > .container > span {
    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;
}

.menu-cta h2 {
    font-size: clamp(50px, 8vw, 85px);

    line-height: 1;

    margin: 12px 0;
}

.menu-cta p {
    color: #aaa;

    margin-bottom: 30px;
}

.menu-cta-buttons {
    justify-content: center;
}


/* =========================================================
   MENU RESPONSIVE
   ========================================================= */

@media (max-width: 800px) {

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

    .order-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .qr-layout {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .qr-layout p {
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 600px) {

    .page-hero {
        min-height: 350px;
    }

    .page-hero h1 {
        font-size: 62px;
    }
.menu-categories {
        justify-content: flex-start;

        margin-bottom: 50px;
    }

    .category-btn {
        padding: 10px 17px;
    }

    .menu-category-title {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }

    .menu-item {
        padding: 22px;
    }

    .fake-qr {
        width: 190px;
        height: 190px;
    }

} 

/* =========================================================
   CAR WASH PAGE
   ========================================================= */

.carwash-hero {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(0,169,244,0.22),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #050505 0%,
            #07151c 65%,
            #052b3c 100%
        );
}

.carwash-hero::after {
    content: "💧";
    opacity: 0.07;
}

.carwash-hero-buttons {
    margin-top: 30px;
}


/* ---------- INTRO ---------- */

.carwash-intro {
    background: #fff;
    color: #111;
}

.carwash-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.carwash-intro-grid > div:first-child h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 12px 0 22px;
}

.carwash-intro-grid > div:first-child p {
    color: #666;
    margin-bottom: 15px;
}

.wash-feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wash-feature {
    background: #f5f5f5;
    border: 1px solid #e7e7e7;
    padding: 23px;
    border-radius: 8px;
}

.wash-feature > span {
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
}

.wash-feature strong {
    font-size: 16px;
}

.wash-feature p {
    color: #777;
    font-size: 12px;
    margin-top: 5px;
}


/* ---------- PACKAGES ---------- */

.wash-packages {
    background: #f3f3f3;
    color: #111;
}

.wash-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.wash-package {
    background: white;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #ddd;
    position: relative;
    transition: 0.3s ease;
}

.wash-package:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}

.wash-package-number {
    color: #ddd;
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
}

.wash-package-label {
    color: #0088c7;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.wash-package h3 {
    font-size: 27px;
    margin: 7px 0 8px;
}

.wash-price {
    color: #0088c7;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
}

.wash-package ul {
    list-style: none;
    margin-bottom: 30px;
}

.wash-package li {
    padding: 9px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.wash-package li::before {
    content: "✓";
    color: #0088c7;
    font-weight: 900;
    margin-right: 10px;
}

.wash-button {
    width: 100%;
}

.featured-wash {
    border: 2px solid #00a9f4;
    transform: scale(1.025);
}

.featured-wash:hover {
    transform: scale(1.025) translateY(-7px);
}

.popular-tag {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #00a9f4;
    color: #05131a;
    font-size: 9px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.package-disclaimer {
    text-align: center;
    color: #999;
    font-size: 11px;
    margin-top: 25px;
}


/* ---------- EAT + WASH ---------- */

.eat-wash {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255,106,0,0.13),
            transparent 30%
        ),
        #0a0a0a;
}

.eat-wash-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.eat-wash-visual {
    display: flex;
    justify-content: center;
}

.eat-wash-circle {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 2px solid #333;
    background:
        radial-gradient(
            circle,
            #1b1b1b,
            #090909
        );

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    box-shadow:
        0 0 80px rgba(255,106,0,0.08);
}

.eat-wash-circle span {
    font-size: 70px;
}

.eat-wash-circle strong {
    color: var(--orange);
    font-size: 45px;
}

.eat-wash-content h2 {
    font-size: clamp(55px, 7vw, 85px);
    line-height: 1;
    margin: 10px 0 18px;
}

.eat-wash-content > p {
    color: #aaa;
    max-width: 600px;
    margin-bottom: 25px;
}

.future-combo {
    padding: 25px;
    background: #151515;
    border-left: 4px solid var(--orange);
    margin-bottom: 28px;
}

.future-combo > span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.future-combo h3 {
    font-size: 21px;
    margin: 5px 0;
}

.future-combo p {
    color: #888;
    font-size: 13px;
}


/* ---------- DIGITAL STATUS ---------- */

.digital-wash {
    background: #fff;
    color: #111;
}

.status-demo {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: center;
    max-width: 1000px;
    margin: auto;
}

.status-phone {
    width: 330px;
    margin: auto;
    background: #0d0d0d;
    color: white;
    padding: 25px;
    border-radius: 32px;
    border: 8px solid #222;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.phone-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #272727;
}

.phone-top img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.phone-top span {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #aaa;
}

.vehicle-demo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
}

.vehicle-demo > span {
    font-size: 40px;
}

.vehicle-demo small {
    color: #777;
    font-size: 8px;
    letter-spacing: 1px;
}

.vehicle-demo h3 {
    font-size: 17px;
}

.wash-progress {
    display: flex;
    flex-direction: column;
}

.progress-item {
    display: flex;
    gap: 15px;
    position: relative;
    padding-bottom: 25px;
    opacity: 0.45;
}

.progress-item > span {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.progress-item strong {
    display: block;
    font-size: 13px;
}

.progress-item small {
    color: #777;
    font-size: 10px;
}

.progress-item.complete,
.progress-item.active {
    opacity: 1;
}

.progress-item.complete > span {
    background: #1ca65c;
    border-color: #1ca65c;
}

.progress-item.active > span {
    border-color: #00a9f4;
    color: #00a9f4;
}

.status-explanation h2 {
    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.05;
    margin: 12px 0 20px;
    letter-spacing: -1.5px;
}

.status-explanation > p {
    color: #666;
    margin-bottom: 13px;
}

.future-badge {
    color: #0088c7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.notification-demo {
    margin-top: 28px;
    background: #f3f3f3;
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.notification-demo > span {
    font-size: 28px;
}

.notification-demo small {
    display: block;
    color: #0088c7;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.notification-demo strong {
    display: block;
    margin: 2px 0;
}

.notification-demo p {
    color: #777;
    font-size: 11px;
}


/* ---------- BENEFITS ---------- */

.wash-benefits {
    background: #f5f5f5;
    color: #111;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.benefits-grid article {
    background: white;
    padding: 30px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

.benefits-grid article > strong {
    color: #00a9f4;
    font-size: 31px;
}

.benefits-grid h3 {
    margin: 20px 0 8px;
}

.benefits-grid p {
    color: #777;
    font-size: 13px;
}


/* ---------- CAR WASH CTA ---------- */

.carwash-cta {
    text-align: center;
    padding: 100px 0;
    background:
        radial-gradient(
            circle,
            rgba(0,169,244,0.16),
            transparent 40%
        ),
        #080808;
}

.carwash-cta > .container > span {
    color: #00a9f4;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.carwash-cta h2 {
    font-size: clamp(50px, 8vw, 90px);
    line-height: 1;
    margin: 12px 0;
}

.carwash-cta p {
    color: #aaa;
    margin-bottom: 30px;
}

.carwash-cta-buttons {
    justify-content: center;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

    .carwash-intro-grid,
    .eat-wash-grid,
    .status-demo {
        grid-template-columns: 1fr;
    }

    .wash-package-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }

    .featured-wash {
        transform: none;
    }

    .featured-wash:hover {
        transform: translateY(-7px);
    }

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

}


@media (max-width: 600px) {

    .wash-feature-box {
        grid-template-columns: 1fr;
    }

    .eat-wash-circle {
        width: 250px;
        height: 250px;
    }

    .eat-wash-circle span {
        font-size: 48px;
    }

    .status-phone {
        width: 100%;
        max-width: 330px;
    }

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

} 

/* =========================================================
   EVENTS PAGE
   ========================================================= */

.events-hero {
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(255,106,0,0.27),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #050505,
            #170800 65%,
            #321000
        );
}

.events-hero::after {
    content: "🎵";
    opacity: 0.06;
}

.events-hero-buttons {
    margin-top: 30px;
}


/* ---------- INTRO ---------- */

.events-intro {
    background: white;
    color: #111;
}

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

.events-intro h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    margin-top: 12px;
    letter-spacing: -2px;
}

.events-intro-grid > div:last-child p {
    color: #666;
    margin-bottom: 15px;
}


/* ---------- UPCOMING ---------- */

.upcoming-events {
    background: #f4f4f4;
    color: #111;
}

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

.event-card {
    background: white;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.event-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}

.featured-event-card {
    border: 2px solid var(--orange);
}

.event-date {
    min-height: 105px;
    background: #111;
    color: white;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.event-date strong {
    font-size: 28px;
}

.event-card-content {
    padding: 27px;
}

.event-type {
    color: #d95800;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.event-card-content h3 {
    font-size: 22px;
    margin: 7px 0 12px;
}

.event-card-content > p {
    color: #777;
    font-size: 13px;
    min-height: 65px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
    margin: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.event-meta span {
    font-size: 11px;
    color: #666;
}

.event-card-content a {
    color: #d95800;
    font-size: 12px;
    font-weight: 900;
}

.events-disclaimer {
    text-align: center;
    color: #999;
    font-size: 11px;
    margin-top: 25px;
}


/* ---------- EVENT TYPES ---------- */

.event-types {
    background: #0a0a0a;
}

.event-types-heading p {
    color: #888;
}

.event-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.event-type-grid article {
    background: #141414;
    border: 1px solid #222;
    padding: 32px;
    border-radius: 8px;
    transition: 0.3s;
}

.event-type-grid article:hover {
    border-color: rgba(255,106,0,0.5);
    transform: translateY(-5px);
}

.event-icon {
    font-size: 37px;
    display: block;
    margin-bottom: 25px;
}

.event-type-grid h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.event-type-grid p {
    color: #888;
    font-size: 13px;
}


/* ---------- LOCAL TALENT ---------- */

.local-talent {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255,106,0,0.14),
            transparent 30%
        ),
        #101010;
}

.talent-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.talent-visual {
    min-height: 390px;
    background:
        linear-gradient(
            135deg,
            #1a0902,
            #0a0a0a
        );
    border: 1px solid #282828;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.talent-visual > span {
    font-size: 100px;
}

.talent-visual div {
    text-align: center;
}

.talent-visual small {
    display: block;
    color: var(--orange);
    letter-spacing: 4px;
    font-weight: 900;
}

.talent-visual strong {
    display: block;
    font-size: 28px;
    margin-top: 5px;
}

.talent-content h2 {
    font-size: clamp(40px, 6vw, 65px);
    line-height: 1;
    margin: 12px 0 20px;
}

.talent-content p {
    color: #aaa;
    margin-bottom: 14px;
}

.talent-content .btn {
    margin-top: 15px;
}


/* ---------- PRIVATE EVENTS ---------- */

.private-events {
    background: white;
    color: #111;
}

.private-event-box {
    background: #f4f4f4;
    border: 1px solid #e4e4e4;
    padding: 55px;
    border-radius: 12px;
}

.private-event-box > div:first-child {
    max-width: 700px;
}

.private-event-box h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    margin: 12px 0 15px;
}

.private-event-box > div:first-child p {
    color: #666;
}

.private-event-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 35px 0;
}

.private-event-list div {
    background: white;
    border: 1px solid #ddd;
    padding: 22px;
    border-radius: 7px;
}

.private-event-list span {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
}

.private-event-list strong {
    font-size: 13px;
}


/* ---------- EVENT NOTIFICATIONS ---------- */

.event-notifications {
    background: #080808;
}

.notification-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

.notification-layout > div:first-child h2 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;
    margin: 12px 0 20px;
}

.notification-layout > div:first-child p {
    color: #999;
    margin-bottom: 13px;
    max-width: 600px;
}

.event-phone {
    width: 330px;
    margin: auto;
    padding: 25px;
    background: #151515;
    border: 7px solid #252525;
    border-radius: 30px;
}

.event-phone-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
}

.event-phone-top img {
    width: 45px;
}

.event-phone-top small {
    display: block;
    color: var(--orange);
    font-size: 8px;
    letter-spacing: 1px;
}

.event-phone-top strong {
    font-size: 14px;
}

.phone-event-card {
    background:
        linear-gradient(
            135deg,
            #421400,
            #181818
        );

    padding: 25px;
    border-radius: 12px;
    border: 1px solid #44200f;
}

.phone-event-card > span {
    color: var(--orange);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.phone-event-card h3 {
    font-size: 22px;
    line-height: 1.1;
    margin: 10px 0;
}

.phone-event-card p {
    color: #aaa;
    font-size: 11px;
}

.phone-event-card button {
    margin-top: 20px;
    width: 100%;
    border: 0;
    background: var(--orange);
    color: #111;
    padding: 12px;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}


/* ---------- FINAL CTA ---------- */

.events-final-cta {
    padding: 100px 0;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            #d73a00,
            #ff8500
        );

    color: #111;
}

.events-final-cta > .container > span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
}

.events-final-cta h2 {
    font-size: clamp(45px, 8vw, 85px);
    line-height: 1;
    margin: 15px 0;
}

.events-final-cta p {
    font-weight: 600;
    margin-bottom: 30px;
}

.events-cta-buttons {
    justify-content: center;
}

.events-final-cta .btn-primary {
    background: #111;
    border-color: #111;
    color: white;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

    .events-intro-grid,
    .talent-grid,
    .notification-layout {
        grid-template-columns: 1fr;
    }

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

    .event-type-grid {
        grid-template-columns: 1fr 1fr;
    }

    .private-event-list {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .event-type-grid,
    .private-event-list {
        grid-template-columns: 1fr;
    }

    .private-event-box {
        padding: 30px 22px;
    }

    .talent-visual {
        min-height: 300px;
    }

    .event-phone {
        width: 100%;
        max-width: 330px;
    }

} 

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-hero {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255,106,0,0.25),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #050505,
            #1e0b02
        );
}

.gallery-hero::after {
    content: "📸";
    opacity: 0.05;
}


/* ---------- INTRO ---------- */

.gallery-intro {
    background: white;
    color: #111;
    padding-bottom: 45px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.gallery-filter {
    padding: 11px 22px;

    border: 1px solid #ddd;

    background: white;

    border-radius: 30px;

    cursor: pointer;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    transition: 0.25s;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: #111;
    color: var(--orange);
    border-color: #111;
}


/* ---------- GALLERY ---------- */

.gallery-main {
    background: #f4f4f4;
    padding: 30px 0 100px;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 330px;

    gap: 15px;
}

.gallery-card {
    position: relative;

    overflow: hidden;

    border-radius: 8px;

    background: #111;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #3c1504,
            #111
        );

    transition: 0.4s ease;
}

.blue-placeholder {
    background:
        radial-gradient(
            circle,
            #07354b,
            #111
        );
}

.gallery-placeholder > span {
    font-size: 65px;

    margin-bottom: 10px;
}

.gallery-placeholder strong {
    color: white;

    font-size: 18px;
}

.gallery-placeholder small {
    color: #888;

    margin-top: 5px;
}

.gallery-card:hover
.gallery-placeholder {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 45px 25px 22px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.9)
        );
}

.gallery-caption span {
    color: var(--orange);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.gallery-caption h3 {
    color: white;

    margin-top: 4px;
}

.gallery-card.gallery-hidden {
    display: none;
}


/* ---------- PHOTO STORY ---------- */

.photo-story {
    background: #0a0a0a;
}

.photo-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.photo-story h2 {
    font-size: clamp(
        40px,
        6vw,
        65px
    );

    line-height: 1;

    margin: 12px 0 20px;
}

.photo-story p {
    color: #999;

    margin-bottom: 13px;
}

.photo-checklist {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}

.photo-checklist div {
    background: #151515;

    border: 1px solid #222;

    padding: 22px;

    border-radius: 6px;
}

.photo-checklist span {
    display: block;

    color: var(--orange);

    font-size: 24px;

    font-weight: 900;

    margin-bottom: 15px;
}

.photo-checklist strong {
    font-size: 13px;
}


/* ---------- SOCIAL ---------- */

.gallery-social {
    padding: 100px 0;

    text-align: center;

    background: white;

    color: #111;
}

.gallery-social > .container > span {
    color: #d95800;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}

.gallery-social h2 {
    font-size: clamp(
        40px,
        6vw,
        65px
    );

    line-height: 1;

    margin: 12px auto 15px;

    max-width: 800px;
}

.gallery-social p {
    color: #777;

    margin-bottom: 30px;
}


/* ---------- VISIT ---------- */

.gallery-visit {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #d93a00,
            #ff8500
        );

    color: #111;
}

.gallery-visit-grid {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.gallery-visit span {
    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}

.gallery-visit h2 {
    font-size: clamp(
        38px,
        5vw,
        58px
    );

    line-height: 1;

    margin: 10px 0;
}

.gallery-visit p {
    font-weight: 600;
}

.gallery-visit-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.gallery-visit
.btn-primary {
    background: #111;

    border-color: #111;

    color: white;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .photo-story-grid {
        grid-template-columns: 1fr;
    }

    .gallery-visit-grid {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 300px;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .photo-checklist {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        justify-content: flex-start;
    }

    .gallery-visit-actions {
        flex-direction: column;

        width: 100%;
    }

    .gallery-visit-actions .btn {
        width: 100%;
    }

} 

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-hero {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255,106,0,0.24),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #050505,
            #190a03
        );
}

.about-hero::after {
    content: "🔥";
    opacity: 0.05;
}


/* ---------- INTRO ---------- */

.about-intro {
    background: white;
    color: #111;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.about-intro h2 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    margin-top: 12px;
    letter-spacing: -2px;
}

.about-copy p {
    color: #666;
    margin-bottom: 16px;
    max-width: 680px;
}

.about-copy .about-lead {
    color: #222;
    font-size: 21px;
    font-weight: 600;
}


/* ---------- EXPERIENCE ---------- */

.about-experience {
    background: #f4f4f4;
    color: #111;
}

.about-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.about-experience-grid article {
    position: relative;
    background: white;
    padding: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.about-experience-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.07);
}

.about-number {
    position: absolute;
    right: 20px;
    top: 12px;
    color: #eee;
    font-size: 55px;
    font-weight: 900;
}

.about-icon {
    display: block;
    font-size: 37px;
    margin-bottom: 30px;
}

.about-experience-grid h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-experience-grid p {
    color: #777;
    font-size: 13px;
    min-height: 105px;
}

.about-experience-grid a {
    display: inline-block;
    margin-top: 20px;
    color: #d95800;
    font-size: 11px;
    font-weight: 900;
}


/* ---------- OUR HOME ---------- */

.our-home {
    background: #0a0a0a;
}

.our-home-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.home-visual {
    min-height: 420px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;

    background:
        radial-gradient(
            circle,
            #391303,
            #0c0c0c
        );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-visual > span {
    font-size: 70px;
    margin-bottom: 20px;
}

.home-visual small {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 4px;
}

.home-visual strong {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1;
    margin: 5px 0 10px;
}

.home-visual p {
    text-align: center;
    color: #888;
}

.home-content h2 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    margin: 12px 0 20px;
}

.home-content > p {
    color: #aaa;
    margin-bottom: 14px;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}


/* ---------- VALUES ---------- */

.about-values {
    background: white;
    color: #111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.values-grid article {
    text-align: center;
    padding: 35px 25px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.values-grid article > span {
    font-size: 38px;
}

.values-grid h3 {
    margin: 20px 0 8px;
}

.values-grid p {
    color: #777;
    font-size: 13px;
}


/* ---------- COMMUNITY VISION ---------- */

.community-vision {
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255,106,0,0.12),
            transparent 30%
        ),
        #0b0b0b;
}

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

.community-vision h2 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    margin: 12px 0 20px;
}

.community-vision-grid > div:first-child p {
    color: #999;
    margin-bottom: 14px;
}

.community-opportunities {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.community-opportunities > div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: #151515;
    border: 1px solid #242424;
    border-radius: 7px;
}

.community-opportunities > div > span {
    font-size: 29px;
}

.community-opportunities strong {
    display: block;
    margin-bottom: 3px;
}

.community-opportunities p {
    color: #777;
    font-size: 11px;
}


/* ---------- DIGITAL FUTURE ---------- */

.digital-future {
    background: #f4f4f4;
    color: #111;
}

.digital-future-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 55px;
}

.digital-future-top h2 {
    font-size: clamp(42px, 6vw, 65px);
    line-height: 1;
    margin-top: 10px;
}

.digital-future-top > p {
    color: #777;
    max-width: 420px;
}

.future-roadmap {
    display: grid;
    grid-template-columns:
        1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.roadmap-item {
    min-height: 230px;
    background: white;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 8px;
}

.roadmap-item > span {
    color: #d95800;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.roadmap-item strong {
    display: block;
    font-size: 20px;
    margin: 30px 0 10px;
}

.roadmap-item p {
    color: #777;
    font-size: 13px;
}

.roadmap-arrow {
    color: var(--orange);
    font-size: 30px;
    font-weight: 900;
}


/* ---------- OWNER STORY ---------- */

.owner-story {
    background: white;
    color: #111;
}

.owner-story-box {
    max-width: 900px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 35px;
    align-items: start;
}

.owner-story-icon {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 120px;
    line-height: 0.7;
}

.owner-story h2 {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1;
    margin: 10px 0 18px;
}

.owner-story p {
    color: #666;
    max-width: 700px;
}

.owner-story small {
    display: inline-block;
    margin-top: 18px;
    color: #999;
    font-style: italic;
}


/* ---------- FINAL CTA ---------- */

.about-final-cta {
    padding: 100px 0;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            #d93a00,
            #ff8500
        );

    color: #111;
}

.about-final-cta > .container > span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
}

.about-final-cta h2 {
    font-size: clamp(48px, 8vw, 90px);
    line-height: 1;
    margin: 13px 0;
}

.about-final-cta p {
    font-weight: 600;
    margin-bottom: 30px;
}

.about-cta-buttons {
    justify-content: center;
}

.about-final-cta .btn-primary {
    background: #111;
    border-color: #111;
    color: white;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

    .about-intro-grid,
    .our-home-grid,
    .community-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-experience-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .future-roadmap {
        grid-template-columns: 1fr;
    }

    .roadmap-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

}


@media (max-width: 600px) {

    .about-experience-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-experience-grid p {
        min-height: auto;
    }

    .digital-future-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .owner-story-box {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .owner-story-icon {
        font-size: 80px;
    }

    .home-actions {
        flex-direction: column;
    }

    .home-actions .btn {
        width: 100%;
    }

} 

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255,106,0,0.24),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #050505,
            #1c0a02
        );
}

.contact-hero::after {
    content: "☎";
    opacity: 0.05;
}


/* ---------- QUICK CONTACT ---------- */

.quick-contact {
    background: #f4f4f4;
    color: #111;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.quick-contact-card {
    display: block;
    background: white;
    color: #111;
    padding: 35px;
    border: 1px solid #e1e1e1;
    border-radius: 9px;
    text-decoration: none;
    transition: 0.3s;
}

.quick-contact-card:hover {
    transform: translateY(-7px);
    border-color: var(--orange);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.quick-contact-icon {
    font-size: 35px;
    margin-bottom: 28px;
}

.quick-contact-card > span {
    display: block;
    color: #d95800;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.quick-contact-card h3 {
    font-size: 23px;
    margin: 6px 0 8px;
}

.quick-contact-card p {
    color: #777;
    font-size: 13px;
    margin-bottom: 25px;
}

.quick-contact-card strong {
    color: #d95800;
    font-size: 11px;
}


/* ---------- MAIN CONTACT ---------- */

.contact-main {
    background: white;
    color: #111;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-information h2 {
    font-size: clamp(45px, 6vw, 70px);
    line-height: 1;
    margin: 10px 0 15px;
}

.contact-intro-text {
    color: #777;
    margin-bottom: 40px;
    max-width: 480px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    padding: 23px 0;
    border-bottom: 1px solid #eee;
}

.contact-detail > span {
    font-size: 28px;
    width: 40px;
    flex-shrink: 0;
}

.contact-detail small {
    display: block;
    color: #999;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-detail strong {
    display: block;
}

.contact-detail p {
    color: #777;
    font-size: 13px;
    margin-top: 5px;
}

.contact-detail a {
    color: #d95800;
    font-weight: 900;
}

.contact-information > .btn {
    margin-top: 30px;
}


/* ---------- FORM ---------- */

.contact-form-box {
    background: #f5f5f5;
    border: 1px solid #e2e2e2;
    padding: 40px;
    border-radius: 10px;
}

.form-label {
    color: #d95800;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-form-box h2 {
    font-size: 35px;
    margin: 7px 0 8px;
}

.contact-form-box > p {
    color: #777;
    font-size: 13px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: white;
    padding: 14px;
    border-radius: 5px;
    font: inherit;
    color: #111;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
}

.contact-submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

.form-note {
    display: block;
    text-align: center;
    color: #999;
    margin-top: 12px;
    font-size: 10px;
}


/* ---------- MAP ---------- */

.location-map {
    padding: 0 0 100px;
    background: white;
    color: #111;
}

.location-map-box {
    min-height: 430px;
    border-radius: 12px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(255,106,0,0.25),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #171717,
            #080808
        );

    display: flex;
    align-items: center;
    padding: 60px;
}

.map-content {
    color: white;
    max-width: 520px;
}

.map-content > span {
    display: block;
    font-size: 45px;
    margin-bottom: 20px;
}

.map-content small {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.map-content h2 {
    font-size: clamp(40px, 6vw, 65px);
    line-height: 1;
    margin: 10px 0 15px;
}

.map-content p {
    color: #aaa;
    margin-bottom: 28px;
}


/* ---------- CONTACT REASONS ---------- */

.contact-reasons {
    background: #f4f4f4;
    color: #111;
}

.contact-reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.contact-reason-grid article {
    background: white;
    border: 1px solid #e3e3e3;
    padding: 30px;
    border-radius: 8px;
}

.contact-reason-grid article > span {
    display: block;
    font-size: 35px;
    margin-bottom: 25px;
}

.contact-reason-grid h3 {
    margin-bottom: 8px;
}

.contact-reason-grid p {
    color: #777;
    font-size: 13px;
}


/* ---------- FINAL CTA ---------- */

.contact-final-cta {
    padding: 100px 0;
    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(255,106,0,0.17),
            transparent 35%
        ),
        #080808;
}

.contact-final-cta > .container > span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
}

.contact-final-cta h2 {
    font-size: clamp(45px, 8vw, 85px);
    line-height: 0.95;
    margin: 18px 0 35px;
}

.contact-cta-buttons {
    justify-content: center;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-reason-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 28px 20px;
    }

    .location-map-box {
        padding: 40px 25px;
    }

    .contact-reason-grid {
        grid-template-columns: 1fr;
    }

} 

/* =========================================================
   404 PAGE
   ========================================================= */

.error-page {
    min-height: 100vh;
    background: #050505;
}

.error-main {
    min-height: calc(100vh - 90px);

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(255, 106, 0, 0.18),
            transparent 30%
        ),
        #050505;

    overflow: hidden;
}

.error-container {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.error-label {
    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 4px;
}

.error-number {
    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    font-size: clamp(180px, 30vw, 430px);

    line-height: 1;

    font-weight: 900;

    color: rgba(255,255,255,0.025);

    pointer-events: none;
}

.error-container h1 {
    position: relative;

    font-size: clamp(55px, 9vw, 105px);

    line-height: 0.9;

    max-width: 850px;

    margin: 20px 0 25px;

    letter-spacing: -4px;
}

.error-container > p {
    position: relative;

    color: #999;

    max-width: 550px;

    font-size: 17px;

    margin-bottom: 30px;
}

.error-buttons {
    position: relative;
}

.error-contact {
    position: relative;

    margin-top: 45px;

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 12px;
}

.error-contact span {
    color: #777;
}

.error-contact a {
    color: var(--orange);

    font-weight: 900;
}

@media (max-width: 600px) {

    .error-nav {
        display: none;
    }

    .error-container h1 {
        letter-spacing: -2px;
    }

    .error-number {
        top: 35%;
    }

}

/* =========================================================
   LIVE / DYNAMIC PUBLIC MENU
   ========================================================= */
.public-menu-loading{padding:60px 0;text-align:center;color:#888;font-size:12px}.public-dynamic-menu{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.public-food-card{position:relative;min-height:170px;background:#fff;border:1px solid #e5e5e5;border-radius:9px;padding:25px;display:grid;grid-template-columns:auto 1fr auto;gap:18px;align-items:start;transition:.25s;overflow:hidden}.public-food-card:hover{transform:translateY(-4px);border-color:#ddd;box-shadow:0 15px 35px rgba(0,0,0,.06)}.public-food-icon{width:55px;height:55px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#fff1e6;font-size:25px;flex-shrink:0}.public-food-info{min-width:0}.public-food-category{display:block;color:#d95800;font-size:8px;font-weight:900;letter-spacing:2px;text-transform:uppercase;margin-bottom:7px}.public-food-info h3{font-size:20px;margin-bottom:7px}.public-food-info p{color:#777;font-size:12px;line-height:1.6}.public-food-price{font-size:20px;font-weight:900;white-space:nowrap}.public-food-status{grid-column:2/4;display:flex;align-items:center;gap:7px;margin-top:5px;font-size:8px;font-weight:900;letter-spacing:1px}.public-food-status::before{content:"";width:7px;height:7px;border-radius:50%}.public-food-status.available{color:#168f48}.public-food-status.available::before{background:#18a853}.public-food-status.sold-out{color:#c34444}.public-food-status.sold-out::before{background:#d34b4b}.public-food-card.is-sold-out{opacity:.63}.public-food-card.is-sold-out::after{content:"SOLD OUT";position:absolute;right:-34px;top:18px;width:130px;text-align:center;padding:5px 0;background:#d53d34;color:#fff;font-size:7px;font-weight:900;letter-spacing:1px;transform:rotate(40deg)}.public-menu-empty{max-width:650px;margin:20px auto;padding:65px 30px;text-align:center;background:#f7f7f7;border:1px solid #e7e7e7;border-radius:10px}.public-menu-empty>span{display:block;font-size:45px;margin-bottom:15px}.public-menu-empty h3{font-size:25px;margin-bottom:8px}.public-menu-empty p{color:#777;margin-bottom:22px}@media(max-width:800px){.public-dynamic-menu{grid-template-columns:1fr}}@media(max-width:500px){.public-food-card{grid-template-columns:auto 1fr;padding:20px}.public-food-price{grid-column:2;margin-top:-5px}.public-food-status{grid-column:2}.public-food-icon{width:47px;height:47px;font-size:21px}}

/* =========================================================
   DYNAMIC CAR WASH SERVICES
   ========================================================= */
.public-wash-loading{text-align:center;padding:45px 0;color:#888;font-size:12px}
.wash-package.is-unavailable{opacity:.62;position:relative;overflow:hidden}
.wash-package.is-unavailable::after{content:"UNAVAILABLE";position:absolute;right:-38px;top:20px;width:145px;text-align:center;padding:6px 0;background:#d53d34;color:#fff;font-size:7px;font-weight:900;letter-spacing:1px;transform:rotate(40deg)}
.wash-vehicle-type{display:inline-block;margin-bottom:10px;padding:5px 9px;border-radius:20px;background:#f2f2f2;color:#777;font-size:7px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.wash-availability-note{margin:12px 0 0;font-size:8px!important;font-weight:900;letter-spacing:1px}
.wash-availability-note.available{color:#168f48}.wash-availability-note.unavailable{color:#c34444}
 
/* =========================================================
   PUBLIC SPECIALS
   ========================================================= */

.home-specials {
    background:
        linear-gradient(
            180deg,
            #0b0b0b,
            #111
        );

    color: white;
}


.home-specials .section-heading h2 {
    color: white;
}


.home-specials .section-heading p {
    color: #888;
}


.public-specials-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


/* SPECIAL CARD */

.public-special-card {
    position: relative;

    min-height: 290px;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0c0c0c
        );

    border: 1px solid #292929;

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    transition: 0.25s;
}


.public-special-card:hover {
    transform: translateY(-5px);

    border-color: rgba(
        255,
        106,
        0,
        0.55
    );

    box-shadow:
        0 20px 45px
        rgba(0,0,0,0.3);
}


.public-special-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(
            255,
            106,
            0,
            0.08
        );
}


/* BADGE */

.public-special-badge {
    width: fit-content;

    padding: 6px 9px;

    margin-bottom: 20px;

    border-radius: 4px;

    background:
        rgba(
            255,
            106,
            0,
            0.12
        );

    color: #ff7a1a;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* TITLE */

.public-special-card h3 {
    position: relative;

    z-index: 2;

    color: white;

    font-size: 22px;

    line-height: 1.2;

    margin-bottom: 10px;
}


.public-special-description {
    color: #8d8d8d;

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 18px;
}


/* PRICE */

.public-special-price {
    margin-top: auto;

    color: white;

    font-size: 26px;

    font-weight: 900;
}


.public-special-price small {
    display: block;

    margin-bottom: 3px;

    color: #777;

    font-size: 7px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* DATE */

.public-special-date {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: 15px;

    padding-top: 13px;

    border-top: 1px solid #252525;

    color: #777;

    font-size: 8px;

    font-weight: 700;
}


/* FIRE DECORATION */

.public-special-fire {
    position: absolute;

    right: 20px;
    bottom: 16px;

    font-size: 45px;

    opacity: 0.08;

    pointer-events: none;
}


/* EMPTY */

.public-specials-empty {
    min-height: 130px;

    border: 1px dashed #333;

    border-radius: 8px;

    padding: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    text-align: left;
}


.public-specials-empty > span {
    font-size: 30px;
}


.public-specials-empty strong {
    display: block;

    color: white;

    font-size: 13px;

    margin-bottom: 3px;
}


.public-specials-empty p {
    color: #777;

    font-size: 9px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .public-specials-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .public-specials-grid {
        grid-template-columns: 1fr;
    }


    .public-special-card {
        min-height: 250px;
    }

} 

/* =========================================================
   LIVE PUBLIC EVENTS
   ========================================================= */

.public-events-loading {
    padding: 50px 20px;

    color: #888;

    font-size: 11px;

    font-weight: 700;

    text-align: center;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.public-events-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* EVENT CARD */

.public-event-card {
    position: relative;

    min-height: 420px;

    background: #111;

    border: 1px solid #222;

    border-radius: 10px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.public-event-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 106, 0, 0.55);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.3);
}


/* POSTER */

.public-event-image {
    position: relative;

    height: 210px;

    background:
        linear-gradient(
            145deg,
            #181818,
            #090909
        );

    overflow: hidden;
}


.public-event-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.public-event-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 106, 0, 0.16),
            transparent 55%
        ),
        #0d0d0d;

    font-size: 55px;
}


/* DATE */

.public-event-date {
    position: absolute;

    left: 17px;
    bottom: 17px;

    width: 62px;
    height: 66px;

    border-radius: 6px;

    background: #fff;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.25);
}


.public-event-date strong {
    color: #111;

    font-size: 25px;

    line-height: 1;
}


.public-event-date span {
    margin-top: 4px;

    color: #ff6a00;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* BODY */

.public-event-content {
    flex: 1;

    padding: 23px;

    display: flex;

    flex-direction: column;
}


.public-event-type {
    width: fit-content;

    margin-bottom: 9px;

    color: #ff6a00;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.public-event-content h3 {
    margin-bottom: 9px;

    color: #fff;

    font-size: 19px;

    line-height: 1.25;
}


.public-event-description {
    margin-bottom: 18px;

    color: #888;

    font-size: 10px;

    line-height: 1.7;
}


/* DETAILS */

.public-event-details {
    margin-top: auto;

    padding-top: 15px;

    border-top: 1px solid #252525;

    display: flex;

    flex-direction: column;

    gap: 7px;
}


.public-event-detail {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #aaa;

    font-size: 9px;
}


.public-event-detail-icon {
    width: 20px;

    color: #ff6a00;

    text-align: center;
}


/* NEXT EVENT */

.public-event-card.next-event {
    border-color:
        rgba(255, 106, 0, 0.5);
}


.public-next-event-badge {
    position: absolute;

    z-index: 5;

    top: 15px;
    right: 15px;

    padding: 7px 10px;

    border-radius: 4px;

    background: #ff6a00;

    color: #fff;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* EMPTY */

.public-events-empty {
    max-width: 700px;

    margin: 0 auto;

    padding: 55px 30px;

    border: 1px dashed #333;

    border-radius: 10px;

    text-align: center;
}


.public-events-empty-icon {
    margin-bottom: 14px;

    font-size: 38px;
}


.public-events-empty h3 {
    margin-bottom: 8px;

    color: #fff;

    font-size: 20px;
}


.public-events-empty p {
    max-width: 500px;

    margin:
        0 auto 20px;

    color: #888;

    font-size: 10px;

    line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .public-events-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 620px) {

    .public-events-grid {
        grid-template-columns: 1fr;
    }


    .public-event-card {
        min-height: auto;
    }


    .public-event-image {
        height: 230px;
    }

} 

/* =========================================================
   LIVE PUBLIC GALLERY
   ========================================================= */

.gallery-filters {
    margin-bottom: 35px;

    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 8px;
}


.gallery-filter-btn {
    padding: 10px 16px;

    border: 1px solid #ddd;
    border-radius: 4px;

    background: transparent;

    color: #777;

    font: inherit;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition: 0.2s;
}


.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    border-color: #ff6a00;

    background: #ff6a00;

    color: #fff;
}


/* LOADING */

.public-gallery-loading {
    padding: 50px 20px;

    color: #888;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-align: center;

    text-transform: uppercase;
}


/* GRID */

.public-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}


/* CARD */

.public-gallery-card {
    position: relative;

    min-height: 280px;

    overflow: hidden;

    border-radius: 8px;

    background: #111;

    cursor: pointer;
}


.public-gallery-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.public-gallery-card:hover img {
    transform: scale(1.06);
}


/* IMAGE FALLBACK */

.public-gallery-image-error {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #111;

    font-size: 40px;
}


/* OVERLAY */

.public-gallery-overlay {
    position: absolute;

    z-index: 2;

    inset: 0;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.08) 60%
        );

    opacity: 0;

    transition: opacity 0.25s;
}


.public-gallery-card:hover
.public-gallery-overlay {
    opacity: 1;
}


.public-gallery-category {
    width: fit-content;

    margin-bottom: 6px;

    color: #ff6a00;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.public-gallery-overlay h3 {
    color: #fff;

    font-size: 16px;

    line-height: 1.25;
}


.public-gallery-overlay p {
    margin-top: 5px;

    color: #bbb;

    font-size: 9px;

    line-height: 1.5;
}


/* EMPTY */

.public-gallery-empty {
    max-width: 650px;

    margin: 20px auto 0;

    padding: 50px 25px;

    border: 1px dashed #ddd;

    border-radius: 8px;

    text-align: center;
}


.public-gallery-empty > div {
    margin-bottom: 12px;

    font-size: 38px;
}


.public-gallery-empty h3 {
    margin-bottom: 7px;

    font-size: 18px;
}


.public-gallery-empty p {
    color: #888;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   GALLERY LIGHTBOX
   ========================================================= */

.public-gallery-lightbox {
    position: fixed;

    z-index: 9999;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 25px;
}


.public-gallery-lightbox.open {
    display: flex;
}


.public-gallery-lightbox-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,0.92);
}


.public-gallery-lightbox-content {
    position: relative;

    z-index: 2;

    width: min(900px, 100%);

    max-height: 90vh;

    overflow: auto;

    border-radius: 8px;

    background: #111;

    box-shadow:
        0 25px 80px
        rgba(0,0,0,0.6);
}


.public-gallery-lightbox-content img {
    width: 100%;

    max-height: 650px;

    display: block;

    object-fit: contain;

    background: #050505;
}


.public-gallery-lightbox-close {
    position: absolute;

    z-index: 5;

    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background:
        rgba(0,0,0,0.75);

    color: white;

    cursor: pointer;
}


.public-gallery-lightbox-info {
    padding: 20px;
}


.public-gallery-lightbox-info span {
    display: block;

    margin-bottom: 5px;

    color: #ff6a00;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.public-gallery-lightbox-info h3 {
    color: white;

    font-size: 20px;
}


.public-gallery-lightbox-info p {
    margin-top: 6px;

    color: #999;

    font-size: 10px;

    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .public-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 580px) {

    .public-gallery-grid {
        grid-template-columns: 1fr;
    }


    .public-gallery-card {
        min-height: 330px;
    }


    /*
       Phones do not have hover.
       Keep photo information visible.
    */

    .public-gallery-overlay {
        opacity: 1;
    }

} 

/* =========================================================
   PUBLIC BUSINESS OPENING HOURS
   ========================================================= */

.public-business-hours {
    width: 100%;
    margin-top: 10px;
}


.public-business-hours-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 9px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}


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


.public-business-hours-row strong {
    font-size: 0.9rem;
}


.public-business-hours-row span {
    color: #b9b9b9;

    font-size: 0.9rem;

    text-align: right;
}


/* Highlight today's trading hours */

.public-business-hours-row.today strong,
.public-business-hours-row.today span {
    color: #ff6a00;
}


.public-business-hours-row.today strong {
    font-weight: 800;
}


.public-business-hours-unconfirmed {
    color: #b9b9b9;

    line-height: 1.7;

    margin: 0;
}


@media (max-width: 500px) {

    .public-business-hours-row {
        gap: 12px;
    }


    .public-business-hours-row strong,
    .public-business-hours-row span {
        font-size: 0.82rem;
    }

}