/**
 * Custom Page CSS
 * Generated by Astra Page Converter Plugin
 * This CSS is specific to this page only
 */

/* CSS Reset for this page */
.custom-page-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-page-wrapper {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}



/* Page-specific styles */
/* Force your background color */
body {
    background-color: #YOUR_COLOR !important;
}

html {
    background-color: #YOUR_COLOR !important;
}

/* Hide Astra header if it's showing */
.site-header {
    display: none !important;
}

.site-footer {
    display: none !important;
}
:root {
            --ink: #1c1917;
            --paper: #f5f2ec;
            --amber: #d97706;
            --amber-dark: #92400e;
            --amber-light: #fef3c7;
            --purple: #5b21b6;
            --purple-mid: #7c3aed;
            --purple-light: #ede9fe;
            --slate: #44403c;
            --muted: #a8a29e;
            --white: #ffffff;
            --border: #e5e1d8;
            --bridge-bg: #1c3140;
            --bridge-card: #243d50;
            --bridge-border: #2e5068;
            --footer-bg: #1c1917;
            --footer-border: #3c3532;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'DM Sans', sans-serif; background: var(--paper); color: var(--ink); line-height: 1.65; overflow-x: hidden; }

        /* ─── HEADER ─── */
        header { padding: 18px 0; position: sticky; top: 0; z-index: 100; background: rgba(245,242,236,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
        .header-content { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
        .logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); text-decoration: none; letter-spacing: -0.5px; }
        .logo span { color: var(--amber); }
        nav { display: flex; align-items: center; gap: 6px; }
        nav a { text-decoration: none; color: var(--slate); font-weight: 500; font-size: 14px; padding: 8px 14px; border-radius: 6px; transition: background 0.2s, color 0.2s; }
        nav a:hover { background: var(--amber-light); color: var(--amber-dark); }
        nav a.active { background: var(--amber-light); color: var(--amber-dark); font-weight: 600; }
        .btn { display: inline-block; padding: 11px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.25s; letter-spacing: 0.01em; }
        .btn-primary { background: var(--amber); color: white; }
        .btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(217,119,6,0.3); }
        .btn-ghost { border: 1.5px solid var(--border); color: var(--slate); background: var(--white); }
        .btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
        .btn-purple { background: var(--purple); color: white; }
        .btn-purple:hover { background: var(--purple-mid); transform: translateY(-1px); }
        .section-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber-dark); margin-bottom: 10px; }

        /* ─── STORY HERO ─── */
        .story-hero {
            max-width: 800px;
            margin: 0 auto;
            padding: 88px 24px 72px;
            text-align: center;
        }
        .story-hero .section-label { display: block; margin-bottom: 16px; }
        .story-hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.05;
            color: var(--ink);
            margin-bottom: 28px;
        }
        .story-hero h1 em { font-style: normal; color: var(--amber); }
        .story-hero .lead {
            font-size: 19px;
            color: var(--slate);
            line-height: 1.75;
            max-width: 620px;
            margin: 0 auto;
        }

        /* ─── ORIGIN SECTION ─── */
        .origin {
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 80px 24px;
        }
        .origin-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
        .origin h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
        .origin h2 span { color: var(--amber); }
        .origin p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 18px; }
        .origin p:last-child { margin-bottom: 0; }

        .origin-timeline { display: flex; flex-direction: column; gap: 0; }
        .timeline-item { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
        .timeline-item:not(:last-child)::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 32px;
            bottom: 0;
            width: 1px;
            background: var(--border);
        }
        .timeline-dot {
            width: 32px; height: 32px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            z-index: 1;
            position: relative;
        }
        .timeline-dot.amber { background: var(--amber-light); border: 2px solid var(--amber); }
        .timeline-dot.purple { background: var(--purple-light); border: 2px solid var(--purple); }
        .timeline-dot.teal { background: #ccfbf1; border: 2px solid #0d9488; }
        .timeline-dot.ink { background: #f1f5f9; border: 2px solid var(--ink); }
        .timeline-content { padding-top: 4px; }
        .timeline-year { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
        .timeline-content h3 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
        .timeline-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }

        /* ─── VALUES ─── */
        .values-section { max-width: 1160px; margin: 0 auto; padding: 80px 24px; }
        .values-header { text-align: center; margin-bottom: 52px; }
        .values-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
        .values-header p { color: var(--muted); font-size: 16px; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .value-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: 0.25s; }
        .value-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
        .value-icon { font-size: 32px; margin-bottom: 16px; }
        .value-card h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
        .value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

        /* ─── TWO BRANDS ─── */
        .brands-section {
            background: var(--bridge-bg);
            padding: 80px 24px;
            position: relative;
            overflow: hidden;
        }
        .brands-section::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(217,119,6,0.12) 0%, transparent 70%);
        }
        .brands-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
        .brands-header { text-align: center; margin-bottom: 48px; }
        .brands-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -1px; color: var(--white); margin-bottom: 12px; }
        .brands-header h2 span { color: var(--amber); }
        .brands-header p { color: #94a3b8; font-size: 16px; max-width: 500px; margin: 0 auto; line-height: 1.7; }
        .brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .brand-card {
            background: var(--bridge-card);
            border: 1px solid var(--bridge-border);
            border-radius: 16px;
            padding: 32px;
            transition: 0.2s;
        }
        .brand-card:hover { border-color: var(--amber); }
        .brand-card-logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
        .brand-card-logo span { color: var(--amber); }
        .brand-card-logo.pp-logo span { color: #a78bfa; }
        .brand-tag { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 100px; margin-bottom: 16px; }
        .brand-tag.bc { background: rgba(217,119,6,0.2); color: #fbbf24; }
        .brand-tag.pp { background: rgba(167,139,250,0.2); color: #a78bfa; }
        .brand-card p { color: #7a98af; font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
        .brand-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .brand-list li { font-size: 13px; color: #94a3b8; padding-left: 16px; position: relative; }
        .brand-list li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-size: 11px; top: 2px; }
        .brand-card.pp .brand-list li::before { color: #a78bfa; }

        /* ─── MISSION QUOTE ─── */
        .mission { max-width: 1160px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
        .mission-quote {
            border-left: 4px solid var(--amber);
            padding-left: 28px;
        }
        .mission-quote blockquote {
            font-family: 'Syne', sans-serif;
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 700;
            line-height: 1.4;
            letter-spacing: -0.5px;
            color: var(--ink);
            margin-bottom: 20px;
        }
        .mission-quote cite { font-size: 13px; color: var(--muted); font-style: normal; }
        .mission-text h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
        .mission-text p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
        .mission-text p:last-child { margin-bottom: 0; }

        /* ─── CONTACT STRIP ─── */
        .contact-strip {
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 56px 24px;
        }
        .contact-strip-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .contact-card { text-align: center; padding: 28px 20px; border: 1px solid var(--border); border-radius: 14px; transition: 0.2s; }
        .contact-card:hover { border-color: var(--amber); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
        .contact-card-icon { font-size: 28px; margin-bottom: 12px; }
        .contact-card h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
        .contact-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
        .contact-link { font-size: 13px; font-weight: 600; color: var(--amber); text-decoration: none; }
        .contact-link:hover { color: var(--amber-dark); }
        .contact-link::after { content: ' →'; }

        /* ─── CTA BAND ─── */
        .cta-band { background: linear-gradient(135deg, var(--purple) 0%, #4c1d95 100%); padding: 72px 24px; text-align: center; color: white; position: relative; overflow: hidden; }
        .cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); }
        .cta-band-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
        .cta-band h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 14px; }
        .cta-band p { color: #c4b5fd; font-size: 15px; margin-bottom: 28px; line-height: 1.7; }
        .cta-band-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
        .btn-white { background: white; color: var(--purple); }
        .btn-white:hover { background: var(--amber-light); color: var(--amber-dark); }
        .btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: white; }
        .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

        /* ─── FOOTER ─── */
        footer { background: var(--footer-bg); color: var(--white); padding: 56px 24px 28px; }
        .footer-inner { max-width: 1160px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
        .footer-brand p { color: #78716c; font-size: 14px; margin-top: 12px; line-height: 1.7; max-width: 260px; }
        .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #a8a29e; margin-bottom: 14px; }
        .footer-col a { display: block; color: #78716c; text-decoration: none; font-size: 14px; margin-bottom: 9px; transition: color 0.2s; }
        .footer-col a:hover { color: var(--amber); }
        .footer-bottom { border-top: 1px solid var(--footer-border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
        .footer-bottom p { color: #57534e; font-size: 13px; }
        .footer-pixel { display: flex; align-items: center; gap: 8px; color: #57534e; font-size: 13px; }
        .footer-pixel a { color: #a78bfa; text-decoration: none; font-weight: 600; }
        .footer-pixel a:hover { color: var(--amber); }

        @media (max-width: 900px) {
            .origin-inner { grid-template-columns: 1fr; gap: 40px; }
            .values-grid { grid-template-columns: 1fr 1fr; }
            .brands-grid { grid-template-columns: 1fr; }
            .mission { grid-template-columns: 1fr; gap: 36px; }
            .contact-strip-inner { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
        }
        @media (max-width: 600px) {
            nav { display: none; }
            .values-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 8px; }
        }

        @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
        .story-hero h1 { animation: fadeUp 0.5s ease 0.1s both; }
        .story-hero .lead { animation: fadeUp 0.5s ease 0.2s both; }