/* ============================================================
   About Page
   ============================================================ */

.about-page {
    min-height: 100vh;
    background: #fffbf5;
    display: flex;
    flex-direction: column;
}

.about-main {
    flex: 1;
    padding-top: 80px;
}

.about-section.about-mission {
    padding: 4rem 0 0;
}

.about-container {
    margin: 0 auto;
    padding: 6rem var(--LR-padding);
}

/* ── Who Are We ─────────────────────────────────────────── */

.about-who-we-are {
    background: #fffbf5;
}

.about-who-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 95px;
}

.about-who-left,
.about-who-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.about-who-left {
    justify-content: center;
}

.about-who-center {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.about-who-right {
    justify-content: center;
    gap: 1rem;
    width: 280px;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-large {
    border-radius: 8px;
}

.about-img-stacked {
    border-radius: 8px;
}

.about-img-stacked--1 {
    width: 192px;
    align-self: flex-end;
}

.about-img-stacked--2 {
    width: 192px;
    align-self: flex-start;
}

/* ── Typography ─────────────────────────────────────────── */

.about-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: #7c4731;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
}

.about-who-center .about-title {
    text-align: center;
}

.about-subtitle {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: #7c4731;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    max-width: 485px;
}

.about-description {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: #a87865;
    line-height: 1.5;
}

.about-description p {
    margin: 0;
}

.about-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #412b23;
    line-height: 1.6;
    max-width: 617px;
}

.about-text p {
    margin: 0;
}

.about-text-work-with {
    font-family: Laila;
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #412b23;
}

/* ── Mission ────────────────────────────────────────────── */

.about-mission {
    background: #fde0da;
}

.about-mission .about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-mission-left {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
}

.about-mission-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding-bottom: 118px;
}

.about-quote-box {
    display: flex;
    align-items: center;
    background: #fffbf5;
    padding: 2.5rem;
    height: 306px;
    border-radius: 200px;
    text-align: center;
    width: 100%;
    max-width: 896px;
    position: relative;
}

.about-quote-box p {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: #412b23;
    line-height: 1.4;
    margin: 0;
    margin-left: 10%;
    margin-right: 10%;
}

.floating-cupcake {
    position: absolute;
    height: 100%;
    margin-left: -18%;
}

/* ── Values ─────────────────────────────────────────────── */

.about-values {
    background: var(--color-bg);
}

.about-values .about-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-values-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.about-values-title {
    text-align: left;
    margin-bottom: 0;
    flex: 0 0 auto;
    max-width: 600px;
}

.about-values-subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: #111111;
    line-height: 155%;
    margin: 0;
    flex: 0 0 auto;
    max-width: 408px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

.about-value-card {
    background: #fde0da;
    border-radius: 200px 200px 16px 16px;
    padding: 122px 28px 28px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    overflow: hidden;
}

.about-value-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: #886051;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
}

.about-value-card p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: #3c2a24;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ── Founder ─────────────────────────────────────────────── */

.about-founder {
    background: #dceeff;
}

.about-founder .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-founder-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-founder-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: #7c4731;
    line-height: 1.1;
    margin: 0;
}

.about-founder-title p {
    margin: 0;
}

.about-founder-title strong {
    font-weight: 700;
}

.about-founder-role {
    font-size: 1.75rem !important;
    margin-top: 0.5rem !important;
}

.about-founder-story {
    margin-top: 0;
}

.about-founder-image {
    border-radius: 8px 8px 8px 44px;
    overflow: hidden;
    height: 520px;
}

.about-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── Our Story ───────────────────────────────────────────── */

.about-story {
    background: #fffbf5;
}

.about-story-container {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-story-inner {
    display: flex;
    gap: 66px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-story-cupcake {
    align-self: center;
    width: 203px;
    object-fit: contain;
}

.about-story-body {
    max-width: 820px;
}

.about-story-title {
    font-family: 'Chivo', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #7c4731;
    line-height: 1.2;
    margin: 0;
}

.about-story-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #412b23;
    line-height: 1.6;
    margin: 0;
}

.about-story-tagline {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 700;
    color: #a87865;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-top: 1rem;
}

.about-story-tagline p {
    margin: 0;
}

/* ── Team ────────────────────────────────────────────────── */

.about-team {
    background: #fde0da;
}

.about-team .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-team-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-team-image {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.about-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-with {
    font-family: Laila;
    font-weight: 600;
    font-size: 4rem;
    line-height: 120%;
    letter-spacing: -0.02em;
}

/* ── Our Clients Marquee ─────────────────────────────────── */

.about-clients {
    background: #fffbf5;
    overflow: hidden;
}

.about-clients .about-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
}

.about-clients-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: #7c4731;
    margin: 0;
}

.about-clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 2rem;
}

.about-clients-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: clients-marquee 8s linear infinite;
    align-items: center;
}

.about-client-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.about-client-logo:hover {
    opacity: 1;
}

@keyframes clients-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (min-width: 1441px) {
    .about-who-container {
        max-width: 1259px;
    }
}

@media (max-width: 1024px) {
    .about-mission .about-container {
        grid-template-columns: 1fr;
    }

    .about-founder .about-container {
        grid-template-columns: 1fr;
    }

    .about-team .about-container {
        grid-template-columns: 1fr;
    }

    .about-client-logo {
        width: 80px;
        height: 50px;
    }

    .about-values-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .about-values-title {
        text-align: left;
        max-width: 100%;
    }

    .about-values-subtitle {
        max-width: 100%;
    }

    .about-values-grid {
        grid-template-columns: 1fr !important;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.75rem;
    }

    .about-founder-title {
        font-size: 2rem;
    }

    .about-founder-role {
        font-size: 1.25rem !important;
    }

    .about-story-title {
        font-size: 2.5rem;
    }

    .about-story-tagline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1.25rem;
    }

    .about-quote-box p {
        margin-left: unset !important;
        margin-right: unset !important;
    }

    .about-mission-left {
        flex-direction: column !important;
    }

    .floating-cupcake {
        display: none;
    }

    .about-who-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-who-left,
    .about-who-center,
    .about-who-right {
        width: 100%;
    }

    .about-img-large,
    .about-img-stacked {
        width: 100%;
    }

    .about-img-1,
    .about-img-2,
    .about-img-3 {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 200px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .about-description,
    .about-text {
        font-size: 1rem;
    }

    .about-quote-box p {
        font-size: 1.5rem;
    }

    .about-founder-image {
        height: 300px;
    }

    .about-value-card h3 {
        font-size: 1.5rem;
    }

    .about-value-card p {
        font-size: 1rem;
    }

    .about-story-title {
        font-size: 2rem;
    }

    .about-story-tagline {
        font-size: 1.5rem;
    }

    .about-team-image {
        height: 250px;
    }

    .about-clients-title {
        font-size: 2rem;
    }

    .about-client-logo {
        width: 70px;
        height: 44px;
    }
}
