/* =============================================
   BRAMPTON EVENT RENTALS — 2026 DESIGN SYSTEM
   Mobile-First, Premium Aesthetics
   ============================================= */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

/* ---- CSS Variables ---- */
:root {
    --primary:    #c9a96e;      /* Warm champagne gold */
    --primary-dark: #b08a4e;
    --primary-light: #e2c99a;
    --secondary:  #0f1117;      /* Near-black */
    --secondary-mid: #1c1e26;
    --accent:     #d4af70;
    --text:       #1a1a2e;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white:      #ffffff;
    --bg:         #ffffff;
    --bg-light:   #fafaf8;
    --bg-dark:    #0f1117;
    --border:     rgba(0,0,0,0.08);
    --border-light: rgba(255,255,255,0.12);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --shadow:     0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
    --shadow-gold: 0 8px 30px rgba(201,169,110,0.28);
    --radius:     14px;
    --radius-lg:  24px;
    --radius-full: 9999px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container:  1200px;
    --header-h:   72px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { color: var(--text-light); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
section { padding: 80px 0; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.full-width { width: 100%; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-dark {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
.btn-dark:hover {
    background: var(--secondary-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(10, 11, 16, 0.96);
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#site-header.scrolled {
    background: rgba(15, 17, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    overflow: visible;
    transition: var(--transition);
}
.logo-img {
    width: auto;
    height: 64px;
    max-width: 300px;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}
#site-header.scrolled .logo a {
    width: auto;
    height: auto;
}
#site-header .logo-img {
    height: 68px;
    max-width: 320px;
}
#site-header.scrolled .logo-img {
    height: 58px;
    max-width: 280px;
}
#site-footer .logo-img {
    height: 88px;
    max-width: 380px;
}
.logo a:hover .logo-img {
    transform: translateY(-1px);
}

/* Nav */
#main-nav { display: none; }
#main-nav ul { display: flex; align-items: center; gap: 8px; }
#main-nav a {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 14px;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}
#main-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
#main-nav a:hover { color: white; }
#main-nav a:hover::after,
#main-nav a.active::after { transform: scaleX(1); }
#main-nav a.active { color: var(--primary); }

#main-nav .has-dropdown { position: relative; }
#main-nav .has-dropdown > a i {
    font-size: 0.75rem;
    margin-left: 4px;
    color: var(--primary);
}
#main-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: #0f1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 8px;
    display: none;
    box-shadow: var(--shadow-lg);
}
#main-nav .has-dropdown:hover .dropdown-menu { display: block; }
#main-nav .dropdown-menu li { width: 100%; }
#main-nav .dropdown-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    border-radius: 8px;
}
#main-nav .dropdown-menu a::after { display: none; }
#main-nav .dropdown-menu a:hover {
    background: rgba(201,169,110,0.1);
    color: var(--primary);
}
#main-nav .cta-nav a.btn {
    padding: 9px 20px;
    margin-left: 6px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    text-transform: none;
}
#main-nav .booking-nav a.btn {
    background: transparent;
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.18);
}
#main-nav .booking-nav a.btn:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(255,255,255,0.34);
}
#main-nav .cta-nav a.btn::after { display: none; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--secondary);
    padding: 90px 30px 40px;
    z-index: 1005;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-drawer a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: block;
    transition: var(--transition);
}
.mobile-nav-drawer a:hover { color: var(--primary); padding-left: 8px; }
.mobile-dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-dropdown-toggle:hover,
.mobile-dropdown.open .mobile-dropdown-toggle {
    color: var(--primary);
}
.mobile-dropdown-toggle i {
    color: var(--primary);
    transition: transform 0.25s ease;
}
.mobile-dropdown.open .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}
.mobile-submenu {
    display: none;
    padding: 0 0 12px 14px;
}
.mobile-dropdown.open .mobile-submenu {
    display: block;
}
.mobile-submenu a {
    font-size: 0.88rem;
    padding: 10px 0;
    border-bottom: none;
    color: rgba(255,255,255,0.68);
}
.mobile-submenu a:hover {
    color: var(--primary);
    padding-left: 6px;
}
.mobile-nav-drawer .mobile-cta {
    margin-top: 14px;
    border-bottom: none;
    text-align: center;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    align-self: stretch;
    border-radius: var(--radius-full);
}
.mobile-nav-drawer .mobile-booking {
    margin-top: 12px;
}
.mobile-nav-drawer .mobile-cta:hover,
.mobile-nav-drawer .mobile-booking:hover {
    padding-left: 16px;
}
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1004;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: calc(100dvh + 110px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    overflow: hidden;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}
.hero-slide.active img {
    animation: kenBurns 12s infinite alternate ease-in-out;
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 10, 18, 0.75) 0%,
        rgba(10, 10, 18, 0.55) 50%,
        rgba(10, 10, 18, 0.72) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 980px;
    margin: 0 auto;
    padding: calc(var(--header-h) + 40px) 20px 160px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.18);
    border: 1px solid rgba(201,169,110,0.35);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Manrope', 'Outfit', sans-serif;
    color: white;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    line-height: 1.08;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em {
    font-style: normal;
    color: var(--primary);
}
.hero p {
    color: rgba(255,255,255,0.78);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 620px;
    margin: 0 auto 36px;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(15,17,23,0.38);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
}
.trust-item i { color: var(--primary); font-size: 1rem; }
.hero-scroll {
    position: absolute;
    bottom: 108px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    margin-bottom: 52px;
}
.section-header.center { text-align: center; }
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; max-width: 520px; }
.section-header.center p { margin: 0 auto; }
.section-divider {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin-top: 16px;
}
.section-header.center .section-divider { margin: 16px auto 0; }

/* ==========================================
   SERVICES
   ========================================== */
.services { background: var(--bg-light); }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,0.25);
}
.service-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}
.service-info {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-info h3 { color: var(--text); margin-bottom: 10px; }
.service-info p { flex: 1; margin-bottom: 20px; font-size: 0.95rem; }
.services-grid-four .service-card { min-height: 100%; }

/* ==========================================
   STATS / TRUST BAR
   ========================================== */
.stats-bar {
    background: var(--secondary);
    padding: 48px 0;
    margin-top: -68px;
    position: relative;
    z-index: 3;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: center;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================
   HOME INTRO
   ========================================== */
.home-intro {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}
.home-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}
.home-intro-copy h2 {
    margin-bottom: 16px;
}
.home-intro-copy p + p {
    margin-top: 14px;
}
.home-intro-actions {
    margin-top: 28px;
}
.home-intro-stack {
    display: grid;
    gap: 18px;
}
.home-value-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.home-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(201,169,110,0.25);
}
.home-value-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    margin-bottom: 16px;
}
.home-value-card h3 {
    margin-bottom: 10px;
    color: var(--text);
}
.home-value-card p {
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ==========================================
   HOME TESTIMONIALS
   ========================================== */
.home-testimonials {
    background:
        radial-gradient(circle at top left, rgba(201,169,110,0.14), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, #f7f2e6 100%);
}
.testimonial-grid {
    display: grid;
    gap: 22px;
}
.testimonial-card,
.testimonial-highlight {
    border-radius: 26px;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}
.testimonial-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,17,23,0.08);
}
.testimonial-highlight {
    background:
        linear-gradient(135deg, rgba(201,169,110,0.2), rgba(201,169,110,0.06) 42%, rgba(255,255,255,0.04) 100%),
        #141720;
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    box-shadow: var(--shadow-lg);
}
.testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}
.testimonial-card h3,
.testimonial-highlight h3 {
    margin-bottom: 12px;
}
.testimonial-highlight h3 {
    color: #ffffff;
}
.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
}
.testimonial-highlight p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}
.testimonial-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.testimonial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

/* ==========================================
   PROMOTIONS
   ========================================== */
.promo-spotlight {
    background: linear-gradient(180deg, #141720 0%, #0f1117 100%);
}
.promo-spotlight-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 32px 26px;
    background:
        linear-gradient(135deg, rgba(201,169,110,0.18), rgba(201,169,110,0.04) 42%, rgba(255,255,255,0.03) 100%),
        #12151e;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 24px;
}
.promo-spotlight-card::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
}
.promo-spotlight-card > * {
    position: relative;
    z-index: 1;
}
.promo-spotlight-copy h2 {
    color: white;
    margin-bottom: 12px;
}
.promo-spotlight-copy p {
    color: rgba(255,255,255,0.72);
    max-width: 640px;
}
.promo-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.promo-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.promo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 9999px;
    background: rgba(201,169,110,0.14);
    border: 1px solid rgba(201,169,110,0.26);
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.promo-spotlight-visual {
    display: grid;
    gap: 14px;
}
.promo-flyer-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}
.promo-flyer-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.promo-price-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.promo-point {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.promo-point strong {
    display: block;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}
.promo-point span {
    color: rgba(255,255,255,0.66);
    font-size: 0.9rem;
}
.promo-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.promo-card {
    background: white;
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px 24px;
}
.promo-card h3 {
    margin-bottom: 16px;
}
.promo-card-subtitle {
    color: var(--text-light);
    margin-bottom: 18px;
}
.promo-list {
    display: grid;
    gap: 12px;
}
.promo-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15,17,23,0.08);
}
.promo-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.promo-item-name {
    color: var(--text);
    font-weight: 600;
    font-size: 0.98rem;
}
.promo-price-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.promo-old-price {
    color: #d85a5a;
    text-decoration: line-through;
    font-weight: 700;
}
.promo-new-price {
    color: #2f9e44;
    font-weight: 800;
}
.bundle-highlight {
    background: linear-gradient(135deg, #151925 0%, #0f1117 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
}
.bundle-highlight h3,
.bundle-highlight h4 {
    color: white;
}
.bundle-headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.bundle-headline .promo-old-price {
    font-size: 1.1rem;
}
.bundle-headline .promo-new-price {
    font-size: 2rem;
    line-height: 1;
}
.bundle-includes {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
}
.bundle-includes li {
    position: relative;
    padding-left: 18px;
    color: rgba(255,255,255,0.74);
}
.bundle-includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}
.promo-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 18px;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery { background: var(--secondary); }
.gallery .section-header h2 { color: white; }
.gallery .section-header p { color: rgba(255,255,255,0.55); }
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,17,23,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================
   HOME GALLERY SHOWCASE
   ========================================== */
.home-gallery-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(201,169,110,0.2), transparent 22%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 26%),
        linear-gradient(180deg, #141924 0%, #0f1117 100%);
}
.home-gallery-showcase::before,
.home-gallery-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.home-gallery-showcase::before {
    top: 120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(201,169,110,0.08);
    filter: blur(6px);
}
.home-gallery-showcase::after {
    left: -80px;
    bottom: 60px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.05);
    filter: blur(8px);
}
.home-gallery-showcase .container {
    position: relative;
    z-index: 1;
}
.home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-auto-flow: dense;
}
.home-gallery-grid .gallery-item {
    --card-rotate: 0deg;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #10141f;
    box-shadow: 0 18px 40px rgba(0,0,0,0.32);
    transform: rotate(var(--card-rotate));
    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease,
        border-color 0.45s ease;
    animation: galleryDrift 12s ease-in-out infinite;
}
.home-gallery-grid .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.14), transparent 28%, transparent 68%, rgba(0,0,0,0.08));
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}
.home-gallery-grid .gallery-item::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -22%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(201,169,110,0.14);
    filter: blur(24px);
    opacity: 0.18;
    transform: scale(0.9);
    transition: transform 0.55s ease, opacity 0.55s ease;
    pointer-events: none;
    z-index: 1;
}
.home-gallery-grid .gallery-item img {
    filter: saturate(0.94) contrast(1.04);
    transform: scale(1.01);
    transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}
.home-gallery-showcase .gallery-overlay {
    opacity: 1;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(15,17,23,0.18) 46%, rgba(15,17,23,0.82) 100%);
}
.home-gallery-showcase .gallery-overlay span {
    font-size: 0.95rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-shadow: 0 8px 24px rgba(0,0,0,0.35);
    max-width: 15ch;
}
.home-gallery-grid .gallery-item:hover {
    transform: translateY(-12px) scale(1.015) rotate(0deg);
    border-color: rgba(201,169,110,0.34);
    box-shadow: 0 28px 54px rgba(0,0,0,0.42);
}
.home-gallery-grid .gallery-item:hover img {
    transform: scale(1.09);
    filter: saturate(1.08) contrast(1.08);
}
.home-gallery-grid .gallery-item:hover::after {
    opacity: 0.34;
    transform: scale(1.12);
}
.home-gallery-grid .gallery-item:nth-child(1) { --card-rotate: -1.8deg; animation-delay: -1.2s; }
.home-gallery-grid .gallery-item:nth-child(2) { --card-rotate: 1.3deg; animation-delay: -3.4s; }
.home-gallery-grid .gallery-item:nth-child(3) { --card-rotate: -0.8deg; animation-delay: -2.1s; }
.home-gallery-grid .gallery-item:nth-child(4) { --card-rotate: 1.8deg; animation-delay: -4.8s; }
.home-gallery-grid .gallery-item:nth-child(5) { --card-rotate: -1.1deg; animation-delay: -5.6s; }
.home-gallery-grid .gallery-item:nth-child(6) { --card-rotate: 1.5deg; animation-delay: -2.8s; }
.home-gallery-grid .gallery-item:nth-child(7) { --card-rotate: -1.4deg; animation-delay: -6.4s; }
.home-gallery-grid .gallery-item:nth-child(8) { --card-rotate: 1.1deg; animation-delay: -7.1s; }
.home-gallery-grid .gallery-item:nth-child(9) { --card-rotate: -0.7deg; animation-delay: -3.7s; }
.home-gallery-grid .gallery-item:nth-child(10) { --card-rotate: 1.7deg; animation-delay: -4.2s; }
.home-gallery-grid .gallery-item:nth-child(11) { --card-rotate: -1.2deg; animation-delay: -5.1s; }
.home-gallery-grid .gallery-item:nth-child(12) { --card-rotate: 1deg; animation-delay: -8.2s; }
.home-gallery-grid .gallery-item:nth-child(13) { --card-rotate: -1.6deg; animation-delay: -3.3s; }
.home-gallery-grid .gallery-item:nth-child(14) { --card-rotate: 1.2deg; animation-delay: -6.8s; }
.home-gallery-grid .gallery-item:nth-child(15) { --card-rotate: -1deg; animation-delay: -4.5s; }
.home-gallery-grid .gallery-item:nth-child(16) { --card-rotate: 1.4deg; animation-delay: -7.6s; }
.home-gallery-grid .gallery-item:nth-child(17) { --card-rotate: -0.9deg; animation-delay: -2.9s; }
.home-gallery-grid .gallery-item:nth-child(18) { --card-rotate: 1.6deg; animation-delay: -5.9s; }

@keyframes galleryDrift {
    0%, 100% { transform: translateY(0) rotate(var(--card-rotate)); }
    50% { transform: translateY(-10px) rotate(calc(var(--card-rotate) * 0.55)); }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--secondary); margin-bottom: 14px; }
.cta-section p { color: rgba(15,17,23,0.7); font-size: 1.1rem; margin-bottom: 32px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================
   PAGE HEADER (inner pages)
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1d2e 100%);
    color: white;
    padding: calc(var(--header-h) + 60px) 0 70px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(201,169,110,0.06));
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: white; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }
.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-header-badge i { font-size: 0.9rem; }
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}
.page-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-breadcrumb a:hover { color: var(--primary); }
.page-breadcrumb i { font-size: 0.65rem; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-content { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 { margin-bottom: 18px; }
.about-text > p { margin-bottom: 12px; }
.values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.value-item:hover {
    border-color: rgba(201,169,110,0.3);
    box-shadow: var(--shadow-sm);
}
.value-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.value-item h4 { color: var(--text); margin-bottom: 4px; font-size: 1rem; }
.value-item p { font-size: 0.9rem; }
.about-image-wrap { position: relative; }
.about-image-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
}
.experience-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.experience-badge p { color: var(--secondary); font-size: 0.82rem; font-weight: 700; margin: 4px 0 0; }
.service-areas { background: var(--bg-light); padding: 80px 0; }
.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    justify-content: center;
}
.tag {
    background: white;
    color: var(--text);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 28px; }
.contact-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 14px;
    transition: var(--transition);
}
.contact-method-card:hover {
    border-color: rgba(201,169,110,0.3);
    box-shadow: var(--shadow-sm);
}
.contact-method-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-method-card h4 { color: var(--text); font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method-card p, .contact-method-card a { color: var(--text); font-weight: 600; font-size: 0.95rem; }
.contact-method-card a:hover { color: var(--primary); }
.contact-social { margin-top: 28px; }
.contact-social h4 { color: var(--text); font-size: 0.85rem; font-weight: 600; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
    width: 44px; height: 44px;
    background: var(--secondary-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1rem;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.social-icon.gbp {
    background: #ffffff;
    color: #4285f4;
    border-color: rgba(255,255,255,0.18);
}
.social-icon.gbp:hover {
    background: #4285f4;
    color: #ffffff;
    border-color: #4285f4;
}
.social-icon.whatsapp { background: #25d366; color: white; border-color: #25d366; }
.social-icon.whatsapp:hover { background: #1da851; border-color: #1da851; }

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--text); margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 28px; font-size: 0.92rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
    font-family: 'Outfit', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: white;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* ==========================================
   LEGAL PAGES (Privacy / Cookie)
   ========================================== */
.legal-content { padding: 80px 0; }
.legal-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    line-height: 1.85;
}
.legal-card h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 28px 0 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}
.legal-card h3:first-child { margin-top: 0; }
.legal-card ul { padding-left: 20px; list-style: disc; }
.legal-card ul li { color: var(--text-light); margin-bottom: 6px; }

/* ==========================================
   LANDING PAGES
   ========================================== */
.landing-page {
    background:
        radial-gradient(circle at top left, rgba(201,169,110,0.14), transparent 28%),
        linear-gradient(180deg, #f7f4ee 0%, #ffffff 22%, #f9fafc 100%);
}
.landing-page main {
    padding: 28px 0 52px;
}
.landing-wrap {
    display: grid;
    gap: 24px;
}
.landing-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(15,17,23,0.95);
    color: white;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}
.landing-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.landing-brand img {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: cover;
    background: white;
}
.landing-brand-text span {
    display: block;
    color: rgba(255,255,255,0.62);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.landing-brand-text strong {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}
.landing-bar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.landing-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
}
.landing-bar-link:hover {
    color: var(--primary);
}
.landing-grid {
    display: grid;
    gap: 24px;
    align-items: start;
}
.landing-main,
.landing-form-panel {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(15,17,23,0.08);
    box-shadow: var(--shadow);
}
.landing-main {
    background: rgba(255,255,255,0.92);
}
.landing-hero {
    position: relative;
    padding: 34px 24px 28px;
    background:
        linear-gradient(135deg, rgba(15,17,23,0.96) 0%, rgba(28,30,38,0.92) 58%, rgba(201,169,110,0.20) 100%),
        linear-gradient(180deg, transparent, rgba(0,0,0,0.14));
    color: white;
}
.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201,169,110,0.24), transparent 34%);
    pointer-events: none;
}
.landing-hero > * {
    position: relative;
    z-index: 1;
}
.landing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.landing-hero h1 {
    margin-bottom: 12px;
    color: white;
    font-size: clamp(2.2rem, 5vw, 4rem);
}
.landing-hero p {
    max-width: 60ch;
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
}
.landing-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
    margin: 24px 0 20px;
}
.landing-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.landing-price-tag strong {
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
}
.landing-price-tag span {
    color: rgba(255,255,255,0.68);
    font-weight: 600;
}
.landing-price-old {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: line-through;
}
.landing-offer-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    background: rgba(37,211,102,0.16);
    color: #bef3cf;
    font-weight: 700;
}
.landing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.landing-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
}
.landing-content {
    padding: 28px 24px 30px;
}
.landing-feature-grid,
.landing-proof-grid,
.landing-gallery-grid {
    display: grid;
    gap: 16px;
}
.landing-feature-card,
.landing-proof-card,
.landing-gallery-card,
.landing-inclusion-card,
.landing-video-block {
    background: white;
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}
.landing-feature-card,
.landing-proof-card,
.landing-inclusion-card {
    padding: 22px 20px;
}
.landing-feature-card h2,
.landing-proof-card h2,
.landing-inclusion-card h2,
.landing-gallery-card h2,
.landing-video-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 3vw, 2rem);
}
.landing-copy {
    color: var(--text-light);
    line-height: 1.8;
}
.landing-checks {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.landing-checks li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text);
    font-weight: 600;
}
.landing-checks i {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.16);
    color: var(--primary-dark);
    font-size: 0.8rem;
}
.landing-meta-grid {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}
.landing-meta-card {
    padding: 18px;
    background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: 18px;
}
.landing-meta-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.landing-meta-card strong {
    color: var(--text);
    font-size: 1rem;
}
.landing-proof-grid {
    margin-top: 18px;
}
.landing-proof-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}
.landing-proof-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.02rem;
}
.landing-proof-card p {
    color: var(--text-light);
    line-height: 1.75;
}
.landing-inclusions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.landing-inclusion-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15,17,23,0.08);
}
.landing-inclusion-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.landing-inclusion-item span {
    color: var(--text-light);
}
.landing-inclusion-item strong {
    color: var(--text);
    text-align: right;
}
.landing-gallery-card {
    padding: 22px;
}
.landing-gallery-grid {
    margin-top: 18px;
}
.landing-gallery-grid img,
.landing-video-poster {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.landing-gallery-grid img {
    aspect-ratio: 4 / 3;
}
.landing-form-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f6f5f1 100%);
}
.landing-form-head {
    padding: 28px 24px 18px;
    border-bottom: 1px solid rgba(15,17,23,0.08);
}
.landing-form-head h2 {
    margin-bottom: 8px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.landing-form-head p {
    color: var(--text-light);
}
.landing-form-card {
    padding: 24px;
}
.landing-form-card .form-row,
.landing-form-card .form-group {
    margin-bottom: 14px;
}
.landing-form-card .btn {
    width: 100%;
}
.landing-form-mini {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.92rem;
    text-align: center;
}
.landing-form-mini a {
    font-weight: 700;
}
.landing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.landing-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: white;
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: 14px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}
.landing-testimonial {
    margin-top: 18px;
    padding: 18px;
    background: rgba(15,17,23,0.96);
    border-radius: 18px;
}
.landing-testimonial p {
    color: rgba(255,255,255,0.76);
    line-height: 1.8;
}
.landing-testimonial strong {
    display: block;
    margin-top: 10px;
    color: white;
}
.landing-video-block {
    display: grid;
    gap: 18px;
    padding: 22px;
}
.landing-video-copy .landing-kicker {
    color: var(--primary-dark);
}
.landing-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #0f1117;
}
.landing-video-frame video,
.landing-video-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    opacity: 0.94;
}
.landing-video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    background: rgba(15,17,23,0.74);
    color: white;
    font-weight: 700;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.landing-video-caption {
    margin-top: 14px;
    color: var(--text-light);
}
.landing-anchor-strip {
    display: grid;
    gap: 12px;
}
.landing-anchor-strip a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: white;
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: 16px;
    color: var(--text);
    font-weight: 700;
}
.landing-anchor-strip a:hover {
    border-color: rgba(201,169,110,0.28);
    box-shadow: var(--shadow-sm);
}
.booqable-embed-shell {
    margin-top: 18px;
    min-height: 520px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(15,17,23,0.08);
    background:
        linear-gradient(180deg, rgba(251,250,247,0.8) 0%, rgba(255,255,255,0.96) 100%);
    overflow: hidden;
}
.booqable-embed-shell .booqable-product-search {
    margin-bottom: 18px;
}
.booqable-embed-shell .booqable-datepicker {
    margin-bottom: 18px;
}
.booking-page {
    background: linear-gradient(180deg, #f7f4ee 0%, #ffffff 100%);
}
.booking-page main {
    padding: 0;
}
.booking-shell {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 20px;
}
.booking-only-shell {
    min-height: 100vh;
    margin-top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

@media (min-width: 768px) {
    .booking-shell {
        padding: 28px;
    }
    .booking-only-shell {
        min-height: calc(100vh - 56px);
        border-radius: 24px;
        border-left: 1px solid rgba(15,17,23,0.08);
        border-right: 1px solid rgba(15,17,23,0.08);
    }
}

/* ==========================================
   LANDING DIRECTORY
   ========================================== */
.landing-directory-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}
.landing-directory-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}
.landing-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.landing-directory-card {
    background: white;
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.landing-directory-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,169,110,0.28);
    box-shadow: var(--shadow);
}
.landing-directory-media {
    position: relative;
    overflow: hidden;
}
.landing-directory-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.landing-directory-card:hover .landing-directory-media img {
    transform: scale(1.05);
}
.landing-directory-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: rgba(15,17,23,0.78);
    color: white;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.landing-directory-body {
    padding: 22px 20px 24px;
}
.landing-directory-body h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}
.landing-directory-body p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.75;
}
.landing-directory-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.landing-directory-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: var(--bg-light);
    border: 1px solid rgba(15,17,23,0.07);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 600;
}

/* ==========================================
   SERVICE PAGES
   ========================================== */
.service-hero.page-header {
    padding: calc(var(--header-h) + 54px) 0 82px;
}
.page-header-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;
}
.page-header-copy p {
    max-width: 660px;
    font-size: 1.05rem;
}
.page-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
.page-header-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
}
.trust-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    color: rgba(255,255,255,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.trust-chip i {
    color: var(--primary);
    font-size: 1rem;
}
.page-header-visual {
    position: relative;
}
.service-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    box-shadow: var(--shadow-lg);
}
.service-hero-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    opacity: 0.92;
}
.service-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,11,16,0.76), rgba(10,11,16,0.08) 55%);
}
.service-hero-note {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    padding: 20px;
    border-radius: 20px;
    background: rgba(15,17,23,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.service-hero-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.service-hero-note h3 {
    color: white;
    margin-bottom: 8px;
}
.service-hero-note p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
}
.service-hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.service-metric {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 18px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.service-metric strong {
    display: block;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.1;
    margin-bottom: 6px;
}
.service-metric span {
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
}
.service-overview {
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}
.service-story,
.service-side-card,
.feature-card,
.process-card,
.service-cta-card {
    border-radius: var(--radius-lg);
}
.service-story {
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 34px 26px;
}
.service-story h2 {
    margin-bottom: 16px;
}
.service-story p + p {
    margin-top: 14px;
}
.service-story a {
    font-weight: 700;
}
.service-side-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #121521 0%, #1b2030 100%);
    color: white;
    padding: 30px 24px;
    box-shadow: var(--shadow-lg);
}
.service-side-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(201,169,110,0.18);
}
.service-side-card > * {
    position: relative;
    z-index: 1;
}
.service-side-eyebrow {
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.service-side-card h3 {
    color: white;
    margin-bottom: 10px;
}
.service-side-card > p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 20px;
}
.service-facts {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}
.service-facts li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.service-facts li:first-child {
    border-top: 0;
    padding-top: 0;
}
.service-facts strong {
    color: white;
    font-size: 0.94rem;
    font-family: 'Outfit', sans-serif;
}
.service-facts span {
    color: rgba(255,255,255,0.68);
    text-align: right;
    font-size: 0.9rem;
}
.service-highlights {
    background: white;
}
.service-feature-grid,
.service-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.feature-card {
    background: linear-gradient(180deg, white 0%, #fbfaf7 100%);
    border: 1px solid var(--border);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,110,0.28);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 18px;
    box-shadow: var(--shadow-gold);
}
.feature-card h3 {
    margin-bottom: 10px;
}
.feature-card p {
    margin-bottom: 16px;
}
.feature-list {
    display: grid;
    gap: 8px;
}
.feature-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-light);
    font-size: 0.94rem;
}
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}
.service-process-section {
    background: var(--bg-light);
}
.process-card {
    background: white;
    border: 1px solid var(--border);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.process-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.process-card h3 {
    margin-bottom: 10px;
}
.service-gallery .gallery-item {
    border: 1px solid rgba(255,255,255,0.08);
}
.service-gallery .gallery-overlay {
    opacity: 1;
}
.service-gallery .gallery-overlay span {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}
.service-cta-band {
    padding-top: 28px;
    padding-bottom: 28px;
}
.service-cta-band .container {
    padding-left: 28px;
    padding-right: 28px;
}
.service-cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, #1c2132 100%);
    padding: 42px 32px;
    color: white;
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
}
.service-cta-card::before {
    content: "";
    position: absolute;
    inset: auto -10% -60% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
}
.service-cta-card > * {
    position: relative;
    z-index: 1;
}
.service-cta-card h2 {
    color: white;
    margin-bottom: 14px;
}
.service-cta-card p {
    color: rgba(255,255,255,0.72);
    max-width: 700px;
    line-height: 1.75;
}
.service-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(201,169,110,0.12), transparent 28%),
        linear-gradient(180deg, #fcfbf8 0%, #ffffff 100%);
}
.faq-shell {
    display: grid;
    gap: 28px;
}
.faq-overview {
    display: grid;
    gap: 20px;
}
.faq-overview-card,
.faq-contact-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.faq-overview-card {
    padding: 34px 26px;
}
.faq-overview-card::before,
.faq-contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(201,169,110,0.12), transparent 42%);
}
.faq-kicker,
.faq-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.faq-overview-card h2 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.faq-overview-card > p {
    max-width: 56ch;
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.8;
}
.faq-highlights {
    display: grid;
    gap: 14px;
}
.faq-highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(250,250,248,0.92);
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: 18px;
}
.faq-highlight-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    box-shadow: var(--shadow-gold);
}
.faq-highlight strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 0.98rem;
}
.faq-highlight p {
    font-size: 0.92rem;
    line-height: 1.7;
}
.faq-contact-card {
    padding: 28px 26px;
    background: linear-gradient(180deg, #171a23 0%, #0f1117 100%);
    border-color: rgba(255,255,255,0.08);
}
.faq-contact-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
}
.faq-contact-card p {
    margin-bottom: 24px;
    color: rgba(255,255,255,0.68);
}
.faq-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.faq-contact-actions .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: white;
}
.faq-contact-actions .btn-outline:hover {
    border-color: var(--primary);
    color: var(--secondary);
}
.faq-accordion {
    display: grid;
    gap: 14px;
}
.faq-item {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(15,17,23,0.08);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(15,17,23,0.06);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(201,169,110,0.28);
}
.faq-item.is-open {
    border-color: rgba(201,169,110,0.35);
    box-shadow: 0 18px 38px rgba(15,17,23,0.08);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    font: inherit;
}
.faq-question span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.5;
}
.faq-question i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.14);
    color: var(--primary-dark);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-question:hover i,
.faq-question[aria-expanded="true"] i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
}
.faq-question[aria-expanded="true"] i {
    transform: rotate(45deg);
}
.faq-question:focus-visible {
    outline: 3px solid rgba(201,169,110,0.35);
    outline-offset: -3px;
}
.faq-answer {
    padding: 0 24px 24px;
}
.faq-answer p {
    max-width: 62ch;
    color: var(--text-light);
    line-height: 1.85;
}
.faq-answer a {
    font-weight: 600;
}

/* ==========================================
   FOOTER
   ========================================== */
#site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-info .logo-text { font-size: 1rem; color: white; }
.footer-info .logo-text span { color: var(--primary); }
.footer-info > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 16px 0 24px;
    line-height: 1.7;
}
.footer-grid h4 {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-nav ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a, .footer-legal a {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    transition: var(--transition);
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--primary); }
.footer-contact i { color: var(--primary); width: 18px; margin-right: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 22px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--primary); }

/* ==========================================
   POPUP / OVERLAY
   ========================================== */
/* ==========================================
   PREMIUM POPUP / OVERLAY
   ========================================== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.85); /* Deeper, more premium backdrop */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.popup-container {
    background: white;
    border-radius: 32px;
    max-width: 850px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: popupScale 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popupScale {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.popup-flex {
    display: flex;
    flex-direction: column;
}
.popup-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}
.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.popup-content {
    padding: 40px;
    flex: 1;
}
.popup-eyebrow {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}
.popup-content h2 {
    font-family: var(--font-fancy);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}
.popup-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}
.popup-content strong { color: var(--text); }

.popup-form .form-row {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}
.popup-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    background: #f9f9f9;
    font-family: inherit;
    transition: var(--transition);
}
.popup-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}
.popup-form .btn {
    padding: 16px;
    font-size: 1rem;
    margin-top: 8px;
}
.form-note {
    font-size: 0.75rem !important;
    text-align: center;
    margin-top: 16px;
    opacity: 0.7;
    margin-bottom: 0 !important;
}

.close-popup {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.close-popup:hover { background: white; transform: rotate(90deg); }

@media (min-width: 768px) {
    .popup-flex { flex-direction: row; min-height: 480px; }
    .popup-image {
        width: 40%;
        height: auto;
        border-radius: 28px 0 0 28px;
    }
    .popup-content { width: 60%; padding: 50px; }
    .popup-form .form-row { grid-template-columns: 1fr 1fr; }
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: auto;
    z-index: 999;
    transition: opacity 0.24s ease, transform 0.24s ease;
}
.whatsapp-float.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}
.whatsapp-content {
    background: #25d366;
    color: white;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-content {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.55);
}
.whatsapp-icon { width: 24px; height: 24px; }
.whatsapp-text { display: none; }

@media (max-width: 639px) {
    .mobile-nav-drawer .mobile-booking {
        background: var(--primary);
        color: var(--secondary);
        border-color: var(--primary);
        box-shadow: var(--shadow-gold);
    }
    .mobile-nav-drawer .mobile-booking:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #ffffff;
    }
    .whatsapp-float {
        left: 16px;
        right: auto;
        bottom: 18px;
    }
    .whatsapp-content {
        width: 56px;
        height: 56px;
    }
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 18, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    max-height: 92dvh;
    padding: 16px;
}
.lightbox-inner img {
    display: block;
    max-width: 100%;
    max-height: 80dvh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.is-open .lightbox-inner img {
    transform: scale(1);
}
.lightbox-caption {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
    text-align: center;
}
.lightbox-counter {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(90deg);
}
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}
.lightbox-prev {
    left: 16px;
}
.lightbox-next {
    right: 16px;
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
/* Make gallery items show pointer cursor */
.home-gallery-grid .gallery-item { cursor: zoom-in; }

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.grid-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.grid-stagger.active > * { opacity: 1; transform: none; }
.grid-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.grid-stagger.active > *:nth-child(2) { transition-delay: 0.12s; }
.grid-stagger.active > *:nth-child(3) { transition-delay: 0.19s; }
.grid-stagger.active > *:nth-child(4) { transition-delay: 0.26s; }
.grid-stagger.active > *:nth-child(5) { transition-delay: 0.33s; }
.grid-stagger.active > *:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================
   GLASS CARD (legacy support)
   ========================================== */
.glass-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

/* ==========================================
   FLOATING ANIMATION
   ========================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating { animation: float 4s ease-in-out infinite; }

/* ==========================================
   RESPONSIVE — TABLET 640px+
   ========================================== */
@media (min-width: 640px) {
    .hero { min-height: calc(100dvh + 140px); }
    .hero-content { padding-bottom: 190px; }
    .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-bar { margin-top: -92px; }
    .home-intro-stack { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .page-header-trust { grid-template-columns: repeat(3, 1fr); }
    .service-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-overview-card,
    .faq-contact-card,
    .faq-question,
    .faq-answer { padding-left: 30px; padding-right: 30px; }
    .landing-hero,
    .landing-content,
    .landing-form-head,
    .landing-form-card { padding-left: 30px; padding-right: 30px; }
    .landing-feature-grid,
    .landing-proof-grid,
    .landing-gallery-grid,
    .landing-meta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-cta-band .container {
        padding-left: 36px;
        padding-right: 36px;
    }
}

/* ==========================================
   RESPONSIVE — DESKTOP 1024px+
   ========================================== */
@media (min-width: 1024px) {
    :root { --header-h: 80px; }
    section { padding: 100px 0; }
    #main-nav { display: block; }
    .mobile-menu-toggle { display: none; }
    .hero { min-height: calc(100dvh + 180px); }
    .hero-content {
        max-width: 1120px;
        padding-top: calc(var(--header-h) + 54px);
        padding-bottom: 224px;
    }
    .hero-trust { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
    .hero-scroll { bottom: 152px; }
    .promo-spotlight-card {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 34px;
        align-items: center;
        padding: 38px 36px;
    }
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
    .promo-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid.services-grid-four { grid-template-columns: repeat(4, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    .stats-bar { margin-top: -128px; }
    .home-intro-grid { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 42px; }
    .home-intro-stack { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
    .page-header-grid { grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); gap: 42px; }
    .service-grid { grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 30px; }
    .service-story { padding: 42px 38px; }
    .service-side-card { padding: 34px 30px; position: sticky; top: calc(var(--header-h) + 28px); }
    .service-feature-grid { grid-template-columns: repeat(3, 1fr); }
    .service-process-grid { grid-template-columns: repeat(3, 1fr); }
    .service-cta-card {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 48px;
        padding: 54px 46px;
        max-width: 1080px;
    }
    .service-cta-band {
        padding-top: 40px;
        padding-bottom: 36px;
    }
    .service-cta-band .container {
        padding-left: 64px;
        padding-right: 64px;
    }
    .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 60px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
    .contact-form-wrap { padding: 44px 40px; }
    .container { padding: 0 40px; }
    .faq-shell {
        grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
        align-items: start;
    }
    .faq-overview {
        position: sticky;
        top: calc(var(--header-h) + 28px);
    }
    .faq-overview-card {
        padding: 38px 34px;
    }
    .faq-contact-card {
        padding: 30px 34px;
    }
    .landing-page main {
        padding: 36px 0 72px;
    }
    .landing-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    }
    .landing-form-panel {
        position: sticky;
        top: 28px;
    }
    .landing-video-block {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
    }
    .landing-anchor-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .landing-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ==========================================
   RESPONSIVE — WIDE 1280px+
   ========================================== */
@media (min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Feature first image larger */
    }
    .gallery-grid .gallery-item:first-child {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
}
