/* ==========================================================================
   Cocktail Culture - Luxury Editorial Style
   Typography: Cormorant Garamond (Headings) & IBM Plex Sans (Description & UI)
   ========================================================================== */

/* --- 1. Reset & Variables --- */
:root {
    --font-serif: 'Cormorant Garamond', Garamond, Georgia, 'Times New Roman', serif;
    --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Palette */
    --color-white: #ffffff;
    --color-gold-heading: #BE9359;
    --color-gold-desc: #917852;
    --color-accent-gold: #e2be7a;
    --color-gold-hover: #f3d498;
    --color-bg-dark: #0a0d13;
    --color-bg-surface: #0e1219;
    --color-text-body: rgba(255, 255, 255, 0.9);
    --color-text-subtle: rgba(255, 255, 255, 0.65);

    /* Borders & Glass */
    --border-light: rgba(255, 255, 255, 0.28);
    --border-gold: rgba(190, 147, 89, 0.25);
    --border-btn: rgba(255, 255, 255, 0.38);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-nav-active: rgba(175, 195, 215, 0.25);

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-white);
    background-color: var(--color-bg-dark);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- 2. Site Header --- */
/* --- 2. Site Header (Centered Split Layout) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 4.5rem;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 0.9rem 4.5rem;
    background: rgba(10, 13, 19, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.header-split-layout {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Left & Right Nav Menus */
.nav-menu-left {
    display: flex;
    justify-content: flex-start;
}

.nav-menu-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #BE9359;
    padding: 0.4rem 0.2rem;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    line-height: 18px;
    font-size: 14px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-book-now:hover {
    background-color: #383838;
    color: #ffffff;
}

/* Center Brand Logo Emblem */
.brand-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 10;
}

.brand-center-emblem {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 2.5px solid #BE9359;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 18px rgba(190, 147, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.site-header.scrolled .brand-center-emblem {
    width: 72px;
    height: 72px;
}

.brand-logo-center:hover .brand-center-emblem {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(190, 147, 89, 0.55);
}

.brand-center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
}

.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
}

.nav-mobile-drawer {
    display: none;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* --- 3. Section 1: Hero --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10rem 4.5rem 4.5rem 4.5rem;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 13, 19, 0.45) 0%, rgba(10, 13, 19, 0.25) 30%, rgba(10, 13, 19, 0.55) 70%, rgba(10, 13, 19, 0.88) 100%),
                radial-gradient(ellipse at center, rgba(10, 13, 19, 0.05) 0%, rgba(10, 13, 19, 0.65) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.hero-top-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.65rem;
}

.meta-left {
    font-size: 0.84rem;
    letter-spacing: 0.24em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.meta-right {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-divider-rule {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin-bottom: 2.2rem;
}

.hero-editorial-center {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.editorial-top-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero-title-top {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 8.5vw, 140px);
    font-weight: 400;
    line-height: 0.96;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 35px rgba(0, 0, 0, 0.7);
    word-break: normal;
    overflow-wrap: break-word;
}

.editorial-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
    width: 100%;
    margin-top: 0.35rem;
}

.editorial-left-block {
    flex: 0 0 420px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.desc-arrow-wrap {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.down-arrow-svg {
    flex-shrink: 0;
    margin-top: 4px;
    animation: floatArrow 2.5s infinite ease-in-out;
}

@keyframes floatArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero-desc-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text-body);
}

.editorial-right-block {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-title-bottom {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.8vw, 75px);
    font-weight: 400;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    word-break: normal;
    overflow-wrap: break-word;
}

/* --- 4. Section 2: Introduction (Centered Banner) --- */
.intro-section {
    position: relative;
    padding: 7.5rem 2.5rem;
    background-color: #16181d;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-circles-waves-texture.webp');
    background-size: 110% auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.intro-container-center {
    position: relative;
    z-index: 10;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.intro-heading-main {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.4vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--color-gold-heading); /* #BE9359 */
    letter-spacing: -0.015em;
}

.intro-lead-text {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.2vw, 28px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-gold-heading); /* #BE9359 */
    max-width: 840px;
}

.intro-desc-paragraph {
    font-family: var(--font-sans);
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-gold-desc); /* #917852 */
    max-width: 820px;
}

.intro-cta-wrap {
    margin-top: 0.85rem;
}

.btn-intro-cta {
    display: inline-block;
    padding: 17px 40px;
    line-height: 21px;
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.btn-intro-cta:hover {
    background-color: #383838;
    color: #ffffff;
}

/* Bottom Chevron / Triangle Shape Divider */
.intro-bottom-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}

.intro-bottom-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(35px, 5vw, 60px);
}

.intro-bottom-divider polygon {
    fill: #ffffff;
}

/* --- 5. Section 3: Premium Bartending Services (White Theme) --- */
.services-section {
    position: relative;
    padding: 7.5rem 2.5rem 8rem;
    background-color: #ffffff;
    overflow: hidden;
}

.services-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

/* Header Area */
.services-header-wrap {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 4.5rem;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b08947);
}

.services-eyebrow .eyebrow-line:last-child {
    background: linear-gradient(90deg, #b08947, transparent);
}

.eyebrow-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #9b7238;
    text-transform: uppercase;
}

.services-title-main {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.2vw, 64px);
    font-weight: 500;
    line-height: 1.08;
    color: #121620;
    letter-spacing: -0.015em;
    margin-bottom: 1.2rem;
}

.services-lead-text {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.7;
    color: #555d6e;
    max-width: 680px;
    margin: 0 auto;
}

/* 6 Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

/* Service Card - Ultra-Luxury Design */
.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(190, 147, 89, 0.22);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(22, 28, 45, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #be9359, #e2be7a, #be9359);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #be9359;
    box-shadow: 0 26px 55px rgba(22, 28, 45, 0.12), 0 0 25px rgba(190, 147, 89, 0.18);
}

.service-card:hover::before {
    opacity: 1;
}

/* Card Image Area */
.service-card-image-wrap {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background-color: #0b0e14;
}

.service-card-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: rgba(15, 18, 26, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 190, 122, 0.35);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #f3d498;
    text-transform: uppercase;
    z-index: 6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 18, 26, 0.4) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

/* Card Body Content */
.service-card-body {
    padding: 2.3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.22;
    color: #121620;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: #9b7238;
}

.card-gold-rule {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #be9359, transparent);
    margin-bottom: 1.1rem;
    transition: width 0.4s ease;
}

.service-card:hover .card-gold-rule {
    width: 58px;
}

.service-card-desc {
    font-family: var(--font-sans);
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.72;
    color: #4a5160;
    margin-bottom: 2.2rem;
    flex-grow: 1;
}

/* Card CTA Action - Button Style */
.service-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: #f8f9fc;
    border: 1px solid rgba(190, 147, 89, 0.25);
    border-radius: 4px;
    transition: all 0.35s ease;
}

.cta-text {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #121620;
    transition: color 0.3s ease;
}

.cta-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(190, 147, 89, 0.3);
    color: #9b7238;
    font-size: 0.75rem;
    transition: all 0.35s ease;
}

.service-card:hover .service-card-cta,
.service-card-cta:hover {
    background: #be9359;
    border-color: #be9359;
    box-shadow: 0 6px 18px rgba(190, 147, 89, 0.28);
}

.service-card:hover .cta-text,
.service-card-cta:hover .cta-text {
    color: #ffffff;
}

.service-card:hover .cta-icon-wrap,
.service-card-cta:hover .cta-icon-wrap {
    background: #ffffff;
    color: #be9359;
    transform: translateX(4px);
}

/* --- 6. Section 4: Customisation (Editorial Asymmetrical Mosaic) --- */
.customisation-section {
    position: relative;
    padding: 7.5rem 2.5rem 8.5rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.customisation-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

/* Header Row */
.custom-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
}

.custom-header-left {
    max-width: 780px;
}

.custom-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #9b7238;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.custom-heading-main {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.6vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: #121620;
    letter-spacing: -0.015em;
    margin-bottom: 0.95rem;
}

.custom-lead-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.68;
    color: #555d6e;
    max-width: 680px;
}

.custom-header-right {
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.btn-custom-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    line-height: 20px;
    font-size: 17px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.btn-custom-action:hover {
    background-color: #383838;
    color: #ffffff;
}

/* 4-Column Asymmetrical Mosaic Grid */
.custom-grid-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    align-items: start;
}

.custom-col {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.custom-mosaic-card {
    display: flex;
    flex-direction: column;
}

.custom-card-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
    background-color: #f0f2f5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}

.custom-card-img-wrap img,
.custom-card-img-wrap video,
.custom-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-mosaic-card:hover .custom-card-img-wrap img,
.custom-mosaic-card:hover .custom-card-img-wrap video,
.custom-mosaic-card:hover .custom-card-video {
    transform: scale(1.06);
}

.custom-mosaic-card:hover .custom-card-img-wrap {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.video-live-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    background: rgba(18, 22, 32, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 190, 122, 0.35);
    color: #f3d498;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.video-live-badge i {
    font-size: 0.6rem;
    color: #e2be7a;
}

.custom-mosaic-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.25;
    color: #121620;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.custom-mosaic-card:hover .custom-mosaic-title {
    color: #9b7238;
}

.custom-mosaic-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.58;
    color: #6a7282;
}

/* --- 7. Section 5: Why Cocktail Culture (Normal Clean Layout) --- */
.why-ribbon-section {
    position: relative;
    padding: 7.5rem 2.5rem 8rem;
    background: #12151c;
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-circles-waves-texture.webp');
    background-size: 110% auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.why-ribbon-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Split Grid */
.why-ribbon-split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* Left Side Editorial */
.why-ribbon-left {
    display: flex;
    flex-direction: column;
}

.why-eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.9rem;
}

.why-eyebrow-dash {
    width: 32px;
    height: 1.5px;
    background: var(--color-gold-heading);
    display: inline-block;
}

.why-eyebrow-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    color: var(--color-gold-heading);
    text-transform: uppercase;
}

.why-main-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 4.8vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-gold-heading); /* #BE9359 */
    margin-bottom: 1.4rem;
    letter-spacing: -0.015em;
}

.why-main-headline .headline-gold {
    color: var(--color-gold-heading);
}

.why-lead-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 25px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-gold-desc); /* #917852 */
    margin-bottom: 1.5rem;
}

.why-gold-divider {
    width: 50px;
    height: 2px;
    background: var(--color-gold-heading);
    margin-bottom: 1.5rem;
}

.why-text-paragraphs p {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1rem;
}

/* Right Side Visual Frame */
.why-ribbon-right {
    position: relative;
}

.why-visual-frame {
    position: relative;
    width: 100%;
}

.why-frame-main {
    width: 90%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(226, 190, 122, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-visual-frame:hover .why-frame-main {
    transform: scale(1.03);
}

.why-frame-glow {
    position: absolute;
    inset: 0;
    width: 90%;
    height: 480px;
    background: linear-gradient(to top, rgba(15, 19, 28, 0.5) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 4px;
}

.why-frame-sub {
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 240px;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
    border: 1.5px solid rgba(226, 190, 122, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    z-index: 5;
}

.why-frame-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- 8. Section 6: Experience (#F2F2F2 Background Theme) --- */
.experience-section {
    position: relative;
    padding: 7.5rem 2.5rem 8rem;
    background-color: #F2F2F2;
    color: #121620;
    overflow: hidden;
}

.experience-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.experience-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem;
}

.experience-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.9rem;
}

.experience-eyebrow-dash {
    width: 32px;
    height: 1.5px;
    background: #9b7238;
    display: inline-block;
}

.experience-eyebrow-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #9b7238;
    text-transform: uppercase;
}

.experience-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    color: #121620;
    margin-bottom: 1.1rem;
    letter-spacing: -0.015em;
}

.experience-lead-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.68;
    color: #555d6e;
}

/* 3 Highlights Stat Cards Grid */
.experience-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.experience-stat-card {
    position: relative;
    background: #ffffff;
    border-radius: 6px;
    padding: clamp(2.6rem, 3.8vw, 3.4rem) 2rem clamp(2.4rem, 3.2vw, 3rem);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
}

.experience-stat-card.card-featured {
    border: 1.5px solid #be9359;
}

.experience-stat-card:hover {
    transform: translateY(-8px);
    border-color: #be9359;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.stat-card-number {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.2vw, 52px);
    font-weight: 400;
    line-height: 1;
    color: #121620;
    margin-bottom: 0.2rem;
    letter-spacing: -0.015em;
    transition: color 0.35s ease;
}

.experience-stat-card:hover .stat-card-number {
    color: #9b7238;
}

.stat-card-divider {
    width: 38px;
    height: 1.5px;
    background: #be9359;
    margin: 1rem auto 0.9rem;
    transition: width 0.35s ease;
}

.experience-stat-card:hover .stat-card-divider {
    width: 52px;
}

.stat-card-label {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #838a97;
    text-transform: uppercase;
    transition: color 0.35s ease;
}

.experience-stat-card:hover .stat-card-label {
    color: #555d6e;
}

/* Where We Serve Area Box */
.where-we-serve-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 3rem 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.where-header {
    text-align: center;
    margin-bottom: 2.8rem;
}

.where-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.6vw, 44px);
    font-weight: 500;
    color: #121620;
    letter-spacing: -0.015em;
    line-height: 1.1;
}

.where-gold-rule {
    width: 48px;
    height: 2px;
    background: #be9359;
    margin: 0.8rem auto 0;
}

.cities-circular-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.4rem 1rem;
    align-items: start;
    justify-items: center;
}

.city-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.city-circle-item:hover {
    transform: translateY(-5px);
}

.city-circle-thumb {
    width: clamp(90px, 9vw, 120px);
    height: clamp(90px, 9vw, 120px);
    border-radius: 50%;
    padding: 4px;
    background: #ffffff;
    border: 1.5px solid #dce1eb;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.city-circle-item:hover .city-circle-thumb {
    border-color: #be9359;
    box-shadow: 0 10px 25px rgba(190, 147, 89, 0.28);
}

.city-circle-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-circle-item:hover .city-circle-thumb img {
    transform: scale(1.08);
}

.city-circle-name {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 1.4vw, 1.35rem);
    font-weight: 600;
    color: #1a2233;
    margin-top: 0.9rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.city-circle-item:hover .city-circle-name {
    color: #9b7238;
}

@media (max-width: 1024px) {
    .cities-circular-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 1.2rem;
    }
}

@media (max-width: 640px) {
    .experience-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .where-we-serve-box {
        padding: 2.2rem 1.5rem;
    }
    .cities-circular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem 1rem;
    }
}

/* ==========================================================================
   --- Section 9: Final CTA (Banner Card with Black Texture Background) ---
   ========================================================================== */
.final-cta-section {
    padding: 7rem 2rem 8.5rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.final-cta-container {
    max-width: 1220px;
    width: 94%;
    margin: 0 auto;
}

.final-cta-card {
    position: relative;
    background-color: #14161c;
    border-radius: 18px;
    padding: 5.5rem 3.5rem 6rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22), 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.final-cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.28), 0 12px 30px rgba(0, 0, 0, 0.12);
}

.final-cta-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-circles-waves-texture.webp');
    background-size: 110% auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.final-cta-eyebrow-dash {
    width: 28px;
    height: 1.5px;
    background: #BE9359;
    display: inline-block;
}

.final-cta-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    color: #BE9359;
    text-transform: uppercase;
}

.final-cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.4vw, 54px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.15;
    color: #BE9359;
    margin-bottom: 1.3rem;
    letter-spacing: -0.015em;
    text-align: center;
}

.final-cta-lead-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 24px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.55;
    color: #917852;
    margin-bottom: 1.5rem;
    max-width: 800px;
    text-align: center;
}

.final-cta-gold-divider {
    width: 50px;
    height: 2px;
    background: #BE9359;
    margin: 0 auto 1.5rem;
}

.final-cta-subtext {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 700px;
}

.final-cta-btn-wrap {
    margin-top: 0.2rem;
}

/* Image 2 CTA Button Style: Dark Charcoal Box with Gold Serif/Sans text */
.btn-final-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 40px;
    line-height: 21px;
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.btn-final-cta:hover {
    background-color: #383838;
    color: #ffffff;
}

/* ==========================================================================
   --- Section 10: Site Footer ---
   ========================================================================== */
.site-footer {
    background-color: #202020;
    color: #e2e8f0;
    padding: 5.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-circles-waves-texture.webp');
    background-size: 110% auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.footer-main-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Col 1: Brand & Logo */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.footer-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), border-color var(--transition);
}

.footer-brand-logo:hover .footer-logo-wrap {
    transform: scale(1.06);
    border-color: #be9359;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-title {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
}

.footer-brand-subtitle {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #be9359;
    margin-top: 3px;
}

.footer-about-text {
    font-family: var(--font-sans);
    font-size: 0.94rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 360px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.4rem;
}

.social-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.social-link-icon:hover {
    color: #be9359;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

/* Col Headings */
.footer-col-heading {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 500;
    color: #BE9359;
    margin-bottom: 1.6rem;
    letter-spacing: 0.02em;
}

/* Links List */
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 0;
    margin: 0;
}

.footer-nav-link {
    font-family: var(--font-sans);
    font-size: 0.96rem;
    color: #ffffff;
    font-weight: 400;
    transition: color 0.25s ease, opacity 0.25s ease;
    display: inline-block;
}

.footer-nav-link:hover {
    color: #BE9359;
}

/* Newsletter Col */
.footer-col-newsletter {
    display: flex;
    flex-direction: column;
}

.footer-newsletter-sub {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.2rem;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
}

.newsletter-input-wrap {
    width: 100%;
}

.footer-newsletter-input {
    width: 100%;
    padding: 13px 18px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-input:focus {
    border-color: #be9359;
    background: #333333;
}

.btn-footer-subscribe {
    display: inline-block;
    align-self: flex-start;
    padding: 12px 32px;
    line-height: 18px;
    font-size: 15px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-footer-subscribe:hover {
    background-color: #383838;
    color: #ffffff;
}

/* Bottom divider & bar */
.footer-bottom-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4.5rem 0 2rem;
}

.footer-bottom-bar {
    text-align: center;
}

.footer-copyright-text {
    font-family: var(--font-sans);
    font-size: 0.86rem;
    color: #7b8a9e;
    letter-spacing: 0.02em;
}

.footer-copyright-text strong {
    color: #e2e8f0;
    font-weight: 500;
}

/* --- 6. Modal --- */
.experience-modal {
    display: none !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 10, 14, 0.88);
    backdrop-filter: blur(14px);
}

.modal-card {
    position: relative;
    z-index: 10;
    background: #121620;
    border: 1px solid rgba(226, 190, 122, 0.3);
    padding: 3rem 2.5rem;
    max-width: 580px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: var(--transition);
}

.experience-modal.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-badge {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--color-accent-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-header h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.modal-text p {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--color-text-body);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.modal-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-box strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-accent-gold);
}

.highlight-box span {
    font-size: 0.75rem;
    color: var(--color-text-subtle);
    letter-spacing: 0.05em;
}

.btn-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    line-height: 21px;
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.btn-modal-cta:hover {
    background-color: #383838;
    color: #ffffff;
}

/* --- 6. Responsive Styles --- */
@media (max-width: 1280px) {
    .site-header {
        padding: 1.4rem 3rem;
    }
    .hero-section {
        padding: 9rem 3rem 4rem 3rem;
    }
    .hero-content-wrapper,
    .intro-container,
    .services-container,
    .customisation-container,
    .why-ribbon-container,
    .experience-container {
        width: 92%;
    }
    .intro-section {
        padding: 6rem 3rem;
    }
    .services-section {
        padding: 6.5rem 3rem 7rem;
    }
    .customisation-section {
        padding: 6.5rem 3rem 7.5rem;
    }
    .why-ribbon-section {
        padding: 6.5rem 3rem 7.5rem;
    }
    .experience-section {
        padding: 6.5rem 3rem 7.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-title-top {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: clamp(3rem, 7vw, 4.5rem);
    }
    .editorial-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .editorial-left-block {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .editorial-right-block {
        order: -1;
        justify-content: flex-start;
        text-align: left;
    }
    .hero-title-bottom {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    .custom-grid-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.2rem 2.5rem;
    }
    .why-ribbon-split {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .why-bg-texture {
        background-size: cover;
        background-position: center;
    }
    .why-frame-main {
        width: 100%;
        height: 420px;
    }
    .experience-stats-grid {
        gap: 1.5rem;
    }
    .cities-circular-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.2rem 1.4rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1.1rem 1.4rem;
    }
    .hero-section {
        padding: 7.5rem 1.25rem 2.2rem 1.25rem;
        min-height: 100svh;
        justify-content: flex-end;
    }
    .hero-top-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        width: 100%;
    }
    .meta-left {
        font-size: 0.78rem;
        letter-spacing: 0.2em;
    }
    .meta-right {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        line-height: 1.4;
    }
    .hero-divider-rule {
        margin-bottom: 1.3rem;
    }
    .hero-title-top {
        font-size: clamp(2.3rem, 9.2vw, 3.4rem);
        line-height: 1.04;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        letter-spacing: -0.015em;
    }
    .editorial-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        margin-top: 0.4rem;
    }
    .editorial-right-block {
        order: 1;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
    .hero-title-bottom {
        font-size: clamp(1.65rem, 6.4vw, 2.3rem);
        line-height: 1.12;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left;
        letter-spacing: -0.01em;
    }
    .editorial-left-block {
        order: 2;
        max-width: 100%;
        flex: 1 1 100%;
        margin-top: 0.3rem;
    }
    .desc-arrow-wrap {
        align-items: flex-start;
        gap: 0.75rem;
    }
    .down-arrow-svg {
        margin-top: 2px;
    }
    .down-arrow-svg svg {
        width: 18px;
        height: 28px;
    }
    .hero-desc-text {
        font-size: 14.5px;
        line-height: 1.5;
    }
    .intro-section {
        padding: 4.8rem 1.25rem;
    }
    .intro-heading-main {
        font-size: clamp(2.1rem, 7.5vw, 2.8rem);
    }
    .intro-lead-text {
        font-size: clamp(1.15rem, 4vw, 1.4rem);
    }
    .services-section {
        padding: 5rem 1.25rem 5.5rem;
    }
    .customisation-section {
        padding: 5rem 1.25rem 6rem;
    }
    .why-ribbon-section {
        padding: 5rem 1.25rem 5.5rem;
    }
    .experience-section {
        padding: 5rem 1.25rem 5.5rem;
    }
    .experience-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    .where-we-serve-box {
        padding: 2rem 1rem;
    }
    .cities-circular-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem 0.8rem;
    }
    .why-ribbon-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .why-bg-texture {
        background-size: cover;
        background-position: center;
    }
    .why-frame-main {
        width: 100%;
        height: 340px;
    }
    .why-frame-sub {
        width: 170px;
        height: 110px;
        bottom: -15px;
    }
    .custom-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .btn-custom-action {
        width: 100%;
        text-align: center;
    }
    .services-header-wrap {
        margin-bottom: 2.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    .custom-grid-mosaic {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .custom-col .custom-card-img-wrap {
        height: 260px !important;
    }
    .hero-content-wrapper,
    .intro-container,
    .services-container,
    .customisation-container,
    .why-ribbon-container,
    .experience-container,
    .final-cta-container {
        width: 100%;
    }
    .final-cta-section {
        padding: 4.5rem 1.25rem 5.5rem;
    }
    .final-cta-card {
        padding: 3.8rem 1.5rem 4.2rem;
        border-radius: 16px;
    }
    .final-cta-bg-texture {
        background-size: cover;
    }
    .final-cta-headline {
        font-size: 2.1rem;
    }
    .final-cta-lead-text {
        font-size: 1.15rem;
    }
    .final-cta-subtext {
        font-size: 0.92rem;
        margin-bottom: 2rem;
    }
    .btn-final-cta {
        padding: 14px 28px;
        font-size: 16px;
    }
    .header-split-layout {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }
    .mobile-toggle-btn {
        display: flex;
    }
    .brand-center-emblem {
        width: 52px;
        height: 52px;
    }
    .nav-mobile-drawer {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: #10141d;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 3rem 2rem;
        transition: right 0.35s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }
    .nav-mobile-drawer.active {
        right: 0;
    }
    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 1.8rem 0;
        padding: 0;
        width: 100%;
    }
    .mobile-nav-links .nav-link {
        font-size: 1rem;
    }
    .mobile-emblem {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
    }
    .btn-book-now-mobile {
        display: inline-block;
        padding: 12px 30px;
        font-family: var(--font-serif);
        font-size: 16px;
        color: #be9359;
        background-color: #262626;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-top: 0.8rem;
    }
    .modal-highlights {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bg-texture {
        background-size: cover;
    }
    .site-footer {
        padding: 4rem 1.5rem 2rem;
    }
    .footer-bottom-divider {
        margin: 3rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.85rem 1rem;
    }
    .brand-center-emblem {
        width: 46px;
        height: 46px;
    }
    .hero-section {
        padding: 6.8rem 1rem 1.8rem 1rem;
    }
    .hero-title-top {
        font-size: clamp(2rem, 9.8vw, 2.5rem);
        line-height: 1.06;
    }
    .hero-title-bottom {
        font-size: clamp(1.4rem, 6.8vw, 1.8rem);
        line-height: 1.14;
    }
    .meta-left {
        font-size: 0.72rem;
    }
    .meta-right {
        font-size: 0.68rem;
    }
    .intro-section {
        padding: 4rem 1rem;
    }
    .intro-heading-main {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
    }
    .intro-lead-text {
        font-size: 1.15rem;
    }
    .intro-desc-paragraph {
        font-size: 0.95rem;
    }
    .services-section,
    .customisation-section,
    .why-ribbon-section,
    .experience-section {
        padding: 4rem 1rem 4.5rem;
    }
    .services-title-main,
    .custom-title-main,
    .why-main-heading,
    .experience-title-main {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
    }
    .cities-circular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.6rem;
    }
    .city-circle-thumb {
        width: 78px;
        height: 78px;
    }
    .city-circle-name {
        font-size: 1.05rem;
        margin-top: 0.6rem;
    }
    .final-cta-section {
        padding: 3.5rem 0.85rem 4.5rem;
    }
    .final-cta-card {
        padding: 3rem 1.1rem 3.5rem;
    }
    .final-cta-headline {
        font-size: 1.85rem;
    }
    .final-cta-lead-text {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   Service Page Belmont-Inspired Clean Centered Hero
   ========================================================================== */
.service-hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4.5rem 1.5rem;
    overflow: hidden;
    background-color: #1a1622;
}

.service-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.service-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.service-hero-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
}

.service-hero-center-box {
    position: relative;
    z-index: 10;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 1rem;
}

.service-hero-title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(2.8rem, 6.5vw, 88px);
    font-weight: 400;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.25rem;
}

.service-hero-text-wrap {
    max-width: 680px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-hero-simple-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.service-hero-simple-sub {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.btn-service-reservation {
    display: inline-block;
    padding: 17px 40px;
    line-height: 21px;
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-service-reservation:hover {
    background-color: #383838;
    color: #ffffff;
}

@media (max-width: 768px) {
    .service-hero-section {
        padding: 7rem 1.25rem 3.5rem 1.25rem;
        min-height: 85vh;
    }
    .service-hero-title-italic {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }
    .service-hero-simple-text {
        font-size: 0.96rem;
    }
    .service-hero-simple-sub {
        font-size: 0.88rem;
    }
    .btn-service-reservation {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ==========================================================================
   Section 2: What We Offer (White Luxury 3-Card Grid)
   ========================================================================== */
.what-we-offer-section {
    background-color: #ffffff;
    padding: 7.5rem 3rem 8rem 3rem;
    position: relative;
    z-index: 5;
}

.what-we-offer-container {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

.what-we-offer-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem auto;
}

.what-we-offer-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 0.85rem;
    display: inline-block;
}

.what-we-offer-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.15;
    color: #14171f;
    letter-spacing: -0.015em;
    margin-bottom: 1.15rem;
}

.what-we-offer-lead {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 1.65;
    color: #52525b;
}

/* 3-in-a-row Grid */
.what-we-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.8rem 2.6rem;
}

.offer-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.offer-card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 4.8;
    overflow: hidden;
    margin-bottom: 1.6rem;
    background-color: #f4f4f5;
    position: relative;
}

.offer-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.offer-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
}

.offer-card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #14171f;
    line-height: 1.3;
    margin-bottom: 0.65rem;
}

.offer-card-desc {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.55;
    color: #64748b;
    margin-bottom: 1.25rem;
    max-width: 360px;
}

.offer-card-btn,
.offer-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    line-height: 18px;
    font-size: 14px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359 !important;
    background-color: #262626 !important;
    border: none !important;
    border-radius: 0 !important;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    margin-top: 0.25rem;
}

.offer-card-btn:hover,
.offer-card-link:hover {
    background-color: #383838 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .what-we-offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .what-we-offer-section {
        padding: 5.5rem 2rem 6.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .what-we-offer-grid {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }
    .what-we-offer-section {
        padding: 4.5rem 1.25rem 5rem 1.25rem;
    }
    .what-we-offer-header {
        margin-bottom: 3rem;
    }
    .offer-card-img-wrap {
        aspect-ratio: 4 / 4.4;
    }
}

/* ==========================================================================
   Section 3: Specialty Bar Services (Master Sliding Showcase)
   ========================================================================== */
.specialty-slider-section {
    position: relative;
    padding: 6.5rem 4.5rem 7.5rem 4.5rem;
    background: #12151c;
    overflow: hidden;
    z-index: 4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specialty-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-circles-waves-texture.webp');
    background-size: 110% auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.specialty-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
}

/* Category Navigation Top Bar */
.specialty-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    margin-bottom: 2.2rem;
    border-bottom: 1px solid rgba(190, 147, 89, 0.25);
    gap: 2rem;
    position: relative;
}

.specialty-tabs-wrap {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    padding-top: 4px;
}

.specialty-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.specialty-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 0 8px 0;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.specialty-tab-btn .tab-num {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #be9359;
}

.specialty-tab-btn .tab-label {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.specialty-tab-btn.active .tab-label,
.specialty-tab-btn:hover .tab-label {
    color: #ffffff;
}

.specialty-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #be9359;
    box-shadow: 0 0 14px rgba(190, 147, 89, 0.85);
    border-radius: 2px;
}

.specialty-tab-divider {
    color: rgba(190, 147, 89, 0.45);
    font-size: 1.45rem;
    flex-shrink: 0;
}

/* Nav Arrows */
.specialty-nav-arrows {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.specialty-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(190, 147, 89, 0.35);
    background: rgba(255, 255, 255, 0.02);
    color: #be9359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.specialty-arrow-btn:hover {
    background: #be9359;
    color: #16181d;
    transform: scale(1.05);
}

/* Slides Viewport & Track */
.specialty-slides-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.specialty-slides-track {
    position: relative;
    width: 100%;
}

.specialty-main-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(15px);
}

.specialty-main-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Split Grid Layout */
.specialty-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
}

.specialty-left-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.specialty-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #be9359;
    display: inline-block;
}

.specialty-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.12;
    color: #ffffff;
    letter-spacing: -0.015em;
}

.specialty-lead-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.65;
    color: #e2e8f0;
}

.specialty-sub-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.6;
    color: #94a3b8;
}

/* Ideal For & Features Boxes */
.specialty-ideal-block {
    margin-top: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(190, 147, 89, 0.25);
    border-radius: 4px;
}

.specialty-ideal-title {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 0.65rem;
}

.specialty-ideal-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.85rem;
}

.specialty-features-block {
    margin-top: 0.35rem;
}

.specialty-features-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #be9359;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.specialty-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
}

.specialty-cta-wrap {
    margin-top: 0.85rem;
}

/* Right Side: Visual Showcase */
.specialty-right-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.wedding-slider-container,
.theme-slider-container,
.wheels-slider-container,
.sufi-slider-container,
.corporate-slider-container,
.flair-slider-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(190, 147, 89, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    background: #0e1219;
}

.wedding-slider-track,
.theme-slider-track,
.wheels-slider-track,
.sufi-slider-track,
.corporate-slider-track,
.flair-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.wedding-slide,
.theme-slide,
.wheels-slide,
.sufi-slide,
.corporate-slide,
.flair-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.03);
}

.wedding-slide.active,
.theme-slide.active,
.wheels-slide.active,
.sufi-slide.active,
.corporate-slide.active,
.flair-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.wedding-slide-img,
.theme-slide-img,
.wheels-slide-img,
.sufi-slide-img,
.corporate-slide-img,
.flair-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding-slide-caption,
.theme-slide-caption,
.wheels-slide-caption,
.sufi-slide-caption,
.corporate-slide-caption,
.flair-slide-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 6px 16px;
    background: rgba(14, 18, 25, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 2px solid #be9359;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 2px;
}

.wedding-slider-dots,
.theme-slider-dots,
.wheels-slider-dots,
.sufi-slider-dots,
.corporate-slider-dots,
.flair-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.slider-dot.active {
    width: 38px;
    background: #be9359;
}

@media (max-width: 1024px) {
    .specialty-slider-section {
        padding: 5.5rem 2rem 6.5rem 2rem;
    }
    .specialty-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .specialty-tabs-wrap {
        gap: 1.4rem;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
    .specialty-tab-btn .tab-label {
        font-size: 1.25rem;
    }
    .wedding-slider-container,
    .theme-slider-container,
    .wheels-slider-container,
    .sufi-slider-container,
    .corporate-slider-container,
    .flair-slider-container {
        height: 440px;
    }
}

@media (max-width: 640px) {
    .specialty-slider-section {
        padding: 4.5rem 1.25rem 5rem 1.25rem;
    }
    .specialty-nav-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        width: 100%;
        overflow: hidden;
    }
    .specialty-tabs-wrap {
        gap: 1.2rem;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        flex: 1 1 auto;
        min-width: 0;
    }
    .specialty-tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    .specialty-tab-btn .tab-label {
        font-size: 1.15rem;
        white-space: nowrap !important;
    }
    .specialty-tab-btn.active::after {
        bottom: 0;
    }
    .specialty-features-grid {
        grid-template-columns: 1fr;
    }
    .wedding-slider-container,
    .theme-slider-container,
    .wheels-slider-container,
    .sufi-slider-container,
    .corporate-slider-container,
    .flair-slider-container {
        height: 340px;
    }
}

.wedding-slider-container,
.theme-slider-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(190, 147, 89, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    background: #0e1219;
}

.wedding-slider-track,
.theme-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.wedding-slide,
.theme-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.03);
}

.wedding-slide.active,
.theme-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.wedding-slide-img,
.theme-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding-slide-caption,
.theme-slide-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 6px 16px;
    background: rgba(14, 18, 25, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 2px solid #be9359;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 2px;
}

.wedding-slider-dots,
.theme-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.slider-dot.active {
    width: 38px;
    background: #be9359;
}

@media (max-width: 1024px) {
    .specialty-accordion-section {
        padding: 5.5rem 2rem 6.5rem 2rem;
    }
    .specialty-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .specialty-right-visual {
        position: static;
    }
    .wedding-slider-container,
    .theme-slider-container {
        height: 440px;
    }
}

@media (max-width: 640px) {
    .specialty-accordion-section {
        padding: 4.5rem 1.25rem 5rem 1.25rem;
    }
    .accordion-header {
        padding: 1.25rem 1.25rem;
    }
    .accordion-inner-body {
        padding: 0 1.25rem 1.5rem 1.25rem;
    }
    .accordion-features-grid {
        grid-template-columns: 1fr;
    }
    .wedding-slider-container,
    .theme-slider-container,
    .wheels-slider-container,
    .sufi-slider-container,
    .corporate-slider-container,
    .flair-slider-container {
        height: 320px;
    }
}

/* ==========================================================================
   Mobile Optimization for Textures and Master Slider
   ========================================================================== */
@media (max-width: 992px) {
    .specialty-slider-section {
        padding: 5.5rem 1.8rem 6.5rem 1.8rem;
    }
    .specialty-split-grid {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
    .specialty-bg-texture,
    .intro-bg-texture,
    .locations-bg-texture,
    .final-cta-bg-texture,
    .footer-bg-texture {
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: repeat-y !important;
    }
}

@media (max-width: 768px) {
    .specialty-slider-section {
        padding: 4.5rem 1.25rem 5.5rem 1.25rem;
    }
    .specialty-nav-bar {
        padding-bottom: 0.5rem;
        margin-bottom: 1.8rem;
        gap: 1.2rem;
    }
    .specialty-tab-btn {
        gap: 0.6rem;
    }
    .specialty-tab-btn .tab-num {
        font-size: 0.9rem;
    }
    .specialty-tab-btn .tab-label {
        font-size: 1.35rem;
    }
    .specialty-headline {
        font-size: clamp(2rem, 6.8vw, 2.6rem);
    }
    .wedding-slider-container,
    .theme-slider-container,
    .wheels-slider-container,
    .sufi-slider-container,
    .corporate-slider-container,
    .flair-slider-container {
        height: 340px;
    }
    .specialty-bg-texture,
    .intro-bg-texture,
    .locations-bg-texture,
    .final-cta-bg-texture,
    .footer-bg-texture {
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: repeat-y !important;
    }
}

@media (max-width: 480px) {
    .specialty-slider-section {
        padding: 3.8rem 1rem 4.8rem 1rem;
    }
    .specialty-tab-btn .tab-num {
        font-size: 0.84rem;
    }
    .specialty-tab-btn .tab-label {
        font-size: 1.22rem;
    }
    .wedding-slider-container,
    .theme-slider-container,
    .wheels-slider-container,
    .sufi-slider-container,
    .corporate-slider-container,
    .flair-slider-container {
        height: 280px;
    }
}

/* ==========================================================================
   Team Page - Section 2: Split Introduction with 2 Images (White Background)
   ========================================================================== */
.team-intro-split-section {
    background-color: #ffffff;
    color: #14171f;
    padding: 7.5rem 3rem 8rem 3rem;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.team-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 92%;
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.team-intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 580px;
}

.team-intro-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 1rem;
    display: inline-block;
}

.team-intro-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: #0e1219;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.team-intro-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.3rem;
}

.team-intro-lead {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 1.65;
    color: #27272a;
}

.team-intro-desc {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.68;
    color: #52525b;
}

.btn-team-intro-cta {
    display: inline-block;
    padding: 17px 40px;
    line-height: 21px;
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #be9359;
    background-color: #262626;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-team-intro-cta:hover {
    background-color: #383838;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Multi-Image Single-Slide Showcase in Section 2 */
.team-intro-slider-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
}

.team-intro-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.team-single-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-single-slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.team-intro-img-card.single-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f4f4f5;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-intro-img-card.single-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.team-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-intro-img-card:hover .team-intro-img {
    transform: scale(1.04);
}

/* Slider Controls */
.team-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.6rem;
    padding: 0 0.5rem;
}

.team-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s ease;
}

.team-slider-dot.active {
    background-color: #be9359;
    width: 28px;
    border-radius: 6px;
}

.team-slider-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4f4f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #14171f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-slider-btn:hover {
    background-color: #262626;
    color: #ffffff;
    border-color: #262626;
    transform: scale(1.06);
}

@media (max-width: 1024px) {
    .team-intro-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .team-intro-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    .team-intro-slider-container {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }
    .team-intro-img-card.card-secondary {
        transform: translateY(0);
    }
    .team-intro-img-card.card-secondary:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 640px) {
    .team-intro-split-section {
        padding: 4.5rem 1.25rem 5rem 1.25rem;
    }
    .team-intro-slider-container {
        width: 100%;
        max-width: 100%;
        touch-action: pan-y;
    }
    .team-intro-img-card.single-card {
        height: clamp(320px, 60vh, 420px);
    }
    .team-slider-controls {
        margin-top: 1.6rem;
    }
    .team-slider-dots {
        gap: 6px;
    }
    .team-slider-dot {
        width: 8px;
        height: 8px;
    }
    .team-slider-dot.active {
        width: 22px;
    }
    .team-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Team Page - Section 4: What Our Team Brings (4 Feature Cards Grid)
   ========================================================================== */
.team-brings-section {
    position: relative;
    padding: 7.5rem 3rem 8rem 3rem;
    background-color: #0a0d13;
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-brings-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-circles-waves-texture.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
}

.team-brings-container {
    position: relative;
    z-index: 10;
    max-width: 1380px;
    margin: 0 auto;
    width: 92%;
}

.team-brings-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem auto;
}

.team-brings-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.team-brings-eyebrow-dash {
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: #be9359;
}

.team-brings-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #be9359;
}

.team-brings-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
}

.team-brings-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #be9359, transparent);
    margin: 0 auto;
}

.team-brings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-bring-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(190, 147, 89, 0.2);
    border-radius: 4px;
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-bring-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #be9359, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-bring-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(190, 147, 89, 0.55);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(190, 147, 89, 0.15);
}

.team-bring-card:hover::before {
    opacity: 1;
}

.team-bring-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(190, 147, 89, 0.12);
    border: 1px solid rgba(190, 147, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: #be9359;
    font-size: 1.45rem;
    transition: all 0.4s ease;
}

.team-bring-card:hover .team-bring-icon-wrap {
    background: #be9359;
    color: #0e1219;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 20px rgba(190, 147, 89, 0.5);
}

.team-bring-card-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.team-bring-card-desc {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1200px) {
    .team-brings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .team-brings-section {
        padding: 5rem 1.5rem 5.5rem 1.5rem;
    }
    .team-brings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .team-bring-card {
        padding: 2.2rem 1.6rem 2rem 1.6rem;
    }
}

/* ==========================================================================
   Gallery Page - Hero Section (Split Light Theme #F2F2F2 with Circular Logo)
   ========================================================================== */
.gallery-hero-section {
    position: relative;
    min-height: calc(100vh - 88px);
    background-color: #F2F2F2;
    color: #121620;
    display: flex;
    align-items: stretch;
    padding-top: 88px;
    overflow: hidden;
}

.gallery-hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    width: 100%;
    min-height: calc(100vh - 88px);
}

/* Left Visual Column */
.gallery-hero-visual-col {
    position: relative;
    overflow: hidden;
    min-height: 550px;
    background-color: #e5e5e7;
}

.gallery-hero-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hero-visual-col:hover .gallery-hero-main-img {
    transform: scale(1.03);
}

/* Right Content Column (#F2F2F2 Light Background) */
.gallery-hero-content-col {
    position: relative;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3.5rem;
    text-align: center;
    overflow: hidden;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* Ghost / Watermark Background Text */
.gallery-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(5.5rem, 15vw, 180px);
    font-weight: 400;
    font-style: italic;
    color: rgba(0, 0, 0, 0.038);
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.gallery-hero-badge-wrap {
    position: relative;
    z-index: 2;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circular Logo Frame */
.gallery-hero-logo-frame {
    width: clamp(140px, 15vw, 190px);
    height: clamp(140px, 15vw, 190px);
    border-radius: 50%;
    position: relative;
    margin-bottom: 2.2rem;
    padding: 5px;
    background-color: #ffffff;
    border: 2.5px solid #be9359;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 0 30px rgba(190, 147, 89, 0.22);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.gallery-hero-badge-wrap:hover .gallery-hero-logo-frame {
    transform: scale(1.06);
    box-shadow: 0 20px 50px rgba(190, 147, 89, 0.35);
}

.gallery-hero-brand-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Details: Just "Gallery" */
.gallery-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: #121620;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    margin-bottom: 0.8rem;
}

.gallery-hero-gold-divider {
    width: 50px;
    height: 2px;
    background-color: #be9359;
    margin: 0.5rem auto 0;
}

@media (max-width: 992px) {
    .gallery-hero-split-grid {
        grid-template-columns: 1fr;
    }
    .gallery-hero-visual-col {
        min-height: 440px;
    }
    .gallery-hero-content-col {
        padding: 4.5rem 1.5rem 5rem;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
}

/* ==========================================================================
   Gallery Page - Section 2: Editorial Categories Showcase (White Background)
   ========================================================================== */
.gallery-categories-section {
    background-color: #ffffff;
    color: #121620;
    position: relative;
    z-index: 5;
    padding: 0;
    border-top: 1.5px solid rgba(190, 147, 89, 0.45);
    border-bottom: 1.5px solid rgba(190, 147, 89, 0.45);
}

.gallery-categories-container {
    width: 100%;
    margin: 0 auto;
}

.gallery-category-row {
    display: block;
    text-decoration: none;
    color: #121620;
    padding: clamp(3.4rem, 5.8vw, 5.8rem) clamp(2rem, 5vw, 5rem);
    border-bottom: 1px solid rgba(190, 147, 89, 0.35);
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

.gallery-category-row:first-child {
    border-top: 1px solid rgba(190, 147, 89, 0.35);
}

.gallery-category-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #be9359;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-category-row:hover {
    background-color: #fbfbfb;
    padding-left: clamp(2.5rem, 5.8vw, 6rem);
}

.gallery-category-row:hover::before {
    transform: scaleY(1);
}

.category-row-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-num {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #be9359;
    opacity: 0.7;
    width: 60px;
    text-align: left;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-category-row:hover .category-num {
    opacity: 1;
    transform: translateX(4px);
}

.category-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6.5vw, 84px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    color: #121620;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.4s ease;
}

.gallery-category-row:hover .category-title {
    color: #9b7238;
    transform: scale(1.02);
    letter-spacing: 0.04em;
}

.category-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    font-weight: 300;
    line-height: 1.5;
    color: #636b79;
    letter-spacing: 0.02em;
    transition: color 0.35s ease;
}

.gallery-category-row:hover .category-subtitle {
    color: #181c26;
}

.category-action-arrow {
    width: 60px;
    text-align: right;
    font-size: 1.5rem;
    color: #be9359;
    opacity: 0.35;
    transform: translateX(-10px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-category-row:hover .category-action-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .gallery-category-row {
        padding: 2.8rem 1.5rem;
    }
    .category-num,
    .category-action-arrow {
        display: none;
    }
    .category-title {
        font-size: clamp(2.2rem, 9vw, 42px);
    }
}

/* ==========================================================================
   Gallery Page - Section 3: 3-Column Editorial Gallery Grid
   ========================================================================== */
.gallery-grid-section {
    background-color: #080c14;
    color: #ffffff;
    padding: 6.5rem 0 7rem;
    position: relative;
    z-index: 5;
}

.gallery-grid-container {
    max-width: 1440px;
    width: 92%;
    margin: 0 auto;
}

/* Category Filter Tabs */
.gallery-filter-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
}

.gallery-filter-btn {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    color: #121620;
    background: #be9359;
    border-color: #be9359;
    box-shadow: 0 4px 18px rgba(190, 147, 89, 0.35);
}

/* Dynamic Asymmetric Gallery Grid (12-Column Varied Widths System) */
.gallery-photos-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    height: clamp(320px, 28vw, 420px);
    overflow: hidden;
    background-color: #0d121c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

/* Varied Column Width Classes */
.gallery-item.col-3 {
    grid-column: span 3;
}
.gallery-item.col-4 {
    grid-column: span 4;
}
.gallery-item.col-5 {
    grid-column: span 5;
}
.gallery-item.col-6 {
    grid-column: span 6;
}
.gallery-item.col-7 {
    grid-column: span 7;
}
.gallery-item.col-8 {
    grid-column: span 8;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 147, 89, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(190, 147, 89, 0.18);
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

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

/* Hover Overlay & Caption */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 12, 20, 0.9) 0%, rgba(8, 12, 20, 0.3) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-category {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 0.35rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.01em;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s;
}

.gallery-item:hover .gallery-item-category,
.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

/* Lightbox Modal */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 10, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.gallery-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(190, 147, 89, 0.3);
    border: 1.5px solid rgba(190, 147, 89, 0.3);
}

.gallery-lightbox-caption {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #be9359;
    margin-top: 1rem;
    letter-spacing: 0.04em;
    text-align: center;
}

.gallery-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.gallery-lightbox-close:hover {
    color: #be9359;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .gallery-photos-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.2rem;
    }
    .gallery-item.col-3 {
        grid-column: span 3;
    }
    .gallery-item.col-4 {
        grid-column: span 3;
    }
    .gallery-item.col-5 {
        grid-column: span 3;
    }
    .gallery-item.col-6 {
        grid-column: span 6;
    }
    .gallery-item.col-7 {
        grid-column: span 6;
    }
    .gallery-item.col-8 {
        grid-column: span 6;
    }
}

@media (max-width: 600px) {
    .gallery-photos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery-item.col-3,
    .gallery-item.col-4,
    .gallery-item.col-5,
    .gallery-item.col-6,
    .gallery-item.col-7,
    .gallery-item.col-8 {
        grid-column: span 1;
        height: 280px;
    }
    .gallery-filter-nav {
        gap: 0.5rem;
        margin-bottom: 2.5rem;
    }
}

/* ==========================================================================
   Contact Page - Section 1: Cinematic Smoke Cocktail Hero
   ========================================================================== */
.contact-hero-section {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 2rem 6.5rem;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    background-color: #080c14;
}

.contact-hero-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.85) contrast(1.08);
    transform: scale(1.02);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero-section:hover .contact-hero-bg-img {
    transform: scale(1.05);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(8, 12, 20, 0.45) 0%, rgba(8, 12, 20, 0.85) 75%, rgba(6, 9, 15, 0.96) 100%),
                linear-gradient(to bottom, rgba(8, 12, 20, 0.8) 0%, transparent 40%, rgba(8, 12, 20, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-hero-container {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
}

.contact-hero-eyebrow {
    font-family: var(--font-sans);
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.contact-hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 76px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.contact-hero-gold-divider {
    width: 60px;
    height: 2px;
    background-color: #be9359;
    margin: 0 auto 1.6rem;
    box-shadow: 0 0 12px rgba(190, 147, 89, 0.6);
}

.contact-hero-lead {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 2.4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-hero-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.btn-contact-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #121620;
    background: #be9359;
    border: 1px solid #be9359;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(190, 147, 89, 0.35);
}

/* ==========================================================================
   Contact Page - Section: Prefer to Talk? (Direct Contact Cards - White Background)
   ========================================================================== */
.contact-direct-section {
    background-color: #ffffff !important;
    color: #121620;
    padding: 7rem 2rem 7.5rem;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-direct-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.contact-direct-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4.5rem;
}

.contact-direct-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.contact-direct-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 56px);
    font-weight: 400;
    color: #121620;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
}

.contact-direct-gold-divider {
    width: 50px;
    height: 2px;
    background-color: #be9359;
    margin: 0.8rem auto 1.4rem;
}

.contact-direct-subtext {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.96rem, 1.15vw, 1.08rem);
    font-weight: 300;
    line-height: 1.7;
    color: #555e6c;
}

/* 3 Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.contact-card {
    background-color: #F8F8F9;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 3.2rem 2.2rem 2.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #121620;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(190, 147, 89, 0.5);
}

.contact-card.featured-gold {
    background-color: #ffffff;
    border: 2px solid #be9359;
    box-shadow: 0 16px 40px rgba(190, 147, 89, 0.14);
}

.contact-card.featured-gold:hover {
    box-shadow: 0 24px 55px rgba(190, 147, 89, 0.25);
}

.contact-card-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(190, 147, 89, 0.12);
    color: #be9359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.6rem;
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.contact-card:hover .contact-card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background-color: #be9359;
    color: #ffffff;
}

.contact-card-badge {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9b7238;
    margin-bottom: 0.4rem;
}

.contact-card-label {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 400;
    color: #121620;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}

.contact-card-value {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #be9359;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.contact-card-note {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: #71717a;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.contact-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #121620;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    justify-content: center;
    transition: color 0.3s ease, gap 0.3s ease;
}

.contact-card:hover .contact-card-action {
    color: #be9359;
    gap: 0.9rem;
}

/* Mobile & Tablet Responsive for Contact Cards Section */
@media (max-width: 992px) {
    .contact-direct-section {
        padding: 5.5rem 1.75rem 6rem;
    }
    .contact-direct-header {
        margin-bottom: 3rem;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 1.8rem;
    }
    .contact-card {
        padding: 2.6rem 1.8rem 2.2rem;
    }
}

@media (max-width: 600px) {
    .contact-direct-section {
        padding: 4rem 1.2rem 4.5rem;
    }
    .contact-direct-header {
        margin-bottom: 2.2rem;
    }
    .contact-direct-eyebrow {
        font-size: 0.76rem;
        letter-spacing: 0.2em;
    }
    .contact-direct-title {
        font-size: clamp(1.85rem, 7vw, 2.2rem);
        margin-bottom: 0.6rem;
    }
    .contact-direct-subtext {
        font-size: 0.88rem;
        line-height: 1.55;
    }
    .contact-cards-grid {
        gap: 1.35rem;
        width: 100%;
    }
    .contact-card {
        padding: 2rem 1.4rem 1.8rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }
    .contact-card-icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    .contact-card-badge {
        font-size: 0.68rem;
    }
    .contact-card-label {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    .contact-card-value {
        font-size: 1.02rem;
        margin-bottom: 0.4rem;
    }
    .contact-card-note {
        font-size: 0.82rem;
        margin-bottom: 1.2rem;
    }
    .contact-card-action {
        padding-top: 0.9rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Contact Page - Section 4: Where We Serve (Cities Coverage Grid)
   ========================================================================== */
.contact-cities-section {
    background-color: #0A0E17;
    color: #ffffff;
    padding: 7.5rem 2rem 8rem;
    position: relative;
    overflow: hidden;
}

.contact-cities-bg-texture {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, #be9359 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.contact-cities-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-cities-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem;
}

.contact-cities-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.contact-cities-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 56px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
}

.contact-cities-gold-divider {
    width: 50px;
    height: 2px;
    background-color: #be9359;
    margin: 0.8rem auto 1.4rem;
    box-shadow: 0 0 10px rgba(190, 147, 89, 0.5);
}

.contact-cities-subtext {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.96rem, 1.15vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* 4-Column Grid for 8 Cities */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.city-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.city-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(190, 147, 89, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(190, 147, 89, 0.15);
}

.city-card.home-base {
    border-color: rgba(190, 147, 89, 0.5);
    background: linear-gradient(135deg, rgba(190, 147, 89, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.city-pin-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(190, 147, 89, 0.12);
    color: #be9359;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.2rem;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.city-card:hover .city-pin-icon {
    transform: scale(1.1);
    background: #be9359;
    color: #121620;
}

.city-badge-tag {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #be9359;
    margin-bottom: 0.4rem;
    display: block;
}

.city-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin-bottom: 0.35rem;
}

.city-type {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

/* Nationwide Banner Note */
.cities-nationwide-card {
    background: rgba(190, 147, 89, 0.08);
    border: 1px dashed rgba(190, 147, 89, 0.4);
    border-radius: 4px;
    padding: 2.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nationwide-text-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nationwide-globe-icon {
    font-size: 2.2rem;
    color: #be9359;
    flex-shrink: 0;
}

.nationwide-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.nationwide-desc {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.btn-nationwide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-serif);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #121620;
    background: #be9359;
    border: 1px solid #be9359;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.btn-nationwide-cta:hover {
    background: #dfb277;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(190, 147, 89, 0.4);
}

@media (max-width: 1024px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cities-nationwide-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .nationwide-text-wrap {
        flex-direction: column;
        gap: 0.8rem;
    }
}

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








