/* ═══════════════════════════════════════════════════════════════
   VERONIKA MAYNARD — SERVICES 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;
    --sage-glow: rgba(127, 169, 155, 0.15);
    --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;
    --section-padding: 140px;
    --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: var(--section-padding) 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); }
.btn-lg { padding: 20px 48px; font-size: 15px; }

/* 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 120px; 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: 400px; height: 400px; border-radius: 50%; background: var(--sage-glow); filter: blur(120px); bottom: -10%; left: 5%; 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 SHARED */
.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; }
.section-title { font-family: var(--font-heading); font-size: 48px; font-weight: 600; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 24px; }
.section-subtitle { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--text-secondary); max-width: 600px; margin-bottom: 60px; }

/* PHILOSOPHY BANNER */
.section-philosophy-banner {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.philosophy-banner {
    padding: 60px 80px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.philosophy-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow-strong), transparent);
}

.philosophy-banner-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
}

.philosophy-banner-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
}

/* SERVICE DETAIL CARDS */
.section-services-detail {
    padding-top: 80px;
}

.service-detail-card {
    padding: 60px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    margin-bottom: 32px;
    transition: all 0.5s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 106, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-detail-card:hover {
    border-color: rgba(200, 169, 106, 0.1);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--bg-card-border);
}

.service-detail-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: rgba(200, 169, 106, 0.08);
    line-height: 1;
    min-width: 80px;
}

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

.service-detail-tagline {
    font-size: 15px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.service-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.service-detail-desc p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.service-features-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.feature-check {
    color: var(--gold);
    font-size: 8px;
    min-width: 16px;
}

.service-detail-footer {
    display: flex;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--bg-card-border);
}

/* PROCESS SECTION */
.section-process {
    background: var(--bg-secondary);
    overflow: hidden;
}

.process-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gold-glow);
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    position: relative;
    padding: 40px 24px 40px 0;
    text-align: left;
}

.process-step-line {
    position: absolute;
    top: 88px;
    left: 0;
    right: -32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(200, 169, 106, 0.1));
}

.process-step:last-child .process-step-line { display: none; }

.process-step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.process-step-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: var(--gold-glow);
    z-index: -1;
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: rgba(200, 169, 106, 0.08);
    line-height: 1;
    margin-bottom: 12px;
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* FINAL CTA */
.section-final-cta { padding: 160px 0; position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary)); }
.final-cta-glow { position: absolute; width: 600px; height: 400px; border-radius: 50%; background: var(--gold-glow); filter: blur(120px); bottom: -20%; left: 50%; transform: translateX(-50%); opacity: 0.3; }
.final-cta-content { position: relative; z-index: 1; text-align: center; }
.final-cta-title { font-family: var(--font-heading); font-size: 52px; font-weight: 600; line-height: 1.2; margin-bottom: 24px; }
.final-cta-sub { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--text-secondary); margin-bottom: 48px; }

/* 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) {
    :root { --section-padding: 100px; }
    .nav { display: none; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .page-hero-title { font-size: 48px; }
    .section-title { font-size: 38px; }
    .final-cta-title { font-size: 38px; }
    .service-detail-body { grid-template-columns: 1fr; gap: 32px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step-line { display: none; }
    .philosophy-banner { padding: 40px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; }
    .container { padding: 0 24px; }
    .page-hero { padding: 160px 0 80px; }
    .page-hero-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .final-cta-title { font-size: 32px; }
    .hide-mobile { display: none; }
    .service-detail-card { padding: 32px 24px; }
    .service-detail-header { flex-direction: column; gap: 12px; }
    .service-detail-number { font-size: 48px; min-width: auto; }
    .service-detail-footer { flex-direction: column; }
    .service-detail-footer .btn { width: 100%; }
    .process-grid { grid-template-columns: 1fr; }
    .philosophy-banner { padding: 32px 24px; }
    .philosophy-banner-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; }
    .section-title { font-size: 26px; }
    .final-cta-title { font-size: 26px; }
}
