/* ==========================================================================
   Sripati Gold — Our Story
   All "Our Story" section styles live here.
   Requires base.css. Header/footer styles live in layout.css.
   ========================================================================== */

/* Shared inner wrapper for this page */
.os-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* Section eyebrow with flanking rule lines (e.g. "Our Journey") */
.os-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 3rem;
  /* it's a <p>, and base.css caps paragraphs at 65ch — that pushed the
     heading off-centre and shortened the left rule */
  width: 100%;
  max-width: none;
}
.os-eyebrow::before,
.os-eyebrow::after {
  content: "";
  flex: 1;
  max-width: 320px;
  height: 1px;
  background: rgba(44, 29, 13, 0.28);
}
.os-eyebrow span {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 3.25rem;                  /* ~52px */
  line-height: 1;
  color: var(--color-brown);
  white-space: nowrap;
}
.os-eyebrow--light span { color: var(--color-cream); }
.os-eyebrow--light::before,
.os-eyebrow--light::after { background: rgba(248, 247, 243, 0.4); }

/* ================================================================== *
 *  HERO
 * ================================================================== */
.os-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-cream);
  background-color: var(--color-brown);
  background-image:
    linear-gradient(180deg,
      rgba(15,10,4,0.88) 0%,
      rgba(15,10,4,0.60) 28%,
      rgba(15,10,4,0.62) 62%,
      rgba(15,10,4,0.92) 100%),
    url("../our story/our story hero background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Two-column hero: copy on the left, card-stack carousel on the right */
.os-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 10rem 2rem 5rem;    /* top clears the navbar */
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.os-hero-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-hero-alt);       /* 66 — non-first page hero */
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: 1.25rem;
}

.os-hero-sub {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.375rem;                 /* fits the narrower column */
  line-height: 1.5;
  color: rgba(248, 247, 243, 0.9);
  max-width: 42ch;
  margin: 0;
}
.os-hero-sub em { font-style: italic; color: var(--color-gold); font-weight: var(--fw-medium); }

/* ---------------- Card-stack slider (polaroid) ---------------- */
.os-stack { position: relative; }

.os-stack__viewport {
  position: relative;
  height: 340px;
  max-width: 100%;
  margin-inline: auto;
}

.os-stack__card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 250px;
  margin: 0;
  background: #FFFFFF;
  padding: 14px 14px 42px;             /* wide bottom = polaroid frame */
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
  transform-origin: center bottom;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1), opacity 0.6s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
  cursor: pointer;
}
.os-stack__card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;                /* crop from the bottom so faces stay in frame */
  border-radius: 1px;
}

/* Arrows + pagination dots */
.os-stack__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.os-stack__nav {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(227, 155, 13, 0.55);
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-cream);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.os-stack__nav:hover { background: var(--color-gold); border-color: var(--color-gold); color: #2C1D0D; }
.os-stack__nav svg { width: 20px; height: 20px; display: block; }

/* Pagination dots */
.os-stack__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0;
}
.os-stack__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(248, 247, 243, 0.35);
  transition: background var(--transition), transform var(--transition);
}
.os-stack__dot:hover { background: rgba(248, 247, 243, 0.6); }
.os-stack__dot.is-active { background: var(--color-cream); transform: scale(1.2); }

@media (max-width: 900px) {
  .os-hero { min-height: 90vh; }
  /* stack back to one centred column */
  .os-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 8rem 1.25rem 3rem;
    text-align: center;
  }
  .os-stack__nav { width: 40px; height: 40px; }
  .os-hero-title { font-size: 2.5rem; }
  .os-hero-sub { font-size: 1.25rem; max-width: 60ch; margin-inline: auto; }
  .os-stack__viewport { height: 360px; }
  .os-stack__card { width: 250px; padding: 10px 10px 32px; }
}
@media (max-width: 560px) {
  .os-stack__viewport { height: 320px; }
  .os-stack__card { width: 210px; }
}

/* ================================================================== *
 *  OUR JOURNEY
 * ================================================================== */
.os-journey {
  background-color: var(--color-cream);
  background-image: url("../our story/ourjouney-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 5.5rem 4rem;
}

/* ---------------- Horizontal timeline ---------------- */
/* ================================================================== *
 *  OUR JOURNEY — curved timeline
 * ================================================================== */
.os-timeline {
  position: relative;
  /* the highest node sits ~74px above the canvas, so it needs clearance
     from the "Our Journey" heading */
  margin-top: 8.5rem;
  padding-bottom: 24rem;       /* room for captions hanging below the wave */
}

/* Narrower desktops wrap the captions onto more lines, so they hang lower */
@media (min-width: 901px) and (max-width: 1200px) {
  .os-timeline { padding-bottom: 30rem; }
}

/* Canvas matches the curve SVG ratio so % positions map to the path */
.os-tl-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1272 / 286;
}
.os-tl-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.os-tl-curve--v { display: none; }   /* shown only on mobile */

/* One milestone: photo sits on the wave, stem drops to the caption */
.os-tl-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: min(200px, 15.5%);
  margin-top: -74px;           /* half the photo height -> centres it on the path */
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.os-tl-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E39B0D;
  background: var(--color-cream);
  display: block;
}
.os-tl-stem { display: block; line-height: 0; }
.os-tl-stem svg { display: block; }

.os-tl-year {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 1.125rem;                 /* 18px */
  letter-spacing: 0.06em;
  color: #E39B0D;
  margin-top: 0.15rem;
}
.os-tl-place {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;                /* 13px */
  line-height: 1.35;
  color: #8C877E;
  margin: 0 0 0.35rem;
}

.os-tl-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 1.375rem;                 /* ~22px */
  line-height: 1.12;
  color: var(--color-brown);
  margin: 0.35rem 0 0.4rem;
}
.os-tl-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: 0.9375rem;                /* 15px */
  line-height: 1.4;
  color: #6B6152;
  max-width: none;
  margin: 0;
}

/* ---- scroll animation: curve draws in, nodes pop up ---- */
.os-tl-curve path {
  stroke-dasharray: var(--len, 3000);
  stroke-dashoffset: var(--len, 3000);
}
.os-timeline.is-visible .os-tl-curve path {
  animation: os-draw 2.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes os-draw { to { stroke-dashoffset: 0; } }

.os-tl-item {
  opacity: 0;
  transform: translateX(-50%) translateY(18px);
}
.os-timeline.is-visible .os-tl-item {
  animation: os-pop 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  animation-delay: calc(0.25s + var(--i, 0) * 0.22s);
}
@keyframes os-pop {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .os-tl-curve path { stroke-dashoffset: 0; }
  .os-tl-item { opacity: 1; transform: translateX(-50%); animation: none; }
}

/* ================================================================== *
 *  Timeline responsive — vertical serpentine on tablet & mobile
 * ================================================================== */
@media (max-width: 900px) {
  .os-journey { overflow-x: clip; }        /* contain the wave so it can't scroll the page */
  .os-timeline { margin-top: 3.5rem; padding-bottom: 0; overflow-x: clip; }

  .os-tl-canvas {
    position: relative;
    aspect-ratio: auto;
    display: grid;
    gap: 3.5rem;                  /* vertical breathing room for the serpentine */
    padding: 0;
  }
  .os-tl-canvas::before { content: none; }

  /* swap the horizontal wave for the vertical serpentine */
  .os-tl-curve { display: none; }
  .os-tl-curve--v {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 280px;                 /* swing amplitude of the serpentine */
    max-width: 88vw;              /* stays inside the screen on small phones */
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  /* One milestone.
     --amp = how far the photo sits from the centre line (matches the
             serpentine's swing, so photos land ON the curve)
     --r   = half the photo size,  --conn = gold connector length */
  .os-tl-item {
    --amp: 114px;
    --r: 42px;
    --conn: 42px;
    --capw: 15rem;              /* caption block width — keeps text compact */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;    /* caption sits level with the connector */
    align-items: flex-start;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 140px;
    margin: 0;
    padding-block: 0.5rem;
    text-align: left;
    z-index: 2;
    transform: translateY(18px);
  }
  /* The serpentine swings a different distance at each lobe, so every row gets
     the amplitude measured from the SVG path at that height. */
  .os-tl-item:nth-of-type(1) { --amp: 68px; }
  .os-tl-item:nth-of-type(2) { --amp: 87px; }
  .os-tl-item:nth-of-type(3) { --amp: 89px; }
  .os-tl-item:nth-of-type(4) { --amp: 111px; }
  .os-tl-item:nth-of-type(5) { --amp: 90px; }
  .os-tl-item:nth-of-type(6) { --amp: 74px; }

  .os-timeline.is-visible .os-tl-item { animation-name: os-pop-v; }
  @keyframes os-pop-v { to { opacity: 1; transform: translateY(0); } }

  .os-tl-stem { display: none; }

  /* photo sits on the wave */
  .os-tl-photo {
    position: absolute;
    top: 50%;
    left: calc(50% - var(--amp));
    width: calc(var(--r) * 2);
    height: calc(var(--r) * 2);
    border-width: 3px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  /* Gold connector: line runs from the photo toward the caption, dot at the
     caption end. On .os-tl-item because <img> can't render pseudo-elements. */
  .os-tl-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% - var(--amp) + var(--r));
    width: var(--conn);
    height: 2px;
    background: #E39B0D;
    transform: translateY(-50%);
    z-index: 1;
  }
  .os-tl-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% - var(--amp) + var(--r) + var(--conn));
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #E39B0D;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  /* caption: starts just past the connector dot, capped so it stays a tight
     block instead of stretching across the row */
  .os-tl-year,
  .os-tl-place,
  .os-tl-title,
  .os-tl-desc {
    width: 100%;
    padding-left: calc(50% - var(--amp) + var(--r) + var(--conn) + 12px);
    padding-right: 0;
    max-width: calc(50% - var(--amp) + var(--r) + var(--conn) + 12px + var(--capw));
    text-align: left;
  }
  .os-tl-year  { margin: 0 0 0.1rem; font-size: 0.95rem; }
  .os-tl-title { margin: 0 0 0.15rem; font-size: 1.05rem; }
  .os-tl-place { margin: 0 0 0.25rem; font-size: 0.72rem; line-height: 1.3; }
  .os-tl-desc  { font-size: 0.82rem; line-height: 1.35; }

  /* alternate rows mirror: photo right, caption left */
  .os-tl-item:nth-of-type(even) { align-items: flex-end; }
  .os-tl-item:nth-of-type(even) .os-tl-photo { left: calc(50% + var(--amp)); }
  .os-tl-item:nth-of-type(even)::before {
    left: calc(50% + var(--amp) - var(--r) - var(--conn));
  }
  .os-tl-item:nth-of-type(even)::after {
    left: calc(50% + var(--amp) - var(--r) - var(--conn));
  }
  .os-tl-item:nth-of-type(even) .os-tl-year,
  .os-tl-item:nth-of-type(even) .os-tl-place,
  .os-tl-item:nth-of-type(even) .os-tl-title,
  .os-tl-item:nth-of-type(even) .os-tl-desc {
    padding-left: 0;
    padding-right: calc(50% - var(--amp) + var(--r) + var(--conn) + 12px);
    text-align: right;
  }
}

@media (max-width: 560px) {
  .os-tl-curve--v { width: 240px; }
  .os-tl-item {
    --r: 36px;
    --conn: 24px;
    --capw: 11rem;
    min-height: 124px;
  }
  /* amplitudes rescaled for the narrower 240px curve */
  .os-tl-item:nth-of-type(1) { --amp: 59px; }
  .os-tl-item:nth-of-type(2) { --amp: 73px; }
  .os-tl-item:nth-of-type(3) { --amp: 76px; }
  .os-tl-item:nth-of-type(4) { --amp: 95px; }
  .os-tl-item:nth-of-type(5) { --amp: 77px; }
  .os-tl-item:nth-of-type(6) { --amp: 66px; }
  .os-tl-photo { border-width: 2px; }
  .os-tl-year  { font-size: 0.88rem; }
  .os-tl-title { font-size: 0.98rem; }
  .os-tl-place { font-size: 0.68rem; }
  .os-tl-desc  { font-size: 0.78rem; }
}

@media (prefers-reduced-motion: reduce) {
  .os-tl-item { transform: none; }
}

/* Today? strip */
.os-today {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.os-today h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 3.25rem;                  /* ~52px */
  color: var(--color-brown);
}
.os-today p {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.75rem;                  /* 28px */
  color: #4A4033;
  max-width: none;
}
.os-today p strong { color: #8A6A34; font-weight: var(--fw-bold); }

@media (max-width: 900px) {
  .os-journey { padding-block: 3.5rem; }
  .os-today { margin-top: 3rem; gap: 0.5rem; flex-direction: column; align-items: center; text-align: center; }
  .os-today h3 { font-size: 2.25rem; }
  .os-today p { font-size: 1.375rem; }
}

/* ================================================================== *
 *  CRAFTSMANSHIP  (white card, two columns)
 * ================================================================== */
/* same textured backdrop as the Our Journey section above */
.os-craft {
  background-color: var(--color-cream);
  background-image: url("../our story/ourjouney-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 2rem 5rem;
}

.os-craft-card {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(44, 29, 13, 0.10);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.os-craft-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.5rem;                   /* 72px */
  line-height: 1.08;
  color: var(--color-brown);
  max-width: 12ch;
  padding-left: 1.75rem;
  border-left: 2px solid rgba(44, 29, 13, 0.55);
}

.os-craft-lead {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.5rem;                   /* 24px */
  line-height: 1.5;
  color: #4A4033;
  margin-bottom: 1.75rem;
}
.os-craft-lead strong { font-weight: var(--fw-bold); color: var(--color-brown); }

.os-checklist { display: flex; flex-direction: column; gap: 1.1rem; }
.os-checklist li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 1.5rem;                   /* 24px */
  color: #3D3428;
}
.os-checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background: var(--color-gold);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .os-craft { padding-block: 1rem 3.5rem; }
  .os-craft-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .os-craft-title { font-size: 2.75rem; max-width: none; padding-left: 1.1rem; }
  .os-craft-lead, .os-checklist li { font-size: 1.25rem; }
}

/* ================================================================== *
 *  BUILT ON LONG-TERM TRUST  (cream, stat cards)
 * ================================================================== */
.os-trust {
  background-color: var(--color-brown);
  background-image:
    linear-gradient(rgba(20,14,7,0.72), rgba(20,14,7,0.82)),
    url("../buildonlongtermtrust.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-cream);
  padding-block: 5.5rem;
}

.os-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.os-trust-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.5rem;                   /* 72px */
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  max-width: 12ch;
}
.os-trust-lead {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.75rem;                  /* 28px */
  line-height: 1.45;
  color: rgba(248, 247, 243, 0.82);
  max-width: 24ch;
}
.os-trust-lead strong { font-weight: var(--fw-bold); color: var(--color-cream); }

.os-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.os-stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 28px rgba(44, 29, 13, 0.08);
}
.os-stat__num {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 3.25rem;                  /* ~52px */
  line-height: 1;
  color: var(--color-gold);
  min-width: 3.4ch;
}
.os-stat__label {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 1.5rem;                   /* 24px */
  color: #3D3428;
}

@media (max-width: 900px) {
  .os-trust { padding-block: 3.5rem; }
  .os-trust-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .os-trust-title { font-size: 2.75rem; max-width: none; }
  .os-trust-lead { font-size: 1.375rem; }
  .os-stat__num { font-size: 2.5rem; }
  .os-stat__label { font-size: 1.25rem; }
}

/* ================================================================== *
 *  MEET OUR LEADERSHIP  (dark, portrait slider)
 * ================================================================== */
.os-lead {
  background: var(--color-brown);
  color: var(--color-cream);
  padding-block: 5rem;
}

.os-lead-head {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;                 /* each child shrinks to content & centres */
}
.os-lead-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 1.75rem;                  /* ~28px Beverly */
  letter-spacing: 0.25em;
  padding-left: 0.25em;                /* balance trailing letter-spacing */
  text-transform: uppercase;
  color: rgba(248, 247, 243, 0.7);
  margin: 0 0 0.4rem;
}
.os-lead-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4rem;                     /* ~64px */
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 1.1rem;
}
.os-lead-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(248, 247, 243, 0.8);
  max-width: 52ch;
  margin-inline: auto;
}

.os-lead-slider {
  position: relative;
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: 4.5rem;
}
.os-lead-viewport { overflow: hidden; }
.os-lead-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.os-lead-card { flex: 0 0 100%; width: 100%; }

.os-lead-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(227, 155, 13, 0.55);
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-cream);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.os-lead-nav:hover { background: var(--color-gold); border-color: var(--color-gold); color: #2C1D0D; }
.os-lead-nav svg { width: 22px; height: 22px; display: block; }
.os-lead-nav--prev { left: 0; }
.os-lead-nav--next { right: 0; }

.os-lead-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.os-lead-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(248, 247, 243, 0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.os-lead-dot.is-active { background: var(--color-gold); transform: scale(1.2); }

.os-lead-creds {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body) !important;
  font-weight: var(--fw-medium) !important;
  font-size: 0.9375rem !important;
  color: rgba(255, 231, 183, 0.95) !important;
  margin-bottom: 1rem !important;
}

.os-lead-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1.75rem;
  border: 1px solid rgba(227, 155, 13, 0.5);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
}
.os-lead-photo { margin: 0; }
.os-lead-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;                /* crop from the bottom so faces stay in frame */
  border-radius: 4px;
}
.os-lead-role {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}
.os-lead-name {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 2.5rem;                   /* ~40px */
  line-height: 1.05;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.os-lead-body p {
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(248, 247, 243, 0.82);
  max-width: none;
  margin-bottom: 1rem;
}
.os-lead-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(248, 247, 243, 0.9);
}
.os-lead-badge { display: inline-flex; align-items: center; gap: 0.5rem; }
.os-lead-ico { width: 18px; height: 18px; color: var(--color-gold); flex: 0 0 auto; }
.os-lead-div { width: 1px; height: 1.3em; background: rgba(248, 247, 243, 0.3); }

@media (max-width: 900px) {
  .os-lead { padding-block: 3.5rem; }
  .os-lead-title { font-size: 2.75rem; }
  .os-lead-slider { padding-inline: 0; }
  .os-lead-nav { display: none; }        /* dots + swipe carry navigation on mobile */
  .os-lead-dots { margin-top: 1.5rem; }
  .os-lead-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.25rem; }
  .os-lead-photo img { aspect-ratio: 1 / 1; }
  .os-lead-name { font-size: 2rem; }
  .os-lead-badges { font-size: 0.9rem; gap: 0.75rem; }
}

/* ================================================================== *
 *  VISION & MISSION  (bg image band)
 * ================================================================== */
.os-vision {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--color-cream);
  background-color: var(--color-brown);
  background-image:
    linear-gradient(90deg, rgba(15,10,4,0.9) 0%, rgba(15,10,4,0.6) 55%, rgba(15,10,4,0.25) 100%),
    url("../newimages/DSC_3683_1.webp");
  background-size: cover;
  background-position: center;
  padding-block: 5rem;
}
.os-vision-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.5rem;                   /* 72px */
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 1.75rem;
}
.os-vision-text {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.75rem;                  /* 28px */
  line-height: 1.5;
  color: rgba(248, 247, 243, 0.92);
  max-width: 40ch;
}
.os-vision-text strong { color: var(--color-gold); font-weight: var(--fw-semibold); }

@media (max-width: 900px) {
  .os-vision { min-height: 0; padding-block: 3.5rem; }
  .os-vision-title { font-size: 2.75rem; }
  .os-vision-text { font-size: 1.375rem; }
}

/* Eyebrow responsive */
@media (max-width: 900px) {
  .os-eyebrow { gap: 1rem; margin-bottom: 2rem; }
  .os-eyebrow span { font-size: 2.25rem; }
  .os-inner { padding-inline: 1.25rem; }
}
