/* ══════════════════════════════════════════════════════════
   ABOUT.CSS — About-page-only styles for Forge47
   Depends on: style.css (must be loaded first)
   Covers: hero title/tagline/CTA (about variant), story box
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   HERO — About page overrides (split layout: big title left,
   tagline + CTA right, stacked)
   ══════════════════════════════════════════════════════════ */
.hero.about-hero .hero-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 0 64px 230px;
}

.hero.about-hero .hero-title {
    font-family: 'Horizon', sans-serif;
    font-size: clamp(4.5rem, 8vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    animation: heroFadeUp 1s ease 0.2s both;
    flex: 1 1 55%;
}

.hero.about-hero .hero-tagline {
    flex: 1 1 38%;
    max-width: 460px;
    animation: heroFadeUp 1s ease 0.3s both;
}

.hero.about-hero .hero-tagline p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--frost);
    margin-bottom: 28px;
}

.hero.about-hero .cta_main {
    margin-top: 0;
    justify-content: flex-start;
}

.hero.about-hero .hero-cta {
    width: auto;
    max-width: none;
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    padding: 16px 32px;
    background: #1f1e1c;
    color: var(--gold);
}
.hero.about-hero .hero-cta:hover {
    background: var(--gold);
    color: var(--dark);
}


/* ══════════════════════════════════════════════════════════
   STORY SECTION — Bordered content box
   ══════════════════════════════════════════════════════════ */
.story {
    background: var(--obsidian);
    padding: 120px 24px;
}

.story-box {
    max-width: 780px;
    margin: 0 auto;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    padding: 64px 72px 56px;
}

.story-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--frost);
    text-align: center;
    margin-bottom: 50px;
}
.story-heading .logo-mark {
    height: 2.5em;
    margin-top: -10px;
    display: inline-block;
    vertical-align: middle;
}

.story-body p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(239, 240, 241, 0.85);
    margin-bottom: 26px;
}
.story-body p:last-child { margin-bottom: 0; }

.story-signoff {
    margin-top: 40px;
}
.story-signoff .signoff-name {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--frost);
    margin-bottom: 16px;
}
.story-signoff .signature {
    height: 70px;
    display: block;
}


/* ══════════════════════════════════════════════════════════
   TABLET RESPONSIVE — 769px to 1024px
   ══════════════════════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero.about-hero .hero-content {
        padding: 0 40px 70px;
        gap: 28px;
    }
    .hero.about-hero .hero-title { font-size: clamp(3.8rem, 8vw, 6rem); }
    .hero.about-hero .hero-tagline p { font-size: 1.25rem; }

    .story { padding: 90px 24px; }
    .story-box { padding: 48px 48px 44px; }
}


/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — max-width: 768px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero.about-hero .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 22px 40px;
        gap: 24px;
    }
    .hero.about-hero .hero-title { font-size: clamp(3.2rem, 14vw, 5rem); }
    .hero.about-hero .hero-tagline { max-width: 100%; }
    .hero.about-hero .hero-tagline p { font-size: 1.15rem; }
    .hero.about-hero .hero-cta { font-size: 0.95rem; padding: 13px 26px; }

    .story { padding: 60px 16px; }
    .story-box { padding: 36px 24px 32px; }
    .story-heading { font-size: 1.5rem; margin-bottom: 32px; }
    .story-body p { font-size: 0.98rem; line-height: 1.8; margin-bottom: 20px; }
}

@media (max-width: 390px) {
    .story-box { padding: 30px 18px 26px; }
    .story-heading { font-size: 1.3rem; }
}