/* ============================================================
   ABOUT US — 2025 desktop redesign
   Scoped to .aboutPage2025
   ============================================================ */
.aboutPage2025 {
    --au-cream:      var(--rd-cream, #f5f1e8);
    --au-cream-2:    var(--rd-cream-2, #ece5d2);
    --au-cream-3:    var(--rd-cream-3, #faf6ec);
    --au-green:      var(--rd-green, #1f3d2e);
    --au-green-2:    var(--rd-green-2, #2c5141);
    --au-green-3:    var(--rd-green-3, #80956d);
    --au-orange:     var(--rd-orange, #f08a3a);
    --au-orange-2:   var(--rd-orange-2, #e6712b);
    --au-gold:       var(--rd-gold, #d4a849);
    --au-ink:        #1a2521;
    --au-muted:      #6b7568;
    --au-line:       #e3ddc9;
    --au-line-2:     #d8d0b3;
    --au-shadow-sm:  0 4px 14px rgba(20,40,30,.06);
    --au-shadow-md:  0 14px 38px rgba(20,40,30,.10);
    --au-shadow-lg:  0 28px 70px rgba(20,40,30,.14);
    --au-radius-sm:  14px;
    --au-radius:     20px;
    --au-radius-lg:  28px;
    --au-serif:      'Times New Roman', Georgia, serif;
}
/* .aboutPage2025.mainContent + .au-wrap moved to redesign-components.css (SHARED PRIMITIVES). */

/* ============================================================
   Section heads
   ============================================================ */
.aboutPage2025 .au-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 28px;
}
@media (max-width: 991px) {
    .aboutPage2025 .au-section-head { grid-template-columns: 1fr; gap: 14px; }
}
.aboutPage2025 .au-section-eyebrow,
.aboutPage2025 .au-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--au-green);
    margin-bottom: 8px;
}
.aboutPage2025 .au-section-eyebrow::before,
.aboutPage2025 .au-eyebrow::before {
    content: '✦';
    color: var(--au-orange);
}
.aboutPage2025 .au-eyebrow {
    background: var(--au-cream-2);
    border: 1px solid var(--au-line);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 18px;
}
.aboutPage2025 .au-section-title {
    font-family: var(--au-serif);
    font-weight: 600;
    font-size: 42px;
    line-height: 1.05;
    color: var(--au-green);
    margin: 0;
    letter-spacing: -0.015em;
}
.aboutPage2025 .au-section-title em {
    font-style: italic;
    color: var(--au-orange);
    font-weight: 500;
}
.aboutPage2025 .au-section-deck {
    font-size: 16px;
    line-height: 1.6;
    color: var(--au-muted);
    margin: 0;
}

/* Buttons (shared across the page) */
.aboutPage2025 .au-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none !important;
    border: 1px solid transparent;
}
.aboutPage2025 .au-btn-primary {
    background: var(--au-green);
    color: #fff;
    box-shadow: 0 10px 22px rgba(31,61,46,0.18);
}
.aboutPage2025 .au-btn-primary:hover { background: var(--au-green-2); color: #fff; }
.aboutPage2025 .au-btn-ghost {
    background: #fff;
    color: var(--au-green);
    border-color: var(--au-line);
}
.aboutPage2025 .au-btn-ghost:hover {
    background: var(--au-green);
    color: #fff;
    border-color: var(--au-green);
}
.aboutPage2025 .au-btn-gold {
    background: var(--au-gold);
    color: #1c1208;
    box-shadow: 0 8px 18px rgba(212,168,73,0.30);
}
.aboutPage2025 .au-btn-gold:hover { background: #c89738; color: #1c1208; }
.aboutPage2025 .au-btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.30);
}
.aboutPage2025 .au-btn-ghost-light:hover {
    background: rgba(255,255,255,0.10);
    color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.aboutPage2025 .au-hero-section {
    padding: 32px 0 44px;
    background:
        radial-gradient(circle at 88% -10%, rgba(212,168,73,0.18), transparent 50%),
        radial-gradient(circle at -10% 110%, rgba(31,61,46,0.08), transparent 55%),
        linear-gradient(180deg, var(--au-cream-3) 0%, transparent 65%);
}
.aboutPage2025 .au-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}
@media (max-width: 991px) {
    .aboutPage2025 .au-hero { grid-template-columns: 1fr; gap: 28px; }
}
.aboutPage2025 .au-hero-title {
    font-family: var(--au-serif);
    font-weight: 600;
    font-size: 68px;
    line-height: 1.02;
    color: var(--au-green);
    margin: 0 0 22px;
    letter-spacing: -0.025em;
}
.aboutPage2025 .au-hero-title em {
    font-style: italic;
    color: var(--au-orange);
    font-weight: 500;
}
.aboutPage2025 .au-hero-deck {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 28px;
    max-width: 560px;
}
.aboutPage2025 .au-hero-ctas {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---- Hero image collage ---- */
.aboutPage2025 .au-hero-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 460px;
}
.aboutPage2025 .au-collage-main {
    grid-row: 1 / span 2;
    border-radius: var(--au-radius-lg);
    overflow: hidden;
    background: var(--au-cream-3);
    box-shadow: var(--au-shadow-md);
    border: 1px solid var(--au-line);
}
.aboutPage2025 .au-collage-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.aboutPage2025 .au-collage-side {
    display: contents;
}
.aboutPage2025 .au-collage-sq {
    border-radius: var(--au-radius);
    overflow: hidden;
    background: var(--au-cream-3);
    box-shadow: var(--au-shadow-sm);
    border: 1px solid var(--au-line);
}
.aboutPage2025 .au-collage-sq img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    min-height: 220px;
}
.aboutPage2025 .au-collage-stamp {
    position: absolute;
    left: -18px;
    top: 18px;
    background: var(--au-orange);
    color: #fff;
    border-radius: var(--au-radius-sm);
    padding: 10px 14px;
    box-shadow: 0 10px 22px rgba(230,113,43,0.30);
    text-align: center;
    line-height: 1;
    z-index: 2;
    border: 3px solid #fff;
}
.aboutPage2025 .au-collage-stamp span {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 4px;
}
.aboutPage2025 .au-collage-stamp strong {
    display: block;
    font-family: var(--au-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--au-gold);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.aboutPage2025 .au-stats-section { padding: 12px 0 36px; }
.aboutPage2025 .au-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--au-green);
    color: #fff;
    border-radius: var(--au-radius);
    padding: 22px 28px;
    box-shadow: var(--au-shadow-md);
    position: relative;
    overflow: hidden;
}
.aboutPage2025 .au-stats::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,73,0.30), transparent 60%);
    pointer-events: none;
}
@media (max-width: 767px) { .aboutPage2025 .au-stats { grid-template-columns: repeat(2, 1fr); } }
.aboutPage2025 .au-stat { position: relative; padding: 4px 18px; }
.aboutPage2025 .au-stat + .au-stat { border-left: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 767px) { .aboutPage2025 .au-stat + .au-stat { border-left: 0; padding: 12px 18px; } }
.aboutPage2025 .au-stat-value {
    font-family: var(--au-serif);
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    color: var(--au-gold);
    margin-bottom: 6px;
}
.aboutPage2025 .au-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

/* ============================================================
   PILLARS GRID (jump nav)
   ============================================================ */
.aboutPage2025 .au-pillars-section { padding: 40px 0 24px; }
.aboutPage2025 .au-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 991px) { .aboutPage2025 .au-pillars { grid-template-columns: repeat(2, 1fr); } }
.aboutPage2025 .au-pillar {
    background: #fff;
    border: 1px solid var(--au-line);
    border-radius: var(--au-radius);
    padding: 24px 18px 22px;
    text-align: center;
    text-decoration: none !important;
    color: var(--au-ink);
    box-shadow: var(--au-shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.aboutPage2025 .au-pillar:hover {
    border-color: var(--au-green-3);
    box-shadow: var(--au-shadow-md);
}
.aboutPage2025 .au-pillar-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--au-cream-3);
    border-radius: 50%;
    margin-bottom: 8px;
}
.aboutPage2025 .au-pillar-icon img {
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
}
.aboutPage2025 .au-pillar-num {
    font-family: var(--au-serif);
    font-size: 16px;
    font-style: italic;
    color: var(--au-orange);
    font-weight: 500;
}
.aboutPage2025 .au-pillar-label {
    font-family: var(--au-serif);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: var(--au-green);
    letter-spacing: -0.005em;
}

/* ============================================================
   MISSION STATEMENT
   ============================================================ */
.aboutPage2025 .au-mission-section { padding: 30px 0 12px; }
.aboutPage2025 .au-mission {
    background: linear-gradient(160deg, var(--au-cream-2) 0%, var(--au-cream-3) 100%);
    border: 1px solid var(--au-line-2);
    border-radius: var(--au-radius-lg);
    padding: 48px 56px;
    text-align: center;
    position: relative;
    box-shadow: var(--au-shadow-sm);
    overflow: hidden;
}
.aboutPage2025 .au-mission::before {
    content: '✦';
    position: absolute;
    top: 18px; right: 22px;
    font-size: 32px;
    color: var(--au-gold);
    opacity: 0.4;
}
.aboutPage2025 .au-mission-mark {
    font-family: var(--au-serif);
    font-size: 96px;
    color: var(--au-orange);
    line-height: 0;
    height: 32px;
    font-style: italic;
}
.aboutPage2025 .au-mission-text {
    font-family: var(--au-serif);
    font-size: 30px;
    line-height: 1.35;
    color: var(--au-green);
    margin: 0 0 18px;
    font-weight: 500;
}
.aboutPage2025 .au-mission-text em {
    font-style: italic;
    color: var(--au-orange);
}
.aboutPage2025 .au-mission-text strong {
    font-weight: 700;
    color: var(--au-green);
}
.aboutPage2025 .au-mission-sig {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--au-muted);
}
@media (max-width: 575px) {
    .aboutPage2025 .au-mission { padding: 28px 22px; }
    .aboutPage2025 .au-mission-text { font-size: 22px; }
}

/* ============================================================
   STORY SECTIONS (alternating image/text)
   ============================================================ */
.aboutPage2025 .au-stories-section {
    padding: 40px 0 24px;
    display: flex;
    flex-direction: column;
}
.aboutPage2025 .au-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 44px 0;
    border-bottom: 1px solid var(--au-line);
}
.aboutPage2025 .au-story:last-child { border-bottom: 0; }
@media (max-width: 991px) {
    .aboutPage2025 .au-story { grid-template-columns: 1fr; gap: 24px; padding: 28px 0; }
}
.aboutPage2025 .au-story.reverse .au-story-img { order: 2; }
@media (max-width: 991px) {
    .aboutPage2025 .au-story.reverse .au-story-img { order: 0; }
}
.aboutPage2025 .au-story-img {
    position: relative;
    border-radius: var(--au-radius-lg);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: var(--au-cream-3);
    box-shadow: var(--au-shadow-md);
    border: 1px solid var(--au-line);
}
.aboutPage2025 .au-story-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.aboutPage2025 .au-story-stamp {
    position: absolute;
    bottom: 18px; left: 18px;
    background: rgba(255,255,255,0.92);
    color: var(--au-green);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.aboutPage2025 .au-story-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--au-orange);
    margin-bottom: 10px;
}
.aboutPage2025 .au-story-eyebrow::before {
    content: '◆';
    color: var(--au-green-3);
}
.aboutPage2025 .au-story-title {
    font-family: var(--au-serif);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.08;
    color: var(--au-green);
    margin: 0 0 18px;
    letter-spacing: -0.015em;
}
.aboutPage2025 .au-story-title em {
    font-style: italic;
    color: var(--au-orange);
    font-weight: 500;
}
.aboutPage2025 .au-story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 18px;
}
.aboutPage2025 .au-story-text p strong { color: var(--au-green); font-weight: 700; }
.aboutPage2025 .au-story-points {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.aboutPage2025 .au-story-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--au-ink);
}
.aboutPage2025 .au-story-points li i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--au-cream-2);
    color: var(--au-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* ============================================================
   EDITOR'S NOTE (About model rich-text)
   ============================================================ */
.aboutPage2025 .au-note-section { padding: 28px 0; }
.aboutPage2025 .au-note {
    background: #fff;
    border: 1px solid var(--au-line);
    border-radius: var(--au-radius-lg);
    padding: 44px 56px;
    box-shadow: var(--au-shadow-sm);
}
.aboutPage2025 .au-note .au-section-title { margin-bottom: 18px; }
.aboutPage2025 .au-note-body {
    font-family: 'Georgia', serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: #2f2f2f;
}
.aboutPage2025 .au-note-body p { margin: 0 0 14px; }
.aboutPage2025 .au-note-body em { color: var(--au-orange); }
.aboutPage2025 .au-note-body strong { color: var(--au-green); }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.aboutPage2025 .au-cta-section { padding: 40px 0 64px; }
.aboutPage2025 .au-cta {
    background:
        radial-gradient(circle at 88% -10%, rgba(212,168,73,0.30), transparent 55%),
        radial-gradient(circle at -10% 110%, rgba(255,255,255,0.06), transparent 50%),
        linear-gradient(135deg, var(--au-green) 0%, var(--au-green-2) 100%);
    color: #fff;
    border-radius: var(--au-radius-lg);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--au-shadow-lg);
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .aboutPage2025 .au-cta { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; }
}
.aboutPage2025 .au-cta::after {
    content: '✦';
    position: absolute;
    bottom: -28px;
    right: 36px;
    font-size: 200px;
    color: rgba(212,168,73,0.10);
    pointer-events: none;
    line-height: 1;
}
.aboutPage2025 .au-cta-copy { position: relative; z-index: 1; }
.aboutPage2025 .au-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--au-gold);
    margin-bottom: 8px;
}
.aboutPage2025 .au-cta-eyebrow::before {
    content: '✦';
    color: var(--au-gold);
}
.aboutPage2025 .au-cta-title {
    font-family: var(--au-serif);
    font-weight: 600;
    font-size: 46px;
    line-height: 1.04;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
}
.aboutPage2025 .au-cta-title em {
    font-style: italic;
    color: var(--au-gold);
    font-weight: 500;
}
.aboutPage2025 .au-cta-sub {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0;
}
.aboutPage2025 .au-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .aboutPage2025 .au-cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   Responsive trims
   ============================================================ */
@media (max-width: 991px) {
    .aboutPage2025 .au-hero-title { font-size: 46px; }
    .aboutPage2025 .au-story-title { font-size: 30px; }
    .aboutPage2025 .au-cta-title { font-size: 32px; }
    .aboutPage2025 .au-section-title { font-size: 30px; }
    .aboutPage2025 .au-note { padding: 28px 24px; }
}
@media (max-width: 575px) {
    .aboutPage2025 .au-wrap { padding: 0 16px; }
    .aboutPage2025 .au-hero-title { font-size: 36px; }
}
