/* ═══════════════════════════════════════════════════════════
   about.css — About page styles for Little Turtlery
   Requires: public-layout.css (tokens, reset, nav, footer)
   ═══════════════════════════════════════════════════════════ */

/* ─── Page Hero ──────────────────────────────────────────── */
.lt-about-hero {
    background: var(--lt-cream);
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: var(--sp-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative circle behind the title */
.lt-about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lt-sage-light) 0%, transparent 70%);
    pointer-events: none;
}

.lt-about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin-inline: auto;
}

.lt-about-hero__title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: var(--fw-semibold);
    color: var(--lt-ink);
    line-height: 1.15;
    letter-spacing: -.01em;
    text-wrap: balance;
    max-width: 14ch;
    margin-inline: auto;
    margin-bottom: var(--sp-lg);
}

.lt-about-hero__title span {
    color: var(--lt-sage-dark);
}

.lt-about-hero__intro {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--lt-text-soft);
    font-weight: var(--fw-light);
    line-height: 1.9;
    max-width: 520px;
    margin-inline: auto;
}

/* ─── Story ──────────────────────────────────────────────── */
.lt-about-story {
    background: var(--lt-stone-xlight);
}

.lt-about-story__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}

.lt-about-story__image-wrap {
    position: sticky;
    top: calc(var(--nav-h) + var(--sp-xl));
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-lg);
}

.lt-about-story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-about-story__content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
    padding-block: var(--sp-xl);
}

.lt-about-story__title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: var(--fw-semibold);
    color: var(--lt-ink);
    line-height: 1.25;
}

.lt-about-story__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lt-about-story__body p {
    font-size: 15px;
    color: var(--lt-text-soft);
    line-height: 1.95;
    font-weight: var(--fw-light);
}

/* Reflective closing paragraph */
.lt-about-story__body p:last-child {
    font-style: italic;
    color: var(--lt-stone-dark);
    border-left: 2px solid var(--lt-stone);
    padding-left: 22px;
    margin-top: var(--sp-sm);
    line-height: 2.0;
}

/* ─── Values (meaning blocks) ────────────────────────────── */
.lt-about-values {
    background: var(--lt-white);
}

.lt-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.lt-about-value {
    background: var(--lt-cream);
    border-radius: var(--r-md);
    padding: var(--sp-lg);           /* tighter: 24px all-around (was 40/24px) */
    border: 1px solid var(--lt-border-light);
    transition: box-shadow var(--ease), transform var(--ease);
}

.lt-about-value:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.lt-about-value__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--lt-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-md);
    font-size: 20px;
}

.lt-about-value__title {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: var(--lt-ink);
    margin-bottom: var(--sp-sm);
}

.lt-about-value__body {
    font-size: 15px;
    color: var(--lt-text-soft);
    line-height: 1.85;
    font-weight: var(--fw-light);
}

/* ─── Closing CTA (softer than homepage band) ────────────── */
.lt-about-cta {
    background: var(--lt-sage-light);
    text-align: center;
    padding-block: var(--sp-2xl);
}

.lt-about-cta__label {
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lt-sage-dark);
    margin-bottom: var(--sp-md);
}

.lt-about-cta__title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: var(--fw-semibold);
    color: var(--lt-ink);
    line-height: 1.3;
    margin-bottom: var(--sp-md);
}

.lt-about-cta__body {
    font-size: 15px;
    color: var(--lt-text-soft);
    font-weight: var(--fw-light);
    line-height: 1.75;
    max-width: 400px;
    margin-inline: auto;
    margin-bottom: var(--sp-xl);
}

/* ─── CTA secondary discovery links ─────────────────────── */
.lt-about-cta__secondary {
    margin-top: var(--sp-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lt-about-cta__link {
    font-size: 14px;
    color: var(--lt-sage-dark);
    font-weight: var(--fw-medium);
    transition: opacity var(--ease);
}

.lt-about-cta__link:hover { opacity: .65; }

.lt-about-cta__link-sep {
    color: var(--lt-sage);
    opacity: .5;
    font-size: 14px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .lt-about-story__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-2xl);
    }

    .lt-about-story__image-wrap {
        position: static;
        aspect-ratio: 16 / 9;
    }

    .lt-about-story__content {
        padding-block: 0;
    }

    .lt-about-values__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
    }
}

@media (max-width: 600px) {
    .lt-about-hero {
        padding-top: calc(var(--nav-h) + 20px);
    }

    .lt-about-hero__title {
        font-size: clamp(36px, 11vw, 48px);
    }
}
