:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --dark: #1A1A1A;
    --charcoal: #2D2D2D;
}

* { box-sizing: border-box; }
body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    background: #F5F3EF;
    min-height: 100vh;
}

/* ── Navbar wrap ── */
.navbar-shell {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ── Top gold ribbon ── */
.top-ribbon {
    background: linear-gradient(90deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    height: 3px;
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Main bar ── */
.navbar-main {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    box-shadow:
        0 1px 0 rgba(201,168,76,0.15),
        0 4px 24px rgba(0,0,0,0.07),
        0 12px 48px rgba(0,0,0,0.04);
}

/* ── Logo text ── */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-decora { color: #1A1A1A; }
.logo-hub    { color: var(--gold); }

/* ── Nav link base ── */
.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3D3D3D;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* Active state */
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

/* ── Dropdown ── */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(201,168,76,0.08);
    border-radius: 2px 2px 12px 12px;
    padding: 10px 0;
    z-index: 200;
}
.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -7px; left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 12px;
    background: #fff;
    border-left: 1px solid rgba(201,168,76,0.2);
    border-top: 1px solid rgba(201,168,76,0.2);
    transform: translateX(-50%) rotate(45deg);
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #3D3D3D;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.dropdown-item .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.18s;
    flex-shrink: 0;
}
.dropdown-item:hover {
    background: #FDFAF3;
    color: var(--gold);
    padding-left: 24px;
}
.dropdown-item:hover .dot { opacity: 1; }

/* ── CTA button ── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
    border: 1px solid rgba(201,168,76,0.3);
}
.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.cta-btn:hover::before { opacity: 1; }
.cta-btn:hover {
    box-shadow: 0 6px 24px rgba(201,168,76,0.4);
    transform: translateY(-1px);
    color: #1A1A1A;
}
.cta-btn span { position: relative; z-index: 1; }
.cta-btn svg  { position: relative; z-index: 1; transition: transform 0.25s; }
.cta-btn:hover svg { transform: translateX(3px); }

/* ── Search pill ── */
.search-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 7px 14px;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.search-pill:hover {
    background: #FDFAF3;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

/* ── Mobile menu ── */
.mobile-menu {
    background: #fff;
    border-top: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2D2D2D;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: #FDFAF3; color: var(--gold); }
.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 36px;
    font-size: 0.82rem;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    transition: background 0.2s, color 0.2s;
}
.mobile-sub-link::before {
    content: '—';
    color: var(--gold);
    font-size: 0.7rem;
}
.mobile-sub-link:hover { background: #FDFAF3; color: var(--gold); }

/* ── Hamburger ── */
.ham-line {
    display: block;
    width: 22px; height: 1.5px;
    background: #1A1A1A;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, width 0.25s;
    transform-origin: center;
}

/* ── Alpine transition ── */
[x-cloak] { display: none !important; }

/* Demo hero */
.demo-hero {
    background: linear-gradient(160deg, #F5F3EF 0%, #EDE8DC 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 60px 20px;
}
.demo-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 6px 14px;
    border-radius: 50px;
}
.demo-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #1A1A1A;
    text-align: center;
    line-height: 1.2;
    max-width: 600px;
}
.demo-sub {
    font-size: 0.95rem;
    color: #777;
    text-align: center;
    max-width: 440px;
    line-height: 1.7;
}

/*hero section*/

@keyframes slowZoom {
    0%   { transform: scale(1.05); }
    50%  { transform: scale(1.12); }
    100% { transform: scale(1.05); }
}
