/* ============================================================================
   ABOUT 2026  —  .ab-*
   ----------------------------------------------------------------------------
   The "about us" page. It shares the landing page's token set (landing-2026.css
   is loaded alongside it) and adds only what this page needs: an editorial
   story column, the pillars, the reasons grid, a click-to-play video panel and
   the numbers strip.

   The page it replaces was carried by a cover image and a counter block that a
   real deployment does not have, so everything here degrades to the copy and
   the food photography that always exist.
   ========================================================================== */

/* ------------------------------------------------------------------- HERO */
.ab-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--lp-night);
    padding-block: clamp(48px, 10vw, 104px);
}
.ab-hero__mosaic {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    z-index: 0;
}
@media (min-width: 768px)  { .ab-hero__mosaic { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .ab-hero__mosaic { grid-template-columns: repeat(6, 1fr); } }
.ab-hero__mosaic img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: saturate(.85) brightness(.6);
}
.ab-hero__scrim {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to top, rgba(16, 10, 6, .96) 8%, rgba(16, 10, 6, .86) 48%, rgba(16, 10, 6, .7) 100%),
        radial-gradient(70% 70% at 50% 100%, rgba(var(--lp-brand-rgb), .28), transparent 72%);
}
.ab-hero__inner { position: relative; z-index: 2; text-align: center; color: #fff; }
.ab-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 16px;
    border-radius: var(--lp-pill);
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .26);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    font-size: 12.5px; font-weight: 800;
    color: #fff;
}
.ab-hero__eyebrow i { color: var(--lp-accent); font-size: 12px; }
.ab-hero__title {
    font-family: var(--lp-display);
    font-size: clamp(1.9rem, 6vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 16px 0 0;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}
html[dir="rtl"] .ab-hero__title { font-weight: 800; line-height: 1.28; text-align: center; }
.ab-hero__sub {
    margin: 14px auto 0;
    max-width: 54ch;
    font-size: clamp(.92rem, 2.4vw, 1.06rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
}
.ab-hero__crumb {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 22px;
    font-size: 12.5px; font-weight: 700;
    color: rgba(255, 255, 255, .62);
}
.ab-hero__crumb a { color: rgba(255, 255, 255, .82) !important; text-decoration: none !important; }
.ab-hero__crumb a:hover { color: #fff !important; }
.ab-hero__crumb i { font-size: 9px; opacity: .55; }
html[dir="rtl"] .ab-hero__crumb i { transform: scaleX(-1); }

/* ------------------------------------------------------------------ STORY */
.ab-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(26px, 5vw, 52px);
    align-items: start;
}
@media (min-width: 940px) {
    .ab-story { grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); }
}

/* Prose: admin-entered HTML, so the rules here have to be generous about what
   tags come back rather than assuming a fixed structure. */
.ab-prose {
    font-size: clamp(.92rem, 2.2vw, 1rem);
    line-height: 1.95;
    color: var(--lp-ink-soft);
}
.ab-prose > *:first-child { margin-block-start: 0; }
.ab-prose > *:last-child  { margin-block-end: 0; }
.ab-prose p { margin: 0 0 1.05em; }
.ab-prose strong, .ab-prose b { color: var(--lp-ink); font-weight: 800; }
.ab-prose h1, .ab-prose h2, .ab-prose h3, .ab-prose h4 {
    font-family: var(--lp-display);
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--lp-ink);
    margin: 1.6em 0 .6em;
}
html[dir="rtl"] .ab-prose h1, html[dir="rtl"] .ab-prose h2,
html[dir="rtl"] .ab-prose h3, html[dir="rtl"] .ab-prose h4 { font-weight: 800; }
.ab-prose ul, .ab-prose ol { margin: 0 0 1.05em; padding-inline-start: 1.3em; }
.ab-prose li { margin-bottom: .5em; }
.ab-prose img { max-width: 100%; height: auto; border-radius: var(--lp-r-md); }
.ab-prose a { color: var(--lp-brand); text-decoration: underline; text-underline-offset: 3px; }

/* Founding marker pulled out of the prose so the year reads at a glance. */
.ab-since {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 22px;
    padding: 12px 18px;
    border-radius: var(--lp-r-md);
    background: rgba(var(--lp-brand-rgb), .07);
    border: 1px solid rgba(var(--lp-brand-rgb), .16);
}
.ab-since__num {
    font-family: var(--lp-display);
    font-size: 1.7rem; font-weight: 700;
    line-height: 1;
    color: var(--lp-brand);
}
.ab-since__label { font-size: .8rem; font-weight: 700; color: var(--lp-ink-mute); line-height: 1.4; }

/* Photo collage stands in for the cover image the page used to need. */
.ab-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
}
.ab-collage__cell {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--lp-r-md);
    overflow: hidden;
    background: var(--lp-surface-2);
    box-shadow: var(--lp-sh-1);
}
.ab-collage__cell:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
.ab-collage__cell img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s var(--lp-ease);
}
.ab-collage__cell:hover img { transform: scale(1.05); }

/* ---------------------------------------------------------------- REASONS */
.ab-reasons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (min-width: 900px) { .ab-reasons { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.ab-reason {
    display: flex; flex-direction: column; gap: 10px;
    padding: 20px 18px;
    border-radius: var(--lp-r-lg);
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-sh-1);
    transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}
.ab-reason:hover { transform: translateY(-3px); box-shadow: var(--lp-sh-2); }
.ab-reason__icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(var(--lp-brand-rgb), .10);
    color: var(--lp-brand);
    font-size: 17px;
}
.ab-reason__title {
    margin: 0;
    font-size: .95rem; font-weight: 800; line-height: 1.45;
    color: var(--lp-ink);
}

/* ---------------------------------------------------------------- NUMBERS */
.ab-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border-radius: var(--lp-r-lg);
    overflow: hidden;
    background: var(--lp-line-2);
    border: 1px solid var(--lp-line-2);
}
@media (min-width: 760px) { .ab-numbers { grid-template-columns: repeat(4, 1fr); } }
.ab-number {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 24px 14px;
    background: var(--lp-surface);
    text-align: center;
}
.ab-number__icon { color: var(--lp-brand); font-size: 16px; margin-bottom: 4px; }
.ab-number__num {
    font-family: var(--lp-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1;
    color: var(--lp-ink);
    font-variant-numeric: tabular-nums;
}
.ab-number__label { font-size: .78rem; font-weight: 700; color: var(--lp-ink-mute); }

/* ------------------------------------------------------------------ VIDEO */
/* Click-to-play: embedding YouTube on load pulls in their player and cookies
   on every visit, for a video most visitors never start. */
.ab-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--lp-r-lg);
    overflow: hidden;
    background: var(--lp-night);
    box-shadow: var(--lp-sh-2);
    cursor: pointer;
    border: 0;
    padding: 0;
    width: 100%;
    display: block;
}
.ab-video__poster {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.62);
    transition: transform .5s var(--lp-ease), filter .3s;
}
.ab-video:hover .ab-video__poster { transform: scale(1.04); filter: brightness(.52); }
.ab-video__play {
    position: absolute;
    inset-block-start: 50%; inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    width: 68px; height: 68px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .94);
    color: var(--lp-brand);
    font-size: 20px;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .6);
    transition: transform .25s var(--lp-ease);
}
html[dir="rtl"] .ab-video__play i { transform: scaleX(-1); }
.ab-video:hover .ab-video__play { transform: translate(-50%, -50%) scale(1.08); }
.ab-video__label {
    position: absolute;
    inset-block-end: 16px; inset-inline: 16px;
    color: #fff;
    font-size: .92rem; font-weight: 800;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}
.ab-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ab-video.is-playing { cursor: default; }
.ab-video.is-playing .ab-video__poster,
.ab-video.is-playing .ab-video__play,
.ab-video.is-playing .ab-video__label { display: none; }

/* ---------------------------------------------------------------- PILLARS */
/* Kept from the previous page — the numbered mission/vision/promise cards were
   the one block on it that already worked. */
.ab-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 860px) { .ab-pillars { grid-template-columns: repeat(3, 1fr); } }
.ab-pillar {
    position: relative;
    padding: 26px 22px;
    border-radius: var(--lp-r-lg);
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-sh-1);
    overflow: hidden;
    transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}
.ab-pillar:hover { transform: translateY(-4px); box-shadow: var(--lp-sh-2); }
.ab-pillar__n {
    position: absolute;
    inset-block-start: 14px; inset-inline-start: 18px;
    font-family: var(--lp-display);
    font-size: 2.6rem; font-weight: 700;
    line-height: 1;
    color: rgba(var(--lp-brand-rgb), .10);
    pointer-events: none;
}
.ab-pillar__icon {
    width: 50px; height: 50px;
    border-radius: 15px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(140deg, var(--lp-brand), var(--lp-brand-dark));
    color: #fff;
    font-size: 18px;
    box-shadow: var(--lp-sh-brand);
    margin-bottom: 14px;
}
.ab-pillar__title { margin: 0 0 6px; font-size: 1.06rem; font-weight: 800; color: var(--lp-ink); }
.ab-pillar__text { margin: 0; font-size: .875rem; line-height: 1.75; color: var(--lp-ink-mute); }
