/* Layout offsets for fixed header */
:root {
    --topbar-height: 42px;
    --nav-height: 150px;
    --header-offset: calc(var(--topbar-height) + var(--nav-height));
}

body {
    font-family: "Mulish", sans-serif;
    background: #0b0b0b;
    color: #f5f5f5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Mulish", sans-serif;
    color: #ffc107;
}

.section-padding {
    padding: 100px 0;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 40px;
}

.logo {
    height: 126px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
    transition: 0.4s ease;
}

/* Shrink effect */
.glass-navbar.shrink .logo {
    height: 102px;
}

/* Mobile Logo */
@media (max-width: 768px) {
    :root {
        --topbar-height: 0px;
        --nav-height: 126px;
        --header-offset: calc(var(--topbar-height) + var(--nav-height));
    }

    .logo {
        height: 96px;
    }

    .top-header {
        display: none;
    }
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    width: 100%;
    background: rgba(0, 0, 0, 0.52);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar-items {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f2dfad;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
}

.topbar-item i {
    color: #ffd36a;
    font-size: 13px;
}

.topbar-item:hover {
    color: #fff1bf;
}

.navbar .container {
    align-items: center;
}

.navbar-brand {
    font-weight: 700;
    color: #ffc107 !important;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: #fff !important;
    margin-left: 20px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ffc107;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Glass Navbar */
.glass-navbar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    transition: 0.4s;
    top: var(--topbar-height);
    padding: 12px 0;
    min-height: var(--nav-height);
}

.glass-navbar.shrink {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.85);
}

/* Animated Hamburger */
.hamburger {
    width: 25px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #ffc107;
    margin: 5px 0;
    transition: 0.4s;
}

/* Book Button */
.btn-book {
    background: linear-gradient(45deg, #FFC107, #D4AF37);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    color: #000;
    transition: 0.4s;
    white-space: nowrap;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
}

/* Hero */
.hero {
    min-height: 100svh;
    height: auto;
    background: url("../images/hero-sec-02.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-offset) + 28px) 20px clamp(72px, 10vh, 120px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    z-index: 0;
    transform: scale(1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}


/* ===== HERO TITLE PREMIUM ===== */

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 110px;
    font-weight: normal;
    /* line-height: 0.95; */
    margin: 0;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #FFC107, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 70px;
    line-height: 1;
    margin: 10px 0 0;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

/* Description */
.hero-description {
    font-family: 'Mulish', sans-serif;
    margin-top: 25px;
    font-size: 18px;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Zoom Animation */
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Responsive */
/* Responsive Scaling */
@media (max-width: 992px) {
    .hero {
        padding-top: calc(var(--header-offset) + 20px);
    }

    .topbar-items {
        justify-content: center;
    }

    .hero-title {
        font-size: 70px;
    }

    .hero-subtitle {
        font-size: 45px;
    }
}

@media (max-width: 576px) {
    :root {
        --topbar-height: 74px;
        --nav-height: 118px;
        --header-offset: calc(var(--topbar-height) + var(--nav-height));
    }

    .topbar-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        min-height: 74px;
        padding: 10px 0;
    }

    .topbar-item {
        font-size: 11px;
    }

    .hero {
        padding-top: calc(var(--header-offset) + 14px);
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 55px;
    }

    .hero-subtitle {
        font-size: 35px;
    }

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

/* ===== BOOK BUTTON STYLE ===== */

.btn-book {
    background: linear-gradient(45deg, #ffc107, #d4af37);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    color: #000;
    border-radius: 50px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.6);
    color: #000;
}

/* Sidebar styling */
.offcanvas {
    width: 280px;
}

.offcanvas .nav-link {
    font-size: 18px;
    color: #fff !important;
}

.btn-gold {
    background: #ffc107;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

/* ================= ABOUT SECTION ================= */

.about-section {
    position: relative;
    padding: 120px 0;
    background: url('../images/hero-sec-01.jpeg') center/cover no-repeat;
    /* IMAGE SIZE: 1920x1200 */
    overflow: hidden;
}

/* Dark Overlay for Readability */
.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

/* Make Content Above Overlay */
.about-section .container {
    position: relative;
    z-index: 2;
}

/* Image Layout */
.about-images {
    position: relative;
    width: 100%;
    max-width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    overflow: visible;
}

.about-images .img-main img,
.about-images .img-top img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: 0.4s ease;
}

/* Main Large Image */
.img-main {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.img-top {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 8;
}

.about-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 156px;
    border-radius: 34px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.about-center-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

/* Hover Effect */
.about-images .img-main img:hover,
.about-images .img-top img:hover {
    transform: scale(1.05);
}

/* Text Styling */
.about-title {
    font-family: 'Tangerine', cursive;
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
}

/* Decorative Divider */
.about-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    margin: 15px 0 30px;
    position: relative;
}

.about-divider::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #FFD700;
    position: absolute;
    right: -6px;
    top: -4px;
    border-radius: 50%;
}

/* Text */
.about-text {
    font-family: 'Mulish', sans-serif;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {

    .about-images {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .img-top {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .about-center-logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        z-index: auto;
        justify-self: center;
        width: 124px;
        height: 124px;
    }

    .about-center-logo img {
        width: 78px;
    }

    .about-title {
        font-size: 60px;
        text-align: center;
    }

    .about-divider {
        margin: 15px auto 30px;
    }

    .about-content {
        text-align: center;
    }
}

/* Cards */
.card {
    background: #111;
    border: none;
    transition: 0.4s;
}

.card img {
    height: 250px;
    object-fit: cover;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

/* Services */
.services-section {
    position: relative;
    background: url("../images/service-back.jpeg") center/cover no-repeat;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 193, 7, 0.16), transparent 34%),
        radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.18), transparent 36%),
        rgba(0, 0, 0, 0.84);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .about-title {
    text-align: center;
    margin-bottom: 6px;
}

.services-section .about-divider {
    margin: 15px auto 18px;
}

.services-intro {
    max-width: 720px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

.service-card {
    height: 100%;
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card img {
    height: 240px;
    border-radius: 12px;
}

.service-card h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.service-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 22px 44px rgba(212, 175, 55, 0.28);
}

@media (max-width: 992px) {
    .services-intro {
        margin-bottom: 28px;
        font-size: 16px;
    }
}

/* Delivery Partners */
.delivery-section {
    position: relative;
    margin-top: -78px;
    padding-top: calc(100px + 78px);
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 193, 7, 0.16), transparent 34%),
        radial-gradient(circle at 84% 82%, rgba(212, 175, 55, 0.12), transparent 36%),
        linear-gradient(180deg, #080808 0%, #000 100%);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    z-index: 2;
    overflow: hidden;
}

.delivery-intro {
    max-width: 680px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
}

.delivery-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.delivery-pill {
    min-width: 160px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.48);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.delivery-pill:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.52);
}

.delivery-pill.uber-eats {
    border-color: rgba(6, 193, 103, 0.5);
    box-shadow: 0 12px 28px rgba(6, 193, 103, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.delivery-pill.just-eat {
    border-color: rgba(255, 96, 73, 0.5);
    box-shadow: 0 12px 28px rgba(255, 96, 73, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.delivery-pill.deliveroo {
    border-color: rgba(0, 204, 188, 0.52);
    box-shadow: 0 12px 28px rgba(0, 204, 188, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
    .delivery-section {
        margin-top: -56px;
        padding-top: calc(100px + 56px);
    }

    .delivery-intro {
        max-width: 620px;
        margin-bottom: 22px;
        font-size: 15px;
    }

    .delivery-wrap {
        gap: 14px;
    }

    .delivery-pill {
        min-width: 150px;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .delivery-section {
        margin-top: -40px;
        padding-top: calc(100px + 40px);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .delivery-intro {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .delivery-wrap {
        gap: 10px;
    }

    .delivery-pill {
        min-width: 100%;
        max-width: 320px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Home Bar Promo */
.home-bar-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.94)),
        url("../images/bar-03.jpeg") center/cover no-repeat;
    overflow: hidden;
}

.home-bar-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 193, 7, 0.16), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.14), transparent 36%);
}

.home-bar-section .container,
.home-bar-gallery .container {
    position: relative;
    z-index: 1;
}

.home-bar-copy-shell {
    padding: 34px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.46);
}

.home-bar-kicker {
    margin: 0 0 10px;
    color: #f4dfad;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.home-bar-text,
.home-bar-gallery-intro {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.8;
}

.home-bar-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-bar-pills span {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff0c4;
    font-size: 14px;
    font-weight: 700;
}

.home-bar-image-link {
    display: block;
    text-decoration: none;
}

.home-bar-image-frame {
    padding: 16px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.18), rgba(255, 255, 255, 0.06));
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.52);
    transition: transform 0.35s ease;
}

.home-bar-image-frame:hover {
    transform: translateY(-8px);
}

.home-bar-image-frame img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.home-bar-gallery {
    position: relative;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 193, 7, 0.12), transparent 30%),
        radial-gradient(circle at 86% 82%, rgba(212, 175, 55, 0.1), transparent 34%),
        #080808;
}

.home-bar-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.home-bar-gallery-card {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.14);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
    text-decoration: none;
}

.home-bar-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78) 100%);
}

.home-bar-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

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

.home-bar-gallery-label {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 1;
    color: #fff4cb;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

@media (max-width: 992px) {
    .home-bar-image-frame img {
        min-height: 340px;
    }

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

@media (max-width: 768px) {
    .home-bar-copy-shell {
        padding: 24px 18px;
    }

    .home-bar-text,
    .home-bar-gallery-intro {
        font-size: 15px;
    }

    .home-bar-image-frame img {
        min-height: 280px;
    }

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

    .home-bar-gallery-card {
        height: 260px;
    }
}

/* Menu Section */
.menu-section {
    position: relative;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 193, 7, 0.16), transparent 34%),
        radial-gradient(circle at 80% 85%, rgba(212, 175, 55, 0.14), transparent 36%),
        #090909;
}

.menu-intro {
    max-width: 760px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.menu-card {
    height: 100%;
    padding: 26px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.22);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(8, 8, 8, 0.96));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.menu-category {
    font-family: "Mulish", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd36a;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-badge {
    display: none;
}

.menu-subcategory {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0 12px;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-name {
    color: #f3f3f3;
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
}

.menu-price {
    margin-left: auto;
    color: #ffd36a;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.menu-list.compact li {
    padding: 6px 0;
}

.menu-preview-grid .menu-card {
    height: 100%;
}

.menu-note {
    max-width: 760px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
}

.menu-note a {
    color: #ffd36a;
    text-decoration: none;
}

.menu-note a:hover {
    color: #fff1be;
}

@media (max-width: 992px) {
    .menu-intro {
        margin-bottom: 28px;
    }

    .menu-card {
        padding: 22px 18px;
    }
}

/* Booking Section */
.booking-section {
    position: relative;
    background: url("../images/table-book.jpeg") center/cover no-repeat;
    overflow: hidden;
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.18), transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.16), transparent 38%),
        rgba(0, 0, 0, 0.86);
    z-index: 0;
}

.booking-section .container {
    position: relative;
    z-index: 1;
}

.booking-intro {
    max-width: 760px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
}

.booking-shell {
    max-width: 920px;
    margin: 0 auto;
    padding: 32px 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 10, 10, 0.58);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.booking-label {
    display: block;
    color: #f2dfad;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.4px;
    margin: 0 0 8px 2px;
    text-transform: uppercase;
}

.booking-shell .booking-control {
    min-height: 50px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
}

.booking-shell .booking-control:focus {
    border-color: rgba(255, 215, 0, 0.72);
    background: rgba(0, 0, 0, 0.68);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.booking-shell .booking-control::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.booking-btn {
    border: none;
    border-radius: 999px;
    font-weight: 700;
    color: #0d0d0d;
    background: linear-gradient(45deg, #ffd56f, #d4af37);
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-btn:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.42);
}

@media (max-width: 768px) {
    .booking-shell {
        padding: 24px 18px;
    }

    .booking-intro {
        margin-bottom: 24px;
        font-size: 15px;
    }
}

/* Form */
.form-control {
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: none;
}

/* CTA */
.cta-section {
    position: relative;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 193, 7, 0.18), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(212, 175, 55, 0.14), transparent 36%),
        #0b0b0b;
}

.cta-shell {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    background: url("../images/cta.jpeg") center/cover no-repeat;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.cta-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.9)),
        radial-gradient(circle at 22% 18%, rgba(255, 193, 7, 0.14), transparent 36%);
}

.cta-shell>* {
    position: relative;
    z-index: 1;
}

.cta-kicker {
    color: #f2dfad;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.cta-title {
    font-family: 'Tangerine', cursive;
    font-size: 68px;
    color: #ffd36a;
    margin-bottom: 12px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
}

.cta-btn {
    border: none;
    border-radius: 999px;
    padding: 12px 34px;
    font-weight: 700;
    color: #0f0f0f;
    background: linear-gradient(45deg, #ffd56f, #d4af37);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(212, 175, 55, 0.5);
}

/* Footer */
.site-footer {
    position: relative;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(0, 0, 0, 0.98)),
        url("../images/hero-sec-01.jpeg") center/cover no-repeat;
    border-top: 1px solid rgba(255, 215, 0, 0.22);
    padding: 74px 0 28px;
    color: #dadada;
}

.footer-title {
    font-family: 'Tangerine', cursive;
    font-size: 20px;
    color: #ffd36a;
    margin-bottom: 14px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    text-decoration: none;
    color: #fff2c2;
    border: 1px solid rgba(255, 215, 0, 0.36);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.22), rgba(255, 255, 255, 0.08));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px) saturate(125%);
    -webkit-backdrop-filter: blur(6px) saturate(125%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.social-link i {
    font-size: 18px;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.62);
    box-shadow: 0 16px 30px rgba(212, 175, 55, 0.28), 0 0 0 1px rgba(255, 215, 0, 0.2);
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #ffd36a;
    padding-left: 4px;
}

.footer-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.22);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 30px;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

@media (max-width: 768px) {
    .cta-shell {
        padding: 38px 20px;
    }

    .cta-title {
        font-size: 50px;
    }

    .cta-text {
        font-size: 15px;
    }

    .site-footer {
        padding-top: 56px;
    }
}

/* About Page (scoped) */
.about-page .about-page-hero {
    position: relative;
    min-height: 72vh;
    padding: calc(var(--header-offset) + 40px) 20px 90px;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.88)),
        url("../images/hero-sec-01.jpeg") center/cover no-repeat;
    overflow: hidden;
}

.about-page .about-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 193, 7, 0.2), transparent 35%),
        radial-gradient(circle at 85% 78%, rgba(212, 175, 55, 0.18), transparent 36%);
}

.about-page .about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page .about-kicker {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    color: #f2dfad;
    margin-bottom: 14px;
    font-weight: 700;
}

.about-page .about-main-title {
    font-family: "Great Vibes", cursive;
    font-size: clamp(54px, 9vw, 108px);
    color: #ffd66e;
    line-height: 0.95;
    margin-bottom: 14px;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.58);
}

.about-page .about-hero-text {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.7;
}

.about-page .about-page-section {
    position: relative;
    background: #0c0c0c;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
}

.about-page #about-story {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(132deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.9)),
        url("../images/hero-sec-01.jpeg") center/cover no-repeat;
}

.about-page #about-story::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(255, 215, 0, 0.22), transparent 35%),
        radial-gradient(circle at 82% 76%, rgba(212, 175, 55, 0.18), transparent 38%);
    pointer-events: none;
}

.about-page #about-story .container {
    position: relative;
    z-index: 1;
}

.about-page .about-page-section.alt {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.09), transparent 34%),
        #080808;
}

.about-page #about-highlights {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(8, 8, 8, 0.92), rgba(2, 2, 2, 0.96)),
        url("../images/hero-sec-02.jpeg") center/cover no-repeat;
}

.about-page #about-highlights::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 193, 7, 0.07), transparent 45%),
        radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.16), transparent 34%);
    pointer-events: none;
}

.about-page #about-highlights .container {
    position: relative;
    z-index: 1;
}

.about-page #about-services {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
        url("../images/service-back.jpeg") center/cover no-repeat;
}

.about-page #about-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 193, 7, 0.2), transparent 34%),
        radial-gradient(circle at 84% 78%, rgba(212, 175, 55, 0.18), transparent 34%);
    pointer-events: none;
}

.about-page #about-services .container {
    position: relative;
    z-index: 1;
}

.about-page .about-shell {
    background: rgba(10, 10, 10, 0.72);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.44);
}

.about-page .about-signature-shell {
    background:
        linear-gradient(150deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.9)),
        url("../images/about-04.jpeg") center/cover no-repeat;
    border-color: rgba(255, 215, 0, 0.28);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
}

.about-page .about-signature-shell .about-title,
.about-page .about-signature-shell .about-copy {
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.52);
}

.about-page .about-why-shell {
    background:
        linear-gradient(150deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.93)),
        url("../images/cta.jpeg") center/cover no-repeat;
    border-color: rgba(255, 215, 0, 0.26);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
}

.about-page .about-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.8;
}

.about-page .about-story-image-wrap {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.22);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.about-page .about-story-image {
    display: block;
    width: 100%;
    height: 100%;
    /* min-height: 460px; */
    object-fit: cover;
}

.about-page .service-mini-card {
    position: relative;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    padding: 30px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-page .service-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 215, 0, 0.14), rgba(255, 255, 255, 0.02) 45%, rgba(255, 193, 7, 0.08));
    opacity: 0.8;
    pointer-events: none;
}

.about-page .service-mini-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 215, 0, 0.14);
}

.about-page .service-icon-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.45);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.08));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.about-page .service-mini-card i {
    font-size: 30px;
    color: #fff4c9;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.about-page .service-mini-card h3 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    margin: 14px 0 10px;
    color: #fff1c2;
}

.about-page .service-mini-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.about-page .about-strip {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 14px;
    padding: 15px 14px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-page .about-why-points .about-strip {
    height: 100%;
}

.about-page .about-cta-panel {
    max-width: 940px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 54px 26px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.25);
    background:
        linear-gradient(145deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.9)),
        url("../images/cta.jpeg") center/cover no-repeat;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.55);
}

.about-page .about-cta-panel p {
    margin: 0 auto 20px;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .about-page .about-page-hero {
        min-height: 64vh;
        padding-bottom: 72px;
    }

    .about-page .about-hero-text {
        font-size: 16px;
    }

    .about-page .about-shell {
        padding: 24px 18px;
    }

    .about-page .about-story-image {
        min-height: 320px;
    }
}

/* Contact Page (scoped) */
.contact-page .contact-hero {
    position: relative;
    min-height: 68vh;
    padding: calc(var(--header-offset) + 44px) 20px 84px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(145deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.9)),
        url("../images/hero-sec-02.jpeg") center/cover no-repeat;
    overflow: hidden;
}

.contact-page .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 193, 7, 0.2), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.18), transparent 36%);
}

.contact-page .contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-page .contact-kicker {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    color: #f4dfad;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-page .contact-title {
    font-family: "Great Vibes", cursive;
    font-size: clamp(58px, 9vw, 112px);
    color: #ffd76f;
    line-height: 0.95;
    margin-bottom: 14px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.contact-page .contact-lead {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
}

.contact-page .contact-section {
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    background: #0b0b0b;
}

.contact-page #contact-info {
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.9)),
        url("../images/hero-sec-01.jpeg") center/cover no-repeat;
}

.contact-page .contact-info-card {
    height: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
    padding: 30px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.contact-page .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.28), rgba(255, 255, 255, 0.1));
    color: #fff4cb;
    font-size: 28px;
    margin-bottom: 14px;
}

.contact-page .contact-info-card h3 {
    color: #ffe4a4;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-page .contact-info-card p,
.contact-page .contact-info-card a {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    line-height: 1.75;
    word-break: break-word;
}

.contact-page .contact-info-card a:hover {
    color: #ffd975;
}

.contact-page #contact-map {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.1), transparent 34%),
        #080808;
}

.contact-page .contact-map-wrap {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.24);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.54);
}

.contact-page #contact-form {
    background:
        linear-gradient(150deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.94)),
        url("../images/cta.jpeg") center/cover no-repeat;
}

.contact-page .contact-form-shell {
    max-width: 920px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.26);
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    padding: 34px 28px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.52);
}

.contact-page .contact-label {
    color: #f5e6bf;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-page .contact-control {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
}

.contact-page .contact-control:focus {
    border-color: rgba(255, 215, 0, 0.72);
    background: rgba(0, 0, 0, 0.68);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    color: #fff;
}

.contact-page .contact-control::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.contact-page .contact-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-page .contact-submit-btn {
    border: none;
    border-radius: 999px;
    font-weight: 700;
    color: #0d0d0d;
    background: linear-gradient(45deg, #ffd56f, #d4af37);
    padding: 12px 34px;
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.42);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .contact-submit-btn:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(212, 175, 55, 0.5);
}

.contact-page #contact-cta {
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 193, 7, 0.16), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.14), transparent 36%),
        #090909;
}

.contact-page .contact-cta-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.9)),
        url("../images/service-back.jpeg") center/cover no-repeat;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.56);
}

.contact-page .contact-cta-text {
    max-width: 680px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .contact-page .contact-hero {
        min-height: 62vh;
        padding-bottom: 70px;
    }

    .contact-page .contact-lead {
        font-size: 16px;
    }

    .contact-page .contact-form-shell {
        padding: 24px 18px;
    }

    .contact-page .contact-cta-shell {
        padding: 38px 20px;
    }
}

/* Menu Page (scoped) */
.menu-page .menu-hero {
    position: relative;
    min-height: 68vh;
    padding: calc(var(--header-offset) + 44px) 20px 84px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(145deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.9)),
        url("../images/hero-sec-01.jpeg") center/cover no-repeat;
    overflow: hidden;
}

.menu-page .menu-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 193, 7, 0.2), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.18), transparent 36%);
}

.menu-page .menu-hero .container {
    position: relative;
    z-index: 1;
}

.menu-page .menu-kicker {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    color: #f4dfad;
    font-weight: 700;
    margin-bottom: 14px;
}

.menu-page .menu-title {
    font-family: "Great Vibes", cursive;
    font-size: clamp(58px, 9vw, 112px);
    color: #ffd76f;
    line-height: 0.95;
    margin-bottom: 14px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.menu-page .menu-lead {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
}

.menu-page .menu-section-wrap {
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    background: #0b0b0b;
}

.menu-page #menu-regional {
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.9)),
        url("../images/service-back.jpeg") center/cover no-repeat;
}

.menu-page #menu-regional .menu-note {
    padding: 0 18px 18px;
}

.menu-page .menu-classic-bg {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 193, 7, 0.12), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.1), transparent 36%),
        #080808;
}

.menu-page .menu-lux-card {
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
    padding: 28px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.menu-page .menu-lux-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.38);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 215, 0, 0.14);
}

.menu-page .menu-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.menu-page .menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.42);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.28), rgba(255, 255, 255, 0.1));
    color: #fff4cb;
    font-size: 24px;
}

.menu-page .menu-card-head h3 {
    margin: 0;
    color: #ffe4a5;
    font-size: 30px;
    font-family: "Great Vibes", cursive;
    letter-spacing: 0.4px;
}

.menu-page .menu-lux-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-page .menu-lux-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}

.menu-page .menu-lux-list li:last-child {
    border-bottom: none;
}

.menu-page .menu-lux-list span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.4;
}

.menu-page .menu-lux-list strong {
    color: #ffd978;
    font-weight: 800;
    white-space: nowrap;
}

.menu-page .menu-mini-subtitle {
    margin: 12px 0 8px;
    color: rgba(255, 228, 165, 0.92);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-page .compact-list li {
    padding: 8px 0;
}

.menu-page .menu-cta-section {
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 193, 7, 0.16), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.14), transparent 36%),
        #090909;
}

.menu-page .menu-cta-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.9)),
        url("../images/cta.jpeg") center/cover no-repeat;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.56);
}

.menu-page .menu-cta-text {
    max-width: 680px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .menu-page .menu-hero {
        min-height: 62vh;
        padding-bottom: 70px;
    }

    .menu-page .menu-lead {
        font-size: 16px;
    }

    .menu-page .menu-lux-card {
        padding: 24px 18px;
    }

    .menu-page .menu-card-head h3 {
        font-size: 26px;
    }

    .menu-page .menu-cta-shell {
        padding: 38px 20px;
    }

    .menu-page #menu-regional .menu-note {
        padding: 0 10px 14px;
    }
}

/* Bar Page */
.bar-page .bar-hero {
    position: relative;
    min-height: 82vh;
    padding: calc(var(--header-offset) + 42px) 20px 96px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0.92)),
        url("../images/bar-banner.jpeg") center/cover no-repeat;
}

.bar-page .bar-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 208, 84, 0.28), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.34));
}

.bar-page .bar-hero .container {
    z-index: 1;
}

.bar-page .bar-kicker,
.bar-page .bar-label {
    margin: 0 0 12px;
    color: #f4dfad;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.bar-page .bar-title {
    max-width: 920px;
    margin: 0 0 18px;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1;
    color: #ffe29b;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.58);
}

.bar-page .bar-lead,
.bar-page .bar-copy,
.bar-page .bar-gallery-intro,
.bar-page .bar-menu-intro,
.bar-page .bar-cta-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.8;
}

.bar-page .bar-lead {
    max-width: 760px;
    margin: 0;
}

.bar-page .bar-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bar-page .bar-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    color: #f8e8b7;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
}

.bar-page .bar-ghost-btn:hover {
    color: #fff6d6;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.bar-page .bar-story,
.bar-page .bar-signatures,
.bar-page .bar-gallery-section {
    position: relative;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 193, 7, 0.08), transparent 30%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.08), transparent 34%),
        #0a0a0a;
}

.bar-page .bar-showcase,
.bar-page .bar-menu-section,
.bar-page .bar-cta-section {
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.bar-page .bar-showcase {
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.88)),
        url("../images/bar-02.jpeg") center/cover no-repeat;
}

.bar-page .bar-story-shell,
.bar-page .bar-signature-panel,
.bar-page .bar-notes-panel {
    height: 100%;
    padding: 34px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.14);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.bar-page .bar-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.bar-page .bar-feature-pill {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff0c4;
    font-size: 14px;
    font-weight: 700;
}

.bar-page .bar-photo-frame {
    position: relative;
    height: 100%;
    padding: 16px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 255, 255, 0.05));
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.5);
}

.bar-page .bar-photo-frame img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.bar-page .bar-highlight-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 215, 0, 0.16);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(8, 8, 8, 0.94));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.bar-page .bar-highlight-card:hover,
.bar-page .bar-menu-card:hover,
.bar-page .bar-pour-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.34);
}

.bar-page .bar-highlight-icon,
.bar-page .bar-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 215, 0, 0.24), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.28);
    color: #fff0bc;
    font-size: 24px;
}

.bar-page .bar-highlight-card h3,
.bar-page .bar-pour-card h3,
.bar-page .bar-menu-head h3 {
    margin: 18px 0 10px;
    color: #ffe4a5;
}

.bar-page .bar-highlight-card p,
.bar-page .bar-pour-card p,
.bar-page .bar-menu-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.bar-page .bar-pour-card {
    height: 100%;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.14);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.bar-page .bar-pour-card strong {
    display: inline-block;
    margin-top: 14px;
    color: #ffd978;
    font-size: 18px;
}

.bar-page .bar-notes-list,
.bar-page .bar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bar-page .bar-notes-list li,
.bar-page .bar-menu-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.bar-page .bar-notes-list li:last-child,
.bar-page .bar-menu-list li:last-child {
    border-bottom: none;
}

.bar-page .bar-notes-list span,
.bar-page .bar-menu-list span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    line-height: 1.5;
}

.bar-page .bar-notes-list strong,
.bar-page .bar-menu-list strong {
    color: #ffd978;
    white-space: nowrap;
    font-weight: 800;
    line-height: 1.5;
}

.bar-page .bar-note-banner {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.16);
    color: #fff0c4;
    line-height: 1.7;
}

.bar-page .bar-menu-section {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.98)),
        url("../images/bar-03.jpeg") center/cover no-repeat;
}

.bar-page .bar-menu-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 26px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.bar-page .bar-menu-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.bar-page .bar-menu-head h3 {
    margin: 0 0 4px;
    font-size: 30px;
    font-family: "Great Vibes", cursive;
}

.bar-page .bar-menu-head p {
    color: #d9c68f;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.bar-page .bar-subtitle {
    margin: 18px 0 8px;
    color: #f4dfad;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bar-page .bar-menu-list.compact li {
    padding: 8px 0;
}

.bar-page .bar-menu-list.triple strong {
    white-space: normal;
    text-align: right;
}

.bar-page .bar-gallery-head {
    max-width: 760px;
    margin: 0 auto 36px;
}

.bar-page .bar-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bar-page .bar-gallery-item {
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.14);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
}

.bar-page .bar-gallery-item.tall {
    height: 320px;
}

.bar-page .bar-gallery-item.wide {
    height: 320px;
}

.bar-page .bar-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.bar-page .bar-gallery-item:hover img {
    transform: scale(1.06);
}

.bar-page .bar-cta-section {
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 193, 7, 0.16), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.14), transparent 36%),
        #090909;
}

.bar-page .bar-cta-shell {
    max-width: 920px;
    margin: 0 auto;
    padding: 56px 30px;
    border-radius: 26px;
    border: 1px solid rgba(255, 215, 0, 0.24);
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.88)),
        url("../images/bar-04.jpeg") center/cover no-repeat;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.54);
}

@media (max-width: 992px) {
    .bar-page .bar-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bar-page .bar-gallery-item.tall,
    .bar-page .bar-gallery-item.wide {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .bar-page .bar-hero {
        min-height: 72vh;
        padding-bottom: 70px;
    }

    .bar-page .bar-lead,
    .bar-page .bar-copy,
    .bar-page .bar-gallery-intro,
    .bar-page .bar-menu-intro,
    .bar-page .bar-cta-text {
        font-size: 16px;
    }

    .bar-page .bar-story-shell,
    .bar-page .bar-signature-panel,
    .bar-page .bar-notes-panel,
    .bar-page .bar-menu-card,
    .bar-page .bar-cta-shell {
        padding: 24px 18px;
    }

    .bar-page .bar-photo-frame img {
        min-height: 320px;
    }

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

    .bar-page .bar-gallery-item,
    .bar-page .bar-gallery-item.tall,
    .bar-page .bar-gallery-item.wide {
        height: 260px;
    }

    .bar-page .bar-menu-list li,
    .bar-page .bar-notes-list li {
        flex-direction: column;
        gap: 4px;
    }

    .bar-page .bar-menu-list strong,
    .bar-page .bar-notes-list strong,
    .bar-page .bar-menu-list.triple strong {
        text-align: left;
        white-space: normal;
    }
}

/* Delivery Section (About + Menu) */
.about-page .delivery-lux-section,
.menu-page .delivery-lux-section {
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 193, 7, 0.14), transparent 34%),
        radial-gradient(circle at 84% 80%, rgba(212, 175, 55, 0.14), transparent 36%),
        #0a0a0a;
}

.about-page .delivery-lux-shell,
.menu-page .delivery-lux-shell {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 34px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    background:
        linear-gradient(120deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.98));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.about-page .delivery-lux-shell::before,
.menu-page .delivery-lux-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(106deg, rgba(255, 215, 0, 0.1) 0 40%, transparent 40% 100%),
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.06), transparent 34%);
    pointer-events: none;
}

.about-page .delivery-lux-shell>.row,
.menu-page .delivery-lux-shell>.row {
    position: relative;
    z-index: 1;
}

.about-page .delivery-kicker,
.menu-page .delivery-kicker {
    margin: 0 0 10px;
    color: #f4dfad;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.about-page .delivery-title,
.menu-page .delivery-title {
    margin-bottom: 0;
    text-align: left;
}

.about-page .delivery-text,
.menu-page .delivery-text {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.75;
}

.about-page .delivery-brand-row,
.menu-page .delivery-brand-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.about-page .delivery-brand,
.menu-page .delivery-brand {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-page .delivery-brand i,
.menu-page .delivery-brand i {
    font-size: 18px;
}

.about-page .delivery-brand.uber-eats,
.menu-page .delivery-brand.uber-eats {
    border-color: rgba(6, 193, 103, 0.55);
    box-shadow: inset 0 0 0 1px rgba(6, 193, 103, 0.16), 0 12px 24px rgba(6, 193, 103, 0.18);
}

.about-page .delivery-brand.just-eat,
.menu-page .delivery-brand.just-eat {
    border-color: rgba(255, 96, 73, 0.58);
    box-shadow: inset 0 0 0 1px rgba(255, 96, 73, 0.16), 0 12px 24px rgba(255, 96, 73, 0.2);
}

.about-page .delivery-brand.deliveroo,
.menu-page .delivery-brand.deliveroo {
    border-color: rgba(0, 204, 188, 0.58);
    box-shadow: inset 0 0 0 1px rgba(0, 204, 188, 0.16), 0 12px 24px rgba(0, 204, 188, 0.2);
}

.about-page .delivery-brand:hover,
.menu-page .delivery-brand:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.46);
}

@media (max-width: 768px) {

    .about-page .delivery-lux-shell,
    .menu-page .delivery-lux-shell {
        padding: 30px 18px;
    }

    .about-page .delivery-text,
    .menu-page .delivery-text {
        font-size: 15px;
        max-width: none;
        margin-bottom: 4px;
    }

    .about-page .delivery-title,
    .menu-page .delivery-title {
        text-align: center;
    }

    .about-page .delivery-lux-shell .about-divider,
    .menu-page .delivery-lux-shell .about-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .about-page .delivery-text,
    .menu-page .delivery-text {
        text-align: center;
    }

    .about-page .delivery-brand-row,
    .menu-page .delivery-brand-row {
        grid-template-columns: 1fr;
    }
}
/* ================= SERVICE PAGE ================= */

.service-page .service-hero {
    min-height: 76svh;
    padding: calc(var(--header-offset) + 42px) 0 90px;
    position: relative;
    overflow: hidden;
    background: url('../images/service-back.jpeg') center/cover no-repeat;
}

.service-page .service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 205, 92, 0.24), transparent 36%),
        radial-gradient(circle at 82% 84%, rgba(212, 175, 55, 0.24), transparent 40%),
        linear-gradient(160deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.84) 100%);
    z-index: 1;
}

.service-page .service-hero-content {
    z-index: 2;
    max-width: 900px;
}

.service-page .service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.38);
    background: rgba(255, 215, 0, 0.12);
    color: #ffe5a1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.service-page .service-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffd36a;
}

.service-page .service-title {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(38px, 6.1vw, 74px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

.service-page .service-lead {
    max-width: 780px;
    margin-top: 18px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.service-page .service-section {
    position: relative;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 193, 7, 0.09), transparent 33%),
        radial-gradient(circle at 80% 86%, rgba(212, 175, 55, 0.1), transparent 35%),
        #0a0a0a;
}

.service-page .service-section.service-alt {
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 193, 7, 0.12), transparent 35%),
        radial-gradient(circle at 12% 82%, rgba(212, 175, 55, 0.11), transparent 36%),
        #060606;
}

.service-page .service-media {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    padding: 10px;
    background: rgba(15, 15, 15, 0.74);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.46);
    overflow: hidden;
}

.service-page .service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.service-page .service-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.45s ease;
}

.service-page .service-media:hover img {
    transform: scale(1.04);
}

.service-page .service-label {
    margin: 0;
    color: #ffd36a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.service-page .service-heading {
    margin: 10px 0 0;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(32px, 3.6vw, 50px);
    line-height: 1.16;
    font-weight: 900;
    color: #fff;
}

.service-page .service-divider {
    width: 96px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffc107, #ffe39c, #d4af37);
    margin: 20px 0 24px;
}

.service-page .service-copy {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
}

.service-page .service-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.service-page .service-points li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
}

.service-page .service-points li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffc107, #d4af37);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.16);
}

.service-page .service-cta {
    min-height: 58vh;
    padding: 90px 0;
    position: relative;
    background: url('../images/cta.jpeg') center/cover no-repeat;
    overflow: hidden;
}

.service-page .service-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 193, 7, 0.22), transparent 36%),
        radial-gradient(circle at 82% 80%, rgba(212, 175, 55, 0.2), transparent 36%),
        rgba(0, 0, 0, 0.84);
}

.service-page .service-cta-shell {
    position: relative;
    z-index: 1;
    max-width: 880px;
    padding: 44px 34px;
    border-radius: 22px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    background: rgba(6, 6, 6, 0.6);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-page .cta-title {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(30px, 4.2vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: #fff;
}

.service-page .service-cta-text {
    margin: 14px auto 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width: 992px) {
    .service-page .service-hero {
        min-height: 64svh;
        padding: calc(var(--header-offset) + 24px) 0 64px;
    }

    .service-page .service-lead {
        font-size: 16px;
    }

    .service-page .service-media img {
        min-height: 300px;
    }

    .service-page .service-cta-shell {
        padding: 34px 22px;
    }
}

@media (max-width: 576px) {
    .service-page .service-kicker {
        letter-spacing: 1.2px;
        font-size: 11px;
    }

    .service-page .service-heading {
        font-size: 32px;
    }

    .service-page .service-divider {
        margin: 16px 0 18px;
    }

    .service-page .service-media {
        border-radius: 18px;
        padding: 8px;
    }

    .service-page .service-media img {
        min-height: 250px;
        border-radius: 12px;
    }

    .service-page .service-cta {
        min-height: auto;
        padding: 72px 0;
    }
}
