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

:root {
    --navy: #0c1222;
    --navy-mid: #151d30;
    --navy-light: #1e2a45;
    --gold: #c8a44e;
    --gold-light: #e8d5a0;
    --gold-glow: rgba(200, 164, 78, 0.15);
    --cream: #faf8f4;
    --cream-dark: #f0ece3;
    --text-primary: #faf8f4;
    --text-secondary: #a0a8b8;
    --text-muted: #6b7280;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================================================
   NAV
================================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 18, 34, 0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(200, 164, 78, 0.08);
}
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--cream);
    letter-spacing: -0.5px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo span { color: var(--gold); }
a.logo:hover { opacity: 0.9; }

/* Nav center links */
.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
    height: 64px;
}
.nav-links > li {
    position: relative;
    height: 64px;
    display: flex;
    align-items: center;
}
.nav-links > li > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0 0.9rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown arrow */
.nav-links > li > a.has-dropdown::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.6;
    transition: transform 0.2s;
}
.nav-links > li:hover > a.has-dropdown::after {
    transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-mid);
    border: 1px solid rgba(200, 164, 78, 0.12);
    border-radius: 14px;
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    z-index: 300;
}
.nav-links > li:hover .nav-dropdown {
    display: block;
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.15s;
    white-space: nowrap;
}
.nav-dropdown a:hover {
    background: rgba(200, 164, 78, 0.08);
    color: var(--gold);
}
.nav-dropdown a .dd-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.7;
}
.nav-dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 0.35rem 0.5rem;
}

/* Nav CTA button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 10px;
    font-size: 0.825rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(200, 164, 78, 0.1);
    padding: 1rem 1.5rem 1.5rem;
    z-index: 199;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile-section { margin-bottom: 1rem; }
.nav-mobile-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0;
    margin-bottom: 0.25rem;
}
.nav-mobile a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.15s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ================================================
   PAGE HEADER
================================================ */
.page-header {
    padding: 8rem 2rem 3rem;
    text-align: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 164, 78, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(200, 164, 78, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-glow);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.page-header h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    max-width: 700px;
    margin: 0 auto 1rem;
    letter-spacing: -1px;
}
.page-header h1 em {
    font-style: normal;
    color: var(--gold);
}
.page-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================
   CONTENT AREA
================================================ */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* ================================================
   CARDS
================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.card {
    background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
    border: 1px solid rgba(200, 164, 78, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.card:hover {
    border-color: rgba(200, 164, 78, 0.25);
    transform: translateY(-2px);
}
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-glow);
    border: 1px solid rgba(200, 164, 78, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.card-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(200, 164, 78, 0.08);
    border: 1px solid rgba(200, 164, 78, 0.12);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}
.card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}
.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.25rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Star ratings */
.card-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}
.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.rating-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ================================================
   BUTTONS
================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200, 164, 78, 0.2);
}

/* ================================================
   SECTION HEADERS
================================================ */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}
.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.section-header a {
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.85;
    transition: opacity 0.15s;
}
.section-header a:hover { opacity: 1; }

/* ================================================
   SEARCH BAR
================================================ */
.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 0 1rem;
    transition: border-color 0.2s;
    max-width: 560px;
    width: 100%;
}
.search-bar:focus-within {
    border-color: rgba(200, 164, 78, 0.35);
    background: rgba(255,255,255,0.06);
}
.search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 0.85rem 0.5rem;
    color: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 9px;
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    white-space: nowrap;
}
.search-bar button:hover { background: var(--gold-light); }

/* ================================================
   DIVIDER
================================================ */
.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
    margin: 0 auto;
}

/* ================================================
   FOOTER
================================================ */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo-small {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}
.footer-brand .logo-small span { color: var(--gold); }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 220px;
    margin-bottom: 1.25rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.15s;
}
.footer-social a:hover {
    background: rgba(200, 164, 78, 0.1);
    border-color: rgba(200, 164, 78, 0.2);
}
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.78rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.15s;
}
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ================================================
   FORMS
================================================ */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
.form-group .hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    border-color: rgba(200, 164, 78, 0.4);
}
textarea {
    resize: vertical;
    min-height: 80px;
}
select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a8b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
select option {
    background: var(--navy-mid);
    color: var(--cream);
}

/* ================================================
   COMING SOON STUB
================================================ */
.coming-soon-page {
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}
.coming-soon-page .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(200, 164, 78, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-glow);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.coming-soon-page h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    max-width: 600px;
}
.coming-soon-page p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.notify-form {
    display: flex;
    gap: 0.75rem;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
.notify-form input {
    flex: 1;
}

/* ================================================
   MOBILE
================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .page-header { padding: 6rem 1.25rem 2rem; }
    .content { padding: 0 1.25rem 3rem; }
    .card-grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .notify-form {
        flex-direction: column;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

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