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

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

    img {
        display: block;
        max-width: 100%;
    }

    ::selection {
        background: color-mix(in srgb, #b85d3f 30%, transparent);
        color: #3D2B1F;
    }

    /* ── Custom Properties ────────────────────────────── */
    :root {
        --navbar-height: 80px;
        --transition-fast: 0.2s ease;
        --transition-medium: 0.4s ease;
        --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ── Navigation ───────────────────────────────────── */
    #navbar {
        background: transparent;
        border-bottom: 1px solid transparent;
    }

    #navbar.scrolled {
        background: rgba(250, 247, 242, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom-color: rgba(61, 43, 31, 0.06);
        box-shadow: 0 1px 0 rgba(61, 43, 31, 0.04);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1.5px;
        background: #b85d3f;
        transition: width var(--transition-medium);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* ── Mobile Menu ──────────────────────────────────── */
    #mobile-menu {
        pointer-events: none;
    }

    #mobile-menu.active {
        pointer-events: all;
    }

    .mobile-link {
        position: relative;
        text-decoration: none;
        transition: color var(--transition-fast);
    }

    .mobile-link:hover {
        color: #b85d3f;
    }

    /* ── Buttons ──────────────────────────────────────── */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: #b85d3f;
        color: #fff;
        border: 2px solid #b85d3f;
        border-radius: 100px;
        padding: 0.875rem 2rem;
        font-family: 'Inter', system-ui, sans-serif;
        font-size: 0.8125rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        transition: all var(--transition-medium);
        position: relative;
        overflow: hidden;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
        opacity: 0;
        transition: opacity var(--transition-fast);
    }

    .btn-primary:hover {
        background: #a04d33;
        border-color: #a04d33;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(184, 93, 63, 0.3);
    }

    .btn-primary:hover::before {
        opacity: 1;
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: transparent;
        color: #3D2B1F;
        border: 2px solid rgba(61, 43, 31, 0.2);
        border-radius: 100px;
        padding: 0.875rem 2rem;
        font-family: 'Inter', system-ui, sans-serif;
        font-size: 0.8125rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        transition: all var(--transition-medium);
    }

    .btn-outline:hover {
        border-color: #b85d3f;
        color: #b85d3f;
        transform: translateY(-2px);
    }

    .btn-white {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: #fff;
        color: #b85d3f;
        border: 2px solid #fff;
        border-radius: 100px;
        padding: 1rem 2.5rem;
        font-family: 'Inter', system-ui, sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        transition: all var(--transition-medium);
    }

    .btn-white:hover {
        background: transparent;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    /* ── Section Labels ───────────────────────────────── */
    .section-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #b85d3f;
        position: relative;
        padding-left: 2.5rem;
    }

    .section-label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1.75rem;
        height: 1.5px;
        background: #b85d3f;
    }

    /* ── Form Inputs ──────────────────────────────────── */
    .input-field {
        background: #FAF7F2;
        border: 1.5px solid rgba(61, 43, 31, 0.1);
        border-radius: 12px;
        padding: 0.875rem 1.125rem;
        font-family: 'Inter', system-ui, sans-serif;
        font-size: 0.9375rem;
        color: #3D2B1F;
        transition: all var(--transition-fast);
        outline: none;
        width: 100%;
    }

    .input-field::placeholder {
        color: rgba(61, 43, 31, 0.3);
    }

    .input-field:hover {
        border-color: rgba(184, 93, 63, 0.3);
    }

    .input-field:focus {
        border-color: #b85d3f;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(184, 93, 63, 0.08);
    }

    /* ── Hero Animations ──────────────────────────────── */
    .hero-subtitle {
        animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        opacity: 0;
    }

    .hero-headline {
        animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
        opacity: 0;
    }

    .hero-body {
        animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
        opacity: 0;
    }

    .hero-ctas {
        animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
        opacity: 0;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ── Scroll Indicator ─────────────────────────────── */
    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: float 2.5s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }

    /* ── Reveal Animations ────────────────────────────── */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-up {
        transform: translateY(40px);
    }

    .reveal-left {
        transform: translateX(-40px);
    }

    .reveal-right {
        transform: translateX(40px);
    }

    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* ── Benefit Cards ────────────────────────────────── */
    .benefit-card {
        transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    }

    .benefit-card:hover {
        transform: translateY(-6px);
    }

    /* ── Process Steps ────────────────────────────────── */
    .process-step {
        transition: all var(--transition-fast);
    }

    .process-step:hover {
        padding-left: 0.5rem;
    }

    .process-step:hover span {
        color: #e8b4a4;
    }

    /* ── Decorative Divider ───────────────────────────── */
    .section-divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #b85d3f, #e8b4a4);
        border-radius: 2px;
    }

    /* ── Responsive ───────────────────────────────────── */
    @media (max-width: 767px) {
        .font-serif.text-5xl,
        .font-serif.text-6xl {
            font-size: 2.5rem;
            line-height: 1.1;
        }

        .font-serif.text-4xl {
            font-size: 2rem;
        }

        .process-step {
            gap: 1.25rem;
        }

        .process-step span {
            font-size: 2rem !important;
        }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .font-serif.text-5xl {
            font-size: 3.5rem;
        }
    }

    /* ── Focus Visible ────────────────────────────────── */
    *:focus-visible {
        outline: 2px solid #b85d3f;
        outline-offset: 2px;
    }

    /* ── Print ─────────────────────────────────────────── */
    @media print {
        #navbar, .scroll-indicator, #mobile-menu {
            display: none;
        }
        
        body {
            background: #fff;
            color: #000;
        }
    }
