/* About Page - Pixel Perfect Clone of Staging Site */

/* Header dropdown: hovered item text brown (matches home) */
.site-header .dropdown-menu a:hover {
    color: var(--color-primary-dark);
}

/* ============================================
   LOGO CAROUSEL SECTION - ABOUT PAGE
   ============================================ */
.logos-section {
    background: #D2B48C;
    padding: 30px 0;
    overflow: hidden;
}

.logos-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    /* overflow: hidden; Removed to prevent clipping issues with mask */
}

.logos-carousel {
    display: flex;
    gap: 0;
    width: 100%;
    /* Ensure full width */
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
}

.logos-track {
    display: flex;
    gap: 48px;
    animation: scroll-logos 40s linear infinite;
    padding: 0 40px;
}

.logo-slide {
    flex-shrink: 0;
    width: 230px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
/* Hero section uses home.css hero-section styles */
/* Override background if needed for about page */
.hero-section {
    background-color: #FCF1DD;
    background-image: var(--lj-img-3b37189b910e);
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}

/* Move hero text down and ensure same size as home page */
.hero-content {
    transform: translateY(0) translateX(70px);
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background-color: #F5E6D0;
    background: #F5E6D0;
    background-image: none;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-section .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    gap: 6px;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(2) .stat-number {
    margin-top: -0.3em;
}

.stat-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 1;
    min-height: 1.2em;
}

.stat-number .count {
    color: var(--color-text);
}

.stat-number .suffix {
    color: #D2B48C;
    font-size: 0.5em;
    line-height: 1;
    margin-top: 0.1em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 12.8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(16, 16, 16, 0.65);
}

/* ============================================
   BIO SECTION - MODERN REDESIGN
   ============================================ */
.bio-section-modern {
    padding: 120px 0;
    min-height: 700px;
    background: #FCF1DD;
    position: relative;
    overflow: hidden;
}

.bio-section-modern {
    background: #FCF1DD;
    background-color: #FCF1DD;
}

.bio-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 148, 80, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bio-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Wrapper */
.bio-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 420px;
}

.bio-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 12px 24px -8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    flex: 1;
    display: flex;
}

.bio-image-frame:hover {
    transform: scale(1.02);
}

.bio-image-frame img {
    width: 100%;
    height: 501px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.bio-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(23, 17, 10, 0.12) 100%);
    pointer-events: none;
}

.bio-accent-shape {
    display: none;
}

/* Content Card */
.bio-content-card {
    position: relative;
}

.bio-card-inner {
    background: #F8F5F0;
    border-radius: 20px;
    padding: 48px 32px;
    min-height: 480px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06),
        0 12px 48px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #995A3B 0%, #BD9450 100%);
}

/* Identity Tags */
.bio-identity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.identity-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(153, 90, 59, 0.08);
    border: 1px solid rgba(153, 90, 59, 0.15);
    border-radius: 50px;
    font-family: "Inter Tight", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #995A3B;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.identity-tag:hover {
    background: #995A3B;
    color: #fff;
    transform: translateY(-2px);
}

/* Title */
.bio-title-modern {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.bio-title-modern em {
    font-style: italic;
    color: #995A3B;
}

/* Divider */
.bio-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #BD9450, #c9a866);
    border-radius: 2px;
    margin-bottom: 16px;
}

/* Text */
.bio-text-modern {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 12px 0;
}

.bio-text-secondary {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Credentials */
.bio-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.credential-item {
    text-align: center;
}

.credential-number {
    display: block;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 32px;
    color: #995A3B;
    line-height: 1.2;
}

.credential-label {
    display: block;
    font-family: "Inter Tight", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-top: 4px;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .bio-section-modern {
        padding: 80px 0;
    }

    .bio-modern-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 32px;
    }

    .bio-image-frame {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .bio-image-frame img {
        height: 450px;
    }

    .bio-accent-shape {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -15px;
    }

    .bio-card-inner {
        padding: 40px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* Mobile hero - match home page pattern */
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        background-image: none !important;
        background-color: #000 !important;
        display: flex;
        align-items: flex-end;
    }

    .hero-section::before {
        display: none !important;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 24px 144px;
        justify-content: flex-end;
        text-align: center;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        z-index: 2;
    }

    .hero-content {
        padding: 0;
        transform: none !important;
        max-width: 100%;
        z-index: 2;
        text-align: center;
        margin-right: 0;
        margin-left: 0;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
        line-height: 1.15;
        color: #fff;
    }

    .hero-eyebrow {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 14px;
        letter-spacing: 0.12em;
        color: #D2B48C;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 11px 13px;
        font-size: 14px;
    }

    .hero-buttons .btn-secondary {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        background: transparent;
    }

    .scroll-indicator {
        bottom: 80px;
        color: rgba(255, 255, 255, 0.7);
    }

    .bio-section-modern {
        padding: 60px 0;
    }

    .bio-modern-container {
        padding: 0 20px;
        gap: 32px;
    }

    .bio-image-frame img {
        height: 380px;
    }

    .bio-card-inner {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .bio-identity-tags {
        gap: 8px;
        justify-content: center;
    }

    .identity-tag {
        padding: 5px 12px;
        font-size: 12px;
    }

    .bio-title-modern {
        font-size: clamp(28px, 7vw, 36px);
        text-align: center;
    }

    .bio-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .bio-text-modern {
        font-size: 15px;
        text-align: center;
    }

    .bio-text-secondary {
        font-size: 14px;
        text-align: center;
    }

    .bio-credentials {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .credential-number {
        font-size: 24px;
    }

    .credential-label {
        font-size: 10px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px calc(120px + env(safe-area-inset-bottom));
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 16px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 11px;
        font-size: 13px;
    }

    .bio-image-frame img {
        height: 320px;
    }

    .bio-accent-shape {
        width: 60px;
        height: 60px;
        bottom: -15px;
        left: -10px;
    }

    .bio-card-inner {
        padding: 24px 20px;
    }

    .bio-credentials {
        gap: 8px;
    }

    .credential-number {
        font-size: 20px;
    }

    .credential-label {
        font-size: 9px;
        letter-spacing: 0.05em;
    }
}

/* ============================================
   JOURNEY SECTION
   ============================================ */

.journey-section {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    min-height: 800px;
    height: auto;
    background: #FCF1DD;
    margin-bottom: 0;
    padding-bottom: 0;
}

.journey-section .journey-content {
    padding: 120px 100px 120px 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #FCF1DD;
    max-width: 100%;
}

.journey-section .journey-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(42px, 4.5vw, 58px);
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    padding-top: 0;
}

.journey-section .journey-content h2 em {
    font-style: italic;
    color: #995A3B;
}

/* Journey Glasscard */
.journey-glasscard {
    background: #F8F5F0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04),
        0 8px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    transform: none;
    transform-origin: top left;
}

/* Journey Tabs */
.journey-tabs {
    display: flex;
    flex-direction: row;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafaf8;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.journey-tabs::-webkit-scrollbar {
    display: none;
}

.journey-tab {
    background: transparent;
    border: none;
    padding: 18px 20px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #888;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    flex: 1 0 auto;
    white-space: nowrap;
    letter-spacing: 0.02em;
    min-width: fit-content;
}

.journey-tab:hover {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.8);
}

.journey-tab.active {
    color: #995A3B;
    font-weight: 600;
    background: #F8F5F0;
}

.journey-tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #995A3B, #BD9450);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
        transform-origin: center;
    }

    to {
        transform: scaleX(1);
        transform-origin: center;
    }
}

/* Journey Content Panels */
.journey-content-panels {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    background: #F8F5F0;
    position: relative;
    min-height: 280px;
}

.journey-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
}

.journey-panel.active {
    display: block;
    opacity: 1;
}

.journey-panel p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Journey Image */
.journey-section .journey-image {
    background: transparent;
    display: block;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 650px;
    width: 100%;
}

.journey-section .journey-image img {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards-section {
    padding: 100px 0;
    background-color: #F8F5F0;
    overflow: hidden;
}

.awards-header {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 48px;
    text-align: center;
}

.awards-title-block {
    margin-bottom: 24px;
}

.awards-header h2 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.awards-header .brxe-text p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.awards-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 35px;
}

.awards-slider {
    width: 100%;
    overflow: hidden;
}

.awards-track {
    display: flex;
    gap: 24px;
    animation: scroll-awards 30s linear infinite;
}

@keyframes scroll-awards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.award-card {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.award-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.award-info {
    padding: 0;
    position: relative;
    height: 110px;
    display: flex;
    flex-direction: column;
}

.award-title {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    padding: 20px 20px 0 20px;
    flex: 1;
    overflow: hidden;
}

.award-year {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #666;
    margin: 0;
    padding: 0 20px 15px 20px;
    height: 43px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}


/* ============================================
   MEDIA SECTION
   ============================================ */
.media-section {
    padding: 100px 0;
    background-color: #FCF1DD;
}

.media-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.media-content {
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.media-content .brxe-heading {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 auto 16px auto;
    text-align: center;
}

.media-content .brxe-heading em {
    font-style: italic;
}

.media-content .brxe-text {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.media-content .brxe-text p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.media-gallery-wrapper {
    overflow: hidden;
    margin-bottom: 32px;
    padding: 10px 0 35px;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
    -webkit-mask-position: center;
    mask-position: center;
}

.media-gallery {
    display: flex;
    gap: 24px;
    animation: scroll-media 30s linear infinite;
    width: fit-content;
}

.media-gallery:hover {
    animation-play-state: paused;
}

@keyframes scroll-media {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.media-card {
    flex: 0 0 260px;
    background: #F8F5F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.media-card-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F5F0;
    overflow: hidden;
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-placeholder-logo {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #999;
}

.media-card-info {
    padding: 20px;
}

.media-card-title {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.media-card-year {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #666;
    margin: 0;
}

.media-image-inverted {
    filter: brightness(0);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-container .brxe-button {
    display: inline-block;
    padding: 14px 32px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 9999px;
    text-decoration: none;
    background: #995A3B;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(153, 90, 59, 0.25);
    margin: 0 auto;
    text-align: center;
    border: none;
}

.media-container .brxe-button:hover {
    background: #BD9450;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 90, 59, 0.35);
    color: #fff;
}

/* ============================================
   BOOKS SECTION - ABOUT PAGE
   ============================================ */
.books-section {
    background-color: #F8F5F0;
}

/* ============================================
   WORK WITH LOVETTE SECTION
   ============================================ */
.work-section {
    padding: 100px 0;
    background-color: #F8F5F0;
}

/* Lock this section against Bricks defaults */
#brxe-wjlzsd.work-section>.brxe-container,
.work-section .brxe-container {
    width: min(1200px, calc(100% - 64px));
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 56px 48px;
    text-align: center !important;
    background: linear-gradient(135deg, #995A3B 0%, #BD9450 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(153, 90, 59, 0.2);
    display: block;
}

#brxe-wjlzsd.work-section h2,
.work-section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 0;
    text-align: center !important;
    width: 100%;
}

#brxe-wjlzsd.work-section .brxe-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 12px;
}

#brxe-wjlzsd.work-section .brxe-text p,
.work-section .brxe-text p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    text-align: center !important;
}

.work-section .brxe-text p span {
    color: #fff;
}

#brxe-wjlzsd.work-section .brxe-button,
.work-section .brxe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 9999px;
    background-color: #fff !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
}

#brxe-wjlzsd.work-section .brxe-button:hover,
.work-section .brxe-button:hover {
    background-color: #f8f6f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#brxe-wjlzsd.work-section #brxe-ymqgiy,
#brxe-wjlzsd.work-section #brxe-cujbxm p,
#brxe-wjlzsd.work-section #brxe-staouw {
    text-align: center !important;
}

/* ============================================
   BOOKS SECTION
   ============================================ */
/* Books section styles are handled by home.css */
.books-container h2 {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 40px 0 100px 0;
    background-color: #F8F5F0;
    background-image: none;
    position: relative;
}

.cta-section::before,
.cta-section::after {
    display: none;
    content: none;
}

.cta-section .brxe-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 56px;
    text-align: center;
    background: linear-gradient(135deg, #995A3B 0%, #BD9450 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(153, 90, 59, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-section .brxe-text p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-section .brxe-text p span {
    color: #fff;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 0px 0;
    display: flex;
    justify-content: center;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.contact-info .icon {
    font-size: 20px;
    color: #fff;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.cta-contact-row .brxe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    min-width: 180px;
}

.cta-contact-row .brxe-button:hover {
    background-color: #2d4a3e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons,
.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -10px;
    width: 100%;
    position: relative;
    left: 0;
    transform: translateX(0);
    text-align: center;
}

.cta-buttons .brxe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body) !important;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    flex: none;
}

.cta-buttons .brxe-button:hover {
    background-color: #E8D5B7;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablet / Small Desktop */
@media (max-width: 1100px) {
    .journey-tab {
        font-size: 12px;
        padding: 16px 14px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    /* Hero section uses home.css responsive styles */

    /* Stats section uses home.css responsive styles */

    /* Journey */
    .journey-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .journey-section .journey-content {
        padding: 60px 40px;
        max-width: 100%;
    }

    .journey-section .journey-image {
        height: 450px;
        min-height: 450px;
    }

    .journey-glasscard {
        min-height: auto;
        max-width: 100%;
        overflow: hidden;
    }

    .journey-tabs {
        overflow-x: auto;
    }

    .journey-tab {
        font-size: 12px;
        padding: 16px 12px;
        flex: 1 0 auto;
    }

    /* Awards */
    .awards-header {
        padding: 0 32px;
    }

    /* Media */
    .media-container {
        padding: 0 32px;
    }

    .media-item {
        width: 140px;
        height: 110px;
    }

    .media-gallery-wrapper {
        max-width: 740px;
    }

    /* Work */
    .work-section .brxe-container {
        width: calc(100% - 48px);
        max-width: 100%;
        padding: 34px 32px 38px;
    }

    .work-section h2 {
        font-size: clamp(38px, 6vw, 54px);
    }

    .work-section .brxe-text p {
        font-size: clamp(18px, 2.3vw, 21px);
    }

    /* Books section styles are handled by home.css */

    /* CTA */
    .cta-section .brxe-container {
        padding: 0 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hero section uses home.css responsive styles */

    /* Stats section uses home.css responsive styles */

    /* Journey */
    .journey-section .journey-content {
        padding: 40px 20px;
    }

    .journey-section .journey-content h2 {
        font-size: clamp(28px, 7vw, 36px);
        margin-bottom: 20px;
        text-align: center !important;
        width: 100%;
    }

    .journey-glasscard {
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .journey-tabs {
        flex-wrap: wrap;
        background: #f0ebe4;
        border-bottom: none;
        padding: 6px;
        gap: 4px;
        border-radius: 16px 16px 0 0;
    }

    .journey-tab {
        font-size: 11px;
        padding: 12px 8px;
        flex: 1 1 calc(50% - 4px);
        border-right: none !important;
        border-radius: 10px;
        color: #777;
        letter-spacing: 0.01em;
        white-space: normal;
        line-height: 1.3;
    }

    .journey-tab.active {
        background: #fff !important;
        color: #995A3B !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    }

    .journey-tab.active::after {
        display: none;
    }

    .journey-tab:nth-child(2) {
        border-right: none;
    }

    .journey-tab:nth-child(3),
    .journey-tab:nth-child(4) {
        border-top: none;
    }

    .journey-panel p {
        font-size: 15px;
        line-height: 1.8;
        color: #3a3a3a;
    }

    .journey-content-panels {
        padding: 28px 24px;
        height: 500px !important;
        min-height: 500px !important;
        max-height: 500px !important;
        flex: 0 0 500px !important;
        overflow-y: auto;
    }

    .journey-section .journey-image {
        display: none !important;
    }

    /* Awards */
    .awards-section {
        padding: 60px 0;
    }

    .awards-header {
        padding: 0 20px;
        margin-bottom: 32px;
        text-align: center;
    }

    .awards-header h2 {
        font-size: clamp(28px, 7vw, 36px);
    }

    .awards-header .brxe-text p {
        font-size: 15px;
    }

    .award-card {
        flex: 0 0 220px;
    }

    .award-card img {
        height: 140px;
    }

    .award-info {
        height: 100px;
    }

    .award-title {
        padding: 16px 16px 0 16px;
        font-size: 15px;
    }

    .award-year {
        padding: 0 16px 12px 16px;
        height: 39px;
    }

    /* Media */
    .media-section {
        padding: 60px 0;
    }

    .media-container {
        padding: 0 20px;
    }

    .media-content .brxe-heading {
        font-size: clamp(28px, 7vw, 36px);
        text-align: center;
    }

    .media-content .brxe-text p {
        font-size: 15px;
        text-align: center;
    }

    .media-item {
        width: 130px;
        height: 100px;
    }

    .media-gallery {
        gap: 8px;
    }

    .media-gallery-wrapper {
        max-width: 682px;
    }

    /* Work */
    .work-section {
        padding: 60px 0;
    }

    .work-section .brxe-container {
        padding: 40px 24px;
        max-width: 90% !important;
        margin: 0 auto;
    }

    .work-section h2 {
        font-size: clamp(28px, 7vw, 36px);
        text-align: center;
    }

    .work-section .brxe-text p {
        font-size: 15px;
        text-align: center;
    }

    /* Books section styles are handled by home.css */

    /* CTA - "Ready for Structural Change?" */
    .cta-section {
        padding: 40px 16px;
    }

    .cta-section .brxe-container {
        padding: 36px 24px 40px;
        text-align: center;
        overflow: hidden;
        gap: 0 !important;
    }

    .cta-section h2 {
        font-size: clamp(28px, 7vw, 36px);
        text-align: center;
        margin-bottom: 12px !important;
    }

    .cta-section .brxe-text p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .cta-section .cta-contact-row {
        margin: 0 0 12px 0 !important;
        width: 100%;
    }

    .cta-section .cta-contact-row .brxe-button {
        width: 100%;
        min-width: unset;
        margin: 0 !important;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
        margin: 0 !important;
        width: 100%;
    }

    .cta-section .cta-buttons .brxe-button {
        width: 100% !important;
        flex: unset;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
        margin: 0 !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Hero section uses home.css responsive styles */

    /* Stats section uses home.css responsive styles */

    /* Journey */
    .journey-section .journey-content {
        padding: 32px 16px;
    }

    .journey-section .journey-content h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .journey-tabs {
        padding: 5px;
        gap: 3px;
    }

    .journey-tab {
        font-size: 10px;
        padding: 10px 6px;
        border-radius: 8px;
    }

    .journey-content-panels {
        padding: 20px 16px;
        height: 480px !important;
        min-height: 480px !important;
        max-height: 480px !important;
        flex: 0 0 480px !important;
        overflow-y: auto;
    }

    .journey-panel p {
        font-size: 14px;
        line-height: 1.75;
    }

    .journey-section .journey-image {
        display: none !important;
    }

    .media-item {
        width: 120px;
        height: 90px;
    }

    .media-gallery {
        gap: 6px;
    }

    .media-gallery-wrapper {
        max-width: 624px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-media {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-content,
.bio-card,
.journey-content,
.awards-header,
.media-content {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   FOCUS STATES FOR ACCESSIBILITY
   ============================================ */
.accordion-title-wrapper:focus {
    outline: 2px solid #32373c;
    outline-offset: 4px;
    border-radius: 4px;
}

.brxe-button:focus {
    outline: 2px solid #32373c;
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .awards-slider,
    .media-gallery,
    .cta-section {
        display: none;
    }

    .about-hero,
    .bio-section,
    .journey-section,
    .books-section {
        page-break-inside: avoid;
    }
}



/* Stats section - match home page 4-column compact grid */
@media (max-width: 768px) {
    .stats-section {
        padding: 16px 0 !important;
    }

    .stats-section .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px 4px !important;
        max-width: 100% !important;
    }

    .stats-section .stat-item {
        padding: 12px 4px !important;
        border-right: none !important;
        min-width: auto !important;
    }

    .stats-section .stat-number {
        font-size: 1.8rem !important;
    }

    .stats-section .stat-number .suffix {
        font-weight: 900;
        font-family: var(--font-body);
    }

    .stats-section .stat-label {
        font-size: 0.55rem !important;
        letter-spacing: 0.08em !important;
    }

    /* Bio image full width on mobile */
    .bio-image-wrapper {
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .bio-image-frame {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Logo carousel - match home page */
    .logos-section {
        padding: 32px 0 !important;
    }

    .logos-track {
        gap: 24px !important;
        padding: 0 16px !important;
    }

    .logo-slide {
        width: 100px !important;
        height: 55px !important;
    }

    .logo-slide img {
        max-width: 100px !important;
        max-height: 55px !important;
    }
}

@media (max-width: 480px) {
    .stats-section .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px 2px !important;
    }

    .stats-section .stat-item {
        padding: 8px 2px !important;
    }

    .stats-section .stat-number {
        font-size: 1.5rem !important;
    }

    .stats-section .stat-label {
        font-size: 0.5rem !important;
    }

    .logos-section {
        padding: 16px 0 !important;
    }

    .logo-slide {
        width: 90px !important;
        height: 45px !important;
    }

    .logo-slide img {
        max-width: 90px !important;
        max-height: 45px !important;
    }
}

@media (max-width: 360px) {
    .stats-section .stats-grid {
        gap: 2px 0 !important;
    }

    .stats-section .stat-number {
        font-size: 1.3rem !important;
    }

    .stats-section .stat-label {
        font-size: 0.45rem !important;
        letter-spacing: 0.03em !important;
    }
}

/* ============================================
   MOBILE STRUCTURE PARITY WITH HOME PAGE
   ============================================ */
@media (max-width: 768px) {
    .site-footer {
        padding: 48px 0 32px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 0 24px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 14px;
        display: inline-block;
        padding: 4px 0;
        min-height: 44px;
        line-height: 36px;
    }

    .footer-links ul {
        gap: 4px;
    }

    .social-links {
        margin-top: 16px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
    }

    .footer-bottom {
        margin-top: 32px;
        padding: 20px 24px 0;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    body {
        overflow-x: hidden;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 24px;
    }

    .footer-container {
        padding: 0 16px;
        gap: 28px;
    }

    .footer-bottom {
        padding: 16px 16px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

