/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:       #c9943a;
    --gold-light: #e8b354;
    --gold-dim:   #c9943a18;
    --gold-dim2:  #c9943a30;
    --bg:         #080808;
    --bg2:        #0f0f0f;
    --bg3:        #161616;
    --border:     #222222;
    --border2:    #2e2e2e;
    --text:       #ede8e0;
    --text-muted: #6b6560;
    --text-sub:   #9e9890;
    --green:      #4caf7d;
    --radius-lg:  20px;
    --radius-md:  14px;
    --radius-sm:  10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Utility ──────────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-dim);
    border: 1px solid var(--gold-dim2);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-sub);
    line-height: 1.65;
    max-width: 560px;
}

.gold { color: var(--gold-light); }

/* Fade-in animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Nav ──────────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8,8,8,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .hookah-icon {
    width: 28px; height: 28px;
    background: var(--gold-dim2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--gold);
    color: #0d0d0d !important;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

@media (max-width: 700px) {
    .nav-links { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(201,148,58,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-mockup { display: none; }
}

.hero-label { margin-bottom: 1.25rem; }

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #0d0d0d;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-md);
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: -0.01em;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border2);
    color: var(--text-sub);
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-md);
    transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-badge-item {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-badge-item svg { color: var(--green); }

/* ── Phone Mockup ─────────────────────────────────────────────────── */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-frame {
    width: 280px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 40px;
    padding: 16px;
    box-shadow:
        0 0 0 1px rgba(201,148,58,0.12),
        0 40px 80px rgba(0,0,0,0.6),
        0 0 80px rgba(201,148,58,0.06);
    position: relative;
}

.phone-notch {
    width: 80px; height: 8px;
    background: var(--border2);
    border-radius: 4px;
    margin: 0 auto 14px;
}

.phone-screen {
    background: #0d0d0d;
    border-radius: 28px;
    overflow: hidden;
    min-height: 480px;
}

.phone-header {
    background: rgba(13,13,13,0.9);
    border-bottom: 1px solid #1e1e1e;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-bar-name { font-size: 0.78rem; font-weight: 700; }

.phone-live {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-live::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

.phone-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 10px 12px;
}

.phone-stat {
    background: #161616;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
}

.phone-stat-n {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.phone-stat-l {
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

.phone-cards {
    padding: 6px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-card-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.phone-card-dot.avail { background: var(--green); box-shadow: 0 0 6px rgba(76,175,125,0.6); }
.phone-card-dot.unavail { background: #333; }

.phone-card-name { font-size: 0.7rem; font-weight: 600; }
.phone-card-brand { font-size: 0.6rem; color: var(--gold); margin-top: 1px; }
.phone-card.dim { opacity: 0.45; }

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* ── Problem section ──────────────────────────────────────────────── */
.problem-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.pain-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.pain-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pain-text strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.pain-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.solution-card {
    background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
    border: 1px solid rgba(201,148,58,0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,148,58,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.solution-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.solution-step:last-child { margin-bottom: 0; }

.step-num {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--gold-dim2);
    border: 1px solid rgba(201,148,58,0.3);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-body strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.step-body span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Features ─────────────────────────────────────────────────────── */
.features-section {
    padding: 100px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header .section-sub { margin: 1rem auto 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 860px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
    border-color: rgba(201,148,58,0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px; height: 44px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-dim2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Pricing ──────────────────────────────────────────────────────── */
.pricing-section { padding: 100px 0; }

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header .section-sub { margin: 1rem auto 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
}

.pricing-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: border-color 0.25s;
}

.pricing-card.featured {
    border-color: rgba(201,148,58,0.4);
    background: linear-gradient(160deg, #1a1510 0%, var(--bg3) 60%);
    transform: scale(1.03);
}

@media (max-width: 860px) {
    .pricing-card.featured { transform: none; }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0d0d0d;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-plan {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
}

.pricing-card.featured .price-amount { color: var(--gold-light); }

.price-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-period {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    font-size: 0.88rem;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pricing-features li svg { flex-shrink: 0; color: var(--green); }
.pricing-features li.off { color: var(--text-muted); text-decoration: line-through; opacity: 0.5; }
.pricing-features li.off svg { color: var(--text-muted); }

.btn-pricing {
    width: 100%;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.15s;
    text-align: center;
    display: block;
}

.btn-pricing:active { transform: scale(0.97); }

.pricing-card:not(.featured) .btn-pricing {
    background: var(--bg2);
    border: 1px solid var(--border2);
    color: var(--text);
}

.pricing-card:not(.featured) .btn-pricing:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.pricing-card.featured .btn-pricing {
    background: var(--gold);
    color: #0d0d0d;
}

.pricing-card.featured .btn-pricing:hover { opacity: 0.88; }

.pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* ── Billing toggle ───────────────────────────────────────────────── */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin: 2rem 0 3rem;
}

.billing-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.billing-label.active { color: var(--text); font-weight: 700; }

.toggle-track {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.toggle-track.yearly-on {
    background: rgba(201,148,58,0.18);
    border-color: rgba(201,148,58,0.45);
}

.toggle-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: transform 0.25s, background 0.25s;
}

.toggle-track.yearly-on .toggle-thumb {
    transform: translateX(22px);
    background: var(--gold);
}

.save-pill {
    display: inline-block;
    background: rgba(201,148,58,0.15);
    border: 1px solid rgba(201,148,58,0.3);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    margin-left: 0.3rem;
    vertical-align: middle;
}

.price-yearly-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    min-height: 1.1em;
}

/* ── About ────────────────────────────────────────────────────────── */
.about-section {
    padding: 100px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

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

.about-avatar { position: relative; }

.avatar-frame {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    border: 1px solid rgba(201,148,58,0.25);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(201,148,58,0.07);
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(201,148,58,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.about-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    color: var(--text-sub);
}

.about-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-quote {
    margin: 1.75rem 0;
    padding: 1.1rem 1.4rem;
    border-left: 3px solid var(--gold);
    background: var(--gold-dim);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    font-weight: 500;
    line-height: 1.6;
}

.tobacco-fav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--gold-dim);
    border: 1px solid var(--gold-dim2);
    border-radius: var(--radius-md);
}

.tobacco-fav-label {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.tobacco-fav-value {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

/* ── Contact ──────────────────────────────────────────────────────── */
.contact-section { padding: 100px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-claim {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.7;
    margin-top: 1.25rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.contact-detail svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.form-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 0.75rem; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    resize: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea { height: 110px; }

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: #0d0d0d;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 800;
    padding: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 0.5rem;
    letter-spacing: -0.01em;
}

.btn-submit:hover { opacity: 0.88; }
.btn-submit:active { transform: scale(0.98); }

.form-success {
    text-align: center;
    padding: 2rem;
    color: var(--green);
}

.form-success svg { margin: 0 auto 1rem; }

.form-error {
    background: rgba(224,92,92,0.1);
    border: 1px solid rgba(224,92,92,0.25);
    border-radius: var(--radius-sm);
    color: #e05c5c;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* ── Footer ───────────────────────────────────────────────────────── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.footer-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Tab button states ────────────────────────────────────────────── */
.tab-active {
    background: var(--gold) !important;
    color: #0d0d0d !important;
    border-color: var(--gold) !important;
}
.tab-inactive {
    background: transparent !important;
    color: var(--text-muted) !important;
    border-color: var(--border2) !important;
}

/* ── Scroll-to-top button ─────────────────────────────────────────── */
#scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(201,148,58,0.15);
    border: 1px solid rgba(201,148,58,0.4);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    pointer-events: none;
    backdrop-filter: blur(8px);
}
#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#scroll-top:hover { background: rgba(201,148,58,0.28); }
