:root{--ink:#0f0e0c;--cream:#faf7f2;--warm:#f0ebe0;--gold:#c9a84c;--text:#2c2a26;--muted:#7a7268;--border:#ddd5c4}
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
    body{font-family:'DM Sans',sans-serif;background:var(--cream);color:var(--text)}
    nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(250,247,242,.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);padding:0 5%;display:flex;align-items:center;justify-content:space-between;height:68px}
    .nav-logo{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:900;color:var(--ink);text-decoration:none}
    .nav-logo span{color:var(--gold)}
    .nav-links{display:flex;gap:2rem;list-style:none}
    .nav-links a{text-decoration:none;color:var(--text);font-size:.9rem;font-weight:500;transition:color .2s}
    .nav-links a:hover{color:var(--gold)}
    .nav-cta{background:var(--ink);color:var(--cream)!important;padding:.5rem 1.2rem;border-radius:4px}
    .hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
    .hamburger span{display:block;width:24px;height:2px;background:var(--ink)}
    .mobile-menu{display:none;position:fixed;top:68px;left:0;right:0;background:var(--cream);border-bottom:1px solid var(--border);padding:1.5rem 5%;z-index:99;flex-direction:column;gap:1rem}
    .mobile-menu.open{display:flex}
    .mobile-menu a{text-decoration:none;color:var(--text);font-weight:500;padding:.5rem 0;border-bottom:1px solid var(--border)}

    .page-header{background:var(--warm);padding:120px 5% 60px;border-bottom:1px solid var(--border)}
    .page-header .tag{display:inline-block;font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem}
    .page-header h1{font-family:'Playfair Display',serif;font-size:clamp(2rem,4vw,3rem);font-weight:900;color:var(--ink)}
    .page-header p{color:var(--muted);margin-top:.8rem;font-size:1rem;max-width:500px}

    .contact-layout{display:grid;grid-template-columns:1fr 1.4fr;gap:4rem;max-width:1100px;margin:0 auto;padding:5rem 5%}

    .contact-info h2{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:700;color:var(--ink);margin-bottom:1rem}
    .contact-info p{color:var(--muted);line-height:1.7;margin-bottom:2rem;font-size:.95rem}
    .info-item{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.5rem}
    .info-icon{width:44px;height:44px;min-width:44px;border-radius:10px;background:var(--warm);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:1.2rem}
    .info-label{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--gold);margin-bottom:.2rem}
    .info-value{font-size:.95rem;color:var(--text);font-weight:500}
    .info-value a{color:var(--text);text-decoration:none}
    .info-value a:hover{color:var(--gold)}

    .faq-section{margin-top:3rem}
    .faq-section h3{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:700;color:var(--ink);margin-bottom:1.2rem}
    .faq-item{border-bottom:1px solid var(--border);padding:.8rem 0;cursor:pointer}
    .faq-q{font-weight:600;font-size:.9rem;display:flex;justify-content:space-between;align-items:center;gap:1rem}
    .faq-q .arrow{font-size:1.2rem;transition:transform .2s;color:var(--gold)}
    .faq-a{font-size:.88rem;color:var(--muted);line-height:1.6;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s}
    .faq-item.open .faq-a{max-height:200px;padding-top:.6rem}
    .faq-item.open .arrow{transform:rotate(45deg)}

    .contact-form{background:white;border:1px solid var(--border);border-radius:16px;padding:2.5rem}
    .contact-form h2{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:700;color:var(--ink);margin-bottom:.5rem}
    .contact-form p{color:var(--muted);font-size:.9rem;margin-bottom:2rem}
    .form-group{margin-bottom:1.2rem}
    .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
    label{display:block;font-size:.82rem;font-weight:600;color:var(--text);margin-bottom:.4rem}
    input,select,textarea{width:100%;padding:.75rem 1rem;border:1.5px solid var(--border);border-radius:8px;font-family:'DM Sans',sans-serif;font-size:.9rem;color:var(--text);background:var(--cream);outline:none;transition:border-color .2s}
    input:focus,select:focus,textarea:focus{border-color:var(--gold);background:white}
    textarea{resize:vertical;min-height:120px}
    select{cursor:pointer}
    .btn-submit{width:100%;padding:1rem;background:var(--ink);color:var(--cream);border:none;border-radius:8px;font-family:'DM Sans',sans-serif;font-size:1rem;font-weight:700;cursor:pointer;transition:background .2s,transform .2s;margin-top:.5rem}
    .btn-submit:hover{background:var(--gold);color:var(--ink);transform:translateY(-1px)}
    .form-note{font-size:.78rem;color:var(--muted);text-align:center;margin-top:.8rem}
    .success-msg{display:none;background:#e8f5e9;border:1px solid #a5d6a7;border-radius:8px;padding:1.5rem;text-align:center;margin-top:1rem}
    .success-msg .icon{font-size:2rem;margin-bottom:.5rem}
    .success-msg h3{font-weight:700;color:#2e7d32;margin-bottom:.3rem}
    .success-msg p{color:#388e3c;font-size:.9rem}

    footer{background:var(--ink);color:var(--cream);padding:60px 5% 30px}
    .footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;display:flex;align-items:center;justify-content:space-between;font-size:.8rem;color:rgba(250,247,242,.4);flex-wrap:wrap;gap:1rem}
    .footer-bottom a{color:rgba(250,247,242,.6);text-decoration:none}
    .secure-badge{display:flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.05);padding:.4rem .8rem;border-radius:4px;border:1px solid rgba(255,255,255,.1);font-size:.78rem;color:rgba(250,247,242,.6)}

    @media(max-width:900px){.contact-layout{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}.nav-links{display:none}.hamburger{display:flex}}
