/* ═══════════════════════════════════════════════════════════════
   VERONIKA MAYNARD — CONTACT PAGE STYLESHEET
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --bg-primary: #0A0F1C;
    --bg-secondary: #0F172A;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);
    --bg-card-border: rgba(255,255,255,0.06);
    --gold: #C8A96A;
    --gold-light: #D4BA82;
    --gold-glow: rgba(200, 169, 106, 0.15);
    --gold-glow-strong: rgba(200, 169, 106, 0.3);
    --sage: #7FA99B;
    --text-primary: #FFFFFF;
    --text-secondary: #AAB4C5;
    --text-muted: #6B7A90;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
    --header-height: 80px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-weight: 300; color: var(--text-primary); background: var(--bg-primary); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-smooth); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; position: relative; }
.text-gold { color: var(--gold); }
.hide-mobile { display: inline; }

.anim-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.anim-reveal.revealed { opacity: 1; transform: translateY(0); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; font-family: var(--font-heading); font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: all 0.4s var(--ease-smooth); border: none; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--bg-primary); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow-strong); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--bg-card-border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); transition: all 0.5s var(--ease-smooth); background: transparent; }
.header.scrolled { background: rgba(10, 15, 28, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--bg-card-border); }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-heading); font-size: 18px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-primary); }
.logo-surname { font-family: var(--font-heading); font-size: 10px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); }
.nav { display: flex; align-items: center; gap: 40px; }
.nav-link { font-family: var(--font-heading); font-size: 13px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary); position: relative; padding: 4px 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease-out); }
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-cta { font-family: var(--font-heading); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 28px; border: 1px solid var(--gold); color: var(--gold); border-radius: 3px; transition: all 0.4s var(--ease-smooth); }
.header-cta:hover { background: var(--gold); color: var(--bg-primary); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text-primary); transition: all 0.3s var(--ease-smooth); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 15, 28, 0.97); backdrop-filter: blur(30px); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease-smooth); }
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav-content { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-nav-link { font-family: var(--font-heading); font-size: 28px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; color: var(--text-secondary); transition: color 0.3s var(--ease-smooth); }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }
.mobile-nav-cta { margin-top: 20px; }

/* PAGE HERO */
.page-hero { position: relative; padding: 200px 0 100px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--gold-glow); filter: blur(150px); top: -20%; right: 10%; opacity: 0.3; animation: glowFloat 12s ease-in-out infinite; }
.page-hero-glow-2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(127, 169, 155, 0.1); filter: blur(100px); bottom: 0; left: 20%; opacity: 0.2; animation: glowFloat2 15s ease-in-out infinite; }
@keyframes glowFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 20px) scale(1.1); } }
@keyframes glowFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -20px); } }
.page-hero-grain { 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); opacity: 0.4; pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { font-family: var(--font-heading); font-size: 64px; font-weight: 600; line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; }
.page-hero-sub { font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--text-secondary); max-width: 640px; }

.section-label { font-family: var(--font-heading); font-size: 12px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }

/* ═══════════════════════════════════
   CONTACT LAYOUT
   ═══════════════════════════════════ */
.section-contact {
    background: var(--bg-secondary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* LEFT INFO */
.contact-info-block {
    margin-bottom: 48px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bg-card-border);
}

.contact-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    transition: all 0.4s var(--ease-smooth);
}

.contact-step:hover {
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.contact-step-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: rgba(200, 169, 106, 0.15);
    line-height: 1;
    min-width: 40px;
}

.contact-step-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-step-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-direct-item svg {
    color: var(--gold);
    min-width: 20px;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-smooth);
}

.social-link:hover {
    background: var(--bg-card-hover);
    color: var(--gold);
    border-color: rgba(200, 169, 106, 0.2);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════
   FORM
   ═══════════════════════════════════ */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: 56px 48px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 106, 0.3), transparent);
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--bg-card-border);
    border-radius: 8px;
    outline: none;
    transition: all 0.4s var(--ease-smooth);
}

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

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(200, 169, 106, 0.3);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    margin-top: 8px;
}

.form-disclaimer {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* SUCCESS STATE */
.form-success {
    padding: 80px 48px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    text-align: center;
}

.success-icon {
    color: var(--sage);
    margin-bottom: 24px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.success-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 auto 32px;
}

/* FOOTER */
.footer { background: var(--bg-secondary); padding: 80px 0 40px; border-top: 1px solid var(--bg-card-border); }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 60px; }
.footer-logo { display: flex; flex-direction: column; line-height: 1.1; margin-bottom: 20px; }
.footer-philosophy { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-muted); max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col-title { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-primary); margin-bottom: 20px; }
.footer-link { display: block; font-size: 14px; font-weight: 300; color: var(--text-muted); margin-bottom: 12px; transition: color 0.3s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--bg-card-border); }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-link-sm { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-link-sm:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav { display: none; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .page-hero-title { font-size: 48px; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .page-hero { padding: 160px 0 80px; }
    .page-hero-title { font-size: 36px; }
    .hide-mobile { display: none; }
    .contact-form { padding: 36px 24px; }
    .form-title { font-size: 22px; }
    .footer-links { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .page-hero-title { font-size: 28px; }
}
