/*
    assets/css/about-shop.css

    The About page, on ozroofracks.shop's /about. Added 2026-08-20.

    Values from ozroofracks.shop/app/globals.css:
      .info-hero        92px 0, radial #175477 over --ink, h1 clamp(43,5.5vw,72)
      .story-grid       1.08fr .92fr, gap clamp(50px, 9vw, 120px)
      .story-points     13px gap, 21px padding, 1px --line, 11px radius
      .values-band      48px 0 on --sky, 3 columns divided by #c9dfed rules
      .product-details  92px 0 on #f5f8fa
      .detail-card      31px padding, 13px radius, 0 5px 22px rgba(15,34,49,.06)

    pages/about.php wraps this in `section#about.wrapper.major-pad > .inner`,
    which would box the full-bleed bands inside a padded container -- so that
    wrapper is neutralised here rather than by editing the page shell, which
    also serves as the pattern for the other pages/ files.
*/

/* The page shell pads and centres its content; these sections are full-bleed. */
/*
    KEYED ON AN ID THAT WAS NOT UNIQUE. pages/how-to-order.php used
    id="about" too, so this full-bleed rule stripped that page's container as
    well -- text flush to the window edge. That page is id="how-to-order" now.

    If another page ever needs id="about", this rule follows it. A body-level
    class would be the sturdier key.
*/
#about.wrapper,
#about > .inner {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* -------------------------------------------------------------- info hero */

.info-hero {
    padding: 92px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 84% 30%, #175477 0, transparent 34%),
        var(--ink);
}

.info-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.info-hero .eyebrow {
    color: #9fd6ff;
}

.info-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--white);
    font-size: clamp(43px, 5.5vw, 72px);
    line-height: 1.03;
    letter-spacing: -.052em;
    text-transform: none;
}

.info-hero p {
    max-width: 700px;
    margin: 25px 0 0;
    color: #bed0db;
    font-size: 16px;
    line-height: 1.75;
}

/* ------------------------------------------------------------- the story */

.about-story {
    padding: 92px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(50px, 9vw, 120px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.story-grid h2 {
    margin: 0 0 20px;
    font-size: clamp(31px, 3.8vw, 48px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.story-grid > div:first-child p {
    color: var(--muted);
    line-height: 1.8;
}

.story-points {
    display: grid;
    gap: 13px;
}

.story-points article {
    display: flex;
    gap: 15px;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--blue);
}

.story-points i {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1.2;
}

.story-points h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 16px;
}

.story-points p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

/* ------------------------------------------------------------ the values */

.values-band {
    padding: 48px 0;
    background: var(--sky);
}

.values-band-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.values-band-inner > div {
    padding: 6px 25px;
    border-right: 1px solid #c9dfed;
}

.values-band-inner > div:last-child {
    border-right: 0;
}

.values-band strong,
.values-band span {
    display: block;
}

.values-band strong {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 15px;
}

.values-band span {
    color: var(--muted);
    font-size: 11px;
}

/* --------------------------------- what makes ozroofracks different? */

.product-details-section {
    padding: 92px 0;
    background: #f5f8fa;
}

.product-details-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.detail-heading {
    max-width: 740px;
    margin-bottom: 38px;
}

.detail-heading h2 {
    margin: 0;
    font-size: clamp(31px, 3.6vw, 47px);
    line-height: 1.13;
    letter-spacing: -.04em;
}

.detail-heading p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.detail-card {
    padding: 31px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .06);
}

.detail-card h3 {
    margin: 0 0 18px;
    font-size: 21px;
}

.detail-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

.detail-card li i {
    flex: 0 0 auto;
    margin-top: .15em;
    color: var(--blue);
}

@media screen and (max-width: 980px) {
    .story-grid,
    .detail-columns,
    .values-band-inner {
        grid-template-columns: 1fr;
    }

    .values-band-inner > div {
        padding: 6px 0;
        border-right: 0;
    }
}
