/* Coriandria (pId 67073) — Our Story page.
   Page-scoped: auto-loaded only for this view, after the (currently absent)
   brand-wide 67073.css, per the custom-page-override skill. All colors come
   from the runtime --brand var (web_config.brand_color = #0e423e) — no
   hardcoded hex, so this stays correct if the brand color ever changes. */

.story-hero,
.story-intro,
.story-questions,
.story-reflect,
.story-belief,
.story-cta {
    --story-ink: #24312d;
    --story-ink-soft: #55645f;
    --story-wash: color-mix(in srgb, var(--brand) 6%, #fff);
}

/* ----- Hero ----- */
.story-hero {
    background: var(--story-wash);
    padding: var(--s-8) 0 var(--s-6);
    text-align: center;
}
.story-hero__inner { max-width: 720px; }
.story-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--brand);
    margin: 0;
}

/* ----- Intro (image left, copy right) ----- */
.story-intro {
    background: #fff;
    padding: var(--s-10) 0;
}
.story-intro__inner {
    max-width: 1040px;
    margin-inline: auto;
    display: grid;
    gap: var(--s-6);
    grid-template-columns: 1fr;
    align-items: center;
}
.story-intro__media { margin: 0; max-width: 480px; margin-inline: auto; }
.story-intro__photo {
    display: block;
    width: 100%;
    /* Matches the source image's native 799x450 ratio — object-fit: cover
       never has to crop since the box ratio already fits the photo. */
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--r-2);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}
.story-intro__body { text-align: center; }
.story-intro__copy {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--story-ink);
    margin: 0;
}

@media (min-width: 768px) {
    .story-intro__inner { grid-template-columns: 480px 1fr; }
    .story-intro__media { margin-inline: 0; }
    .story-intro__body { text-align: left; }
}

/* ----- Questions ----- */
.story-questions {
    background: var(--story-wash);
    padding: var(--s-8) 0 var(--s-10);
    text-align: center;
}
.story-questions__inner { max-width: 640px; margin-inline: auto; }
.story-questions__lead {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--story-ink);
    margin: 0 0 var(--s-5);
}
.story-questions__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--s-3);
}
.story-questions__item {
    position: relative;
    padding-left: var(--s-6);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--story-ink-soft);
    text-align: left;
}
.story-questions__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 10px;
    height: 2px;
    background: var(--brand);
}

/* ----- Reflect (compromise paragraph) ----- */
.story-reflect {
    background: #fff;
    padding: var(--s-8) 0;
}
.story-reflect__inner { max-width: 680px; margin-inline: auto; text-align: center; }
.story-reflect__copy {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--story-ink-soft);
    margin: 0;
}

/* ----- Belief (pull-quote) ----- */
.story-belief {
    background: var(--story-wash);
    padding: var(--s-10) 0;
}
.story-belief__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.story-belief__quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
    font-style: italic;
    color: var(--brand);
    margin: 0;
}

/* ----- CTA ----- */
.story-cta {
    padding: var(--s-10) 0 var(--s-12);
    background: #fff;
    text-align: center;
}
.story-cta__inner { max-width: 620px; margin-inline: auto; }
.story-cta__copy {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--story-ink);
    margin: 0 0 var(--s-6);
}
.story-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 32px;
    border-radius: var(--r-full, 999px);
    background: var(--brand);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}
.story-cta__btn:hover {
    /* Without this, the sitewide `a:hover { color: var(--brand-hover) }`
       rule (theme.css) outranks our plain `.story-cta__btn { color: #fff }`
       on specificity and repaints the label the same green as the
       background — invisible text. Re-assert white explicitly. */
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}
.story-cta__btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}
