/* =========================================================
   THE DISRUPTION GROUP — FFL-style rebuild
   Brand: navy + silver + red + white
   ========================================================= */

:root {
  /* Brand palette */
  --navy-deep: #0F1E2C;
  --navy: #172A3A;
  --navy-2: #1F3446;
  --navy-border: #2A4258;

  --silver-bright: #E5E9EE;
  --silver: #B8C1CC;
  --silver-muted: #8A97A5;

  --red: #C8343E;
  --red-bright: #D94651;
  --red-deep: #9B2731;

  --white: #FFFFFF;
  --cream: #F6F4F1;
  --gray-50: #F7F8FA;
  --gray-100: #ECEEF2;
  --gray-200: #D6DAE1;
  --gray-600: #5A6573;
  --gray-800: #2B3540;
  --ink: #11161C;

  /* Typography */
  --font-display: 'Oswald', 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-lg:   1.125rem;  /* 18 */
  --text-xl:   1.25rem;   /* 20 */
  --text-2xl:  1.5rem;    /* 24 */
  --text-3xl:  2rem;      /* 32 */
  --text-4xl:  2.75rem;   /* 44 */
  --text-5xl:  3.5rem;    /* 56 */
  --text-6xl:  clamp(2.5rem, 1rem + 5vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6.25rem);
  --text-stat: clamp(2.5rem, 1rem + 4.5vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 6rem;
  --space-20: 8rem;

  /* Layout */
  --content: 1240px;
  --content-narrow: 840px;

  /* Radius */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-card: 0 6px 24px rgba(15, 30, 44, 0.12);
  --shadow-card-lg: 0 18px 48px rgba(15, 30, 44, 0.22);
  --shadow-red-cta: 0 10px 30px rgba(200, 52, 62, 0.35);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-fast: 150ms;
  --t: 280ms;
  --t-slow: 500ms;
}

/* =========================================================
   BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: var(--text-base);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--navy);
}

p { margin: 0; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (min-width: 900px) {
  .container { padding: 0 var(--space-8); }
}

.section { padding: var(--space-16) 0; }
.section--tight { padding: var(--space-12) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-5xl);
  color: var(--navy);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.section-title .accent { color: var(--red); }

.section-lead {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 58ch;
  line-height: 1.6;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-cta);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn__arrow { display: inline-block; transition: transform var(--t) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.utility {
  background: var(--navy-deep);
  color: var(--silver);
  font-size: var(--text-xs);
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-border);
}
.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.utility__socials {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}
.utility__socials a {
  color: var(--silver-muted);
  display: inline-flex;
  transition: color var(--t-fast);
}
.utility__socials a:hover { color: var(--white); }
.utility__right {
  display: flex;
  gap: var(--space-5);
  align-items: center;
}
.utility__right a {
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
}
.utility__right a:hover { color: var(--white); }
.utility__right .dot { color: var(--red-bright); }
@media (max-width: 720px) {
  .utility { display: none; }
}

/* =========================================================
   MAIN NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--t) var(--ease);
}
.nav--scrolled { box-shadow: 0 6px 24px rgba(15,30,44,0.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}
.brand__mark {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.brand__mark--nav {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 2px 8px rgba(15, 30, 44, 0.12);
}
.brand__mark--nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--silver-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 3px;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--t-fast);
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--red); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--t) var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--navy);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.nav__cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.nav__toggle { display: none; padding: 8px; color: var(--navy); }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .brand__name { font-size: 0.95rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  color: var(--white);
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: var(--space-16) 0 var(--space-20);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/easton-stage-1.jpg');
  background-size: cover;
  background-position: center right;
  z-index: -2;
  overflow: hidden;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 193, 204, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 193, 204, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200, 52, 62, 0.15) 0%, transparent 60%);
  filter: blur(40px);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(15,30,44,0.96) 0%, rgba(15,30,44,0.82) 40%, rgba(15,30,44,0.5) 70%, rgba(15,30,44,0.35) 100%),
    radial-gradient(circle at 85% 30%, rgba(200, 52, 62, 0.28) 0%, transparent 50%);
  z-index: -1;
}

/* Decorative hexagon cluster in hero */
.hero__hexes {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}
.hero__hexes svg { width: 100%; height: 100%; }
@media (max-width: 1100px) {
  .hero__hexes { display: none; }
}
.hero__stripe {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--red);
  z-index: 1;
}

.hero__inner { max-width: 820px; }

.hero__logo {
  margin-bottom: var(--space-6);
  display: inline-block;
  max-width: 320px;
  width: 60%;
}
.hero__logo img {
  display: block;
  width: 100%;
  height: auto;
  /* The logo source has its own navy background, blend it into the hero */
  mix-blend-mode: screen;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}
@media (max-width: 640px) {
  .hero__logo { max-width: 240px; width: 70%; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--silver-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-5);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(15,30,44,0.35);
}
.hero__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.45; } }

.hero__title {
  font-size: var(--text-hero);
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-5);
}
.hero__title-sub {
  display: block;
  font-size: 0.55em;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: var(--space-3);
}

.hero__checks {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: var(--space-3) var(--space-6);
  margin: var(--space-6) 0 var(--space-8);
  max-width: 560px;
}
.hero__check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--silver-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__check svg {
  flex-shrink: 0;
  color: var(--red-bright);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.hero__note {
  max-width: 60ch;
  font-size: var(--text-base);
  color: var(--silver);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .hero { min-height: 0; padding: var(--space-12) 0 var(--space-16); }
  .hero__checks { grid-template-columns: 1fr; }
}

/* =========================================================
   STATS BANNER (overlaps hero)
   ========================================================= */
.stats-banner {
  position: relative;
  margin-top: -70px;
  z-index: 3;
}
.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.stat-card {
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  box-shadow: var(--shadow-card-lg);
  text-align: center;
  border-top: 4px solid var(--navy);
}
.stat-card--red {
  background: var(--red);
  border-top-color: var(--red-deep);
  color: var(--white);
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(200, 52, 62, 0.35);
}
.stat-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto var(--space-4);
  color: var(--red);
}
.stat-card--red .stat-card__icon { color: var(--white); }
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-stat);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.stat-card--red .stat-card__value { color: var(--white); }
.stat-card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-600);
}
.stat-card--red .stat-card__label { color: rgba(255,255,255,0.88); }
.stat-card__placeholder {
  display: block;
  font-size: 0.65rem;
  margin-top: 6px;
  color: var(--gray-200);
  font-style: italic;
}
.stat-card--red .stat-card__placeholder { color: rgba(255,255,255,0.55); }

@media (max-width: 860px) {
  .stats-banner { margin-top: -40px; }
  .stats-banner__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .stat-card--red { transform: none; }
}

/* =========================================================
   PERSONAL PRODUCTION (Easton stats) — navy section
   ========================================================= */
.production {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.production::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 52, 62, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(184, 193, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.production__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
}
.production__intro h2 {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--space-5);
}
.production__intro .accent { color: var(--red-bright); }
.production__intro p {
  color: var(--silver);
  font-size: var(--text-lg);
  line-height: 1.65;
}
.production__intro .eyebrow { color: var(--red-bright); }

.production__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
}
.prod-stat {
  background: var(--navy);
  padding: var(--space-8) var(--space-6);
  position: relative;
  transition: background var(--t) var(--ease);
}
.prod-stat:hover { background: var(--navy-2); }
.prod-stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-4xl);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.prod-stat__value .unit {
  font-size: 0.5em;
  color: var(--red-bright);
  margin-left: 4px;
  font-weight: 600;
}
.prod-stat__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver-muted);
}
.prod-stat__placeholder {
  margin-top: var(--space-3);
  font-size: 0.7rem;
  color: rgba(217, 70, 81, 0.85);
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .production__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* =========================================================
   STORY 50/50 (company story)
   ========================================================= */
.story { background: var(--white); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.story__photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-lg);
}
.story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.story__photo-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  padding: 10px 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(200, 52, 62, 0.4);
}
.story__photo-stripe {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--red);
}

.story__bullets {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-6);
}
.bullet {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-5);
  align-items: start;
}
.bullet__icon {
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bullet h3 {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}
.bullet p { color: var(--gray-600); font-size: var(--text-base); line-height: 1.6; }

@media (max-width: 860px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__photo { aspect-ratio: 4/3; }
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.products { background: var(--gray-50); }
.products__intro {
  max-width: 760px;
  margin-bottom: var(--space-10);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.product {
  background: var(--white);
  border-radius: 4px;
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  border-top: 3px solid var(--navy);
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-lg);
  border-top-color: var(--red);
}
.product__icon {
  width: 56px; height: 56px;
  margin-bottom: var(--space-5);
  color: var(--red);
}
.product__name {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-3);
  letter-spacing: 0.005em;
}
.product__desc {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: var(--space-5);
  flex-grow: 1;
}
.product__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
}
.product__link:hover { color: var(--red-bright); }
.product__link-arrow { transition: transform var(--t) var(--ease); }
.product__link:hover .product__link-arrow { transform: translateX(4px); }

@media (max-width: 1000px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   DUAL CTA (Clients vs Agents)
   ========================================================= */
.dual-cta {
  background: var(--gray-100);
  padding: var(--space-12) 0;
}
.dual-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.dual-panel {
  padding: var(--space-10) var(--space-8);
  text-align: center;
  position: relative;
}
.dual-panel + .dual-panel { border-left: 1px solid var(--gray-100); }
.dual-panel__icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-5);
  color: var(--red);
}
.dual-panel__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-3);
}
.dual-panel h3 {
  font-size: var(--text-3xl);
  color: var(--navy);
  margin-bottom: var(--space-5);
}
.dual-panel p {
  color: var(--gray-600);
  max-width: 38ch;
  margin: 0 auto var(--space-6);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .dual-cta__grid { grid-template-columns: 1fr; }
  .dual-panel + .dual-panel { border-left: 0; border-top: 1px solid var(--gray-100); }
}

/* =========================================================
   PEER TESTIMONIALS (agents & business partners)
   ========================================================= */
.peer-testimonials {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}
.peer-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,52,62,0.10) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(184,193,204,0.06) 0%, transparent 60%);
}
.peer-testimonials .container {
  position: relative;
}
.peer-testimonials__intro {
  max-width: 760px;
  margin-bottom: var(--space-10);
}
.peer-testimonials__intro .eyebrow { color: var(--red-bright); }
.peer-testimonials__intro h2 {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}
.peer-testimonials__intro p {
  color: var(--silver);
  font-size: var(--text-lg);
  line-height: 1.6;
}

/* Shared card */
.peer-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: var(--space-6) var(--space-6) var(--space-5);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), background var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}
.peer-card:hover {
  border-color: rgba(216,70,81,0.5);
  background: rgba(255,255,255,0.045);
  transform: translateY(-2px);
}
.peer-card__mark {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 0.6;
  color: var(--red);
  margin-bottom: var(--space-3);
}
.peer-card__quote {
  margin: 0 0 var(--space-5) 0;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 400;
  font-style: normal;
  flex: 1;
}
.peer-card__attr {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.peer-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #24394B 100%);
  border: 1.5px solid rgba(216,70,81,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  overflow: hidden;
}
.peer-card__avatar--photo {
  background: #0F1E2C;
  padding: 0;
}
.peer-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.peer-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.peer-card__role {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--silver-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* Featured card (Shawn, CEO) */
.peer-card--featured {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 0;
  padding: 0;
  margin-bottom: var(--space-8);
  background: linear-gradient(135deg, rgba(23,42,58,0.7) 0%, rgba(15,30,44,0.9) 100%);
  border: 1px solid rgba(216,70,81,0.3);
}
.peer-card--featured .peer-card__stripe {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-bright) 100%);
  border-radius: 6px 0 0 6px;
}
.peer-card--featured .peer-card__body {
  padding: var(--space-8) var(--space-8) var(--space-7);
}
.peer-card--featured .peer-card__mark {
  font-size: 4.5rem;
}
.peer-card--featured .peer-card__quote {
  font-size: clamp(1.125rem, 0.9rem + 0.7vw, 1.5rem);
  line-height: 1.45;
  max-width: 820px;
}
.peer-card__avatar--featured {
  width: 56px;
  height: 56px;
  font-size: 1rem;
  border: 2px solid var(--red);
  background: linear-gradient(135deg, #1B2F42 0%, #2A4560 100%);
}
.peer-card__avatar--featured.peer-card__avatar--photo {
  background: #0F1E2C;
}
.peer-card--featured:hover {
  transform: translateY(-2px);
  border-color: rgba(216,70,81,0.55);
}

/* Grid */
.peer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1100px) {
  .peer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .peer-grid { grid-template-columns: 1fr; }
  .peer-card--featured { grid-template-columns: 4px 1fr; }
  .peer-card--featured .peer-card__body { padding: var(--space-6) var(--space-5); }
}

.peer-testimonials__note {
  margin-top: var(--space-8);
  font-size: 0.8rem;
  color: var(--silver-muted);
  font-style: italic;
  max-width: 720px;
}

/* =========================================================
   CARRIERS (dark)
   ========================================================= */
.carriers {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-16) 0;
}
.carriers__intro {
  max-width: 720px;
  margin-bottom: var(--space-10);
}
.carriers__intro .eyebrow { color: var(--red-bright); }
.carriers__intro h2 {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}
.carriers__intro p {
  color: var(--silver);
  font-size: var(--text-lg);
  line-height: 1.6;
}
.carriers__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.carrier-cell {
  min-height: 120px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-5);
  transition: background var(--t) var(--ease), transform var(--t-fast);
}
.carrier-cell img {
  max-width: 82%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform var(--t) var(--ease);
}
.carrier-cell:hover {
  background: #f7f8fa;
}
.carrier-cell:hover img {
  transform: scale(1.04);
}
.carriers__note {
  margin-top: var(--space-6);
  font-size: 0.85rem;
  color: var(--silver-muted);
  max-width: 760px;
  line-height: 1.55;
}
@media (max-width: 1200px) {
  .carriers__grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 960px) {
  .carriers__grid { grid-template-columns: repeat(3, 1fr); }
  .carrier-cell { min-height: 104px; }
  .carrier-cell img { max-height: 50px; }
}
@media (max-width: 560px) {
  .carriers__grid { grid-template-columns: repeat(2, 1fr); }
  .carrier-cell { min-height: 96px; padding: var(--space-3); }
  .carrier-cell img { max-height: 44px; max-width: 86%; }
}

/* =========================================================
   INTEGRITY PARTNERSHIP
   ========================================================= */
.integrity {
  background: var(--gray-50);
  position: relative;
}
.integrity__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-10);
  align-items: center;
}
.integrity__copy h2 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-5);
}
.integrity__copy .accent { color: var(--red); }
.integrity__copy p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  line-height: 1.6;
}
.integrity__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.int-stat {
  background: var(--white);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--red);
}
.int-stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-4xl);
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.int-stat__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
@media (max-width: 860px) {
  .integrity__grid { grid-template-columns: 1fr; }
  .integrity__video-title { font-size: var(--text-2xl); }
}

/* Integrity video intro */
.integrity__video-wrap {
  margin-bottom: var(--space-10);
}
.integrity__video-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-6);
}
.integrity__video-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-4xl);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: var(--space-3);
}
.integrity__video-title .accent { color: var(--red); }

/* =========================================================
   VIDEO EMBEDS (responsive)
   ========================================================= */
.video-embed {
  position: relative;
  width: 100%;
  background: var(--navy-deep);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15,30,44,0.22), 0 4px 14px rgba(15,30,44,0.12);
  border: 1px solid rgba(184,193,204,0.18);
}
.video-embed::before {
  content: "";
  display: block;
}
.video-embed--16x9::before { padding-top: 56.25%; }
.video-embed--16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Instagram reel embed: let Instagram control its own height */
.video-embed--reel {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.video-embed--reel::before { display: none; }
.video-embed--reel iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(15,30,44,0.35);
}

/* =========================================================
   DENVER OFFICE SECTION
   ========================================================= */
.denver {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.denver::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 15%, rgba(200, 52, 62, 0.18), transparent 70%),
    radial-gradient(500px 400px at 10% 90%, rgba(23, 42, 58, 0.85), transparent 70%);
  pointer-events: none;
}
.denver > .container { position: relative; z-index: 1; }
.denver__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-10);
  align-items: center;
}
.denver__copy .eyebrow { color: var(--red-bright); }
.denver__copy .section-title {
  color: var(--white);
  margin-top: var(--space-3);
}
.denver__copy .accent { color: var(--red-bright); }
.denver__copy .section-lead {
  color: var(--silver);
  max-width: 56ch;
}
.denver__list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 var(--space-8);
  display: grid;
  gap: var(--space-3);
}
.denver__list li {
  position: relative;
  padding-left: 28px;
  color: var(--silver);
  font-size: var(--text-base);
  line-height: 1.55;
}
.denver__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 14px; height: 2px;
  background: var(--red);
}
.denver__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.denver__video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.denver__video .video-embed { width: 100%; }
.denver__video-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--silver-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
@media (max-width: 860px) {
  .denver__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .denver__video { max-width: 360px; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-16) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.contact h2 {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--space-5);
}
.contact h2 .accent { color: var(--red-bright); }
.contact p { color: var(--silver); font-size: var(--text-lg); line-height: 1.6; margin-bottom: var(--space-6); }

.contact__methods {
  display: grid;
  gap: var(--space-4);
}
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--navy-2);
  border: 1px solid var(--navy-border);
  border-left: 4px solid var(--red);
  transition: all var(--t) var(--ease);
}
.contact-method:hover {
  background: var(--navy-border);
  transform: translateX(4px);
}
.contact-method__icon {
  width: 24px; height: 24px;
  color: var(--red-bright);
  flex-shrink: 0;
}
.contact-method__text { min-width: 0; }
.contact-method__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--silver-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
}
.contact-method__value {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  word-break: break-word;
}
@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-deep);
  color: var(--silver);
  padding: var(--space-12) 0 var(--space-6);
  border-top: 4px solid var(--red);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
.footer__logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  /* Footer bg is already navy; blend in so only the logo art shows */
  mix-blend-mode: screen;
  margin-bottom: var(--space-2);
}
.brand--footer { text-decoration: none; }
.footer__brand-text {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
  max-width: 32ch;
}
.footer__integrity {
  margin-top: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--silver-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-top: var(--space-4);
  border-top: 1px solid var(--navy-border);
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}
.footer__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: var(--space-3);
}
.footer__list a {
  font-size: 0.88rem;
  color: var(--silver);
  transition: color var(--t-fast);
}
.footer__list a:hover { color: var(--red-bright); }
.footer__socials {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.footer__socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--silver);
  border: 1px solid var(--navy-border);
  border-radius: 50%;
  transition: all var(--t) var(--ease);
}
.footer__socials a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}
.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--navy-border);
  font-size: 0.8rem;
  color: var(--silver-muted);
  line-height: 1.65;
}
.footer__bottom p + p { margin-top: var(--space-3); }
.footer__legal {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}
.footer__legal a { color: var(--silver-muted); font-size: 0.78rem; }
.footer__legal a:hover { color: var(--white); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   REVEAL
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PLACEHOLDER HIGHLIGHTS (dev hints)
   ========================================================= */
.placeholder-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 8px;
  background: rgba(200, 52, 62, 0.15);
  border: 1px solid rgba(200, 52, 62, 0.4);
  color: var(--red);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}
