/* ═══════════════════════════════════════════════════════════════
   VERONIKA MAYNARD — ABOUT 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); }
img { max-width: 100%; display: block; }
.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; }

/* ─── ANIMATIONS ─── */
.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); }

/* ─── BUTTONS ─── */
.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 (duplicated per-page as required)
   ═══════════════════════════════════ */
.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;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

.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; }

/* ═══════════════════════════════════
   ORIGIN STORY
   ═══════════════════════════════════ */
.section-story { background: var(--bg-secondary); }

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

.story-image { position: relative; }

.story-img-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-card), rgba(200, 169, 106, 0.05));
    border: 1px solid var(--bg-card-border);
}

.story-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.06), rgba(127, 169, 155, 0.04));
}

.story-initials {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 200;
    color: rgba(200, 169, 106, 0.15);
    letter-spacing: 10px;
}

.story-img-accent {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 50%;
    height: 50%;
    border: 1px solid rgba(200, 169, 106, 0.1);
    border-radius: 16px;
    pointer-events: none;
}

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

/* ═══════════════════════════════════
   PHILOSOPHY
   ═══════════════════════════════════ */
.section-philosophy {
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

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

.philosophy-content { position: relative; z-index: 1; }

.philosophy-quote {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-author {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ═══════════════════════════════════
   APPROACH
   ═══════════════════════════════════ */
.section-approach { background: var(--bg-secondary); }

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.approach-card {
    padding: 48px 40px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    transition: all 0.5s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.approach-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }
.approach-card:hover::before { opacity: 1; }

.approach-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: rgba(200, 169, 106, 0.06);
    line-height: 1;
    margin-bottom: 16px;
}

.approach-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.approach-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════
   CREDENTIALS
   ═══════════════════════════════════ */
.credentials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.credentials-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
}

.credentials-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    transition: all 0.5s var(--ease-smooth);
}

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

.credential-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
}

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

.credential-detail {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════
   IMPACT STATS
   ═══════════════════════════════════ */
.section-impact { background: var(--bg-secondary); }

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

.impact-card {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    transition: all 0.5s var(--ease-smooth);
}

.impact-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.impact-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.impact-label {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════
   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; }
    .philosophy-quote { font-size: 28px; }
    .story-layout { grid-template-columns: 1fr; gap: 40px; }
    .story-layout > .story-image { max-width: 400px; }
    .credentials-layout { grid-template-columns: 1fr; gap: 40px; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .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; }
    .philosophy-quote { font-size: 22px; }
    .hide-mobile { display: none; }
    .approach-grid { grid-template-columns: 1fr; }
    .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; }
    .impact-grid { grid-template-columns: 1fr; }
    .impact-number { font-size: 36px; }
}
