/* ================================================================
   OUR STORY — Standalone page styles (os- prefix)
   Palette: #113946  #10553B  #236C77  #35868E  #D8D4CE  #E6A776
   ================================================================ */

:root {
    --os-bg:    #113946;
    --os-bg2:   #10553B;
    --os-mid:   #236C77;
    --os-light: #35868E;
    --os-fg:    #D8D4CE;
    --os-acc:   #E6A776;
    --os-muted: #6B8A92;
    --os-bdr:   rgba(53,134,142,0.15);
    --os-card:  #132F3A;
    --os-ease:  cubic-bezier(0.4,0,0.2,1);
    --os-green: rgb(183,255,74);
}
#wpadminbar {
    display: none !important;
}
/* ── Reset ─────────────────────────────────────── */
.os-body {
    margin: 0 !important; padding: 0 !important;
    background: var(--os-bg) !important; color: var(--os-fg) !important;
    font-family: inherit !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.os-body * { box-sizing: border-box; }
.os-body img { max-width: 100%; display: block; }
.os-body a  { color: inherit; text-decoration: none; }

/* ── Loader ────────────────────────────────────── */
.os-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--os-bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.os-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.os-loader__bar { width: 120px; height: 2px; background: var(--os-bdr); border-radius: 2px; overflow: hidden; }
.os-loader__fill { width: 0; height: 100%; background: var(--os-acc); border-radius: 2px; animation: osLoadFill 0.8s var(--os-ease) 0.1s forwards; }
@keyframes osLoadFill { to { width: 100%; } }

/* ── Shared: Section Label ─────────────────────── */
.os-section-label {
    display: inline-block;
    font-family: inherit;
    font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--os-acc); margin-bottom: 16px;
}

/* ── Shared: Reveal ───────────────────────────── */
.os-reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.7s var(--os-ease), transform 0.7s var(--os-ease);
}
.os-reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.os-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 80px 24px 100px; overflow: hidden;
}
.os-hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(53,134,142,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53,134,142,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}
.os-hero__glow {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(ellipse 50% 45% at 50% 45%, rgba(35,108,119,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 35% 35% at 80% 20%, rgba(16,85,59,0.12) 0%, transparent 60%),
        radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(230,167,118,0.06), transparent 50%);
    transition: background 0.3s ease;
}
.os-hero__inner { position: relative; z-index: 2; max-width: 90%; }
.os-hero__label {
    font-family: inherit;
    font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
    color: var(--os-acc); margin-bottom: 24px; display: inline-block;
    opacity: 0; transform: translateY(20px);
    animation: osUp 0.7s var(--os-ease) 0.6s forwards;
}
.os-hero__title {
    font-family: inherit;
    font-size: clamp(56px, 10vw, 130px); font-weight: 700;
    color: var(--os-fg); line-height: 0.92; letter-spacing: -4px;
    opacity: 0; transform: translateY(30px);
    animation: osUp 0.8s var(--os-ease) 0.75s forwards;
}
.os-hero__rule {
    width: 48px; height: 3px; background: var(--os-acc);
    margin: 32px auto; border-radius: 2px;
    opacity: 0; animation: osIn 0.6s ease 1s forwards;
}
.os-hero__desc {
    font-size: 16px; color: var(--os-muted); max-width: 90%;
    margin: 0 auto; line-height: 1.8;
    opacity: 0; transform: translateY(18px);
    animation: osUp 0.7s var(--os-ease) 1.1s forwards;
}
.os-hero__scroll-hint {
    position: absolute; bottom: 36px; left: 50%;
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
    opacity: 0; animation: osIn 0.6s ease 1.4s forwards;
}
.os-hero__scroll-hint span {
    font-family: inherit;
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--os-muted); writing-mode: vertical-lr;
}
.os-hero__scroll-line { width: 1px; height: 40px; background: var(--os-bdr); position: relative; overflow: hidden; }
.os-hero__scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--os-green);
    animation: osScrollLine 2s ease-in-out infinite 1.6s;
}
@keyframes osScrollLine { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }


/* ═══════════════════════════════════════════════
   INTRO
   ═══════════════════════════════════════════════ */
.os-intro {
    padding: 120px 24px 100px;
    max-width: 1100px; margin: 0 auto;
}
.os-intro__inner {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
}
.os-intro__heading {
    font-family: inherit;
    font-size: clamp(30px, 4vw, 48px); font-weight: 700;
    color: var(--os-fg); line-height: 1.15; letter-spacing: -1px;
    margin-bottom: 24px;
}
.os-intro__p {
    font-size: 15px; line-height: 1.85; color: rgba(216,212,206,0.65);
    margin-bottom: 16px;
}
.os-intro__p:last-child { margin-bottom: 0; }

.os-intro__card {
    position: relative; padding: 36px 32px;
    background: var(--os-card); border: 1px solid var(--os-bdr);
    border-radius: 18px; overflow: hidden;
}
.os-intro__card-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--os-acc);
}
.os-intro__quote {
    font-family: inherit;
    font-size: 22px; font-weight: 500; font-style: italic;
    color: var(--os-fg); line-height: 1.45;
    margin: 0 0 16px; letter-spacing: -0.3px;
}
.os-intro__cite {
    font-size: 13px; color: var(--os-acc); font-style: normal;
    letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.os-stats {
    padding: 60px 24px;
    border-top: 1px solid var(--os-bdr);
    border-bottom: 1px solid var(--os-bdr);
    background: rgba(16,85,59,0.15);
}
.os-stats__inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.os-stat {
    text-align: center; padding: 10px 40px; flex: 1; min-width: 160px;
}
.os-stat__number {
    font-family: inherit;
    font-size: clamp(40px, 6vw, 60px); font-weight: 700;
    color: var(--os-acc); line-height: 1;
}
.os-stat__suffix {
    font-family: inherit;
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    color: var(--os-acc); line-height: 1;
}
.os-stat__label {
    display: block; margin-top: 8px;
    font-family: inherit;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--os-muted);
}
.os-stat__divider {
    width: 1px; height: 48px; background: var(--os-bdr); flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   JOURNEY / TIMELINE
   ═══════════════════════════════════════════════ */
.os-journey {
    padding: 120px 24px;
    max-width: 800px; margin: 0 auto;
}
.os-journey__header { margin-bottom: 60px; }
.os-journey__title {
    font-family: inherit;
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    color: var(--os-fg); letter-spacing: -0.5px; margin-top: 4px;
}

.os-timeline { position: relative; padding-left: 40px; }
.os-timeline::before {
    content: ''; position: absolute;
    left: 7px; top: 8px; bottom: 8px;
    width: 2px; background: var(--os-bdr);
    border-radius: 2px;
}

.os-tl-item {
    position: relative; padding-bottom: 56px;
}
.os-tl-item:last-child { padding-bottom: 0; }

.os-tl-item__marker {
    position: absolute; left: -40px; top: 6px;
    width: 16px; height: 16px;
}
.os-tl-item__dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--os-bg);
    border: 2.5px solid var(--os-mid);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.os-tl-item:last-child .os-tl-item__dot {
    border-color: var(--os-acc);
    box-shadow: 0 0 16px rgba(230,167,118,0.25);
}

.os-tl-item__content { padding-left: 8px; }
.os-tl-item__year {
    display: inline-block;
    font-family: inherit;
    font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--os-acc); margin-bottom: 8px;
}
.os-tl-item__title {
    font-family: inherit;
    font-size: 22px; font-weight: 600;
    color: var(--os-fg); line-height: 1.3; margin-bottom: 12px;
}
.os-tl-item__desc {
    font-size: 14.5px; line-height: 1.8; color: rgba(216,212,206,0.6);
    max-width: 600px;
}


/* ═══════════════════════════════════════════════
   VALUES
   ═══════════════════════════════════════════════ */
.os-values {
    padding: 120px 24px;
    background: rgba(16,85,59,0.08);
    border-top: 1px solid var(--os-bdr);
    border-bottom: 1px solid var(--os-bdr);
}
.os-values__inner { max-width: 1100px; margin: 0 auto; }
.os-values__header { margin-bottom: 52px; }
.os-values__title {
    font-family: inherit;
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    color: var(--os-fg); letter-spacing: -0.5px; margin-top: 4px;
}

.os-values__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.os-value-card {
    padding: 32px 28px; border-radius: 18px;
    background: var(--os-card); border: 1px solid var(--os-bdr);
    transition: border-color 0.4s ease, transform 0.4s var(--os-ease);
}
.os-value-card:hover {
    border-color: rgba(53,134,142,0.3);
    transform: translateY(-4px);
}
.os-value-card__icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(230,167,118,0.1); border: 1px solid rgba(230,167,118,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--os-acc); margin-bottom: 22px;
}
.os-value-card__title {
    font-family: inherit;
    font-size: 19px; font-weight: 600;
    color: var(--os-fg); margin-bottom: 14px; line-height: 1.3;
}
.os-value-card__desc {
    font-size: 14px; line-height: 1.8; color: rgba(216,212,206,0.6);
}


/* ═══════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════ */
.os-team { padding: 120px 24px; }
.os-team__inner { max-width: 1100px; margin: 0 auto; }
.os-team__header { margin-bottom: 56px; }
.os-team__title {
    font-family: inherit;
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    color: var(--os-fg); letter-spacing: -0.5px; margin-top: 4px;
}
.os-team__subtitle {
    font-size: 35px; color: var(--os-muted); margin-top: 10px;line-height: 1.7;
}

.os-team__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}

.os-team-card { border-radius: 16px; overflow: hidden; }
.os-team-card__wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 4 / 5; background: var(--os-card);
}
.os-team-card__img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--os-ease), filter 0.4s ease;
    will-change: transform;
}
.os-team-card:hover .os-team-card__img {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.os-team-card__overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px 20px;
    background: linear-gradient(
        to top,
        rgba(17,57,70,0.92) 0%,
        rgba(17,57,70,0.5) 45%,
        transparent 75%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.os-team-card:hover .os-team-card__overlay { opacity: 1; }

.os-team-card__bio {
    font-size: 13px; line-height: 1.65; color: rgba(216,212,206,0.75);
    margin-bottom: 16px;
    transform: translateY(10px);
    transition: transform 0.4s var(--os-ease) 0.05s;
}
.os-team-card:hover .os-team-card__bio { transform: translateY(0); }

.os-team-card__socials {
    display: flex; gap: 8px;
    transform: translateY(10px);
    transition: transform 0.4s var(--os-ease) 0.1s;
}
.os-team-card:hover .os-team-card__socials { transform: translateY(0); }

.os-team-card__social {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--os-fg);
    transition: all 0.25s ease;
}
.os-team-card__social:hover {
    background: var(--os-acc); border-color: var(--os-acc);
    color: var(--os-bg);
}

.os-team-card__info {
    padding: 16px 4px 4px; text-align: center;
}
.os-team-card__name {
    font-family: inherit;
    font-size: 15px; font-weight: 600; color: var(--os-fg);
    line-height: 1.3; margin-bottom: 3px;
}
.os-team-card__role {
    font-size: 12px; color: var(--os-muted); letter-spacing: 0.3px;
}


/* ═══════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════ */
.os-cta {
    position: relative; padding: 120px 24px;
    text-align: center; overflow: hidden;
}
.os-cta__glow {
    position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(230,167,118,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.os-cta__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.os-cta__title {
    font-family: inherit;
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    color: var(--os-fg); margin-bottom: 14px; letter-spacing: -0.5px;
}
.os-cta__desc { font-size: 15px; color: var(--os-muted); line-height: 1.7; margin-bottom: 32px; }

.os-cta__actions {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.os-cta__btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px; border-radius: 10px;
    background: var(--os-acc); color: var(--os-bg);
    font-family: inherit;
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(230,167,118,0.2);
}
.os-cta__btn:hover { background: #d49565; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(230,167,118,0.35); }
.os-cta__btn i { font-size: 12px; transition: transform 0.3s ease; }
.os-cta__btn:hover i { transform: translateX(3px); }

.os-cta__btn--ghost {
    background: transparent; color: var(--os-fg);
    border: 1px solid var(--os-bdr); box-shadow: none;
}
.os-cta__btn--ghost:hover {
    border-color: var(--os-light); background: var(--os-mid);
    box-shadow: none; color: var(--os-fg);
}


/* ── Keyframes ─────────────────────────────────── */
@keyframes osUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes osIn   { to { opacity: 1; } }


/* ── Responsive ────────────────────────────────── */

@media (max-width: 1024px) {
    .os-values__grid { grid-template-columns: repeat(2, 1fr); }
    .os-team__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 768px) {
    .os-hero { min-height: 85vh; padding: 100px 20px 80px; }
    .os-hero__title { letter-spacing: -2px; }
    .os-hero__scroll-hint { display: none; }

    .os-intro { padding: 80px 20px 60px; }
    .os-intro__inner { grid-template-columns: 1fr; gap: 36px; }
    .os-intro__heading { font-size: 28px; }

    .os-stat { padding: 10px 24px; }
    .os-stat__divider { display: none; }

    .os-journey { padding: 80px 20px; }
    .os-journey__title { font-size: 26px; }
    .os-tl-item__title { font-size: 19px; }

    .os-values { padding: 80px 20px; }
    .os-values__grid { grid-template-columns: 1fr; gap: 18px; }

    .os-team { padding: 80px 20px; }
    .os-team__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .os-team-card__overlay { opacity: 1; }
    .os-team-card__bio,
    .os-team-card__socials { transform: translateY(0); transition: none; }
    .os-team-card:hover .os-team-card__img { transform: none; filter: none; }

    .os-cta { padding: 80px 20px; }
}

@media (max-width: 480px) {
    .os-team__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .os-team-card__wrap { aspect-ratio: 3 / 4; }
    .os-team-card__info { padding: 12px 2px 2px; }
    .os-team-card__name { font-size: 14px; }
    .os-intro__quote { font-size: 18px; }
    .os-value-card { padding: 26px 22px; }
    .os-value-card__title { font-size: 17px; }
    .os-cta__actions { flex-direction: column; align-items: center; }
    .os-cta__btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}