/* ==========================================================================
   OFFICEART.CO - MAIN STYLESHEET
   ========================================================================== */

/* --- LUXURY THEME VARIABLES --- */
:root { 
    --bg-dark: #050505; 
    --bg-card: #0a0a0a; 
    --text-main: #f0f0f0; 
    --text-muted: #888; 
    --brand-gold: #D4AF37; 
    --brand-gold-soft: rgba(212, 175, 55, 0.3); 
    --font-head: 'Playfair Display', serif; 
    --font-body: 'Lato', sans-serif; 
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

:target { scroll-margin-top: 140px; }

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    font-family: var(--font-body); 
    line-height: 1.6; 
    overflow-x: hidden; 
    padding-top: 125px; 
}

a { text-decoration: none; color: inherit; transition: 0.4s ease; }

/* --- SEO MARQUEE --- */
.marquee { 
    background: #000; border-bottom: 1px solid var(--brand-gold-soft); padding: 12px 0; overflow: hidden; 
    position: fixed; top: 0; left: 0; width: 100%; z-index: 2000; display: flex; box-shadow: 0 5px 20px rgba(0,0,0,0.5); 
}
.marquee-inner { display: flex; width: max-content; animation: marquee 60s linear infinite; will-change: transform; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-track { display: flex; align-items: center; flex-shrink: 0; }
.marquee a { 
    margin: 0; font-weight: 600; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; 
    color: var(--brand-gold); text-decoration: none; opacity: 0.9; transition: 0.3s; position: relative;
}
.marquee a:hover { opacity: 1; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
.marquee a::after { content: "•"; margin: 0 50px; opacity: 0.4; color: #fff; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    .marquee-inner { animation: none !important; }
}

/* --- NAVIGATION --- */
nav { 
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center; 
    padding: 15px 5%; 
    position: fixed; top: 48px; left: 0; width: 100%; z-index: 1000; 
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--brand-gold-soft); 
}
.logo-box { display: flex; align-items: center; gap: 12px; height: 50px; text-decoration: none; position: relative; z-index: 3001; justify-self: start; }
.nav-links { display: flex; gap: 20px; align-items: center; justify-self: center; }
.nav-links a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #ccc; transition: 0.3s; }
.nav-links a:hover { color: var(--brand-gold); }
.nav-right-actions { display: flex; align-items: center; gap: 15px; justify-self: end; }

.cta-btn { 
    background: transparent; color: var(--brand-gold); padding: 10px 22px; 
    font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; 
    border: 1px solid var(--brand-gold); cursor: pointer; transition: 0.4s; font-size: 0.7rem; white-space: nowrap; 
    text-align: center;
}
.cta-btn:hover { background: var(--brand-gold); color: #000; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
.cta-btn.solid { background: var(--brand-gold); color: #000; font-weight: 700; }
.cta-btn.solid:hover { background: #fff; border-color: #fff; }

.hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 5px; z-index: 2000; } 
.close-menu-btn { display: none; }
.desktop-cta { white-space: nowrap; }
.mobile-cta-link{ display: none; }
.mobile-sticky-cta { display: none !important; } 

/* --- EXTENSION-PROOF PHONE NUMBER --- */
/* This paints the number on the screen so browser extensions can't read or hijack it */
.secure-phone::after {
    content: "(720) 790-7373";
}

/* --- VIP BUTTONS --- */
a.vip-dropdown-btn {
    display: flex !important; align-items: center; justify-content: center;
    background-color: transparent !important; color: #d4af37 !important; 
    border: 1px solid #d4af37 !important; padding: 10px 15px !important;
    margin: 8px 15px 12px 15px !important; border-radius: 3px !important;
    font-weight: 700 !important; text-transform: uppercase !important;
    letter-spacing: 1px !important; font-size: 0.8rem !important;
    transition: all 0.3s ease-in-out !important; text-decoration: none !important;
}
.dropdown-menu a.vip-dropdown-btn:hover {
    background-color: #d4af37 !important; color: #000000 !important; 
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4) !important;
}

.nav-vip-btn {
    display: inline-block; background-color: transparent; color: #d4af37; 
    border: 1px solid #d4af37; padding: 10px 20px; margin-left: 20px; 
    text-transform: uppercase; font-weight: 600; letter-spacing: 1px;
    font-size: 0.8rem; text-decoration: none; border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.nav-vip-btn:hover {
    background-color: #d4af37; color: #000000;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

/* --- GROUPED NAV (DROPDOWNS) --- */
.dropdown { position: relative; }
.dropbtn{
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
    color: #ccc; background: none; border: none; cursor: pointer;
    transition: 0.3s; font-family: var(--font-body); padding: 8px 2px; white-space: nowrap;
}
.dropbtn:hover { color: var(--brand-gold); }
.chev { opacity: 0.7; margin-left: 6px; }

.dropdown-menu{
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px;
    background: #050505; border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 10px; display: none; box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    z-index: 2001; max-height: 80vh; overflow-y: auto;
}
.dropdown-menu a{ display: block; padding: 10px 10px; color: #ddd; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: none; }
.dropdown-menu a:hover{ background: rgba(212, 175, 55, 0.06); color: var(--brand-gold); }
.dropdown.open .dropdown-menu { display: block; }

.dropdown-card {
    background: #111; border: 1px solid #333; padding: 12px;
    margin-top: 5px; margin-bottom: 5px; border-radius: 4px; transition: 0.3s;
}
.dropdown-card:hover { border-color: var(--brand-gold); background: #1a1a1a; }
.dropdown-card h4 { color: #fff; font-size: 0.85rem; margin-bottom: 4px; font-family: var(--font-head); }
.dropdown-card p { color: #888; font-size: 0.75rem; line-height: 1.4; margin: 0; text-transform: none; letter-spacing: 0; }

/* --- HERO SECTION --- */
.hero { 
    min-height: 85svh; height: auto; padding-top: 60px; padding-bottom: 80px;
    display: flex; align-items: center; justify-content: center; text-align: center; 
    position: relative; margin-top: 0; 
}
.hero-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(rgba(5,5,5,0.4), var(--bg-dark)), url('images/colorado-view.jpg'); 
    background-size: cover; background-position: center; z-index: -1; 
}
.hero-content { max-width: 900px; padding: 0 20px; }
.hero-label { color: var(--brand-gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 20px; display: block; }

.hero-content h1 { 
    font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 30px; color: #fff; 
    text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}
.hero-content p { 
    font-size: 1.2rem; color: #ddd; max-width: 700px; margin: 0 auto 40px; font-weight: 300; 
    text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}

.hero-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 0 auto 34px; }
.hero-badge {
    border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.3);
    padding: 8px 16px; border-radius: 999px; color: #fff; font-size: 0.85rem;
    font-weight: 400; letter-spacing: 0.5px; backdrop-filter: blur(4px);
    text-decoration: none; transition: 0.3s;
}
.hero-badge:hover { background: rgba(212, 175, 55, 0.2); border-color: var(--brand-gold); color: #fff; box-shadow: 0 0 10px rgba(212, 175, 55, 0.15); }
.hero-badge:focus-visible{ outline: 2px solid rgba(212,175,55,0.8); outline-offset: 3px; }

.hero-video-container {
    width: 100%; max-width: 1000px; margin: 60px auto 0; 
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
    background: #000; border-radius: 8px; overflow: hidden; 
}

/* --- CONTACT PAGE HERO --- */
.page-hero {
    min-height: 42svh; padding: 70px 8% 70px; position: relative;
    display: flex; align-items: center; border-bottom: 1px solid #222; background: #070707;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,.95), rgba(5,5,5,.70)), url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?q=80&w=2400&auto=format&fit=crop&fm=webp');
    background-size: cover; background-position: center; z-index: 0;
}
.page-hero-inner {
    position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.hero-kicker { color: var(--brand-gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 14px; display: block; }
.page-hero h1 { font-family: var(--font-head); font-size: 3.2rem; line-height: 1.08; color: #fff; margin-bottom: 18px; text-wrap: balance; }
.page-hero p { color: #ddd; font-size: 1.1rem; max-width: 720px; }
.hero-actions { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-panel { border: 1px solid #222; background: rgba(0,0,0,0.35); padding: 22px; border-radius: 6px; }
.hero-panel h3 { font-family: var(--font-head); font-size: 1.35rem; color: #fff; margin-bottom: 10px; }
.hero-panel .muted { color: #9a9a9a; font-size: 0.95rem; }
.hero-panel .mini { margin-top: 12px; display: grid; gap: 10px; }
.pill { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid #222; background: rgba(255,255,255,0.02); padding: 12px 12px; border-radius: 6px; }
.pill strong { color: #fff; font-weight: 700; font-size: 0.95rem; }
.pill span { color: #888; font-size: 0.85rem; }
.pill .cta-btn { min-width: 100px; text-align: center; }

/* ==========================================================================
   CONTACT PAGE & FORMS (FIXED GRID, ALIGNMENT & ORDER)
   ========================================================================== */
.section { padding: 80px 8%; }
.wrap { max-width: 1100px; margin: 0 auto; }

.contact-grid { display: flex; flex-direction: column; gap: 40px; }
#book-intro { order: 1; }
#quote { order: 2; }
#book-calendly { order: 3; }

@media (min-width: 981px) {
    .contact-grid { 
        display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; 
        column-gap: 28px; row-gap: 0; align-items: stretch; 
    }
    #quote { grid-column: 1 / 2; grid-row: 1 / 3; order: unset; }
    #book-intro { grid-column: 2 / 3; grid-row: 1 / 2; order: unset; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: none; padding-bottom: 15px; }
    #book-calendly { grid-column: 2 / 3; grid-row: 2 / 3; order: unset; border-top-left-radius: 0; border-top-right-radius: 0; border-top: none; padding-top: 5px; }
}

.card { background: var(--bg-card); border: 1px solid #222; border-radius: 6px; padding: 26px; display: flex; flex-direction: column; }
.card h2 { font-family: var(--font-head); font-size: 1.9rem; color: #fff; margin-bottom: 10px; }
.card p { color: #9a9a9a; margin-bottom: 16px; }

form { display: grid; gap: 14px; margin-top: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { color: #cfcfcf; font-size: 0.85rem; letter-spacing: 0.3px; display: block; margin-bottom: 6px; }
input, select, textarea {
    width: 100%; background: #080808; border: 1px solid #222; color: #f0f0f0;
    padding: 12px 12px; border-radius: 6px; outline: none; font-family: var(--font-body); font-size: 0.95rem;
}
input:focus, select:focus, textarea:focus { border-color: rgba(212,175,55,0.55); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
textarea { min-height: 120px; resize: vertical; }

input[type="file"] { padding: 10px; background: #111; cursor: pointer; }
input[type="file"]::file-selector-button { margin-right: 15px; border: none; background: var(--brand-gold); padding: 5px 10px; border-radius: 4px; color: #000; font-weight: 700; cursor: pointer; font-size: 0.8rem; transition: 0.3s; }
input[type="file"]::file-selector-button:hover { background: #fff; }
.helper { color: #777; font-size: 0.85rem; line-height: 1.45; margin-top: 12px; font-style: italic; }

.checklist-block { background: #111; border: 1px solid #222; border-radius: 8px; padding: 22px; margin-top: 28px; }
.checklist-title { color: #fff; font-weight: 700; margin-bottom: 16px; display: block; font-size: 0.95rem; }
.check-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; background: rgba(255,255,255,0.03); padding: 12px; border-radius: 6px; border: 1px solid #222; }
.check-item svg { width: 18px; height: 18px; fill: var(--brand-gold); flex-shrink: 0; margin-top: 2px; }
.check-text strong { color: #eee; display: block; font-size: 0.9rem; }
.check-text span { color: #777; font-size: 0.85rem; }

.service-area-block { margin-top: auto; padding: 24px; background: #0f0f0f; border: 1px solid #222; border-radius: 6px; }
.sa-title { color: #fff; font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 6px; }
.sa-sub { color: #888; font-size: 0.95rem; margin-bottom: 16px; display: block; }
.sa-box { background: #181818; border: 1px solid #333; padding: 14px; border-radius: 6px; margin-bottom: 12px; }
.sa-label { color: #fff; font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 4px; }
.sa-list { color: #777; font-size: 0.85rem; line-height: 1.5; display: block; }

.on-site-upsell { margin-top: auto; padding: 20px; background: #0f0f0f; border: 1px solid #222; border-radius: 6px; }

.contact-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 6px; overflow: hidden; box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15); border: 1px solid rgba(212, 175, 55, 0.3); background-color: #000; margin-top: 10px; }
.contact-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.calendly-inline-widget { 
    min-width: 320px; height: 1000px; overflow-y: hidden !important; 
    scrollbar-width: none; -ms-overflow-style: none;  
}
.calendly-inline-widget::-webkit-scrollbar { display: none; }


/* --- TRUST SECTION --- */
.trust { padding: 60px 8%; border-top: 1px solid #222; border-bottom: 1px solid #222; background: #080808; }
.trust-inner { max-width: 1050px; margin: 0 auto; text-align: center; }
.trust-kicker { color: #777; letter-spacing: 3px; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 12px; }
.trust-title { font-family: var(--font-head); color: #fff; font-size: 2.2rem; margin: 0 auto 15px auto; max-width: 800px; text-wrap: balance; }
.trust-sub { color: #888; max-width: 780px; margin: 0 auto 26px; text-wrap: balance;}
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 18px; align-items: stretch; }
.trust-card { border: 1px solid #222; background: rgba(255,255,255,0.02); color: #bdbdbd; padding: 16px 14px; text-align: center; min-height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 4px; width: 100%; }
.trust-note { margin-top: 18px; color: #666; font-size: 0.85rem; line-height: 1.6; }

/* --- GLOBAL SECTION STYLING --- */
.section-padding { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-family: var(--font-head); font-size: 3rem; color: #fff; margin-bottom: 20px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; text-wrap: pretty; overflow-wrap: anywhere; }
.gold-line { width: 60px; height: 1px; background: var(--brand-gold); margin: 0 auto 30px; }

/* --- GRIDS & CARDS --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card-link { display: block; height: 100%; }
.service-card { padding: 40px; border: 1px solid #222; background: #0a0a0a; text-align: center; transition: 0.4s; height: 100%; display: flex; flex-direction: column; justify-content: center; cursor: pointer; }
.service-card:hover { border-color: var(--brand-gold); transform: translateY(-5px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.05); }
.service-card h3 { font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; color: #888; line-height: 1.7; margin-bottom: 20px; text-wrap: pretty; overflow-wrap: anywhere; }
.card-arrow { color: var(--brand-gold); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; font-weight: 700; border-bottom: 1px solid var(--brand-gold-soft); padding-bottom: 3px; }

.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
.ba-card { position: relative; border: 1px solid #222; }
.ba-img { width: 100%; height: 350px; object-fit: cover; display: block; opacity: 0.7; }
.ba-label { position: absolute; top: 20px; left: 20px; background: #000; color: #fff; padding: 5px 15px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; z-index: 2; }
.ba-desc { background: #0a0a0a; padding: 20px; text-align: center; }
.ba-desc h3 { font-family: var(--font-head); color: #fff; margin-bottom: 5px; }
.ba-desc p { font-size: 0.9rem; color: #888; }

.collection-card { background: var(--bg-card); border: 1px solid #222; transition: 0.5s; position: relative; overflow: hidden; }
.collection-card:hover { border-color: var(--brand-gold-soft); transform: translateY(-5px); }
.img-box { height: 400px; width: 100%; position: relative; }
.img-box img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: 0.5s; }
.collection-card:hover .img-box img { filter: grayscale(0%); scale: 1.05; }
.img-box iframe { width: 100%; height: 100%; border: none; }
.card-meta { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, #000, transparent); pointer-events: none;}
.card-meta h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 5px; color: #fff; }
.card-meta p { font-size: 0.9rem; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2px; }

/* --- OTHER SECTIONS --- */
.outcome-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 60px; }
.outcome-card { background: #0c0c0c; padding: 40px 30px; border-top: 3px solid var(--brand-gold); text-align: center; }
.outcome-title { font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.outcome-sub { font-size: 0.85rem; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: block; font-weight: 700; }
.outcome-desc { font-size: 0.95rem; color: #888; line-height: 1.6; text-wrap: pretty; overflow-wrap: anywhere; }

.timeline-section { background: #080808; padding: 80px 8%; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.timeline-flex { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; max-width: 1000px; margin: 0 auto; }
.t-step { flex: 1; min-width: 200px; position: relative; }
.t-step h4 { color: var(--brand-gold); font-size: 1.5rem; font-family: var(--font-head); margin-bottom: 10px; }
.t-step h5 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.t-step p { color: #666; font-size: 0.9rem; line-height: 1.5; }

.ai-magnet { background: #111; padding: 100px 8%; border-top: 1px solid #222; border-bottom: 1px solid #222; display: flex; align-items: center; gap: 60px; }
.ai-content { flex: 1; }
.ai-visual { flex: 1; min-width: 300px; }
.ai-badge { background: var(--brand-gold); color: #000; padding: 5px 15px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }

.video-container { max-width: 1000px; margin: 0 auto; border: 1px solid #222; background: #080808; padding: 20px; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.pricing-addon-row { background: #0e0e0e; border: 1px solid #222; padding: 25px; display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.addon-label { color: #fff; font-weight: 700; font-size: 1.1rem; font-family: var(--font-head); }
.addon-desc { color: #666; font-size: 0.9rem; }

.pricing-preview { background: #0f0f0f; border: 1px solid #222; padding: 40px; display: flex; justify-content: space-between; align-items: center; gap: 30px; max-width: 1000px; margin: 0 auto; }
.preview-text h2 { font-family: var(--font-head); color: #fff; font-size: 2rem; margin-bottom: 10px; }
.preview-text p { color: #888; font-size: 1rem; }

.home-on-site-upsell { background: #0c0c0c; border: 1px solid #222; padding: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; max-width: 1000px; margin: 40px auto 0; border-radius: 4px; gap: 30px; }
.home-on-site-upsell-text { flex: 1 1 500px; text-align: left; }
.home-on-site-upsell-label { color: #fff; font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 10px; display: block; }
.home-on-site-upsell-desc { color: #888; font-size: 0.95rem; line-height: 1.6; }
.home-on-site-upsell-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* --- FOOTER --- */
footer { padding:60px 8%; border-top:1px solid #222; display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:50px; background:#000; }
.footer-brand h3 { font-family: var(--font-head); color: #fff; font-size: 1.5rem; margin-bottom: 20px; }
.footer-links a { display: block; margin-bottom: 10px; font-size: 0.9rem; color: #777; }
.footer-links a:hover { color: var(--brand-gold); }
.footer-brand-link { color: #888; text-decoration: underline; }


/* ==========================================================================
   VIP PAGE STYLES (ADDED)
   ========================================================================== */
.vip-page-body { 
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}
.vip-section { min-height: calc(100vh - 125px); display: flex; align-items: center; justify-content: center; padding: 60px 5% 100px; }
.vip-container { max-width: 1200px; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.vip-content .kicker { color: var(--brand-gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; font-weight: 700; display: block; margin-bottom: 15px; }
.vip-content h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 3.5vw, 3.2rem); line-height: 1.15; color: #fff; margin-bottom: 25px; text-wrap: balance; }
.vip-content > p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; max-width: 95%; }
.vip-video-wrapper { margin-bottom: 0; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 15px 35px rgba(0,0,0,0.6); background: #000; }
.vip-benefits { list-style: none; margin-bottom: 35px; }
.vip-benefits li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.05rem; color: #ddd; }
.vip-benefits li i { color: var(--brand-gold); font-size: 1.2rem; margin-top: 4px; }

.vip-form-box { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.2); padding: 50px 40px; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); backdrop-filter: blur(10px); position: sticky; top: 140px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #ccc; font-size: 0.85rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-control { width: 100%; background: rgba(0,0,0,0.4); border: 1px solid #333; color: #fff; padding: 14px 15px; font-family: var(--font-body); font-size: 1rem; border-radius: 4px; outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-control:focus { border-color: var(--brand-gold); box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 15px center; background-size: 16px; }
.disclaimer { font-size: 0.75rem; color: #666; text-align: center; margin-top: 20px; }


/* ==========================================================================
   MOBILE RESPONSIVENESS (CONSOLIDATED)
   ========================================================================== */
@media (max-width: 1100px) {
    .marquee a { font-size: 0.7rem; }
    .marquee a::after { margin: 0 30px; }
    
    /* NAV FIXES */
    nav { top: 44px; display: flex; justify-content: space-between; }
    
    /* Shrink logo slightly to give the VIP button room */
    .logo-box svg { width: 190px; height: auto; }
    
    /* ONLY hide the generic consultation CTA, keep the VIP button visible! */
    .nav-right-actions .cta-btn { display: none; }
    
    /* Resize the VIP button so it fits gracefully next to the hamburger icon */
    .nav-right-actions .nav-vip-btn { 
        display: inline-block; 
        padding: 6px 12px; 
        font-size: 0.65rem; 
        margin-left: 0; 
        white-space: nowrap; 
    }
    
    /* Reduce the gap to ensure everything fits on a small mobile screen */
    .nav-right-actions { gap: 10px; }
    
    .hamburger-btn { display: block; }

    /* MOBILE MENU OVERLAY FIXES */
    .nav-links { position: fixed; top: 0; right: -100%; width: 100vw; height: 100vh; background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: flex-start; align-items: center; gap: 15px; padding-top: 80px; padding-bottom: 120px; overflow-y: auto; -webkit-overflow-scrolling: touch; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); z-index: 3000; justify-self: unset; }
    .nav-links.active { right: 0; }
    .nav-links a { font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 2px; color: #fff; }
    .nav-links a:hover { color: var(--brand-gold); }
    .dropbtn { font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 2px; color: #fff; }
    
    .close-menu-btn { display: flex; align-items: center; justify-content: center; position: absolute; top: 15px; right: 5%; background: transparent; border: none; color: var(--brand-gold); font-size: 3.5rem; width: 45px; height: 45px; line-height: 1; cursor: pointer; font-weight: 300; z-index: 3010; }

    .dropdown-menu { position: static; min-width: auto; display: none; border: none; box-shadow: none; padding: 0; text-align: center; max-height: none; overflow: visible; }
    .dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: #cfcfcf; padding: 6px 0; }
    .dropdown-card { background: transparent; border: none; padding: 0; margin: 10px 0; }
    .dropdown-card p { display: none; }
    .dropdown-card h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin: 0; }

    .mobile-cta-link{ display: inline-block; margin-top: 8px; border: 1px solid var(--brand-gold); color: var(--brand-gold); padding: 12px 18px; font-family: var(--font-body); font-weight: 900; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

    footer{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
    .page-hero-inner { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.6rem; }
    .field-row { grid-template-columns: 1fr; }

    .contact-grid { display: flex; flex-direction: column; gap: 40px; }
    #book-intro { order: 1; }
    #quote { order: 2; }
    #book-calendly { order: 3; }
    
    .vip-container { grid-template-columns: 1fr; gap: 50px; }
    .vip-content { text-align: center; }
    .vip-content > p { margin: 0 auto 35px; }
    .vip-benefits li { text-align: left; justify-content: flex-start; }
    .vip-form-box { position: relative; top: 0; }
}

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .ai-magnet, .pricing-addon-row, .pricing-preview { flex-direction: column; text-align: center; }
    .ai-visual { width: 100%; height: auto; }
    .pricing-addon-row { gap: 15px; }
    .before-after-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } 
    .trust-title { font-size: 1.8rem; } 
    
    #experience.section-padding { padding-left: 0; padding-right: 0; }
    #experience .section-header { padding-left: 5%; padding-right: 5%; }
    .video-container { padding: 0; border-left: none; border-right: none; border-radius: 0; }

    .home-on-site-upsell { padding: 30px 20px; flex-direction: column; text-align: center; }
    .home-on-site-upsell-text { text-align: center; }
    .home-on-site-upsell-buttons { justify-content: center; width: 100%; }
    .home-on-site-upsell-buttons .cta-btn { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
    .calendly-inline-widget { height: 1100px; }
}

@media (max-width: 420px) { 
    .trust-grid { grid-template-columns: 1fr; } 
    .trust-title { font-size: 1.5rem; } 
    
    /* Extra safety shrink for very tiny phones (iPhone SE, etc.) */
    .logo-box svg { width: 150px; }
    .nav-right-actions .nav-vip-btn { padding: 5px 8px; font-size: 0.6rem; letter-spacing: 0.5px; }
}

/* ==========================================================================
   SERVICE PAGES (LOBBY LOOPS, ART INSTALLS, ETC.)
   ========================================================================== */
.service-hero { padding: 120px 8% 80px; border-bottom: 1px solid #222; }
.service-hero h1 { font-family: var(--font-head); font-size: 4rem; color: #fff; margin-bottom: 20px; line-height: 1.1; }
.service-hero p { font-size: 1.2rem; color: #ccc; max-width: 700px; margin-bottom: 40px; font-weight: 300; }
.hero-subline { color: #9a9a9a; font-size: 0.95rem; max-width: 740px; margin-top: 10px; }

/* Renamed to avoid conflicts with Contact Page pills */
.service-tag-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.service-tag { border: 1px solid rgba(212,175,55,0.25); padding: 10px 14px; color: #cfcfcf; font-size: 0.85rem; letter-spacing: 0.5px; background: rgba(255,255,255,0.02); }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 100px 8%; border-bottom: 1px solid #222; }
.split-content h2 { font-family: var(--font-head); font-size: 2.2rem; color: #fff; margin-bottom: 20px; }
.split-content ul { list-style: none; padding: 0; margin-top: 20px; }
.split-content li { margin-bottom: 15px; color: #ccc; display: flex; gap: 15px; align-items: flex-start; }
.split-content li::before { content: "✦"; color: var(--brand-gold); font-size: 0.8rem; margin-top: 5px; }

.logistics-section { background: #080808; padding: 80px 8%; border-bottom: 1px solid #222; }
.timeline-step { display: flex; gap: 20px; margin-bottom: 30px; border-left: 1px solid #333; padding-left: 20px; position: relative; }
.timeline-step::before { content: ""; width: 9px; height: 9px; background: var(--brand-gold); position: absolute; left: -5px; top: 5px; border-radius: 50%; }
.step-title { color: #fff; font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 5px; }
.step-desc { color: #888; font-size: 0.9rem; margin: 0; }

.perfect-for { background: #0a0a0a; padding: 80px 8%; text-align: center; }
.tag-cloud { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 30px; }
.cloud-tag { border: 1px solid #333; padding: 10px 20px; color: #888; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

.pricing-bar { background: var(--brand-gold); color: #000; padding: 40px 8%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.pricing-bar h3 { font-family: var(--font-head); font-size: 2rem; margin: 0; }
.membership-cross-sell { background: rgba(0,0,0,0.05); padding: 15px 25px; border-left: 2px solid #000; display: flex; flex-direction: column; justify-content: center; }
.mem-badge { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; background: #000; color: var(--brand-gold); padding: 3px 8px; align-self: flex-start; margin-bottom: 5px; }
.mem-link { font-size: 0.9rem; font-weight: 700; border-bottom: 1px solid #000; cursor: pointer; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.mini-card { background: var(--bg-card); border: 1px solid rgba(212,175,55,0.18); padding: 18px 18px; }
.mini-card h3 { font-family: var(--font-head); color: #fff; font-size: 1.15rem; margin: 0 0 8px; }
.mini-card p { margin: 0; color: #9a9a9a; font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 1024px) {
    .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .split-layout, .logistics-section .split-layout { grid-template-columns: 1fr; } 
    .pricing-bar { flex-direction: column; align-items: flex-start; }
    .membership-cross-sell { width: 100%; border-left: none; border-top: 2px solid #000; padding-left: 0; padding-top: 20px; }
    .service-hero h1 { font-size: 2.8rem; }
    .card-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */
.pricing-hero { padding: 120px 5% 60px; text-align: center; border-bottom: 1px solid #222; background: #070707;}
.pricing-hero h1 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 20px; color: #fff; text-wrap: balance; }
.pricing-hero p { color: #ccc; font-size: 1.1rem; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }

.pricing-video-container { max-width: 900px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); background: #000; border-radius: 8px; overflow: hidden; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 80px 5% 100px; max-width: 1300px; margin: 0 auto; }
.track-card { background: var(--bg-card); border: 1px solid #222; border-radius: 8px; padding: 40px 30px; display: flex; flex-direction: column; transition: .4s; }
.track-card:hover { border-color: var(--brand-gold); transform: translateY(-5px); box-shadow: 0 10px 40px rgba(212,175,55,.08); }

.track-header { border-bottom: 1px solid #222; padding-bottom: 20px; margin-bottom: 20px; }
.track-header h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 5px; color: #fff; }
.track-desc { color: #888; font-size: .9rem; line-height: 1.5; min-height: 45px; }

.track-price { font-size: 2.2rem; font-weight: 300; color: var(--brand-gold); margin-bottom: 5px; font-family: var(--font-head); }
.price-sub { font-size: .8rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }

.track-features { list-style: none; padding: 0; margin-bottom: 30px; flex-grow: 1; }
.track-features li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .95rem; color: #ccc; align-items: flex-start; }
.track-features li::before { content: "✦"; color: var(--brand-gold); font-size: .8rem; margin-top: 3px; }

.btn-pricing { display: inline-block; padding: 14px 20px; text-align: center; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; border-radius: 4px; transition: .3s; text-decoration: none; width: 100%; border: 1px solid var(--brand-gold); }
.btn-pricing.outline { color: var(--brand-gold); background: transparent; }
.btn-pricing.outline:hover { background: var(--brand-gold); color: #000; }
.btn-pricing.solid { background: var(--brand-gold); color: #000; }
.btn-pricing.solid:hover { background: #fff; border-color: #fff; }

@media (max-width: 900px) {
    .pricing-hero h1 { font-size: 2.8rem; }
    .pricing-grid { grid-template-columns: 1fr; padding-top: 60px; }
}

/* =========================================
   MOBILE MENU LEFT-ALIGN & HIERARCHY FIX 
   ========================================= */
@media (max-width: 900px) {
    /* 1. Force the main container to align items to the left */
    #mobileMenu {
        align-items: flex-start !important;
        padding-top: 80px; /* Ensure space for the close button */
    }

    /* 2. Left align all main links and dropdown buttons */
    #mobileMenu > a, 
    #mobileMenu .dropdown {
        width: 100%;
        text-align: left;
        box-sizing: border-box;
    }

    /* 3. Push the chevron to the right edge and align text left */
    #mobileMenu .dropbtn {
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px !important;
    }
    
    #mobileMenu > a {
        padding: 15px 30px !important;
        display: block;
    }

    /* 4. Indent the dropdown sub-menus so they look like sub-folders */
    #mobileMenu .dropdown-menu {
        text-align: left;
        background: rgba(255, 255, 255, 0.02); /* Slight highlight to show it's a submenu */
        border-left: 2px solid var(--brand-gold); /* Gold line on the left to connect the items */
        margin-left: 30px;
        margin-right: 30px;
        width: calc(100% - 60px);
        box-sizing: border-box;
        border-radius: 0 4px 4px 0;
    }

    /* 5. Size and color the sub-menu links */
    #mobileMenu .dropdown-menu a {
        text-align: left;
        padding: 12px 20px !important;
        font-size: 0.95rem;
        color: #bbb;
        display: block;
    }
    
    #mobileMenu .dropdown-menu a:hover,
    #mobileMenu .dropdown-menu a.active {
        color: var(--brand-gold) !important;
        background: rgba(212, 175, 55, 0.05);
    }
    
    /* Ensure the Close button stays in the top right */
    #closeMenuBtn {
        position: absolute;
        top: 20px;
        right: 30px;
    }
}
