/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; }

/* ── Custom Properties ── */
:root {
    --gold: #d4a853;
    --gold-light: #e8c476;
    --emerald: #064e3b;
    --cream: #faf8f4;
}

/* ── Gold Button ── */
.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #d4a853 0%, #b8923f 100%);
    color: #0a1210;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}
.gold-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e8c476 0%, #d4a853 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.gold-btn:hover::before { opacity: 1; }
.gold-btn span { position: relative; z-index: 1; }
.gold-btn:active { transform: translateY(0); }

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    padding-left: 2rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1px;
    background: var(--gold);
}

/* ── Section Titles ── */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
}

/* ── Section Descriptions ── */
.section-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.55);
    font-weight: 300;
}

/* ── Hero Animations ── */
.hero-eyebrow {
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero-subtitle {
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}
.hero-ctas {
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}
.hero-trust {
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ── Service Cards ── */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Process Steps ── */
.process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navbar ── */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#navbar.scrolled {
    background: rgba(6, 12, 10, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(212, 168, 83, 0.08);
}

/* ── Mobile Menu ── */
.menu-line { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
#menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
#menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}
#menu-btn.active .menu-line:nth-child(3) {
    width: 1.25rem;
    transform: rotate(-45deg) translate(4px, -4px);
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav-link {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.4s ease;
}
#mobile-menu.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}
#mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
#mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

/* ── Form Styles ── */
input:focus, select:focus, textarea:focus {
    outline: none;
}
select option {
    background: #0a1210;
    color: #f5f0e8;
}

/* ── Selection ── */
::selection {
    background: rgba(212, 168, 83, 0.3);
    color: #faf8f4;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a1210; }
::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 83, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(212, 168, 83, 0.5); }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
