/* ==========================================================================
   ZIVAH · OUR STORY & MISSION
   --------------------------------------------------------------------------
   Loaded AFTER core.css. Inherits all `--zc-*` brand tokens.
   Class prefix per section: .zc-osm-{section}__*
   LOCKED RULES:
     • NO max-width caps anywhere, full-bleed sections.
     • Container padding: var(--zc-pad-x) desktop / var(--zc-pad-x-mb) mobile.
     • Two brand colors used intentionally per section:
         AMBER  → warmth, hospitality, hover/CTA
         NAVY   → clinical authority, founder/CTA depth
     • No gradient body-text, no italic, no em-dashes.
   --------------------------------------------------------------------------
   §0   Page reset
   §1   Hero, asymmetric editorial split + name-origin card
   §2   Origin, 2-col narrative + premium pull-quote
   §3   Mission & Vision, twin premium cards
   §4   Pillars, 4 numbered editorial cards
   §5   Timeline, year-grouped chapter cards
   §6   Closing CTA, navy band with amber accent
   §7   Mobile responsive overrides
   ========================================================================== */


/* §0  ==== PAGE RESET, kill the inherited content-wrap padding ======== */
body .content-wrap.my-wrap-no-padding { padding: 0 !important; }
body .content-wrap.my-wrap-no-padding > div + div,
body .content-wrap.my-wrap-no-padding section { margin: 0; }


/* ==========================================================================
   §1   HERO
   ========================================================================== */
.zc-osm-hero {
    position: relative;
    padding: clamp(14px, 1.6vw, 22px) 0 clamp(28px, 3.5vw, 50px);
    background:
        radial-gradient(ellipse at 92% 6%, rgba(207, 138, 63, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 92%, rgba(46, 75, 113, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--zc-snow) 0%, var(--zc-off-white) 100%);
    overflow: hidden;
}
.zc-osm-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--zc-amber-a25), var(--zc-navy-a15), transparent);
}

/* Editorial topline */
.zc-osm-hero__topline {
    display: flex; align-items: center; gap: 14px;
    padding: 0 var(--zc-pad-x);
    margin-bottom: clamp(14px, 1.6vw, 20px);
}
.zc-osm-hero__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-charcoal), var(--zc-deep));
    border: 1px solid var(--zc-amber-a45);
    color: var(--zc-amber-lt);
    font-family: var(--zc-f-display); font-size: 18px; font-weight: 500;
    letter-spacing: -0.5px; flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(18, 12, 4, 0.18);
}
.zc-osm-hero__topline-text {
    font-family: var(--zc-f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 2.4px; text-transform: uppercase;
    color: var(--zc-warm-dk); flex-shrink: 0;
}
.zc-osm-hero__topline-rule {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
}
.zc-osm-hero__topline-stars {
    display: inline-flex; gap: 6px; color: var(--zc-amber);
    font-size: 8px; flex-shrink: 0; opacity: 0.6;
}

.zc-osm-hero__inner {
    position: relative; z-index: 1;
    width: 100%;
    padding-left: var(--zc-pad-x);
    padding-right: var(--zc-pad-x);
}

/* Branded breadcrumb */
.zc-osm-hero__crumb {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    margin: 0 0 clamp(20px, 2.5vw, 32px);
    font-family: var(--zc-f-heading); font-size: 11.5px;
    font-weight: 600; letter-spacing: 0.4px;
}
.zc-osm-hero__crumb-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 11px; border-radius: 999px;
    text-decoration: none; color: var(--zc-warm-dk);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--zc-linen);
    transition: all 0.3s var(--zc-ease);
}
.zc-osm-hero__crumb-link:hover { color: var(--zc-amber-dk); border-color: var(--zc-amber-a35); background: rgba(255, 255, 255, 0.95); }
.zc-osm-hero__crumb-sep { color: var(--zc-stone); font-size: 9px; }
.zc-osm-hero__crumb-current {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 11px; border-radius: 999px;
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    color: var(--zc-white);
    box-shadow: 0 6px 14px var(--zc-amber-a35);
}

/* Layout, asymmetric split */
.zc-osm-hero__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    margin-bottom: clamp(28px, 3vw, 44px);
}

.zc-osm-hero__editorial { display: flex; flex-direction: column; }
.zc-osm-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
    font-family: var(--zc-f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 2.6px; text-transform: uppercase;
    color: var(--zc-amber-dk);
    margin-bottom: 12px;
}
.zc-osm-hero__eyebrow-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    box-shadow: 0 0 10px var(--zc-amber-a45);
}
.zc-osm-hero__title {
    font-family: var(--zc-f-display);
    font-size: clamp(30px, 3vw + 12px, 56px);
    font-weight: 300; line-height: 1.05; letter-spacing: -1.4px;
    color: var(--zc-charcoal); margin: 0 0 14px 0;
}
.zc-osm-hero__title-accent {
    font-weight: 500; position: relative; display: inline-block;
    color: var(--zc-amber-dk);
}
.zc-osm-hero__title-accent::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 8px;
    background: radial-gradient(ellipse at center, var(--zc-amber-a35) 0%, transparent 70%);
    z-index: -1;
}
.zc-osm-hero__lead {
    font-family: var(--zc-f-body);
    font-size: 15px; line-height: 1.65; color: var(--zc-warm-dk);
    margin: 0 0 22px 0;
}

.zc-osm-hero__quick { display: flex; flex-wrap: wrap; gap: 8px; }
.zc-osm-hero__chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 14px; border-radius: 999px;
    background: var(--zc-white);
    border: 1px solid var(--zc-linen);
    font-family: var(--zc-f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 0.6px; text-transform: uppercase;
    color: var(--zc-warm-dk);
    text-decoration: none;
    transition: all 0.35s var(--zc-ease-spring);
}
.zc-osm-hero__chip i { font-size: 12px; color: var(--zc-amber-dk); }
.zc-osm-hero__chip:hover {
    transform: translateY(-2px); border-color: var(--zc-amber-a35);
    color: var(--zc-amber-dk); box-shadow: 0 8px 18px rgba(207, 138, 63, 0.12);
}
.zc-osm-hero__chip--cta {
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    color: var(--zc-white); border-color: transparent;
    box-shadow: 0 8px 18px var(--zc-amber-a35);
}
.zc-osm-hero__chip--cta i { color: var(--zc-white); }
.zc-osm-hero__chip--cta:hover { color: var(--zc-white); background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk)); }

/* Name-origin card, the visual anchor on the right */
.zc-osm-hero__name {
    position: relative;
    background:
        radial-gradient(ellipse at 12% 8%, var(--zc-amber-a18) 0%, transparent 55%),
        linear-gradient(180deg, #fbf7ee 0%, #f5efe1 100%);
    border: 1px solid var(--zc-linen);
    border-radius: 4px;
    padding: clamp(22px, 2.4vw, 34px) clamp(22px, 2.4vw, 34px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 18px 40px -22px rgba(106, 70, 24, 0.30);
    overflow: hidden;
}
.zc-osm-hero__name::before {
    content: '';
    position: absolute; top: 0; left: 16px; right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--zc-amber-dk) 18%, var(--zc-amber-lt) 50%, var(--zc-amber-dk) 82%, transparent 100%);
}
.zc-osm-hero__name::after {
    content: 'Z';
    position: absolute;
    bottom: -56px; right: -32px;
    font-family: var(--zc-f-display);
    font-size: 280px;
    font-weight: 200;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--zc-amber-a18);
    pointer-events: none;
    z-index: 0;
}
.zc-osm-hero__name-eyebrow {
    position: relative; z-index: 1;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--zc-amber-dk);
}
.zc-osm-hero__name-eyebrow::before { content: '·'; margin-right: 4px; }
.zc-osm-hero__name-eyebrow::after  { content: '·'; margin-left: 4px; }

.zc-osm-hero__name-word {
    position: relative; z-index: 1;
    margin: 6px 0 4px;
    font-family: var(--zc-f-display);
    font-size: clamp(56px, 5vw + 18px, 84px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--zc-charcoal);
}
.zc-osm-hero__name-pron {
    position: relative; z-index: 1;
    margin: 0 0 18px;
    font-family: var(--zc-f-body);
    font-size: 13px; color: var(--zc-warm-mid);
    letter-spacing: 0.4px;
}
.zc-osm-hero__name-meanings {
    position: relative; z-index: 1;
    list-style: none; margin: 0; padding: 0;
    border-top: 1px dashed var(--zc-linen);
}
.zc-osm-hero__name-meanings li {
    display: grid; grid-template-columns: auto 1fr;
    gap: 12px; align-items: start;
    padding: 10px 0;
    border-bottom: 1px dashed var(--zc-linen);
}
.zc-osm-hero__name-meanings li:last-child { border-bottom: none; }
.zc-osm-hero__name-num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 600;
    color: var(--zc-amber-dk); letter-spacing: 1.2px;
    padding-top: 3px;
}
.zc-osm-hero__name-meanings b {
    display: block;
    font-family: var(--zc-f-display);
    font-size: 16px; font-weight: 500;
    color: var(--zc-charcoal); letter-spacing: -0.2px;
    margin-bottom: 2px;
}
.zc-osm-hero__name-meanings small {
    display: block;
    font-size: 12.5px; line-height: 1.45;
    color: var(--zc-warm-dk);
}
.zc-osm-hero__name-foot {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 14px;
    font-family: var(--zc-f-heading); font-size: 11px; font-weight: 600;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--zc-amber-dk);
}
.zc-osm-hero__name-foot i { font-size: 13px; }


/* ==========================================================================
   §2   ORIGIN
   ========================================================================== */
.zc-osm-origin {
    padding: clamp(40px, 5vw, 80px) 0;
    background: var(--zc-white);
    border-top: 1px solid var(--zc-linen);
    border-bottom: 1px solid var(--zc-linen);
}
.zc-osm-origin__inner {
    padding-left: var(--zc-pad-x);
    padding-right: var(--zc-pad-x);
}
.zc-osm-origin__head {
    margin-bottom: clamp(28px, 3vw, 44px);
}
.zc-osm-origin__overline {
    display: block;
    font-family: var(--zc-f-heading);
    font-size: 11.5px; font-weight: 700; letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    margin-bottom: 12px;
}
.zc-osm-origin__title {
    margin: 0; max-width: 22ch;
    font-family: var(--zc-f-display);
    font-size: clamp(26px, 2.4vw + 14px, 44px);
    font-weight: 300; line-height: 1.1; letter-spacing: -1px;
    color: var(--zc-charcoal);
}
.zc-osm-origin__title-accent {
    color: var(--zc-amber-dk);
    font-weight: 500;
    display: inline-block;
}

.zc-osm-origin__layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.zc-osm-origin__copy { color: var(--zc-warm-dk); }
.zc-osm-origin__copy p {
    font-family: var(--zc-f-body);
    font-size: 15.5px; line-height: 1.75;
    margin: 0 0 16px;
    color: var(--zc-warm-dk);
}
.zc-osm-origin__lead {
    font-size: 17px !important;
    color: var(--zc-charcoal) !important;
    font-weight: 400;
    line-height: 1.65 !important;
}

/* Premium pull-quote, navy-on-cream */
.zc-osm-origin__pull {
    position: relative;
    margin: 0;
    padding: 28px 26px 24px;
    background:
        radial-gradient(ellipse at 8% 0%, rgba(46, 75, 113, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, #fbf7ee 0%, #f5efe1 100%);
    border: 1px solid var(--zc-linen);
    border-radius: 4px;
    box-shadow: 0 18px 40px -22px rgba(46, 75, 113, 0.25);
    overflow: hidden;
}
.zc-osm-origin__pull::before {
    content: '';
    position: absolute; top: 0; left: 16px; right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--zc-amber-dk) 50%, transparent 100%);
}
.zc-osm-origin__pull-mark {
    display: block;
    font-family: var(--zc-f-display);
    font-size: 80px; line-height: 0.6;
    color: var(--zc-amber-a35);
    margin-bottom: 4px;
}
.zc-osm-origin__pull-quote {
    margin: 0 0 18px;
    font-family: var(--zc-f-display);
    font-size: clamp(18px, 1.2vw + 12px, 24px);
    font-weight: 400;
    line-height: 1.4; letter-spacing: -0.4px;
    color: var(--zc-charcoal);
}
.zc-osm-origin__pull-cite {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}
.zc-osm-origin__pull-rule {
    width: 28px; height: 1px;
    background: var(--zc-amber-dk);
}
.zc-osm-origin__pull-cite b {
    display: block;
    font-family: var(--zc-f-heading);
    font-size: 13px; font-weight: 600;
    color: var(--zc-charcoal);
    letter-spacing: 0.2px;
}
.zc-osm-origin__pull-cite small {
    display: block;
    font-size: 11.5px; color: var(--zc-warm-mid);
    letter-spacing: 0.2px;
}


/* ==========================================================================
   §3   MISSION & VISION, twin premium cards
   ========================================================================== */
.zc-osm-mv {
    padding: clamp(44px, 5vw, 84px) 0;
    background:
        radial-gradient(ellipse at 90% 0%, rgba(207, 138, 63, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 100%, rgba(46, 75, 113, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, var(--zc-snow) 0%, var(--zc-off-white) 100%);
}
.zc-osm-mv__inner {
    padding-left: var(--zc-pad-x);
    padding-right: var(--zc-pad-x);
}
.zc-osm-mv__head {
    margin-bottom: clamp(26px, 3vw, 40px);
}
.zc-osm-mv__head-row {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 12px;
}
.zc-osm-mv__overline {
    font-family: var(--zc-f-heading);
    font-size: 11px; font-weight: 700; letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    flex-shrink: 0;
}
.zc-osm-mv__head-rule {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
}
.zc-osm-mv__head-meta {
    font-family: var(--zc-f-body);
    font-size: 12px; color: var(--zc-warm-mid);
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.zc-osm-mv__title {
    margin: 0; max-width: 26ch;
    font-family: var(--zc-f-display);
    font-size: clamp(26px, 2.2vw + 14px, 42px);
    font-weight: 300; line-height: 1.1; letter-spacing: -1px;
    color: var(--zc-charcoal);
}
.zc-osm-mv__title-accent {
    color: var(--zc-amber-dk);
    font-weight: 500;
    display: inline-block;
}

.zc-osm-mv__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.4vw, 36px);
}
.zc-osm-mv__card {
    position: relative;
    padding: clamp(24px, 2.6vw, 36px);
    border-radius: 4px;
    background: var(--zc-white);
    border: 1px solid var(--zc-linen);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 16px 38px -22px rgba(106, 70, 24, 0.20);
    overflow: hidden;
}
.zc-osm-mv__card-num {
    position: absolute;
    top: 18px; right: 22px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.4px;
    color: var(--zc-amber-dk);
    opacity: 0.7;
}
.zc-osm-mv__card-foil {
    position: absolute; top: 0; left: 22px; right: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--zc-amber-dk) 18%, var(--zc-amber-lt) 50%, var(--zc-amber-dk) 82%, transparent 100%);
    opacity: 0.65;
}
.zc-osm-mv__card-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 10px; border-radius: 999px;
    background: var(--zc-amber-a08);
    border: 1px solid var(--zc-amber-a25);
    font-family: var(--zc-f-heading); font-size: 10.5px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--zc-amber-dk);
    margin-bottom: 16px;
}
.zc-osm-mv__card-eyebrow i { font-size: 12px; }
.zc-osm-mv__card-title {
    margin: 0 0 14px;
    font-family: var(--zc-f-display);
    font-size: clamp(20px, 1.4vw + 10px, 26px);
    font-weight: 400; line-height: 1.25; letter-spacing: -0.4px;
    color: var(--zc-charcoal);
}
.zc-osm-mv__card-accent {
    color: var(--zc-amber-dk);
    font-weight: 500;
    display: inline-block;
    position: relative;
}
.zc-osm-mv__card-accent::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
    height: 6px;
    background: radial-gradient(ellipse at center, var(--zc-amber-a35) 0%, transparent 70%);
    z-index: -1;
}
.zc-osm-mv__card-body {
    margin: 0 0 18px;
    font-family: var(--zc-f-body);
    font-size: 14px; line-height: 1.65;
    color: var(--zc-warm-dk);
}
.zc-osm-mv__card-list {
    list-style: none; margin: 0; padding: 14px 0 0;
    border-top: 1px dashed var(--zc-linen);
    display: flex; flex-direction: column; gap: 9px;
}
.zc-osm-mv__card-list li {
    display: grid; grid-template-columns: 18px 1fr; gap: 10px;
    align-items: start;
    font-family: var(--zc-f-body);
    font-size: 13.5px; line-height: 1.5;
    color: var(--zc-warm-dk);
}
.zc-osm-mv__card-list li i { color: var(--zc-amber-dk); font-size: 14px; line-height: 1.5; }

/* Vision card, navy treatment */
.zc-osm-mv__card--vision {
    background:
        radial-gradient(ellipse at 100% 100%, rgba(46, 75, 113, 0.06) 0%, transparent 55%),
        var(--zc-white);
    border-color: var(--zc-navy-a15);
}
.zc-osm-mv__card--vision .zc-osm-mv__card-eyebrow {
    background: rgba(46, 75, 113, 0.08);
    border-color: rgba(46, 75, 113, 0.30);
    color: #2e4b71;
}
.zc-osm-mv__card--vision .zc-osm-mv__card-foil {
    background: linear-gradient(90deg, transparent 0%, #2e4b71 18%, #5a78a3 50%, #2e4b71 82%, transparent 100%);
}
.zc-osm-mv__card--vision .zc-osm-mv__card-num { color: #2e4b71; }
.zc-osm-mv__card--vision .zc-osm-mv__card-accent { color: #2e4b71; }
.zc-osm-mv__card--vision .zc-osm-mv__card-list li i { color: #2e4b71; }


/* ==========================================================================
   §4   PILLARS, four numbered editorial cards
   ========================================================================== */
.zc-osm-pillars {
    padding: clamp(44px, 5vw, 80px) 0;
    background: var(--zc-white);
    border-top: 1px solid var(--zc-linen);
}
.zc-osm-pillars__inner {
    padding-left: var(--zc-pad-x);
    padding-right: var(--zc-pad-x);
}
.zc-osm-pillars__head {
    margin-bottom: clamp(26px, 3vw, 40px);
    max-width: 60ch;
}
.zc-osm-pillars__overline {
    display: block;
    font-family: var(--zc-f-heading);
    font-size: 11.5px; font-weight: 700; letter-spacing: 2.4px;
    text-transform: uppercase; color: var(--zc-amber-dk);
    margin-bottom: 12px;
}
.zc-osm-pillars__title {
    margin: 0 0 12px;
    font-family: var(--zc-f-display);
    font-size: clamp(26px, 2.2vw + 14px, 42px);
    font-weight: 300; line-height: 1.1; letter-spacing: -1px;
    color: var(--zc-charcoal);
}
.zc-osm-pillars__title-accent {
    color: var(--zc-amber-dk); font-weight: 500;
    display: inline-block;
}
.zc-osm-pillars__sub {
    margin: 0;
    font-family: var(--zc-f-body);
    font-size: 14.5px; line-height: 1.6;
    color: var(--zc-warm-dk);
}

.zc-osm-pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 1.8vw, 24px);
}
.zc-osm-pillars__card {
    position: relative;
    padding: 24px 22px 22px;
    background: var(--zc-white);
    border: 1px solid var(--zc-linen);
    border-radius: 4px;
    transition: transform 0.35s var(--zc-ease-spring), border-color 0.35s var(--zc-ease), box-shadow 0.35s var(--zc-ease);
    overflow: hidden;
}
.zc-osm-pillars__card:hover {
    transform: translateY(-3px);
    border-color: var(--zc-amber-a35);
    box-shadow: 0 18px 36px -18px rgba(207, 138, 63, 0.30);
}
.zc-osm-pillars__card-num {
    display: block;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 600; letter-spacing: 1.4px;
    color: var(--zc-amber-dk);
    opacity: 0.85;
    margin-bottom: 12px;
}
.zc-osm-pillars__card-ic {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85) 0%, transparent 60%),
        linear-gradient(135deg, var(--zc-amber-a25), var(--zc-amber-a08));
    border: 1px solid var(--zc-amber-a35);
    color: var(--zc-amber-dk);
    font-size: 18px;
    margin-bottom: 14px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 4px 12px -4px rgba(168, 104, 40, 0.20);
}
.zc-osm-pillars__card-title {
    margin: 0 0 8px;
    font-family: var(--zc-f-display);
    font-size: 19px; font-weight: 500;
    line-height: 1.2; letter-spacing: -0.3px;
    color: var(--zc-charcoal);
}
.zc-osm-pillars__card-body {
    margin: 0;
    font-family: var(--zc-f-body);
    font-size: 13.5px; line-height: 1.6;
    color: var(--zc-warm-dk);
}
.zc-osm-pillars__card-corner {
    position: absolute; top: 0; right: 0;
    width: 28px; height: 28px;
    border-top: 1px solid var(--zc-amber-a35);
    border-right: 1px solid var(--zc-amber-a35);
    pointer-events: none;
    transition: width 0.35s var(--zc-ease), height 0.35s var(--zc-ease);
}
.zc-osm-pillars__card:hover .zc-osm-pillars__card-corner { width: 40px; height: 40px; }


/* ==========================================================================
   §5   TIMELINE, year-grouped editorial chapter cards
   --------------------------------------------------------------------------
   Three premium cards on a soft cream surface. Each card has a gold-foil
   top hairline, monospaced "·Chapter NN·" tag, large display year and
   1-2 numbered milestones. Alternates amber and navy tone like the
   meet-our-team section rhythm.
   ========================================================================== */
.zc-osm-tl {
    position: relative;
    padding: clamp(48px, 5vw, 88px) 0;
    background:
        radial-gradient(ellipse at 92% 6%, rgba(207, 138, 63, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 92%, rgba(46, 75, 113, 0.08)  0%, transparent 50%),
        linear-gradient(180deg, var(--zc-snow) 0%, var(--zc-off-white) 100%);
    overflow: hidden;
}
.zc-osm-tl::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--zc-amber-a25), var(--zc-navy-a15), transparent);
}
.zc-osm-tl__inner {
    position: relative; z-index: 1;
    padding-left: var(--zc-pad-x);
    padding-right: var(--zc-pad-x);
}

/* Section header — eyebrow + rule + meta strip, then big editorial title */
.zc-osm-tl__head {
    margin-bottom: clamp(28px, 3vw, 44px);
    max-width: 60ch;
}
.zc-osm-tl__head-row {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 12px;
}
.zc-osm-tl__overline {
    font-family: var(--zc-f-heading);
    font-size: 11px; font-weight: 700; letter-spacing: 2.4px;
    text-transform: uppercase; color: var(--zc-amber-dk);
    flex-shrink: 0;
}
.zc-osm-tl__head-rule {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
}
.zc-osm-tl__head-meta {
    font-family: var(--zc-f-body);
    font-size: 12px; color: var(--zc-warm-mid);
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.zc-osm-tl__title {
    margin: 0 0 12px;
    font-family: var(--zc-f-display);
    font-size: clamp(26px, 2.2vw + 14px, 42px);
    font-weight: 300; line-height: 1.1; letter-spacing: -1px;
    color: var(--zc-charcoal);
}
.zc-osm-tl__title-accent {
    color: var(--zc-amber-dk); font-weight: 500;
    display: inline-block;
    position: relative;
}
.zc-osm-tl__title-accent::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 8px;
    background: radial-gradient(ellipse at center, var(--zc-amber-a35) 0%, transparent 70%);
    z-index: -1;
}
.zc-osm-tl__sub {
    margin: 0;
    font-family: var(--zc-f-body);
    font-size: 14.5px; line-height: 1.6;
    color: var(--zc-warm-dk);
}

/* Chapter grid — 3 cards on desktop, 1 column on mobile */
.zc-osm-tl__chapters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.4vw, 32px);
    align-items: stretch;
}

/* Chapter card */
.zc-osm-tl__chapter {
    position: relative;
    display: flex; flex-direction: column;
    padding: clamp(22px, 2.2vw, 30px);
    background:
        radial-gradient(ellipse at 12% 8%, var(--zc-amber-a18) 0%, transparent 55%),
        linear-gradient(180deg, #fbf7ee 0%, #f5efe1 100%);
    border: 1px solid var(--zc-linen);
    border-radius: 4px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 16px 38px -22px rgba(106, 70, 24, 0.22);
    overflow: hidden;
    transition: transform 0.4s var(--zc-ease-spring), box-shadow 0.4s var(--zc-ease), border-color 0.4s var(--zc-ease);
}
.zc-osm-tl__chapter:hover {
    transform: translateY(-3px);
    border-color: var(--zc-amber-a35);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 22px 44px -22px rgba(106, 70, 24, 0.35);
}

/* Gold-foil top hairline (like mission/vision cards) */
.zc-osm-tl__foil {
    position: absolute; top: 0; left: 22px; right: 22px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--zc-amber-dk) 18%,
        var(--zc-amber-lt) 50%,
        var(--zc-amber-dk) 82%,
        transparent 100%);
    opacity: 0.65;
}

/* Monospaced chapter tag, top-right */
.zc-osm-tl__chapter-tag {
    position: absolute;
    top: 16px; right: 22px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 600; letter-spacing: 1.4px;
    color: var(--zc-amber-dk);
    opacity: 0.8;
    text-transform: uppercase;
}

/* Year + theme tag row */
.zc-osm-tl__chapter-head {
    display: flex; align-items: baseline; gap: 14px;
    margin-bottom: 10px;
    margin-top: 18px;
}
.zc-osm-tl__year {
    margin: 0;
    font-family: var(--zc-f-display);
    font-size: clamp(48px, 4vw + 12px, 68px);
    font-weight: 300; line-height: 1;
    letter-spacing: -2px;
    color: var(--zc-charcoal);
}
.zc-osm-tl__theme {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 4px 10px; border-radius: 999px;
    background: var(--zc-amber-a08);
    border: 1px solid var(--zc-amber-a25);
    font-family: var(--zc-f-heading); font-size: 10px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--zc-amber-dk);
    flex-shrink: 0;
}
.zc-osm-tl__theme-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    box-shadow: 0 0 6px var(--zc-amber-a45);
}

/* Year rule under the heading row */
.zc-osm-tl__year-rule {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
    margin-bottom: 18px;
}

/* Milestone list */
.zc-osm-tl__items {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 0;
    flex: 1;
}
.zc-osm-tl__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px dashed var(--zc-linen);
}
.zc-osm-tl__item:last-child { border-bottom: none; }
.zc-osm-tl__item-num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 600; letter-spacing: 1.4px;
    color: var(--zc-amber-dk);
    padding-top: 4px;
    opacity: 0.85;
}
.zc-osm-tl__item-body { min-width: 0; }
.zc-osm-tl__item-h {
    margin: 0 0 4px;
    font-family: var(--zc-f-display);
    font-size: 17px; font-weight: 500;
    line-height: 1.25; letter-spacing: -0.3px;
    color: var(--zc-charcoal);
}
.zc-osm-tl__item-p {
    margin: 0;
    font-family: var(--zc-f-body);
    font-size: 13px; line-height: 1.55;
    color: var(--zc-warm-dk);
}

/* Decorative bottom-right corner ornament */
.zc-osm-tl__chapter-corner {
    position: absolute;
    bottom: 0; right: 0;
    width: 28px; height: 28px;
    border-bottom: 1px solid var(--zc-amber-a35);
    border-right: 1px solid var(--zc-amber-a35);
    pointer-events: none;
    transition: width 0.4s var(--zc-ease), height 0.4s var(--zc-ease);
}
.zc-osm-tl__chapter:hover .zc-osm-tl__chapter-corner {
    width: 44px; height: 44px;
}

/* Navy variant — alternate rhythm card */
.zc-osm-tl__chapter--navy {
    background:
        radial-gradient(ellipse at 12% 8%, rgba(46, 75, 113, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, #f8f6f2 0%, #efebe2 100%);
    border-color: var(--zc-navy-a15);
}
.zc-osm-tl__chapter--navy .zc-osm-tl__foil {
    background: linear-gradient(90deg,
        transparent 0%,
        #2e4b71 18%,
        #5a78a3 50%,
        #2e4b71 82%,
        transparent 100%);
}
.zc-osm-tl__chapter--navy .zc-osm-tl__chapter-tag { color: #2e4b71; }
.zc-osm-tl__chapter--navy .zc-osm-tl__theme {
    background: rgba(46, 75, 113, 0.08);
    border-color: rgba(46, 75, 113, 0.30);
    color: #2e4b71;
}
.zc-osm-tl__chapter--navy .zc-osm-tl__theme-dot {
    background: linear-gradient(135deg, #5a78a3, #2e4b71);
    box-shadow: 0 0 6px rgba(46, 75, 113, 0.45);
}
.zc-osm-tl__chapter--navy .zc-osm-tl__year-rule {
    background: linear-gradient(90deg, rgba(46, 75, 113, 0.40), transparent);
}
.zc-osm-tl__chapter--navy .zc-osm-tl__item-num { color: #2e4b71; }
.zc-osm-tl__chapter--navy .zc-osm-tl__chapter-corner {
    border-color: rgba(46, 75, 113, 0.30);
}
.zc-osm-tl__chapter--navy:hover {
    border-color: rgba(46, 75, 113, 0.40);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 22px 44px -22px rgba(46, 75, 113, 0.30);
}


/* ==========================================================================
   §6   CLOSING CTA, dark navy band with amber accent
   ========================================================================== */
.zc-osm-cta {
    position: relative;
    padding: clamp(48px, 5vw, 96px) 0;
    background:
        radial-gradient(ellipse at 8% 8%, rgba(207, 138, 63, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 92% 92%, rgba(207, 138, 63, 0.10) 0%, transparent 55%),
        linear-gradient(160deg, var(--zc-charcoal) 0%, var(--zc-deep) 100%);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
}
.zc-osm-cta::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--zc-amber-dk) 18%, var(--zc-amber-lt) 50%, var(--zc-amber-dk) 82%, transparent);
}
.zc-osm-cta::after {
    content: '';
    position: absolute;
    top: -90px; right: -90px;
    width: 240px; height: 240px;
    border: 1px solid rgba(207, 138, 63, 0.20);
    border-radius: 50%;
    pointer-events: none;
}
.zc-osm-cta__inner {
    position: relative; z-index: 1;
    text-align: center;
    padding-left: var(--zc-pad-x);
    padding-right: var(--zc-pad-x);
}
.zc-osm-cta__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(207, 138, 63, 0.18);
    border: 1px solid rgba(207, 138, 63, 0.30);
    font-family: var(--zc-f-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 2.4px; text-transform: uppercase;
    color: var(--zc-amber-lt);
    margin-bottom: 16px;
}
.zc-osm-cta__eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    box-shadow: 0 0 8px var(--zc-amber-a45);
    animation: zc-osm-pulse 1.8s ease-in-out infinite;
}
@keyframes zc-osm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.3); }
}
.zc-osm-cta__title {
    margin: 0 auto 12px; max-width: 22ch;
    font-family: var(--zc-f-display);
    font-size: clamp(28px, 2.8vw + 12px, 52px);
    font-weight: 300; line-height: 1.1; letter-spacing: -1.2px;
    color: var(--zc-white);
}
.zc-osm-cta__title-accent {
    display: inline-block;
    font-weight: 500;
    color: var(--zc-amber-lt);
}
.zc-osm-cta__sub {
    margin: 0 auto 28px; max-width: 50ch;
    font-family: var(--zc-f-body);
    font-size: 15px; line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}
.zc-osm-cta__btns {
    display: inline-flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
}
.zc-osm-cta__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px; border-radius: 4px;
    font-family: var(--zc-f-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--zc-ease-spring);
}
.zc-osm-cta__btn i { font-size: 14px; }
.zc-osm-cta__btn--primary {
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    color: var(--zc-white);
    box-shadow: 0 10px 24px var(--zc-amber-a45);
}
.zc-osm-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px var(--zc-amber-a45);
    color: var(--zc-white);
}
.zc-osm-cta__btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.92);
}
.zc-osm-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(207, 138, 63, 0.40);
    color: var(--zc-amber-lt);
    transform: translateY(-2px);
}


/* ==========================================================================
   §8   MOBILE / TABLET responsive overrides
   ========================================================================== */
@media (max-width: 991px) {
    .zc-osm-hero__inner,
    .zc-osm-hero__topline,
    .zc-osm-origin__inner,
    .zc-osm-mv__inner,
    .zc-osm-pillars__inner,
    .zc-osm-tl__inner,
    .zc-osm-cta__inner {
        padding-left: var(--zc-pad-x-mb);
        padding-right: var(--zc-pad-x-mb);
    }
    .zc-osm-hero__layout      { grid-template-columns: 1fr; gap: 28px; }
    .zc-osm-origin__layout    { grid-template-columns: 1fr; gap: 24px; }
    .zc-osm-mv__cards         { grid-template-columns: 1fr; }
    .zc-osm-pillars__grid     { grid-template-columns: repeat(2, 1fr); }
    .zc-osm-tl__chapters      { grid-template-columns: 1fr; gap: 16px; }
    .zc-osm-tl__year          { font-size: clamp(40px, 6vw, 56px); }
}

@media (max-width: 600px) {
    .zc-osm-hero__topline-text { display: none; }
    .zc-osm-pillars__grid      { grid-template-columns: 1fr; }
    .zc-osm-mv__head-row       { flex-wrap: wrap; }
    .zc-osm-mv__head-rule      { display: none; }
    .zc-osm-mv__head-meta      { font-size: 11.5px; }
    .zc-osm-tl__head-row       { flex-wrap: wrap; }
    .zc-osm-tl__head-rule      { display: none; }
    .zc-osm-tl__chapter-head   { flex-wrap: wrap; gap: 8px; }
    /* Keep "Book a free visit" + "Meet the team" side-by-side on phone. */
    .zc-osm-cta__btns {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .zc-osm-cta__btn {
        justify-content: center;
        padding: 10px 8px;
        font-size: 9.5px;
        letter-spacing: 0.6px;
        gap: 5px;
        min-width: 0;
    }
    .zc-osm-cta__btn i { font-size: 11px; }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS — hero compact + chip scroller + name row layout
   ========================================================================== */
@media (max-width: 768px) {
    /* Tighten the editorial column: smaller title and lead so the
       hero doesn't dominate the phone viewport. */
    /* Cut hero bottom padding ~50% on phone — section was too tall. */
    .zc-osm-hero { padding-bottom: clamp(14px, 1.8vw, 25px); }

    .zc-osm-hero__eyebrow { font-size: 9.5px; letter-spacing: 1.8px; margin-bottom: 10px; }
    .zc-osm-hero__title {
        font-size: clamp(24px, 6.4vw, 30px);
        letter-spacing: -0.6px;
        line-height: 1.12;
        margin-bottom: 10px;
    }
    .zc-osm-hero__lead {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    /* Chips in a single row — horizontally scroll when they overflow
       rather than wrapping onto multiple rows. Keeps the editorial
       compact and gives a clean one-line action band. */
    .zc-osm-hero__quick {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 calc(-1 * var(--zc-pad-x-mb));
        padding: 0 var(--zc-pad-x-mb) 4px;
    }
    .zc-osm-hero__quick::-webkit-scrollbar { display: none; }
    .zc-osm-hero__chip {
        flex: 0 0 auto;
        padding: 7px 11px;
        font-size: 10px;
        letter-spacing: 0.4px;
        gap: 5px;
    }
    .zc-osm-hero__chip i { font-size: 11px; }

    /* Right-side "name meanings" — render 01 / 02 / 03 in a single
       row separated by light dividers (no top/bottom dashed borders).
       Vertical hairline between each cell using gradient-edged
       pseudo-elements for a clean editorial feel. */
    .zc-osm-hero__name { padding: 18px 16px; }
    .zc-osm-hero__name-word { font-size: clamp(40px, 12vw, 56px); margin: 4px 0 2px; }
    .zc-osm-hero__name-pron { font-size: 12px; margin-bottom: 14px; }
    .zc-osm-hero__name-meanings {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        border-top: 0;
        gap: 0;
    }
    .zc-osm-hero__name-meanings li {
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 4px;
        padding: 6px 8px;
        border-bottom: 0;
    }
    .zc-osm-hero__name-meanings li + li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12%;
        bottom: 12%;
        width: 1px;
        background: linear-gradient(180deg,
            transparent 0%,
            var(--zc-linen) 20%,
            var(--zc-amber-a35) 50%,
            var(--zc-linen) 80%,
            transparent 100%);
    }
    .zc-osm-hero__name-num { font-size: 9px; padding-top: 0; letter-spacing: 1px; }
    .zc-osm-hero__name-meanings b { font-size: 13px; margin-bottom: 2px; }
    .zc-osm-hero__name-meanings small { font-size: 10.5px; line-height: 1.35; }
    .zc-osm-hero__name-foot { font-size: 9.5px; letter-spacing: 1.1px; margin-top: 10px; }

    /* §2 Origin — "The beginning" section, smaller type for phone. */
    .zc-osm-origin { padding: clamp(24px, 4vw, 36px) 0; }
    .zc-osm-origin__head { margin-bottom: 16px; }
    .zc-osm-origin__overline { font-size: 9.5px; letter-spacing: 1.8px; margin-bottom: 8px; }
    .zc-osm-origin__title {
        font-size: clamp(20px, 5.6vw, 26px);
        letter-spacing: -0.5px;
        line-height: 1.18;
    }
    .zc-osm-origin__copy p { font-size: 13px; line-height: 1.65; margin-bottom: 12px; }
    .zc-osm-origin__lead { font-size: 14px !important; line-height: 1.55 !important; }
    .zc-osm-origin__pull { padding: 18px 18px 16px; }
    .zc-osm-origin__pull-mark { font-size: 56px; }
    .zc-osm-origin__pull-quote {
        font-size: clamp(15px, 4vw, 18px);
        line-height: 1.4;
        margin-bottom: 12px;
    }
    .zc-osm-origin__pull-cite b { font-size: 12px; }
    .zc-osm-origin__pull-cite small { font-size: 10.5px; }

    /* §4 Pillars — 4 cards in a horizontal scroller, ~1.4 visible. */
    .zc-osm-pillars__grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .zc-osm-pillars__grid::-webkit-scrollbar { display: none; }
    .zc-osm-pillars__card {
        flex: 0 0 71.43%;  /* ~1.4 cards visible */
        scroll-snap-align: start;
        padding: 18px 16px 16px;
    }
}

/* Override the desktop-side 600px collapse for pillars — keep them
   in the horizontal scroller layout above instead of single-column. */
@media (max-width: 600px) {
    .zc-osm-pillars__grid { grid-template-columns: none; }
}
