/* ============================================================
   Retreeve — About Page CSS
   File: assets/css/about.css
   ============================================================ */

/* ── OPENING ─────────────────────────────────────────────── */
.opening {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 680px;
    max-height: 680px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.opening-image {
    background: var(--stone);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
}
.opening-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.opening-text {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.opening-eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 32px;
}
.opening-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 40px;
}
.opening-statement em {
    font-style: italic;
    color: var(--terracotta);
}
.opening-caption {
    font-size: 13px;
    line-height: 1.75;
    color: var(--warm-gray);
    max-width: 380px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

/* ── STORY ───────────────────────────────────────────────── */
.story {
    padding: 96px 48px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.story-inner {
    max-width: 640px;
    width: 100%;
}
.story-p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--warm-gray);
    margin-bottom: 28px;
}
.story-p:last-child { margin-bottom: 0; }
.story-p strong {
    color: var(--black);
    font-weight: 400;
}

/* ── MANIFESTO ───────────────────────────────────────────── */
.manifesto {
    padding: 96px 48px;
    border-bottom: 1px solid var(--border);
    background: var(--stone);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.manifesto-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 56px;
}
.manifesto-note {
    font-size: 12px;
    color: var(--warm-gray);
    letter-spacing: 0.06em;
    line-height: 1.6;
    max-width: 360px;
    margin-top: 48px;
}

/* Criteria band */
.criteria-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    width: 100%;
}
.criteria-col {
    background: var(--cream);
    padding: 40px 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}
.criteria-col:nth-child(even) { background: var(--stone); }
.criteria-col-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
}
.criteria-col-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: var(--terracotta);
    line-height: 1.4;
    margin-top: 32px;
}

/* ── PROVENANCE ──────────────────────────────────────────── */
.provenance {
    padding: 80px 48px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}
.provenance-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
}
.provenance-sub {
    font-size: 14px;
    line-height: 1.8;
    color: var(--warm-gray);
}
.provenance-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.prov-tag {
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 6px;
    display: block;
}
.prov-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 6px;
    display: block;
}
.prov-desc {
    font-size: 13px;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ── FOUNDER ─────────────────────────────────────────────── */
.founder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
    align-items: stretch;
}
.founder-image {
    background: var(--stone);
    position: relative;
    border-right: 1px solid var(--border);
    overflow: hidden;
    max-height: 600px;
}
.founder-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}
.founder-content {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.founder-eyebrow {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 28px;
}
.founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 28px;
}
.founder-bio {
    font-size: 14px;
    line-height: 1.85;
    color: var(--warm-gray);
    max-width: 400px;
}
.founder-name {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.founder-name-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
}
.founder-name-sub {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section {
    padding: 72px 48px;
    border-bottom: 1px solid var(--border);
    background: var(--stone);
}
.faq-header { margin-bottom: 40px; }
.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--terracotta); }
.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--warm-gray);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 24px;
    line-height: 1;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--terracotta);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 24px;
}
.faq-a-inner {
    font-size: 14px;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 600px;
}
.faq-a-inner a {
    color: var(--black);
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px;
}

/* ── CTA BAR ─────────────────────────────────────────────── */
.cta-bar {
    padding: 80px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}
.cta-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    max-width: 500px;
}
.btn-primary {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--black);
    padding: 15px 36px;
    transition: background 0.25s;
    display: inline-block;
    white-space: nowrap;
    font-family: 'Jost', sans-serif;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary:hover { background: var(--terracotta); color: var(--cream); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media ( max-width: 1024px ) {
    .opening { grid-template-columns: 1fr; min-height: auto; }
    .opening-image { height: 60vw; border-right: none; border-bottom: 1px solid var(--border); }
    .opening-text { padding: 48px 32px; justify-content: flex-start; }
    .provenance { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px; }
    .founder { grid-template-columns: 1fr; }
    .founder-image { min-height: 50vw; border-right: none; border-bottom: 1px solid var(--border); }
    .founder-content { padding: 48px 32px; }
    .criteria-band { grid-template-columns: 1fr 1fr; }
    .story { padding: 64px 32px; }
    .manifesto { padding: 64px 32px; }
    .faq-section { padding: 56px 32px; }
    .cta-bar { padding: 56px 32px; flex-direction: column; align-items: flex-start; }
}

@media ( max-width: 640px ) {
    .criteria-band { grid-template-columns: 1fr; }
    .opening-text { padding: 36px 24px; }
    .story { padding: 48px 24px; }
    .faq-section { padding: 48px 24px; }
    .cta-bar { padding: 48px 24px; }
}

/* ── MOBILE (375px) ──────────────────────────────────────── */
@media ( max-width: 390px ) {
    .opening-image { height: 70vw; }
    .opening-text { padding: 28px 20px; }
    .opening-statement { font-size: 28px; }
    .opening-caption { font-size: 12px; }
    .story { padding: 40px 20px; }
    .story-p { font-size: 15px; }
    .manifesto { padding: 48px 20px; }
    .manifesto-label { font-size: 9px; margin-bottom: 32px; }
    .criteria-band { grid-template-columns: 1fr; }
    .criteria-col { min-height: auto; padding: 28px 20px; }
    .criteria-col-name { font-size: 20px; }
    .provenance { padding: 48px 20px; }
    .provenance-heading { font-size: 26px; }
    .founder-content { padding: 36px 20px; }
    .founder-quote { font-size: 20px; }
    .faq-section { padding: 40px 20px; }
    .faq-title { font-size: 26px; }
    .faq-q { font-size: 13px; padding: 18px 0; }
    .cta-bar { padding: 40px 20px; }
    .cta-text { font-size: 20px; }
    .btn-primary { width: 100%; text-align: center; padding: 14px 20px; }
}