/* Source: uploaded styles.css */
/* --- RESET & VARIABLES --- */
:root {
    --bg-color: #0B1026;
    --text-color: #F4F1EA;
    --accent-gold: #D4AF37;
    --secondary-bg: #111A35;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --success-green: #2ecc71;
    --alert-bg: #F4E04D;
    --alert-text: #050814;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; margin-bottom: 1.25rem; color: white; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.8rem; letter-spacing: -0.3px; }
p { margin-bottom: 1.5rem; color: #d0d6e0; font-size: 1.05rem; line-height: 1.7; }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

@keyframes imagePulse {
    0% { opacity: 0; transform: scale(0.95); }
    50% { opacity: 0.5; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}
.image-animate { opacity: 0; transition: opacity 0.3s ease; }
.image-animate.pulse-in { animation: imagePulse 1s ease-out forwards; }

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6c04d 100%);
    color: #050814;
    padding: 18px 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
    text-align: center;
    transition: all 0.3s ease;
}
.btn:hover {
    background: linear-gradient(135deg, #F4E04D 0%, var(--accent-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}
.btn:active { transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    margin-left: 15px;
    box-shadow: none;
    padding: 16px 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: white;
    color: #0B1026;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    padding-top: env(safe-area-inset-top);
    background: var(--bg-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.top-alert {
    width: 100%;
    min-height: 48px;
    background: linear-gradient(135deg, #F4E04D 0%, #e6d63d 100%);
    color: var(--alert-text);
    text-align: center;
    padding: 14px 25px;
    font-size: 0.95rem;
    font-weight: 800;
    z-index: 2000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.alert-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.alert-cta {
    background: rgba(11, 16, 38, 0.9);
    color: #F4E04D;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.alert-cta:hover { background: #050814; transform: scale(1.05); }

/* --- NAVIGATION --- */
.navbar {
    width: 100%;
    min-height: 75px;
    background: rgba(11, 16, 38, 0.97);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 12px 0;
}
.nav-container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-size: 1.25rem; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 1.5px; }
.nav-logo:hover { color: var(--accent-gold); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-item { color: #aab4cc; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; }
.nav-item:hover { color: var(--accent-gold); }
.nav-btn {
    background: var(--accent-gold);
    color: #050814;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.nav-btn:hover { background: #F4E04D; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(20, 30, 70, 0.5), transparent),
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212, 175, 55, 0.04), transparent),
      url('/assets/Beach_stargazing.webp') center center / cover no-repeat,
      linear-gradient(180deg, #080c16 0%, #0B1026 50%, #111A35 100%);
    padding-top: 50px;
    padding-bottom: 50px;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,16,38,0.75) 0%, rgba(11,16,38,0.65) 50%, rgba(11,16,38,0.55) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 950px; padding-top: 30px; }
.hero-tag {
    background: linear-gradient(135deg, #D4AF37 0%, #e6c04d 100%);
    color: #050814;
    padding: 12px 22px;
    border-radius: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 28px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    line-height: 1.5;
}
.hero h1 { font-size: 2.8rem; text-shadow: 0 4px 40px rgba(0, 0, 0, 0.9); margin-bottom: 1.8rem; line-height: 1.15; letter-spacing: -0px; }
.hero-subhead { font-size: 1.3rem; color: #f0f0f0; margin-bottom: 1.5rem; text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9); font-weight: 400; line-height: 1.5; max-width: 850px; }
.microcopy { font-size: 0.9rem; opacity: 0.8; font-style: italic; color: #e0e0e0; }

/* --- FOUNDING ACCESS BAR --- */
.founding-bar {
    background: linear-gradient(135deg, var(--accent-gold), #e6c04d);
    padding: 14px 0;
}

/* --- SECTIONS --- */
section[id] { scroll-margin-top: 150px; }
.hunt-section, .tech-section, .how-it-works, .gallery, .pricing, .faq, .session-times { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 15px; }
.section-header p { font-size: 1.1rem; color: #aab4cc; max-width: 700px; margin: 0 auto; }

/* --- REVIEWS --- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
    background: #0B1026;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.review-card.pulse-in { animation: imagePulse 1s ease-out forwards; }
.review-card:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.3); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }
.stars { color: var(--accent-gold); font-size: 1.3rem; display: block; margin-bottom: 15px; letter-spacing: 2px; }
.review-text { font-size: 1.05rem; line-height: 1.7; color: #d0d6e0; font-style: italic; margin-bottom: 0; }

/* --- HOW IT WORKS --- */
.how-it-works { background: var(--bg-color); padding: 100px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 35px; text-align: center; }
.step-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.step-card.pulse-in { animation: imagePulse 1s ease-out forwards; }
.step-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.04); border-color: rgba(212, 175, 55, 0.3); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); }
.step-num { font-size: 4rem; font-weight: 900; color: var(--accent-gold); line-height: 1; margin-bottom: 20px; display: block; text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3); }
.step-title { display: block; font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 12px; }

/* --- PRICING --- */
.pricing { background: #080C1F; padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; margin-top: 50px; }
.price-card {
    background: var(--secondary-bg);
    border-radius: 15px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.price-card.pulse-in { animation: imagePulse 1s ease-out forwards; }
.price-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); }
.price-card.featured { border: 2px solid var(--accent-gold); background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(11, 16, 38, 1)); box-shadow: 0 8px 35px rgba(212, 175, 55, 0.2); }
.price-card.featured:hover { box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35); }
.tag { background: rgba(212, 175, 55, 0.2); color: var(--accent-gold); padding: 8px 16px; border-radius: 5px; font-size: 0.75rem; text-transform: uppercase; font-weight: 800; margin-bottom: 15px; display: inline-block; width: fit-content; letter-spacing: 1px; }
.benefits-list { list-style: none; margin-bottom: 35px; flex-grow: 1; }
.benefits-list li { margin-bottom: 18px; padding-left: 30px; position: relative; color: #d0d6e0; line-height: 1.6; font-size: 1rem; }
.benefits-list li::before { content: '★'; color: var(--accent-gold); position: absolute; left: 0; top: 0; font-size: 1.2rem; }
.booking-widget-container { border-radius: 12px; text-align: center; box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4); }

/* --- TECH / HARDWARE --- */
.tech-section { background: var(--secondary-bg); border-top: 1px solid rgba(255,255,255,0.05); padding: 100px 0; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tech-text p { color: #aab4cc; margin-bottom: 18px; font-size: 1.08rem; line-height: 1.7; }

/* --- GALLERY ITEMS --- */
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 9; box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6); transition: transform 0.4s ease; }
.gallery-item:hover { transform: scale(1.03) translateY(-3px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent); padding: 45px 25px 20px; pointer-events: none; }
.gallery-text { color: #F4F1EA; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1.2px; }

/* --- GUIDE / HOST --- */
.guide { padding: 100px 0; background: #050814; }
.guide-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.guide-gallery-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 9; box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.guide-gallery-item:hover { transform: scale(1.03) translateY(-5px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8); }
.guide-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.guide-gallery-item:hover img { transform: scale(1.05); }
.guide-bio-section { max-width: 900px; margin: 0 auto; }
.guide-bio-content { text-align: left; }
.guide-bio-content h2 { text-align: center; font-size: 2.5rem; margin-bottom: 10px; }
.guide-bio-content p { font-size: 1.08rem; line-height: 1.7; color: #d0d6e0; margin-bottom: 20px; }
.guide-promise-box { margin-top: 35px; padding: 25px; background: rgba(212, 175, 55, 0.1); border-left: 4px solid var(--accent-gold); border-radius: 6px; font-size: 1.05rem; line-height: 1.7; color: #d0d6e0; }

/* --- SESSION TIMES --- */
.session-times { padding: 100px 0; }
.times-table-desktop { display: block; }
.schedule-future { border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.timing-notes-desktop { max-width: 1000px; margin: 40px auto 0; text-align: center; padding: 30px; background: rgba(212, 175, 55, 0.08); border-radius: 10px; border: 1px solid rgba(212, 175, 55, 0.2); }
.timing-title { color: var(--accent-gold); font-size: 1.3rem; margin-bottom: 20px; font-weight: 700; }
.timing-detail { font-size: 1.05rem; color: #d0d6e0; margin-bottom: 12px; line-height: 1.6; }
.timing-fine-print { font-size: 0.9rem; color: #aab4cc; margin-top: 15px; margin-bottom: 0; opacity: 0.85; font-style: italic; }

/* --- LOCATION CARDS (simplified, no iframes) --- */
.location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.location-card:hover { transform: translateY(-3px); border-color: rgba(212, 175, 55, 0.3); }

/* --- WHAT TO BRING --- */
.bring-item {
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d0d6e0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.3s ease;
}
.bring-item:hover { transform: translateX(3px); }
.bring-icon { font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.bring-yes { background: rgba(46, 204, 113, 0.06); border: 1px solid rgba(46, 204, 113, 0.15); }
.bring-yes .bring-icon { color: #2ecc71; }
.bring-no { background: rgba(231, 76, 60, 0.06); border: 1px solid rgba(231, 76, 60, 0.15); }
.bring-no .bring-icon { color: #e74c3c; }

/* --- FAQ --- */
.faq { background: var(--secondary-bg); padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; margin-top: 50px; }
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.faq-item.pulse-in { animation: imagePulse 1s ease-out forwards; }
.faq-item:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(212, 175, 55, 0.3); transform: translateY(-3px); }
.faq-item h4 { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 12px; font-weight: 700; }
.faq-item p { color: #d0d6e0; line-height: 1.7; font-size: 1rem; margin-bottom: 0; }

/* FAQ ACCORDION */
.faq-toggle {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-gold);
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}
.faq-toggle:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(212, 175, 55, 0.3); }
.toggle-arrow { float: right; transition: transform 0.3s ease; }
.faq-toggle.open .toggle-arrow { transform: rotate(90deg); }
.faq-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    padding: 0;
}
.faq-extra.show { max-height: 2000px; padding-top: 25px; }

/* --- FOOTER --- */
footer { padding: 70px 0; background: #000; text-align: center; color: #666; border-top: 1px solid rgba(255, 255, 255, 0.1); }
footer p { margin-bottom: 15px; font-size: 1rem; }
footer strong { color: #999; }
footer a { color: #aab4cc; }
footer a:hover { color: var(--accent-gold); }
.footer-cta { padding: 40px 0 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 30px; }

/* --- STICKY MOBILE CTA --- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: linear-gradient(135deg, var(--accent-gold), #e6c04d);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding-bottom: env(safe-area-inset-bottom);
}
.mobile-sticky-cta a {
    display: block;
    text-align: center;
    padding: 16px 20px;
    color: #050814;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HAMBURGER MENU --- */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================================== */
/* RESPONSIVE                         */
/* ================================== */
@media (max-width: 968px) {
    .container { padding: 0 25px; }
    .tech-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Hide alert bar on mobile */
    .top-alert { display: none; }

    /* Hamburger visible */
    .nav-hamburger { display: flex; }

    /* Mobile nav dropdown */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 16, 38, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .nav-links.nav-open { display: flex; }
    .nav-item {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1rem;
    }
    .nav-btn {
        margin-top: 10px;
        text-align: center;
        padding: 14px 20px;
    }
    .nav-container { justify-content: center; padding: 0 20px; }
    .nav-logo { font-size: 1.1rem; }
    .container { padding: 0 20px; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    p { font-size: 1rem; }

    .top-alert { font-size: 0.85rem; padding: 14px 18px; line-height: 1.5; white-space: normal; height: auto !important; }
    .alert-inner { flex-direction: column; gap: 12px; }
    .alert-cta { font-size: 0.8rem; padding: 8px 18px; }

    .hero { padding: 35px 0; display: flex; align-items: flex-start; min-height: auto; }
    .hero-content { padding: 10px 10px 0; width: 100%; text-align: left; }
    .hero h1 { font-size: 1.8rem !important; line-height: 1.2; margin-bottom: 18px; }
    .hero-subhead { font-size: 0.85rem; line-height: 1.4; margin-bottom: 18px; }
    .hero .btn, .hero .btn-outline { width: 100%; display: block; margin: 0 0 15px; padding: 16px 28px; font-size: 0.9rem; }
    .hero-tag { font-size: 0.75rem; padding: 10px 12px; white-space: normal; line-height: 1.5; margin-bottom: 22px; }

    .hunt-section, .tech-section, .how-it-works, .gallery, .pricing, .faq { padding: 60px 0; }
    .section-header { margin-bottom: 45px; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header p { font-size: 1rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 25px; }
    .step-num { font-size: 3.5rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 25px; }
    .price-card { padding: 35px; }
    .faq-grid { grid-template-columns: 1fr; gap: 25px; }
    .faq-item { padding: 25px; }
    .faq-extra { grid-template-columns: 1fr; gap: 20px; }

    .review-grid { grid-template-columns: 1fr; gap: 25px; }
    .review-card { padding: 28px; }

    .guide { padding: 60px 0; }
    .guide-gallery { grid-template-columns: 1fr; gap: 20px; }
    .guide-bio-content h2 { font-size: 2rem; }

    .session-times { padding: 60px 0; }
    .times-table-desktop table { font-size: 0.85rem; }
    .times-table-desktop th, .times-table-desktop td { padding: 10px 8px !important; }

    /* Bring grid → single col */
    div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

    /* Show sticky mobile CTA */
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 60px; }
    footer { padding-bottom: 80px; }

    /* Location map grid responsive */
    div[style*="minmax(450px"] { grid-template-columns: 1fr !important; }
}


/* --- CROSS-SELL STRIPS --- */
.cross-sell-strip {
    padding: 46px 0;
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cross-sell-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    background: rgba(212, 175, 55, 0.055);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    padding: 30px;
}
.cross-sell-kicker {
    color: var(--accent-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.cross-sell-box h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}
.cross-sell-box p {
    margin-bottom: 0;
    color: #d0d6e0;
    font-size: 0.98rem;
}
.cross-sell-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 240px;
}
.text-link {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.92rem;
}
.text-link:hover { color: #F4E04D; }
@media (max-width: 760px) {
    .cross-sell-box { grid-template-columns: 1fr; }
    .cross-sell-actions { align-items: stretch; min-width: 0; }
    .cross-sell-actions .btn { width: 100%; }
}


/* --- PRE-LAUNCH / FIRST-LIGHT OPTIMIZATIONS --- */
.launch-panel {
    padding: 58px 0;
    background: rgba(212, 175, 55, 0.035);
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}
.launch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}
.launch-card {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 28px;
}
.launch-eyebrow {
    color: var(--accent-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.launch-card h2,
.launch-card h3 {
    margin-bottom: 10px;
}
.launch-card p {
    font-size: 0.98rem;
    color: #d0d6e0;
    margin-bottom: 16px;
}
.launch-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
}
.launch-list li {
    position: relative;
    padding-left: 24px;
    color: #d0d6e0;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.55;
}
.launch-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-size: 0.95rem;
}
.waitlist-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
    width: 100%;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
}
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.waitlist-note {
    color: #8a94a6;
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 6px 0 0;
}
.planner-search-copy {
    max-width: 920px;
    margin: 24px auto 0;
    color: #aab4cc;
    font-size: 0.92rem;
    text-align: center;
}
.planner-search-copy strong { color: var(--accent-gold); }
@media (max-width: 780px) {
    .launch-grid { grid-template-columns: 1fr; }
    .launch-card { padding: 24px 20px; }
}


/* Production mobile form fixes */
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea,
.partner-form input,
.partner-form select,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    font-size: 1rem;
}
.price-box-header {
    flex-wrap: wrap;
}

/* Production nav reconciliation fixes v6 */
.nav-container {
    max-width: 1500px;
    gap: 22px;
}
.nav-logo {
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1.15;
}
.nav-links {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: clamp(14px, 1.45vw, 24px);
    min-width: 0;
    flex-wrap: nowrap;
}
.nav-item,
.nav-btn {
    white-space: nowrap;
    line-height: 1.2;
}
.nav-item {
    font-size: clamp(0.84rem, 0.82vw, 0.95rem);
}
.nav-btn {
    font-size: clamp(0.82rem, 0.78vw, 0.9rem);
    padding: 10px 18px;
    flex: 0 0 auto;
}

@media (max-width: 1260px) {
    .nav-container {
        max-width: 1180px;
        padding: 0 24px;
        gap: 16px;
    }
    .nav-links { gap: 14px; }
    .nav-logo { font-size: 1.08rem; letter-spacing: 1.1px; }
    .nav-item { font-size: 0.84rem; letter-spacing: 0.25px; }
    .nav-btn { padding: 9px 14px; font-size: 0.82rem; }
}

@media (max-width: 1100px) {
    .navbar { position: relative; }
    .nav-container {
        justify-content: space-between;
        padding: 0 22px;
    }
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 16, 38, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 18px 22px;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .nav-links.nav-open { display: flex; }
    .nav-item {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1rem;
    }
    .nav-btn {
        display: block;
        margin-top: 12px;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }
    .nav-logo {
        font-size: 1.08rem;
    }
}

@media (max-width: 420px) {
    .nav-logo {
        font-size: 0.98rem;
        letter-spacing: 0.9px;
    }
    .nav-container { padding: 0 16px; }
}


/* Conversion fixes v8 */

.private-band { background: rgba(255,255,255,0.02); }
.private-offer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; max-width:980px; margin:0 auto 26px; }
.private-offer-card { background:rgba(255,255,255,0.04); border:1px solid rgba(212,175,55,0.18); border-radius:14px; padding:24px; text-align:left; }
.private-offer-card span { display:block; color:var(--accent-gold); font-size:0.76rem; font-weight:900; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:8px; }
.private-offer-card h3 { font-size:1.65rem; margin:0 0 6px; }
.private-offer-card p { margin:0; font-size:0.95rem; color:#d0d6e0; }
.private-band-form { max-width:980px; margin: 24px auto 0; grid-template-columns: repeat(2, minmax(0,1fr)); background:rgba(5,8,20,0.55); border:1px solid rgba(255,255,255,0.08); border-radius:14px; padding:24px; }
.private-band-form textarea, .private-band-form button, .private-band-form .waitlist-note { grid-column: 1 / -1; }
.private-band-form textarea { min-height:96px; resize:vertical; }
@media (max-width: 780px) { .private-band-form { grid-template-columns:1fr; padding:20px; } }

.image-fallback {
    min-height: 220px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background:
      radial-gradient(circle at 50% 35%, rgba(212,175,55,0.14), transparent 30%),
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #d0d6e0;
    padding: 24px;
}
.image-fallback span { color: white; font-weight: 800; max-width: 520px; line-height: 1.35; }
.image-fallback small { color: var(--accent-gold); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; font-size: 0.72rem; }
.form-status { margin: 14px 0 0; color: var(--accent-gold); font-size: 0.9rem; text-align: center; }
.mobile-sticky-cta.two-up { display: none; grid-template-columns: 1fr 1fr; }
.mobile-sticky-cta.two-up a { display: flex; align-items: center; justify-content: center; min-height: 58px; padding: 12px 10px; font-size: 0.78rem; line-height: 1.25; }
.mobile-sticky-cta.two-up a.secondary { background: #050814; color: var(--accent-gold); }
.public-price-summary { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; max-width:900px; margin:0 auto; }
.public-price-summary .price-card { padding:32px; }
.public-price-line { color:var(--accent-gold); font-size:1.4rem; font-weight:900; margin:8px 0 14px; }
.location-card .map-link { display:inline-block; margin-top:14px; color:var(--accent-gold); font-weight:700; }
@media (max-width: 768px) {
    .mobile-sticky-cta.two-up { display: grid; }
}


/* v18 cleanup: simpler launch/homepage, less crowded buttons/nav */
.button-row { display:flex; gap:14px; align-items:center; flex-wrap:wrap; margin-top:26px; }
.button-row .btn, .button-row .btn-outline { margin:0; }
.hero-actions-clean { margin-top:34px; }
.simple-public-card { max-width: 960px; margin: 0 auto; }
.private-lite { background: rgba(255,255,255,0.015); }
.footer-actions { justify-content:center; margin-top:0; }
.footer-actions .text-link { align-self:center; margin-left:4px; }
@media (max-width: 720px) {
  .button-row { display:grid; grid-template-columns:1fr; gap:12px; }
  .button-row .btn, .button-row .btn-outline { width:100%; text-align:center; }
  .footer-actions .text-link { margin-left:0; text-align:center; }
}

/* v20 visual asset and location updates */
.static-map-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(360px,1fr)); gap:24px; max-width:1120px; margin:0 auto; }
.static-map-card { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); border-radius:14px; overflow:hidden; transition:transform .25s ease,border-color .25s ease; }
.static-map-card:hover { transform:translateY(-3px); border-color:rgba(212,175,55,0.35); }
.static-map-copy { padding:24px 24px 18px; }
.static-map-copy h3 { margin:0 0 6px; font-size:1.65rem; }
.static-map-copy p { margin:0 0 8px; font-size:.95rem; color:#aab4cc; }
.static-map-copy .map-area { color:var(--accent-gold); font-size:.86rem; font-weight:900; text-transform:uppercase; letter-spacing:1px; }
.static-map-shot { position:relative; aspect-ratio:16/7; overflow:hidden; background:rgba(0,0,0,.24); border-top:1px solid rgba(255,255,255,0.08); }
.static-map-shot img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.86) contrast(1.05); }
.static-map-shot.map-missing::after { content:'Map screenshot coming soon'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:var(--accent-gold); font-weight:900; text-transform:uppercase; letter-spacing:1.5px; font-size:.86rem; background:linear-gradient(135deg,rgba(255,255,255,.03),rgba(0,0,0,.22)); }
.map-open-button { display:inline-flex; margin:16px 24px 22px; align-items:center; justify-content:center; width:calc(100% - 48px); padding:12px 16px; border-radius:10px; background:rgba(212,175,55,.12); border:1px solid rgba(212,175,55,.36); color:var(--accent-gold); font-weight:900; text-align:center; text-decoration:none; transition:all .2s ease; }
.map-open-button:hover { background:rgba(212,175,55,.2); transform:translateY(-1px); }
.location-footnote { max-width:900px; margin:24px auto 0; text-align:center; color:#8a94a6; font-style:italic; font-size:.92rem; }
.compact-benefits { margin-top:18px; }
.compact-benefits li { margin-bottom:12px; }
.see-sky-block { margin-top:64px; max-width:980px; }
.see-sky-block h3 { font-size:1.65rem; margin-bottom:22px; }
.see-sky-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.see-sky-card { aspect-ratio:1; }
.nasa-note { color:#8a94a6; font-style:italic; margin-top:18px; font-size:.96rem; }
@media (max-width:760px){ .static-map-grid{grid-template-columns:1fr;} .see-sky-grid{grid-template-columns:1fr;} }

/* v21 launch, booking, and sky blocks */
.launch-banner{
  padding:16px 0;
  background:rgba(212,175,55,0.12);
  border-top:1px solid rgba(212,175,55,0.28);
  border-bottom:1px solid rgba(212,175,55,0.22);
  color:#f4e8b6;
  text-align:center;
  font-weight:650;
  line-height:1.55;
}
.launch-banner strong{color:#fff;}
.price-total-line{
  margin:8px 0 14px;
  color:#f4e8b6;
  font-size:.92rem;
  line-height:1.45;
}
.ticketspice-block,.sky-now-block{
  max-width:960px;
  margin:34px auto 0;
  padding:28px;
  border-radius:16px;
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(212,175,55,0.18);
  text-align:center;
}
.ticketspice-block h3,.sky-now-block h3{font-size:1.55rem;margin:8px 0 10px;}
.ticketspice-placeholder{
  margin:20px auto;
  padding:30px 18px;
  border:1px dashed rgba(212,175,55,.42);
  border-radius:12px;
  background:rgba(0,0,0,.18);
  color:#aab4cc;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-size:.82rem;
}
.sky-list{
  list-style:none;
  padding:0;
  margin:18px auto 0;
  max-width:720px;
  text-align:left;
}
.sky-list li{
  position:relative;
  padding:8px 0 8px 28px;
  color:#d0d6e0;
  line-height:1.45;
}
.sky-list li:before{
  content:'✦';
  position:absolute;
  left:0;
  color:var(--accent-gold);
}
.sky-note{
  margin:18px 0 0;
  color:#8a94a6;
  font-style:italic;
}
@media (max-width:640px){
  .ticketspice-block,.sky-now-block{padding:22px 18px;}
}


/* v24 fixes: restore hero imagery, stop release-list overlap, and force 4-step experience grid */
.public-home-hero {
  background:
    linear-gradient(90deg, rgba(5,8,20,0.86) 0%, rgba(5,8,20,0.62) 48%, rgba(5,8,20,0.42) 100%),
    url('/assets/Beach_stargazing.webp') center center / cover no-repeat,
    linear-gradient(135deg, #050814 0%, #111827 100%);
}

.private-hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 86px 34px 78px !important;
  border: 1px solid rgba(212,175,55,0.20);
  background:
    linear-gradient(90deg, rgba(5,8,20,0.88) 0%, rgba(5,8,20,0.66) 52%, rgba(5,8,20,0.48) 100%),
    url('/assets/Beach_stargazing.webp') center center / cover no-repeat,
    linear-gradient(135deg, #050814 0%, #111827 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.36);
}

.sky-now-block {
  margin-bottom: 52px;
}

.first-light-card {
  position: relative;
  z-index: 1;
  clear: both;
  margin-top: 0;
}

.evening-flow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .evening-flow-grid { grid-template-columns: 1fr; }
  .private-hero { padding: 64px 22px 58px !important; border-radius: 16px; }
}


/* TicketSpice availability updates */
.public-ticket-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:26px;
  text-align:left;
}
.public-ticket-card{
  padding:20px;
  border-radius:14px;
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(212,175,55,0.18);
}
.public-ticket-card h4{
  margin:0 0 8px;
  color:#fff;
  font-size:1.12rem;
}
.public-ticket-card p{
  min-height:78px;
  margin:0 0 16px;
  color:#aab4cc;
  font-size:.94rem;
  line-height:1.45;
}
.public-ticket-card .btn{
  width:100%;
  justify-content:center;
  text-align:center;
  margin-bottom:12px;
}
.text-link{
  display:inline-block;
  color:var(--accent-gold);
  font-weight:800;
  text-decoration:none;
  font-size:.93rem;
}
.text-link:hover{text-decoration:underline;}
.ticket-open-button{
  display:inline-flex;
  margin:0 24px 24px;
  align-items:center;
  justify-content:center;
  width:calc(100% - 48px);
  padding:12px 16px;
  border-radius:10px;
  background:var(--accent-gold);
  border:1px solid rgba(212,175,55,.72);
  color:#050814;
  font-weight:900;
  text-align:center;
  text-decoration:none;
  transition:all .2s ease;
}
.ticket-open-button:hover{filter:brightness(1.08); transform:translateY(-1px);}
@media (max-width:1000px){.public-ticket-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.public-ticket-card p{min-height:auto;}}
@media (max-width:640px){.public-ticket-grid{grid-template-columns:1fr;}}

.sky-tip{
  margin: 28px 0 24px;
  padding: 26px 28px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(255,255,255,.04));
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.sky-tip .eyebrow{
  margin:0 0 8px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 800;
}
.sky-tip h2{
  margin:0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}
.sky-tip p{
  margin:0;
  max-width: 840px;
  color: #dbe3ef;
  font-size: 1.03rem;
  line-height: 1.65;
}
@media (max-width:640px){.sky-tip{padding:22px 18px;}}


/* Date picker affordance: make date fields behave like pickers, not plain text boxes */
input[type="date"] {
  cursor: pointer;
  color-scheme: dark;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  width: 1.35rem;
  height: 1.35rem;
  filter: invert(1) brightness(1.8);
}
input[type="date"]:focus::-webkit-calendar-picker-indicator,
input[type="date"]:hover::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2.3);
}


/* Source: uploaded warm.css */
/* ============================================================
   StarCoast 30A - Warmth Overlay
   Load AFTER styles.css. Overrides only what is needed to move
   the site from corporate-luxury to premium-beach-host.

   Include in <head> just after the existing styles.css line:
   <link rel="stylesheet" href="starcoast-warmth.css">
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-display: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}
/* ---------- 1. PALETTE: warmer dusk, candlelight gold ---------- */
:root {
  --bg-color: #0F1024;
  --bg-deep: #0A0B1A;
  --bg-warm: #1B1530;
  --secondary-bg: #16172E;
  --accent-gold: #E8B547;
  --accent-gold-soft: #F4E4C1;
  --accent-ember: #E37B4A;
  --text-color: #F5EFE4;
  --text-muted: #B8B0C2;
  --font-main: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
}

/* ---------- 2. TEXTURE: fine grain so nothing reads as flat digital ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- 3. TYPOGRAPHY: display serif for headlines only ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: -0.018em;
  font-feature-settings: "ss01", "ss02";
}

h1 { font-weight: 600; letter-spacing: -0.028em; }
h2 { font-size: 2.4rem; letter-spacing: -0.02em; }
h3 { font-size: 1.65rem; letter-spacing: -0.012em; }

p {
  color: rgba(245, 239, 228, 0.78);
  font-family: var(--font-main);
  line-height: 1.65;
}

/* ---------- 4. HERO: serif italic h1, coral sunset glow, twinkle ---------- */
.hero {
  background:
    radial-gradient(ellipse 65% 45% at 50% 108%, rgba(227,123,74,0.22), transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(20, 25, 60, 0.55), transparent),
    radial-gradient(ellipse 40% 35% at 18% 75%, rgba(232,181,71,0.06), transparent),
    url('/assets/Beach_stargazing.webp') center center / cover no-repeat,
    linear-gradient(180deg, #0A0B1A 0%, #1B1530 55%, #2B1A35 100%);
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(10,11,26,0.68) 0%, rgba(15,16,36,0.55) 45%, rgba(43,26,53,0.55) 100%);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0.0em;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}

.hero-subhead {
  font-family: var(--font-main);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 620px;
  color: rgba(245,239,228,0.86);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  margin-bottom: 1.1rem;
}
.hero-subhead-secondary { font-size: 1rem; color: rgba(245,239,228,0.72); }
.hero-weather-note { font-size: 0.95rem; color: rgba(244,228,193,0.72); font-style: italic; }
.microcopy { color: rgba(244,228,193,0.7); font-style: normal; font-size: 0.88rem; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(1px 1px at 18% 28%, white, transparent 60%),
    radial-gradient(1.2px 1.2px at 62% 22%, rgba(255,255,255,0.9), transparent 60%),
    radial-gradient(1.5px 1.5px at 82% 38%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1px 1px at 38% 65%, white, transparent 60%),
    radial-gradient(1.5px 1.5px at 92% 18%, rgba(244,228,193,0.9), transparent 60%),
    radial-gradient(1px 1px at 8% 52%, rgba(255,255,255,0.75), transparent 60%);
  animation: starcoast-twinkle 5s ease-in-out infinite;
}
@keyframes starcoast-twinkle {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.95; }
}

/* ---------- 5. BUTTONS: pill, title-case, candlelight gold ---------- */
.btn {
  background: linear-gradient(180deg, #F1C25E 0%, #E8B547 100%);
  color: #1A0F00;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 15px 30px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 10px 26px -10px rgba(232,181,71,0.55),
    0 1px 2px rgba(0,0,0,0.2);
}
.btn:hover {
  background: linear-gradient(180deg, #F7CF6F 0%, #ECBA52 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 14px 30px -10px rgba(232,181,71,0.7);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(245,239,228,0.32);
  color: var(--text-color);
  font-family: var(--font-main);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(245,239,228,0.06);
  color: var(--text-color);
  border-color: rgba(244,228,193,0.55);
  box-shadow: none;
}

.nav-btn {
  background: var(--accent-gold);
  color: #1A0F00;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  letter-spacing: 0;
  font-family: var(--font-main);
}
.nav-btn:hover { background: #F1C25E; }

/* ---------- 6. EYEBROWS + TAGS: tiny, tracked, no chunky pills ---------- */
.launch-eyebrow,
.hero-tag,
.anchor-card-tag,
.case-study-tag,
.partner-strip-label,
.press-strip-label {
  display: inline-block;
  background: none;
  color: var(--accent-gold-soft);
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0;
  box-shadow: none;
  margin-bottom: 14px;
  line-height: 1.4;
}
.hero-tag::before {
  content: "✦  ";
  color: var(--accent-gold);
  letter-spacing: 0;
}

.tag {
  background: rgba(232,181,71,0.12);
  color: var(--accent-gold-soft);
  border: 1px solid rgba(232,181,71,0.25);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ---------- 7. CARDS: softer corners, glassy, warmer borders ---------- */
.anchor-card,
.price-card,
.review-card,
.step-card,
.faq-item,
.case-study,
.location-card,
.inquiry-form,
.guide-promise-box,
.timing-notes-desktop,
.availability-teaser,
.sky-now-block,
.weather-trust-block,
.launch-card {
  background: linear-gradient(180deg, rgba(255,250,240,0.045) 0%, rgba(255,250,240,0.012) 100%);
  border: 1px solid rgba(255,250,240,0.08);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 30px 60px -30px rgba(0,0,0,0.55);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(232,181,71,0.07) 0%, rgba(255,250,240,0.02) 60%, rgba(22,23,46,0.6) 100%);
  border: 1px solid rgba(232,181,71,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 70px -25px rgba(0,0,0,0.6),
    0 0 0 1px rgba(232,181,71,0.08);
}

.review-card { background: rgba(22,23,46,0.55); }
.review-text { color: rgba(245,239,228,0.92); font-style: italic; }
.stars { letter-spacing: 4px; }

/* ---------- 8. BULLETS: glowing dots instead of ✦ and ★ ---------- */
.anchor-card ul li:before,
.benefits-list li::before,
.sky-list li::before {
  content: "" !important;
  position: absolute;
  left: 4px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(232,181,71,0.65), 0 0 2px rgba(244,228,193,0.9);
}
.benefits-list li { padding-left: 24px; }
.sky-list li { position: relative; padding-left: 24px; }

/* ---------- 9. SECTIONS: warmer alternation, no jet-black ---------- */
.pricing { background: var(--bg-deep); }
.tech-section, .faq { background: var(--secondary-bg); }
.how-it-works { background: var(--bg-color); }
.guide { background: #0A0916; }
footer { background: #06060F; }

.section-header h2 { color: var(--text-color); }
.section-header p { color: var(--text-muted); font-family: var(--font-main); }

/* ---------- 10. STEP NUMBERS: serif numerals, restrained glow ---------- */
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 3.4rem;
  color: var(--accent-gold);
  text-shadow: 0 0 22px rgba(232,181,71,0.28);
  margin-bottom: 14px;
}
.step-title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }

/* ---------- 11. FOUNDING BAR + TRUST BAR + LAUNCH BANNER ---------- */
.founding-bar {
  background: linear-gradient(135deg, #E8B547 0%, #E37B4A 100%);
}
.founding-bar p { color: #1A0F00 !important; font-weight: 600 !important; font-family: var(--font-main); }

.trust-bar {
  background: rgba(232,181,71,0.06) !important;
  border-top: 1px solid rgba(232,181,71,0.18) !important;
  border-bottom: 1px solid rgba(232,181,71,0.14) !important;
}
.trust-bar .container { color: var(--accent-gold-soft) !important; font-weight: 500 !important; font-style: italic; }

.launch-banner {
  background: rgba(227,123,74,0.08);
  border-top: 1px solid rgba(227,123,74,0.2);
  border-bottom: 1px solid rgba(227,123,74,0.16);
}
.launch-banner strong { color: var(--accent-ember); }

/* ---------- 12. NAV: serif logo, softer divider ---------- */
.navbar {
  background: rgba(15,16,36,0.85);
  border-bottom: 1px solid rgba(255,250,240,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  color: var(--text-color);
}
.nav-logo:hover { color: var(--accent-gold-soft); }
.nav-item { color: rgba(245,239,228,0.75); font-weight: 500; letter-spacing: 0; }
.nav-item:hover { color: var(--accent-gold-soft); }

/* ---------- 13. FORM INPUTS: warmer focus ring ---------- */
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.waitlist-form input,
.waitlist-form select {
  background: rgba(10,11,26,0.45);
  border: 1px solid rgba(255,250,240,0.12);
  border-radius: 10px;
  color: var(--text-color);
  font-family: var(--font-main);
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(232,181,71,0.18);
}

/* ---------- 14. PRICE / GUIDE / TIER details ---------- */
.public-price-line { color: var(--accent-gold-soft); font-family: var(--font-display); font-style: italic; font-size: 1.15rem; }
.price-qualifier { color: var(--text-muted); font-family: var(--font-main); font-style: normal; font-size: 0.88rem; }
.anchor-from { font-family: var(--font-display); font-style: italic; font-weight: 600; }
.tier-price { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--accent-gold-soft); }

.guide-promise-box {
  border-left: 3px solid var(--accent-ember);
  background: rgba(227,123,74,0.06);
  border-radius: 14px;
}

/* ---------- 15. MOBILE STICKY CTA: warm, restrained ---------- */
.mobile-sticky-cta {
  background: linear-gradient(180deg, #E8B547 0%, #D89F35 100%);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.45);
}
.mobile-sticky-cta a {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: #1A0F00;
}
.mobile-sticky-cta a.secondary {
  background: rgba(10,11,26,0.88);
  color: var(--accent-gold-soft);
}

/* ---------- 16. FOOTER warmth ---------- */
footer p { color: rgba(245,239,228,0.55); }
footer strong { color: var(--accent-gold-soft); }
footer a:hover { color: var(--accent-gold-soft); }

/* ---------- 17. MOBILE FIXES ---------- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem !important; letter-spacing: -0.025em; }
  .hero-subhead { font-size: 0.95rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.4rem; }
  .anchor-card, .price-card, .review-card, .step-card, .faq-item, .case-study,
  .location-card, .inquiry-form, .launch-card { border-radius: 16px; }
}


/* v25 hero and favicon polish: fill the desktop hero's upper-right visual gap and use the real favicon in the menu */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: url('/assets/favicon_v1.jpg') center center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(232,181,71,0.34), 0 6px 18px rgba(0,0,0,0.28);
}
.public-home-hero {
  position: relative;
  overflow: hidden;
}
.public-home-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: clamp(24px, 6vw, 86px);
  top: clamp(88px, 13vh, 145px);
  width: clamp(260px, 30vw, 455px);
  height: clamp(210px, 26vw, 390px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15,16,36,0.03), rgba(15,16,36,0.16)),
    url('/assets/hero_image_v1.jpg') center center / cover no-repeat;
  border: 1px solid rgba(244,228,193,0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 34px 80px -34px rgba(0,0,0,0.70),
    0 0 0 1px rgba(232,181,71,0.08);
  opacity: 0.96;
}
.public-home-hero .hero-overlay,
.public-home-hero .hero-content {
  position: relative;
  z-index: 2;
}
.public-home-hero .hero-content {
  max-width: min(760px, 62vw);
}
@media (max-width: 980px) {
  .public-home-hero::before {
    position: relative;
    display: block;
    right: auto;
    top: auto;
    width: calc(100% - 40px);
    height: 270px;
    margin: 28px auto 0;
    z-index: 2;
  }
  .public-home-hero .hero-content {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .nav-logo::before {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .public-home-hero::before {
    width: calc(100% - 32px);
    height: 220px;
    border-radius: 20px;
  }
}

/* v26 cleanup: remove hero logo card and stabilize interior pages */
.public-home-hero::before {
  display: none !important;
  content: none !important;
  background: none !important;
}
.public-home-hero .hero-content {
  max-width: 880px !important;
  width: min(880px, calc(100vw - 48px));
}
.public-home-hero .hero-content p,
.public-home-hero .hero-subhead,
.public-home-hero .hero-weather-note {
  max-width: 880px !important;
  width: 100%;
}
.public-home-hero .button-row {
  max-width: 880px;
}

/* Shared interior page layout for private-events and partners */
.section {
  padding: 88px 0;
  background: var(--bg-color);
}
.section.alt {
  background: var(--secondary-bg);
}
.section.sand {
  background: linear-gradient(180deg, rgba(232,181,71,0.07), rgba(227,123,74,0.035));
  border-top: 1px solid rgba(232,181,71,0.12);
  border-bottom: 1px solid rgba(232,181,71,0.10);
}
.eyebrow {
  display: inline-block;
  color: var(--accent-gold-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.trust-strip {
  padding: 18px 0;
  background: rgba(232,181,71,0.07);
  border-top: 1px solid rgba(232,181,71,0.16);
  border-bottom: 1px solid rgba(232,181,71,0.12);
  color: var(--accent-gold-soft);
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}
.trust-strip .container { max-width: 1100px; }

.answer-list,
.grid,
.steps,
.pricing-row,
.faq-grid,
.form-grid {
  display: grid;
  gap: 24px;
}
.answer-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-row { grid-template-columns: 1.1fr .9fr; align-items: stretch; }
.faq-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-full { grid-column: 1 / -1; }

.answer,
.card,
.step,
.form-wrap,
.cta-band,
.rate-list {
  background: linear-gradient(180deg, rgba(255,250,240,0.045) 0%, rgba(255,250,240,0.014) 100%);
  border: 1px solid rgba(255,250,240,0.09);
  border-radius: 20px;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 28px 58px -34px rgba(0,0,0,0.62);
}
.answer h2,
.card h3,
.step h3,
.faq-item h3 {
  font-size: 1.35rem;
  line-height: 1.22;
  margin-bottom: 10px;
}
.answer p,
.card p,
.step p {
  margin-bottom: 0;
  color: rgba(245,239,228,0.76);
}
.card.gold {
  border-color: rgba(232,181,71,0.34);
  background: linear-gradient(180deg, rgba(232,181,71,0.08), rgba(255,250,240,0.018));
}
.price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-gold-soft);
  font-weight: 700;
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.rate-list { padding: 20px 22px; }
.rate {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rate:last-child { border-bottom: 0; }
.rate strong { color: var(--text-color); }
.rate span { color: var(--accent-gold-soft); font-weight: 700; white-space: nowrap; }
.note {
  color: rgba(245,239,228,0.62);
  font-size: .92rem;
  line-height: 1.55;
}
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border-color: rgba(232,181,71,0.24);
}
.form-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.form-wrap label {
  display: block;
  color: var(--accent-gold-soft);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  background: rgba(10,11,26,0.48);
  border: 1px solid rgba(255,250,240,0.12);
  border-radius: 10px;
  color: var(--text-color);
  padding: 13px 14px;
  font-family: var(--font-main);
  font-size: 1rem;
}
.form-wrap textarea { min-height: 108px; resize: vertical; }
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(232,181,71,.16);
}
.form-wrap button { margin-top: 4px; }

.private-events-page .hero,
.partners-page .hero {
  min-height: auto;
  padding: 112px 0 86px;
  background:
    linear-gradient(90deg, rgba(5,8,20,0.90), rgba(15,16,36,0.70)),
    url('/assets/Beach_stargazing.webp') center center / cover no-repeat,
    linear-gradient(135deg, #050814, #111827);
}
.private-events-page .hero .hero-content,
.partners-page .hero .hero-content {
  max-width: 880px;
}
.private-events-page .hero p,
.partners-page .hero p {
  max-width: 820px;
  font-size: 1.08rem;
}
.private-events-page .hero .microcopy,
.partners-page .hero .microcopy {
  display: block;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .answer-list,
  .grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .steps,
  .pricing-row,
  .faq-grid,
  .form-grid,
  .cta-band { grid-template-columns: 1fr !important; }
  .section { padding: 64px 0; }
  .private-events-page .hero,
  .partners-page .hero { padding: 76px 0 58px; }
  .answer,
  .card,
  .step,
  .form-wrap,
  .cta-band { padding: 22px; }
}
