/* ─────────────────────────────────────────────────────
   PLATINUM FOUNDATION — about.css
   About page: intro, story, values, team
───────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────
   INTRO / MISSION
───────────────────────────────────────────────────── */

.section-intro {
    padding: 100px 64px;
    background: var(--bg);
}

.intro-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.intro-heading {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.25;
    color: var(--green);
    margin-bottom: 28px;
    letter-spacing: -.01em;
}

.intro-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-mid);
}

.pull-quote {
    margin: 72px auto 0;
    max-width: 720px;
    padding: 48px 56px;
    background: var(--green);
    position: relative;
    text-align: left;
}

.pull-quote::before {
    content: '\201C';
    font-family: var(--f-display);
    font-size: 120px;
    line-height: .7;
    color: var(--purple);
    position: absolute;
    top: 28px; left: 40px;
    opacity: .6;
}

.pull-quote-text {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.55;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.pull-quote-attr {
    margin-top: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--purple);
}

/* ─────────────────────────────────────────────────────
   OUR STORY
───────────────────────────────────────────────────── */

.section-story {
    background: var(--cream);
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 700px;
    overflow: hidden;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s ease;
}

.section-story:hover .story-image img { transform: scale(1.04); }

.story-image-placeholder {
    width: 100%; height: 100%;
    min-height: 400px;
    background: var(--green);
}

.story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
}

.story-text::before {
    content: 'Story';
    position: absolute;
    font-family: var(--f-display);
    font-size: 220px;
    line-height: 1;
    color: rgba(13,34,51,.05);
    bottom: -20px; right: -20px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.story-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.story-label-line { width: 28px; height: 1px; background: var(--purple); }

.story-heading {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 4vw, 56px);
    line-height: .95;
    letter-spacing: -.01em;
    color: var(--green);
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.story-rule {
    width: 44px; height: 2px;
    background: var(--purple);
    margin-bottom: 24px;
    position: relative; z-index: 1;
}

.story-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 460px;
    position: relative; z-index: 1;
}

.story-body p + p { margin-top: 16px; }

/* ─────────────────────────────────────────────────────
   VALUES
───────────────────────────────────────────────────── */

.section-values {
    padding: 100px 64px;
    background: var(--bg);
}

.values-header {
    text-align: center;
    margin-bottom: 64px;
}

.values-heading {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    color: var(--green);
    letter-spacing: -.01em;
    margin-bottom: 16px;
}

.values-sub {
    font-size: 14px;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: var(--light);
}

.value-card {
    background: var(--bg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}

.value-card:hover { background: var(--cream); }

.value-num {
    font-family: var(--f-display);
    font-size: 64px;
    line-height: 1;
    color: rgba(196,144,58,.15);
    position: absolute;
    top: 24px; right: 28px;
    font-weight: 400;
    letter-spacing: -.03em;
    transition: color .3s;
}

.value-card:hover .value-num { color: rgba(196,144,58,.25); }

.value-icon {
    width: 36px; height: 2px;
    background: var(--purple);
    margin-bottom: 28px;
}

.value-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 26px;
    color: var(--green);
    margin-bottom: 14px;
    letter-spacing: -.01em;
}

.value-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

/* ─────────────────────────────────────────────────────
   TEAM
───────────────────────────────────────────────────── */

.section-team {
    padding: 100px 64px;
    background: var(--cream);
    border-top: 1px solid var(--light);
}

.team-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-heading {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    color: var(--green);
    letter-spacing: -.01em;
    margin-bottom: 16px;
}

.team-sub {
    font-size: 14px;
    color: var(--muted);
    max-width: 400px;
    margin: 0 auto;
}

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.team-card { text-align: center; }

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: var(--light);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--purple);
    transform: scaleX(0);
    transition: transform .35s ease;
}

.team-card:hover .team-photo::after { transform: scaleX(1); }

.team-photo-placeholder {
    width: 100%; height: 100%;
    background: var(--light);
}

.team-name {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 20px;
    color: var(--green);
    margin-bottom: 4px;
}

.team-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple);
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE — ABOUT
───────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .section-intro  { padding: 72px 32px; }
    .pull-quote     { padding: 40px 40px; }
    .section-story  { height: auto; }
    .story-text     { padding: 56px 40px; }
    .section-values { padding: 72px 32px; }
    .section-team   { padding: 72px 32px; }
    .team-grid      { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .section-intro { padding: 56px 24px; }
    .pull-quote    { padding: 32px 28px; margin-top: 48px; }
    .pull-quote::before { font-size: 80px; top: 16px; left: 20px; }

    .section-story { grid-template-columns: 1fr; }
    .story-image   { height: 260px; }
    .story-text    { padding: 40px 24px; }
    .story-text::before { font-size: 120px; }

    .section-values { padding: 56px 24px; }
    .values-grid    { grid-template-columns: 1fr; }
    .value-card     { padding: 36px 28px; }

    .section-team { padding: 56px 24px; }
    .team-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
