/* =========================================
   Acumentorr Classic Editorial Theme
   ========================================= */

:root {
    --am-paper-bg: #f9f7f1;
    /* Cream/Paper */
    --am-paper-darker: #f0eee8;
    /* Slightly darker for sections */
    --am-ink: #2c2c2c;
    /* Soft Black ink */
    --am-ink-light: #555555;
    /* Grey ink */
    --am-gold: #d4af37;
    /* Classic Gold */

    --font-serif: 'IBM Plex Serif', serif;
    --font-sans: 'IBM Plex Sans', sans-serif;
}

/* Base Overrides for Acumentorr Page */
body.am-body {
    background-color: var(--am-paper-bg);
    color: var(--am-ink);
    font-family: var(--font-sans);
}

/* Navigation Overrides (Keep Dark for Visibility) */
.glass-header .nav-item,
.glass-header .social-icon {
    color: var(--am-ink) !important;
}

.glass-header .nav-item:hover,
.glass-header .social-icon:hover {
    color: var(--am-gold) !important;
}

/* =========================================
   Typography
   ========================================= */
.am-headline {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--am-ink);
}

.am-subheadline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--am-ink-light);
    max-width: 800px;
    margin: 0 auto;
}

.am-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--am-ink);
}

.am-title-large {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--am-ink);
}

.am-lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--am-ink);
}

.am-eyebrow {
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--am-gold);
    margin-bottom: 1.5rem;
}

/* =========================================
   Layout & Sections
   ========================================= */
.am-section {
    padding: 100px 0;
}

.paper-bg {
    background-color: var(--am-paper-bg);
}

.paper-bg-darker {
    background-color: var(--am-paper-darker);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.am-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 4rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* =========================================
   Hero Section
   ========================================= */
.am-hero {
    padding: 180px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZjlmN2YxIi8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNkZWRjZDAiLz4KPC9zdmc+');
    /* Subtle noise texture */
}

/* =========================================
   Content Split (What is Acumentorr)
   ========================================= */
.content-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.section-text-col p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.focus-box {
    margin-top: 3rem;
    padding: 2rem;
    /* reduced padding */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* slight border */
    background: rgba(255, 255, 255, 0.4);
}

.focus-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--am-ink);
}

.am-list {
    list-style: none;
    padding: 0;
}

.am-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.am-list li::before {
    content: '•';
    color: var(--am-gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* =========================================
   Grids (Target Audience, How We Work)
   ========================================= */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-2-col.gap-large {
    gap: 80px;
}

.grid-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--am-ink);
    border-bottom: 2px solid var(--am-gold);
    padding-bottom: 1rem;
    display: inline-block;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--am-gold);
}

/* =========================================
   The 12-Month Journey
   ========================================= */
/* =========================================
   The 12-Month Journey (Compacted & Animated)
   ========================================= */
.journey-timeline {
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    /* lighter gold var(--am-gold) */
    padding-left: 30px;
    margin: 40px auto;
    max-width: 700px;
    /* Slightly narrower */
}

.timeline-phase {
    position: relative;
    margin-bottom: 1.5rem;
    /* Reduced from 2.5rem */
    opacity: 0;
    /* Hidden initially for animation */
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-phase.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-phase::before {
    content: '';
    position: absolute;
    left: -39px;
    /* adjust based on padding + border (30+2+7) */
    top: 4px;
    /* aligned with number */
    width: 12px;
    /* smaller dot */
    height: 12px;
    background: var(--am-paper-bg);
    border: 2px solid var(--am-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-phase:hover::before {
    background: var(--am-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.phase-num {
    display: inline-block;
    font-family: var(--font-sans);
    /* Cleaner number */
    color: var(--am-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 1rem;
    letter-spacing: 1px;
    vertical-align: middle;
}

.phase-name {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    /* Reduced from 1.5rem */
    color: var(--am-ink);
    line-height: 1.3;
    vertical-align: middle;
    transition: color 0.3s;
}

.timeline-phase:hover .phase-name {
    color: var(--am-gold);
}

/* =========================================
   Engagement & CTA
   ========================================= */
.engagement-box {
    background: #fff;
    padding: 60px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.simple-center {
    text-align: center;
}

.simple-center li {
    padding-left: 0;
}

.simple-center li::before {
    display: none;
}

.cta-section {
    padding: 120px 0;
    background: var(--am-ink);
    color: #fff;
    /* Invert for CTA */
}

.cta-section .am-title-large {
    color: #fff;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-classic {
    display: inline-block;
    padding: 20px 50px;
    background: var(--am-gold);
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--am-gold);
}

.btn-classic:hover {
    background: transparent;
    color: var(--am-gold);
}

.italic {
    font-style: italic;
}

.strong-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 900px) {
    .am-headline {
        font-size: 2.5rem;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-2-col,
    .grid-2-col.gap-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .engagement-box {
        padding: 30px;
    }

    .journey-timeline {
        padding-left: 20px;
        border-left: 1px solid var(--am-gold);
    }

    .timeline-phase::before {
        left: -25px;
        width: 10px;
        height: 10px;
        top: 8px;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
    }
}

/* =========================================
   New Hero & Form Additions
   ========================================= */

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 50vh;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    position: relative;
}

.paper-image {
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2);
    /* Gold offset shadow */
    border: 1px solid rgba(0, 0, 0, 0.1);
    filter: sepia(30%) contrast(90%);
    /* Vintage feel */
}

/* Contact Form - Paper Style */
.cta-section-paper {
    padding: 100px 0;
    background: #e8e6e1;
    /* Slightly darker/warmer for contrast */
    color: var(--am-ink);
}

.form-container-paper {
    background: #fdfcf8;
    max-width: 650px;
    margin: 40px auto 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Deep soft shadow */
    border-radius: 2px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-tabs {
    display: flex;
    background: #e6e4de;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-tab {
    flex: 1;
    padding: 20px 10px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #888;
    cursor: default;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.form-tab.active {
    background: var(--am-ink);
    color: #fff;
    cursor: pointer;
}

.am-form-paper {
    padding: 40px;
}

.paper-label {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--am-ink);
    margin-bottom: 0.5rem;
}

.paper-input {
    width: 100%;
    background: #f4f2ed;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    font-family: var(--font-serif);
    /* Styled input text */
    font-size: 1rem;
    color: var(--am-ink);
    border-radius: 4px;
    /* Slight radius */
    outline: none;
    transition: all 0.3s;
}

.paper-input:focus {
    background: #fff;
    border-color: var(--am-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.btn-gold-paper {
    display: block;
    width: 100%;
    background: #cbb082;
    /* Muted Gold/Paper color */
    color: #1a1a1a;
    padding: 18px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.btn-gold-paper:hover {
    background: var(--am-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}