/* Premium, Clean, Classic Theme */
:root {
    --bg-color: #FAFAFA;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --accent-color: #8C734B; /* Muted Gold/Bronze */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content, .philosophy-text, .leader-card {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content {
    animation-delay: 0.2s;
}

.philosophy-text {
    animation-delay: 0.4s;
}

.leader-card:nth-child(2) {
    animation-delay: 0.5s;
}
.leader-card:nth-child(3) {
    animation-delay: 0.6s;
}
.leader-card:nth-child(4) {
    animation-delay: 0.7s;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ═══════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════ */
.about-nav {
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    gap: 12px;
}

.back-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-height: 44px;
    padding: 8px 0;
    flex-shrink: 0;
}

.back-link:hover {
    color: var(--accent-color);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: right;
    line-height: 1.3;
}

/* ═══════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════ */
.about-hero {
    height: 60vh;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #F1F0EB;
    padding: 0 5%;
    padding-top: 60px; /* space for absolute nav */
}

.hero-content {
    max-width: 700px;
}

.hero-content .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1.25rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   Philosophy Section
   ═══════════════════════════════════════════ */
.philosophy-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.philosophy-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--accent-color);
    border-left: 2px solid var(--accent-color);
    padding-left: 2rem;
}

/* ═══════════════════════════════════════════
   Section Titles
   ═══════════════════════════════════════════ */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   Leadership Section
   ═══════════════════════════════════════════ */
.leadership-section {
    padding: 6rem 0 8rem;
    background-color: #fff;
}

.leader-card {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.leader-card:last-child {
    margin-bottom: 0;
}

.leader-card.reverse {
    grid-template-columns: 7fr 5fr;
}

.leader-card.reverse .leader-image-wrapper {
    order: 2;
}

.leader-card.reverse .leader-info {
    order: 1;
}

.leader-image-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #EDECE7;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-radius: 8px;
}

.leader-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(15%) contrast(105%);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(100%);
}

.leader-info {
    padding: 1rem 0;
}

.leader-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.leader-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════ */
.about-footer {
    text-align: center;
    padding: 3rem 5%;
    background-color: #F1F0EB;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (max 900px)
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Nav */
    .about-nav {
        padding: 1rem 5%;
    }

    .back-link {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .brand-name {
        font-size: 1rem;
    }

    /* Hero */
    .about-hero {
        height: auto;
        min-height: 380px;
        padding-top: 110px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    /* Philosophy */
    .philosophy-section {
        padding: 4rem 0;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Section titles */
    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    /* Leadership */
    .leadership-section {
        padding: 4rem 0 5rem;
    }

    .leader-card,
    .leader-card.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .leader-card.reverse .leader-image-wrapper,
    .leader-card.reverse .leader-info {
        order: unset;
    }

    .leader-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .leader-img {
        max-height: none;
        object-fit: contain;
        object-position: center top;
    }

    .leader-info {
        text-align: center;
        padding: 0;
    }

    .leader-info h3 {
        font-size: 1.8rem;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (max 600px)
   ═══════════════════════════════════════════ */
@media (max-width: 600px) {

    /* Nav — stack vertically */
    .about-nav {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 0.75rem 5%;
        background: rgba(241, 240, 235, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .back-link {
        font-size: 0.7rem;
        gap: 5px;
        order: 2;
    }

    .brand-name {
        font-size: 0.95rem;
        text-align: center;
        order: 1;
    }

    /* Hero */
    .about-hero {
        min-height: 340px;
        padding-top: 100px;
        padding-bottom: 2.5rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content .subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1.25rem;
        margin-top: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    /* Philosophy */
    .philosophy-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .philosophy-text p {
        font-size: 0.95rem;
    }

    .philosophy-quote blockquote {
        font-size: 1.2rem;
        padding-left: 1.25rem;
    }

    /* Leadership */
    .leadership-section {
        padding: 3rem 0 4rem;
    }

    .leader-card,
    .leader-card.reverse {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .leader-image-wrapper {
        width: 100%;
        max-width: 100%;
        border-radius: 6px;
    }

    .leader-img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center top;
    }

    .leader-role {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .leader-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .leader-info p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.7;
    }

    /* Footer */
    .about-footer {
        padding: 2rem 20px;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small mobile (max 380px)
   ═══════════════════════════════════════════ */
@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.88rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .leader-image-wrapper {
        max-width: 100%;
    }

    .leader-img {
        max-height: none;
    }

    .leader-info h3 {
        font-size: 1.35rem;
    }
}
