/* ==========================================================================
   TIMVEST ABOUT PAGE STYLES (about.css)
   ========================================================================== */

:root {
    /* ── Brand ── */
    --brand-red:              #c8102e;
    --brand-red-hover:        #a00c23;
    --brand-pill:             #c8102e;
    --accent-gold:            #c8a362;

    /* ── Backgrounds ── */
    --bg-dark:                #0d0d0d;
    --bg-darker:              #080808;
    --bg-card:                #141414;
    --bg-card-alt:            #1a1a1a;
    --footer-bg:              #050505;
    --input-bg:               #1c1c1e;

    /* ── Text ── */
    --text-white:             #ffffff;
    --text-black:             #000000;
    --text-muted:             rgba(255, 255, 255, 0.78);
    --pill-text:              #ffffff;

    /* ── Nav ── */
    --nav-text:               #ffffff;
    --nav-hover:              #d1d5db;
    --header-bg:              rgba(0, 0, 0, 0.3);

    /* ── Borders ── */
    --border-subtle:          rgba(255, 255, 255, 0.08);

    /* ── Typography ── */
    --font-heading:           'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body:              'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ══════════════════════════════════════════════
       SECTION COLOUR TOKENS — edit these to restyle
       each section without touching the rules below
       ══════════════════════════════════════════════ */

    /* Hero */
    --hero-bg:                #0d0d0d;
    --hero-heading-color:     #ffffff;
    --hero-intro-color:       rgba(255, 255, 255, 0.75);
    --hero-eyebrow-color:     #c8a362;

    /* Purpose & Conviction */
    --purpose-bg:             #f7f5ef;
    --purpose-eyebrow-color:  #c8102e;
    --purpose-heading-color:  #1a1a1a;
    --purpose-body-color:     #555555;
    --conviction-card-bg:     #141414;
    --conviction-eyebrow-color: #c8102e;
    --conviction-text-color:  rgba(255, 255, 255, 0.78);
    --conviction-footer-color: #ffffff;

    /* What Makes Us Different */
    --diff-bg:                #080808;
    --diff-eyebrow-color:     #c8a362;
    --diff-heading-color:     #ffffff;
    --diff-card-bg:           #141414;
    --diff-number-color:      #c8a362;
    --diff-card-heading-color: #ffffff;
    --diff-card-body-color:   rgba(255, 255, 255, 0.78);

    /* Origins & Milestones */
    --origins-bg:             #0d0d0d;
    --origins-eyebrow-color:  #c8a362;
    --origins-heading-color:  #ffffff;
    --origins-body-color:     rgba(255, 255, 255, 0.78);
    --milestones-bg:          #141414;
    --milestones-title-color: #c8a362;
    --timeline-year-color:    #c8102e;
    --timeline-heading-color: #ffffff;
    --timeline-body-color:    rgba(255, 255, 255, 0.78);

    /* Vision & Mission */
    --vm-bg:                  #0d0d0d;
    --vm-card-bg:             #161616;
    --vm-label-color:         #c8a362;
    --vm-heading-color:       #ffffff;
    --vm-body-color:          rgba(255, 255, 255, 0.78);

    /* 100-Year Horizon */
    --horizon-bg:             #f7f5ef;      
    --horizon-eyebrow-color:  #c8a362;
    --horizon-heading-color:  #080808;
    --horizon-card-bg:        #141414;
    --horizon-body-color:     rgba(255, 255, 255, 0.88);
    --horizon-pill-color:     rgba(255, 255, 255, 0.7);
    --horizon-pill-bg:        rgba(255, 255, 255, 0.05);

    /* Leadership & Governance */
    --leadership-bg:          #0d0d0d;
    --leadership-eyebrow-color: #c8a362;
    --leadership-heading-color: #ffffff;
    --leadership-subtitle-color: rgba(255, 255, 255, 0.78);
    --gov-card-bg:            #141414;
    --gov-icon-color:         #c8a362;
    --gov-heading-color:      #ffffff;
    --gov-body-color:         rgba(255, 255, 255, 0.78);

    /* Footer */
    --footer-section-bg:      #050505;
    --footer-col-heading-color: rgba(255, 255, 255, 0.5);
    --footer-link-color:      #ffffff;
    --footer-link-hover-color: #c8102e;
    --footer-address-color:   #ffffff;
    --footer-label-color:     rgba(255, 255, 255, 0.5);
    --footer-copyright-color: rgba(255, 255, 255, 0.5);
    --footer-disclaimer-color: rgba(255, 255, 255, 0.4);
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


/* ==========================================================================
   SHARED UTILITIES
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin-top: -0.5rem;
    margin-bottom: 3rem;
}

.body-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-header.center {
    text-align: center;
    margin-bottom: 3.5rem;
}


/* --------------------------------------------------
   HEADER & HERO SECTION
-------------------------------------------------- */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%),
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-color: var(--hero-bg);
    display: flex;
    flex-direction: column;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.75rem 0;
    background: var(--header-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-slot {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-slot img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-slot img:not([src]),
.logo-slot img[src=""] {
    min-width: 140px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-link {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-hover);
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-pill);
    color: var(--pill-text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 44px;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 56, 56, 0.3);
    filter: brightness(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--nav-text);
    margin: 5px 0;
    transition: 0.3s;
}

.about-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10rem 0 5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.about-hero .section-eyebrow {
    color: var(--hero-eyebrow-color);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 2rem;
    max-width: 1050px;
    color: var(--hero-heading-color);
}

.hero-headline .highlight {
    color: var(--accent-gold);
}

.hero-intro {
    font-size: 1.25rem;
    color: var(--hero-intro-color);
    max-width: 880px;
    line-height: 1.7;
}


/* --------------------------------------------------
   PURPOSE & CONVICTION
-------------------------------------------------- */
.purpose-conviction-section {
    background-color: var(--purpose-bg);
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.purpose-conviction-section .section-eyebrow {
    color: var(--purpose-eyebrow-color);
}

.purpose-conviction-section .section-title {
    color: var(--purpose-heading-color);
}

.purpose-conviction-section .body-text {
    color: var(--purpose-body-color);
}

.conviction-card {
    background: var(--conviction-card-bg);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    border-radius: 4px;
}

.card-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--conviction-eyebrow-color);
    margin-bottom: 1rem;
    display: block;
}

.conviction-text {
    font-size: 1rem;
    color: var(--conviction-text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.conviction-footer strong {
    color: var(--conviction-footer-color);
    font-size: 1.05rem;
}


/* --------------------------------------------------
   WHAT MAKES US DIFFERENT
-------------------------------------------------- */
.differentiators-section {
    padding: 6rem 0;
    background-color: var(--diff-bg);
    border-bottom: 1px solid var(--border-subtle);
}

.differentiators-section .section-eyebrow {
    color: var(--diff-eyebrow-color);
}

.differentiators-section .section-title {
    color: var(--diff-heading-color);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.diff-card {
    background: var(--diff-card-bg);
    border: 1px solid var(--border-subtle);
    padding: 2.25rem;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.diff-card.full-width {
    grid-column: span 2;
}

.diff-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--diff-number-color);
    margin-bottom: 0.75rem;
    display: block;
}

.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--diff-card-heading-color);
}

.diff-card p {
    color: var(--diff-card-body-color);
    font-size: 0.95rem;
}


/* --------------------------------------------------
   OUR ORIGINS & MILESTONES
-------------------------------------------------- */
.origins-section {
    padding: 6rem 0;
    background-color: var(--purpose-bg);
    border-bottom: 1px solid var(--border-subtle);
}

.origins-section .section-eyebrow {
    color: var(--origins-eyebrow-color);
}

.origins-section .section-title {
    color: var(--text-black);
}

.origins-section .body-text {
    color: var(--text-black);
}

.origins-content {
    max-width: 850px;
    margin-bottom: 4rem;
}

.milestones-wrapper {
    background: var(--milestones-bg);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    border-radius: 6px;
}

.milestones-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--milestones-title-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    border-left: 2px solid var(--border-subtle);
    padding-left: 1.5rem;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--timeline-year-color);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--timeline-heading-color);
}

.timeline-content p {
    color: var(--timeline-body-color);
    font-size: 0.92rem;
}


/* --------------------------------------------------
   VISION & MISSION
-------------------------------------------------- */
.vision-mission-section {
    padding: 5rem 0;
    background-color: var(--vm-bg);
    border-bottom: 1px solid var(--border-subtle);
}

.vm-card {
    background: var(--vm-card-bg);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    border-radius: 6px;
}

.vm-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--vm-label-color);
    display: block;
    margin-bottom: 1.25rem;
}

.vm-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--vm-heading-color);
}

.vm-card p {
    color: var(--vm-body-color);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* --------------------------------------------------
   100-YEAR HORIZON
-------------------------------------------------- */
.horizon-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-subtle);
    background-color: var(--horizon-bg);
}

.horizon-section .section-eyebrow {
    color: var(--horizon-eyebrow-color);
}

.horizon-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.horizon-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.horizon-headline {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    line-height: 1.18;
    color: var(--horizon-heading-color);
}

.horizon-card {
    position: relative;
    background: var(--horizon-card-bg);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--accent-gold);
    padding: 3rem 2.5rem;
    border-radius: 6px;
    overflow: hidden;
}

.card-watermark {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 11rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    user-select: none;
    pointer-events: none;
}

.horizon-body {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--horizon-body-color);
    margin-bottom: 2rem;
}

.horizon-highlights {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--horizon-pill-color);
    background-color: var(--horizon-pill-bg);
    border: 1px solid var(--border-subtle);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
}


/* --------------------------------------------------
   LEADERSHIP & GOVERNANCE
-------------------------------------------------- */
.leadership-section {
    padding: 6rem 0;
    background-color: var(--leadership-bg);
    border-bottom: 1px solid var(--border-subtle);
}

.leadership-section .section-eyebrow {
    color: var(--leadership-eyebrow-color);
}

.leadership-section .section-title {
    color: var(--leadership-heading-color);
}

.leadership-section .section-subtitle {
    color: var(--leadership-subtitle-color);
}

.governance-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gov-card {
    background: var(--gov-card-bg);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem 2rem;
    border-radius: 4px;
}

.gov-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gov-icon-color);
}

.gov-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gov-heading-color);
}

.gov-card p {
    color: var(--gov-body-color);
    font-size: 0.92rem;
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
    background-color: var(--footer-section-bg);
    padding: 5rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-col .logo-slot img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-label {
    font-size: 0.85rem;
    color: var(--footer-label-color);
    font-weight: 500;
}

.footer-address {
    font-size: 1.65rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--footer-address-color);
    max-width: 440px;
    letter-spacing: -0.02em;
    margin-top: 0.35rem;
}

.newsletter-box {
    margin-top: 1rem;
    max-width: 440px;
}

.newsletter-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.newsletter-input-wrap {
    background-color: var(--input-bg);
    border-radius: 100px;
    padding: 5px 6px 5px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-input-wrap input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-size: 0.9rem;
    width: 100%;
}

.newsletter-input-wrap input::placeholder {
    color: var(--footer-label-color);
}

.btn-newsletter {
    background-color: var(--text-white);
    color: #111111;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    opacity: 0.9;
}

.newsletter-consent {
    font-size: 0.78rem;
    color: var(--footer-label-color);
    margin-top: 1rem;
    line-height: 1.5;
}

.newsletter-consent a {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--footer-col-heading-color);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-col a {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--footer-link-hover-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--footer-copyright-color);
}

.compliance-disclaimer {
    font-size: 0.78rem;
    color: var(--footer-disclaimer-color);
    line-height: 1.6;
}


/* --------------------------------------------------
   RESPONSIVE MEDIA QUERIES
-------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-2col,
    .horizon-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .diff-card.full-width {
        grid-column: span 1;
    }

    .governance-pillars {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-address {
        font-size: 1.35rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}