/* ============================================================
   OUR-MODEL.CSS — page-specific styles for template-our-model.php
   Shared utilities (.two-col, .section-label, .body-copy, .btn,
   .btn-group, .page-section, .reveal) already come from style.css,
   about.css, and nav.css, which load globally.
   ============================================================ */

/* ============================================================
   HERO — photo bg, split text/cards (matches About page hero)
   ============================================================ */

.om-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-black, #141414);
}
.om-hero__image {
  width: 100%;
  height: 72vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}
.om-hero__image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 20%;
}
.om-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.3) 55%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.om-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
  z-index: 4;
}
.om-hero__content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.om-hero .section-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
/* Headline sized down from the original mockup per revision notes */
.om-hero__headline {
  color: #fff;
  font-family: Monologue;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 86px; /* 89.583% */
  letter-spacing: -2px;
  text-transform: uppercase;
}
.om-hero__headline em {
  color: var(--color-red, #ed1c24);
  font-style: normal;
  display: block;
}
.om-hero__sub {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Noto Sans";
  font-size: 15.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.48px; /* 184.935% */
  margin-top: 22px;
  max-width: 537px;
}

.om-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.om-hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--color-red, #ed1c24);
  padding: 20px 24px;
  transition: background 0.2s;
}
.om-hero-card:hover {
  background: #fff;
}
.om-hero-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-red, #ed1c24);
  margin-bottom: 6px;
  display: block;
}
.om-hero-card h3 {
  margin-bottom: 8px;
  color: #141414;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  font-family: "Barlow Condensed";
}
.om-hero-card p {
  color: #555;
  font-family: "Noto Sans";
  font-size: 11.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.4px; /* 178.947% */
}

/* ============================================================
   PLATFORM SECTION — uses shared .two-col / .body-copy
   ============================================================ */
.om-platform {
  padding: var(--pad-sec, clamp(56px, 7vw, 96px)) 0;
}

/* ============================================================
   FULL-WIDTH SYSTEM COPY — no label column, sits above Connection
   ============================================================ */
.om-system-copy {
  padding: 0;
}
.om-system-copy__text {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-text, #50585b);
  max-width: none;
}

/* ============================================================
   NUMBERED SECTIONS — Connection / Community / Conversion
   ============================================================ */
.om-numbered {
  padding: var(--pad-sec, clamp(56px, 7vw, 96px)) 0;
}
.om-numbered__heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 96px !important;
  border-left: 0 !important;
  align-items: center;
  padding-left: 0 !important;
}
.om-numbered__num {
  font-family: Monologue;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -1px;
  color: var(--color-red, #ed1c24);
  flex-shrink: 0;
}
.om-numbered__label {
  border-left: 4px solid var(--color-red, #ed1c24);
  margin-left: 5px;
  padding-left: 10px;
  color: #141414;
  font-family: Monologue;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 57px; /* 95% */
  letter-spacing: -1px;
  text-transform: uppercase;
}
.om-numbered__subhead {
  font-family: var(--font-body, "Noto Sans", sans-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-black, #141414);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* ============================================================
   UNLOCK WHAT MATTERS — intelligence / Pluralytics
   ============================================================ */
.om-intelligence {
  padding: var(--pad-sec, clamp(56px, 7vw, 96px)) 0;
}
.om-intelligence__logo {
  float: right;
  width: clamp(160px, 18vw, 240px);
  height: auto;
  margin: 4px 0 20px 32px;
}

.om-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.om-stat-tile {
  background: var(--color-off, #f8f7f5);
  padding: clamp(32px, 3.5vw, 48px) clamp(28px, 3vw, 40px);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}
.om-stat-tile:hover {
  background: #eceae6;
}
.om-stat-tile:nth-child(3) {
  background: var(--color-red, #ed1c24);
}
.om-stat-tile:nth-child(3):hover {
  background: var(--color-red-dk, #c01820);
}
.om-stat-tile:nth-child(4) {
  background: #3a3a3a;
}
.om-stat-tile:nth-child(4):hover {
  background: #444;
}
.om-stat-tile__value {
  font-family: var(--font-display, "Barlow Condensed", sans-serif);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 500;
  color: var(--color-black, #141414);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
  display: block;
}
.om-stat-tile:nth-child(3) .om-stat-tile__value,
.om-stat-tile:nth-child(4) .om-stat-tile__value {
  color: #fff;
}
.om-stat-tile__desc {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}
.om-stat-tile:nth-child(3) .om-stat-tile__desc {
  color: rgba(255, 255, 255, 0.85);
}
.om-stat-tile:nth-child(4) .om-stat-tile__desc {
  color: rgba(255, 255, 255, 0.7);
}
.om-stat-tile__source {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-mid, #888);
  margin-top: 8px;
  display: block;
}
.om-stat-tile:nth-child(3) .om-stat-tile__source {
  color: rgba(255, 255, 255, 0.5);
}
.om-stat-tile:nth-child(4) .om-stat-tile__source {
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   MODEL IN PRACTICE — flat 4-col grid
   ============================================================ */
.om-practice {
  background: var(--color-off, #f8f7f5);
  padding: var(--pad-sec, clamp(56px, 7vw, 96px)) 0;
}
.om-practice-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line, #e8e6e2);
  border: 1px solid var(--color-line, #e8e6e2);
  overflow: hidden;
}
.om-practice-step {
  background: #fff;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.om-practice-step:hover {
  background: var(--color-off, #f8f7f5);
}
.om-practice-step h3 {
  font-family: var(--font-display, "Barlow Condensed", sans-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-black, #141414);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.om-practice-step p {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}
.om-practice-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line, #e8e6e2);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-mid, #888);
}
.om-practice-tagline::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-red, #ed1c24);
  flex-shrink: 0;
}
.om-practice-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   THE HUMANTITY DIFFERENCE
   ============================================================ */
.om-difference {
  padding: var(--pad-sec, clamp(56px, 7vw, 96px)) 0;
}
.om-difference .body-copy:first-of-type {
  margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero — the headline was fixed at 96px with no scaling until the
     768px stack; on tablets/small laptops the two-column split is
     still active, so the text column is much narrower and needs
     room to breathe before that point. */
  .om-hero__headline {
    font-size: clamp(52px, 7.5vw, 96px);
    line-height: 0.92;
  }
  .om-hero-card h3 {
    font-size: clamp(18px, 2vw, 24px);
  }

  .om-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .om-practice-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .om-hero__image {
    height: 52vh;
    min-height: 380px;
    max-height: 480px;
  }
  .om-hero__content .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .om-hero__cards {
    display: none;
  }
  .om-hero__sub {
    max-width: 100%;
  }
  .om-hero__content {
    padding-bottom: 60px;
  }

  /* All two-col sections stack (shared .two-col already handles most
     of this globally, but confirm here in case a page override changes it) */
  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Numbered sections */
  .om-numbered__num {
    font-size: clamp(40px, 14vw, 56px);
  }
  .om-numbered__label {
    font-size: clamp(22px, 7vw, 30px);
  }

  /* Intelligence — logo stays floated but smaller */
  .om-intelligence__logo {
    width: 130px;
    margin: 4px 0 16px 20px;
  }
  .om-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Practice */
  .om-practice-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .om-hero__image {
    height: 48vh;
    min-height: 340px;
    max-height: 420px;
  }
  .om-hero__headline {
    font-size: clamp(34px, 10vw, 48px);
  }
  .om-stats-grid {
    grid-template-columns: 1fr;
  }
  .om-practice-steps {
    grid-template-columns: 1fr;
  }
}
