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

        :root {
            --noir: #080c10;
            --deep: #0d1520;
            --mid: #162033;
            --gold: #c9a96e;
            --gold-light: #e8c88a;
            --gold-dim: rgba(201, 169, 110, 0.15);
            --cream: #f5efe6;
            --smoke: #b0b8c4;
            --white: #ffffff;
            --serif: 'Cormorant Garamond', Georgia, serif;
            --sans: 'Jost', sans-serif;
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--sans);
            background: var(--white);
            color: #2a2a2a;
            overflow-x: hidden;
        }

        .cursor-dot {
            width: 8px; height: 8px;
            background: var(--gold);
            border-radius: 50%;
            position: fixed; top: 0; left: 0;
            pointer-events: none; z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.08s var(--ease);
        }
        .cursor-ring {
            width: 36px; height: 36px;
            border: 1px solid rgba(201,169,110,0.5);
            border-radius: 50%;
            position: fixed; top: 0; left: 0;
            pointer-events: none; z-index: 9998;
            transform: translate(-50%, -50%);
            transition: transform 0.18s var(--ease), width 0.2s, height 0.2s, opacity 0.2s;
        }
        body:hover .cursor-ring { opacity: 1; }

        header {
            position: fixed; width: 100%; top: 0; z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s var(--ease);
        }
        header.scrolled {
            background: rgba(8, 12, 16, 0.96);
            backdrop-filter: blur(12px);
            padding: 14px 0;
            border-bottom: 1px solid rgba(201,169,110,0.15);
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
        nav { display: flex; justify-content: space-between; align-items: center; }

        .logo a { text-decoration: none; }
        .logo-name {
            font-family: var(--serif);
            font-size: 28px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 6px;
            text-transform: uppercase;
            display: block;
            line-height: 1;
        }
        .logo-sub {
            font-size: 9px;
            color: var(--gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
        }

        .nav-links { display: flex; gap: 36px; align-items: center; }
        .nav-links a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute; bottom: -4px; left: 0;
            width: 0; height: 1px;
            background: var(--gold);
            transition: width 0.3s var(--ease);
        }
        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            border: 1px solid var(--gold) !important;
            color: var(--gold) !important;
            padding: 10px 24px;
            font-size: 10px !important;
            letter-spacing: 2px !important;
            transition: all 0.3s !important;
        }
        .nav-cta::after { display: none !important; }
        .nav-cta:hover {
            background: var(--gold) !important;
            color: var(--noir) !important;
        }

        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
        .hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

        .hero {
            min-height: 100vh;
            background: var(--deep);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(115deg, var(--deep) 55%, rgba(20, 35, 55, 0.6) 55%);
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            opacity: 0.6;
            z-index: 1;
            pointer-events: none;
        }

        .hero-bg-img {
            position: absolute;
            right: 0; top: 0;
            width: 50%; height: 100%;
            object-fit: cover;
            object-position: top center;
            opacity: 0.35;
            z-index: 0;
        }

        .hero-line {
            position: absolute;
            left: 52%;
            top: 0; bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
            z-index: 2;
            opacity: 0.4;
        }

        .hero .container {
            position: relative; z-index: 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 100px;
        }

        .hero-eyebrow {
            display: flex; align-items: center; gap: 14px;
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 0.8s var(--ease) 0.3s forwards;
        }
        .hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
        .hero-eyebrow span {
            color: var(--gold); font-size: 11px;
            letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
        }

        .hero-title {
            font-family: var(--serif);
            font-size: clamp(46px, 5.5vw, 76px);
            line-height: 1.05;
            color: var(--white);
            font-weight: 300;
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 0.9s var(--ease) 0.5s forwards;
        }
        .hero-title em { font-style: italic; color: var(--gold-light); }

        .hero-sub {
            font-size: 15px; font-weight: 300;
            color: var(--smoke); line-height: 1.8;
            max-width: 460px;
            margin-bottom: 50px;
            opacity: 0;
            animation: fadeUp 0.9s var(--ease) 0.7s forwards;
        }

        .hero-actions {
            display: flex; gap: 20px; align-items: center;
            opacity: 0;
            animation: fadeUp 0.9s var(--ease) 0.9s forwards;
        }

        .btn-primary {
            display: inline-flex; align-items: center; gap: 12px;
            background: var(--gold);
            color: var(--noir);
            padding: 16px 32px;
            text-decoration: none;
            font-size: 11px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 2px;
            transition: all 0.3s var(--ease);
            position: relative; overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute; inset: 0;
            background: var(--gold-light);
            transform: translateX(-100%);
            transition: transform 0.4s var(--ease);
        }
        .btn-primary:hover::before { transform: translateX(0); }
        .btn-primary span, .btn-primary i { position: relative; z-index: 1; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,169,110,0.35); }

        .btn-ghost {
            display: inline-flex; align-items: center; gap: 10px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 12px; font-weight: 400;
            text-transform: uppercase; letter-spacing: 1.5px;
            transition: color 0.3s;
        }
        .btn-ghost i { font-size: 18px; color: var(--gold); transition: transform 0.3s; }
        .btn-ghost:hover { color: var(--white); }
        .btn-ghost:hover i { transform: translateX(4px); }

        .hero-right {
            position: relative;
            display: flex; justify-content: center; align-items: flex-end;
        }

        .hero-photo-wrap {
            width: 380px;
            height: 520px;
            position: relative;
            opacity: 0;
            animation: fadeIn 1.1s var(--ease) 0.6s forwards;
        }
        .hero-photo-wrap::before {
            content: '';
            position: absolute; inset: -2px;
            background: linear-gradient(135deg, var(--gold), transparent 50%);
            z-index: 0;
        }
        .hero-photo-wrap img {
            position: relative; z-index: 1;
            width: 100%; height: 100%;
            object-fit: cover; object-position: top;
            display: block;
        }

        /* floating badge */
        .hero-badge {
            position: absolute;
            bottom: 40px; left: -40px;
            background: var(--noir);
            border: 1px solid rgba(201,169,110,0.3);
            padding: 20px 24px;
            z-index: 10;
            opacity: 0;
            animation: fadeUp 0.8s var(--ease) 1.2s forwards;
        }
        .hero-badge-num {
            font-family: var(--serif);
            font-size: 42px; font-weight: 600;
            color: var(--gold); line-height: 1;
        }
        .hero-badge-text { font-size: 10px; color: var(--smoke); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

        .hero-stats {
            position: absolute;
            top: 30px; right: -20px;
            display: flex; flex-direction: column; gap: 16px;
            z-index: 10;
            opacity: 0;
            animation: fadeIn 0.8s var(--ease) 1.4s forwards;
        }
        .stat-pill {
            background: rgba(8,12,16,0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201,169,110,0.2);
            padding: 12px 16px;
            text-align: center;
        }
        .stat-pill strong {
            display: block;
            font-family: var(--serif);
            font-size: 26px; font-weight: 600;
            color: var(--gold);
        }
        .stat-pill small { font-size: 9px; color: var(--smoke); letter-spacing: 1.5px; text-transform: uppercase; }

        .about {
            padding: 120px 0;
            background: var(--white);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: center;
        }

        .about-img-side { position: relative; }
        .about-img-main {
            width: 100%; height: 580px;
            object-fit: cover; object-position: top;
            display: block;
        }
        .about-img-accent {
            position: absolute;
            bottom: -30px; right: -30px;
            width: 200px; height: 200px;
            border: 8px solid var(--cream);
            z-index: -1;
        }
        .about-gold-bar {
            position: absolute;
            top: 40px; left: -12px;
            width: 4px; height: 80px;
            background: var(--gold);
        }

        .about-tag {
            display: inline-flex; align-items: center; gap: 12px;
            margin-bottom: 20px;
        }
        .about-tag-line { width: 30px; height: 1px; background: var(--gold); }
        .about-tag span { font-size: 11px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }

        .about h3 {
            font-family: var(--serif);
            font-size: clamp(32px, 3.5vw, 50px);
            font-weight: 300;
            color: var(--deep);
            line-height: 1.2;
            margin-bottom: 24px;
        }
        .about h3 em { font-style: italic; color: var(--gold); }

        .about p {
            font-size: 15px; font-weight: 300;
            color: #555; line-height: 1.9;
            margin-bottom: 20px;
        }

        .about-credentials {
            margin-top: 36px;
            display: flex; flex-direction: column; gap: 14px;
        }
        .cred-item {
            display: flex; align-items: center; gap: 14px;
            font-size: 13px; color: #444; font-weight: 400;
        }
        .cred-item i { color: var(--gold); font-size: 14px; width: 16px; }

        .about-numbers {
            margin-top: 48px;
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: #e8e0d4;
            border: 1px solid #e8e0d4;
        }
        .about-num {
            background: var(--white);
            padding: 24px 20px;
            text-align: center;
        }
        .about-num strong {
            font-family: var(--serif);
            font-size: 36px; font-weight: 600;
            color: var(--deep); display: block; line-height: 1;
        }
        .about-num span { font-size: 11px; color: #888; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; display: block; }

        .services {
            padding: 120px 0;
            background: var(--deep);
            position: relative;
            overflow: hidden;
        }
        .services-bg-text {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--serif);
            font-size: 220px; font-weight: 700;
            color: rgba(255,255,255,0.02);
            white-space: nowrap; pointer-events: none;
            letter-spacing: -10px;
        }

        .section-label {
            text-align: center; margin-bottom: 70px;
        }
        .section-label-tag {
            display: inline-flex; align-items: center; gap: 14px;
            margin-bottom: 16px;
        }
        .section-label-tag::before, .section-label-tag::after {
            content: ''; display: block;
            width: 40px; height: 1px; background: var(--gold);
        }
        .section-label-tag span { font-size: 10px; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; }
        .section-label h3 {
            font-family: var(--serif);
            font-size: clamp(30px, 3vw, 46px);
            font-weight: 300; color: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(201,169,110,0.15);
            border: 1px solid rgba(201,169,110,0.15);
        }
        .service-card {
            background: var(--deep);
            padding: 50px 40px;
            transition: background 0.4s var(--ease);
            position: relative; overflow: hidden;
        }
        .service-card::after {
            content: '';
            position: absolute; bottom: 0; left: 0;
            width: 0; height: 2px; background: var(--gold);
            transition: width 0.4s var(--ease);
        }
        .service-card:hover { background: rgba(201,169,110,0.06); }
        .service-card:hover::after { width: 100%; }

        .service-icon {
            width: 56px; height: 56px;
            border: 1px solid rgba(201,169,110,0.3);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 28px;
            transition: border-color 0.3s, background 0.3s;
        }
        .service-card:hover .service-icon { border-color: var(--gold); background: var(--gold-dim); }
        .service-icon i { font-size: 20px; color: var(--gold); }

        .service-card h4 {
            font-family: var(--serif);
            font-size: 22px; font-weight: 400;
            color: var(--white); margin-bottom: 14px;
        }
        .service-card p { font-size: 13px; color: rgba(176,184,196,0.85); line-height: 1.85; }

        .service-card-arrow {
            display: inline-flex; align-items: center; gap: 8px;
            margin-top: 28px; font-size: 11px;
            color: var(--gold); text-decoration: none;
            letter-spacing: 2px; text-transform: uppercase;
            transition: gap 0.3s;
        }
        .service-card-arrow:hover { gap: 14px; }

        .process {
            padding: 120px 0;
            background: var(--cream);
        }
        .process .section-label h3 { color: var(--deep); }
        .process .section-label-tag span { color: var(--gold); }

        .process-steps {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute; top: 36px; left: 12.5%; right: 12.5%;
            height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,169,110,0.2));
            z-index: 0;
        }

        .step {
            padding: 0 20px;
            text-align: center;
            position: relative; z-index: 1;
        }
        .step-num {
            width: 72px; height: 72px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 28px;
            font-family: var(--serif); font-size: 24px;
            color: var(--gold);
            background: var(--cream);
            transition: all 0.3s;
        }
        .step:hover .step-num {
            background: var(--gold); color: var(--white);
        }
        .step h5 {
            font-size: 14px; font-weight: 600;
            color: var(--deep); margin-bottom: 10px;
            text-transform: uppercase; letter-spacing: 1px;
        }
        .step p { font-size: 13px; color: #777; line-height: 1.75; }

        .testimonials {
            padding: 120px 0;
            background: var(--white);
        }
        .testimonials .section-label h3 { color: var(--deep); }

        .testimonials-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .testimonial-card {
            border: 1px solid #e8e0d4;
            padding: 40px;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

        .quote-icon {
            font-family: var(--serif);
            font-size: 80px; line-height: 0.7;
            color: var(--gold); opacity: 0.3;
            display: block; margin-bottom: 20px;
        }
        .testimonial-text {
            font-size: 14px; color: #555; line-height: 1.85;
            font-style: italic; font-family: var(--serif); font-size: 16px;
            margin-bottom: 30px;
        }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .author-avatar {
            width: 46px; height: 46px; border-radius: 50%;
            background: var(--cream);
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; color: var(--gold); font-family: var(--serif); font-weight: 600;
            border: 1px solid #e8e0d4;
        }
        .author-name { font-weight: 600; font-size: 13px; color: var(--deep); display: block; }
        .author-role { font-size: 11px; color: #999; letter-spacing: 1px; }

        .stars { display: flex; gap: 3px; margin-bottom: 20px; }
        .stars i { color: var(--gold); font-size: 12px; }

        .cta-band {
            background: var(--noir);
            padding: 100px 0;
            position: relative; overflow: hidden;
        }
        .cta-band::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 60%);
        }
        .cta-inner {
            position: relative; z-index: 1;
            display: grid; grid-template-columns: 1fr auto;
            gap: 60px; align-items: center;
        }
        .cta-heading {
            font-family: var(--serif);
            font-size: clamp(30px, 3.5vw, 52px);
            font-weight: 300; color: var(--white); line-height: 1.2;
        }
        .cta-heading em { font-style: italic; color: var(--gold); }
        .cta-sub { font-size: 14px; color: var(--smoke); margin-top: 12px; font-weight: 300; }
        .cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
        .cta-detail {
            display: flex; align-items: center; gap: 10px;
            font-size: 12px; color: var(--smoke); font-weight: 400;
        }
        .cta-detail i { color: var(--gold); font-size: 14px; }

        .contact {
            padding: 120px 0;
            background: var(--white);
        }
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1.4fr;
            gap: 80px;
        }
        .contact-info h3 {
            font-family: var(--serif);
            font-size: 40px; font-weight: 300;
            color: var(--deep); line-height: 1.2;
            margin-bottom: 20px;
        }
        .contact-info h3 em { font-style: italic; color: var(--gold); }
        .contact-info p { font-size: 14px; color: #777; line-height: 1.8; margin-bottom: 40px; }

        .contact-details { display: flex; flex-direction: column; gap: 22px; }
        .contact-item {
            display: flex; gap: 18px; align-items: flex-start;
        }
        .contact-item-icon {
            width: 44px; height: 44px; flex-shrink: 0;
            border: 1px solid #e8e0d4;
            display: flex; align-items: center; justify-content: center;
        }
        .contact-item-icon i { color: var(--gold); font-size: 16px; }
        .contact-item-text strong { font-size: 12px; color: var(--deep); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 4px; }
        .contact-item-text span { font-size: 14px; color: #666; }

        /* Form */
        .contact-form-wrap { background: var(--deep); padding: 56px; }
        .contact-form-wrap h4 {
            font-family: var(--serif); font-size: 28px; font-weight: 300;
            color: var(--white); margin-bottom: 32px;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { font-size: 10px; color: var(--smoke); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 8px; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white); font-family: var(--sans);
            font-size: 14px; font-weight: 300;
            padding: 14px 16px;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--gold);
        }
        .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
        .form-group select { cursor: pointer; }
        .form-group select option { background: var(--deep); }
        .form-group textarea { resize: vertical; min-height: 110px; }

        .form-submit {
            width: 100%;
            background: var(--gold); color: var(--noir);
            border: none; font-family: var(--sans);
            font-size: 11px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 2px;
            padding: 18px;
            cursor: pointer;
            transition: all 0.3s var(--ease);
            position: relative; overflow: hidden;
        }
        .form-submit::before {
            content: '';
            position: absolute; inset: 0;
            background: var(--gold-light);
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.4s var(--ease);
        }
        .form-submit span { position: relative; z-index: 1; }
        .form-submit:hover::before { transform: scaleX(1); }
        .form-submit:hover { box-shadow: 0 8px 24px rgba(201,169,110,0.4); }

        footer {
            background: var(--noir);
            border-top: 1px solid rgba(201,169,110,0.15);
        }
        .footer-top {
            padding: 70px 0;
            display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 50px;
        }
        .footer-brand p { font-size: 13px; color: #666; line-height: 1.8; margin-top: 20px; }
        .footer-social { display: flex; gap: 12px; margin-top: 28px; }
        .footer-social a {
            width: 36px; height: 36px;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            color: #666; font-size: 14px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .footer-social a:hover { border-color: var(--gold); color: var(--gold); }

        .footer-col h5 {
            font-size: 10px; color: var(--smoke); letter-spacing: 3px;
            text-transform: uppercase; margin-bottom: 20px;
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col ul a {
            text-decoration: none; font-size: 13px; color: #666;
            transition: color 0.3s;
        }
        .footer-col ul a:hover { color: var(--gold); }
        .footer-col .oab {
            display: inline-block; border: 1px solid rgba(201,169,110,0.3);
            padding: 10px 16px; font-size: 11px; color: var(--gold);
            letter-spacing: 2px; margin-top: 16px;
        }

        .footer-bottom {
            padding: 24px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex; justify-content: space-between; align-items: center;
        }
        .footer-bottom p { font-size: 12px; color: #444; }
        .footer-bottom a { color: #444; text-decoration: none; transition: color 0.3s; }
        .footer-bottom a:hover { color: var(--gold); }

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

        .reveal {
            opacity: 0; transform: translateY(40px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .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; }

        @media (max-width: 1024px) {
            .hero .container { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
            .hero-sub, .hero-eyebrow { margin-left: auto; margin-right: auto; }
            .hero-actions { justify-content: center; }
            .hero-right { display: none; }
            .about-grid { grid-template-columns: 1fr; }
            .about-img-side { display: none; }
            .services-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
            .process-steps::before { display: none; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .cta-inner { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero-title { font-size: 40px; }
            .form-row { grid-template-columns: 1fr; }
            .about-numbers { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .container { padding: 0 24px; }
            .contact-form-wrap { padding: 36px 24px; }
        }

        .mobile-menu {
            position: fixed; inset: 0;
            background: var(--noir);
            z-index: 2000;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            gap: 32px;
            transform: translateX(100%);
            transition: transform 0.4s var(--ease);
        }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu a {
            text-decoration: none; color: var(--white);
            font-family: var(--serif); font-size: 36px; font-weight: 300;
            transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--gold); }
        .mobile-close {
            position: absolute; top: 28px; right: 28px;
            cursor: pointer; color: var(--smoke); font-size: 24px;
            background: none; border: none;
        }

        .scroll-progress {
            position: fixed; top: 0; left: 0;
            height: 2px;
            background: var(--gold);
            z-index: 9999;
            width: 0%;
            transition: width 0.1s;
        }

        /* ================================================
   CSS ADICIONAL — cole no seu style.css existente
   ================================================ */

/* ── Bloco de Vantagens (seção Serviços) ── */
.vantagens-wrap {
    margin-top: 64px;
    padding: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(var(--gold-rgb, 180,142,60), 0.18);
    border-radius: 4px;
}

.vantagens-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.vantagens-title h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 400;
    color: var(--text-primary, #f0ebe0);
    margin: 0;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.vantagem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vantagem-item > i {
    font-size: 1.3rem;
    color: var(--gold, #b48e3c);
    margin-top: 3px;
    flex-shrink: 0;
}

.vantagem-item div strong {
    display: block;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary, #f0ebe0);
    margin-bottom: 6px;
}

.vantagem-item div p {
    font-size: 0.88rem;
    color: var(--text-muted, #9e9585);
    line-height: 1.65;
    margin: 0;
}

.contact-item-text span {
    display: block;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.contact-social-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.contact-social-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.contact-social-btn.email {
    background: var(--gold, #b48e3c);
    color: #fff;
}

@media (max-width: 768px) {
    .vantagens-wrap {
        padding: 28px 20px;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}