/* =========================================================
   Cavalier Products — Design System
   ========================================================= */

:root {
  /* Brand palette */
  --navy-900: #0b1f33;
  --navy-800: #0f2a43;
  --navy-700: #16395a;
  --navy-600: #1f4a73;
  --blue-700: #00157a;
  --red-700: #6e0e1a;
  --red-600: #96121f;
  --red-500: #c1192b;
  --red-400: #ef4b57;
  --cream-100: #f7f4ee;
  --cream-50: #fbf9f5;
  --ink-900: #1a1a1a;
  --ink-700: #3d3d3d;
  --ink-500: #6b6b6b;
  --line: #e4ddd0;
  --white: #ffffff;

  /* Type */
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(11, 31, 51, 0.08), 0 1px 2px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 51, 0.12);
  --shadow-lg: 0 20px 48px rgba(11, 31, 51, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-700); }

a { color: var(--red-600); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--red-600);
  font-weight: 600;
  margin-bottom: 0.6em;
}
.hero .eyebrow { color: var(--red-400); }

.section {
  padding: 72px 0;
}

.section--tight { padding: 48px 0; }

.section--cream { background: var(--cream-100); }
.section--navy {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.section--navy .eyebrow { color: var(--red-400); }
.section--navy .quote-block blockquote { color: var(--white); }
.section--navy .quote-block cite { color: rgba(255,255,255,0.65); }

.section-head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head p { color: var(--ink-500); }
.section--navy .section-head p { color: rgba(255,255,255,0.78); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--red-500); box-shadow: var(--shadow-md); }

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

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

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  flex: 0 0 auto;
  margin-right: 20px;
}
.brand:hover { text-decoration: none; }
.brand svg, .brand img { height: 40px; width: auto; flex: none; }
.brand img.brand-logo-img { height: 64px; }
.brand-text {
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-text strong { display: block; font-size: 1.1rem; letter-spacing: 0.02em; color: var(--navy-900); white-space: nowrap; }
.brand-text span { display: block; font-size: 0.7rem; letter-spacing: 0.16em; color: var(--red-600); white-space: nowrap; }

/* Logo on dark backgrounds (footer) needs a light plate — the logo art is black text on transparent */
.brand-logo-plate {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  flex: none;
}
.brand-logo-plate img { height: 40px; width: auto; display: block; }
.site-footer .brand-text span { color: var(--red-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy-800);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--red-600);
  text-decoration: none;
  border-bottom-color: var(--red-600);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 1180px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-cta .btn--navy { display: none; }
  .nav-toggle { display: block; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(150,18,31,0.30), transparent 60%),
              linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 46px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 76px 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Split layout: image left, copy right */
.hero-inner--split {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}

.hero-visual { position: relative; }
.hero-visual__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.14);
  transform: rotate(-1.2deg);
}
.hero-visual__frame img { width: 100%; display: block; }
.hero-visual__accent {
  position: absolute;
  top: -18px; left: -18px;
  width: 92px; height: 92px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red-600), var(--red-400));
  z-index: -1;
  transform: rotate(-1.2deg);
}
.hero-visual__badge {
  position: absolute;
  bottom: -22px; right: -18px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-1.2deg);
}
.hero-visual__badge .icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual__badge .icon svg { width: 22px; height: 22px; }
.hero-visual__badge .label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy-900);
  max-width: 15ch;
  line-height: 1.3;
}

.hero-copy { position: relative; }
.hero h1 { color: var(--white); margin-bottom: 0.35em; }
.hero-lede { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 48ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-slogan {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--red-600);
  display: inline-block;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0 18px;
}

/* Slogan line reused in the footer */
.footer-slogan {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--red-400);
  font-size: 0.85rem;
  margin: 14px 0 0;
}

/* Slim stat strip beneath the hero */
.hero-stats-strip {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -64px;
  margin-bottom: 0;
}
.hero-stats-strip .stat {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.hero-stats-strip .stat:last-child { border-right: none; }
.hero-stats-strip .stat .num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--red-600);
  display: block;
}
.hero-stats-strip .stat .label {
  font-size: 0.78rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .hero-inner, .hero-inner--split { grid-template-columns: 1fr; padding: 56px 24px 80px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .hero-stats-strip .stat:nth-child(2) { border-right: none; }
  .hero-stats-strip .stat:nth-child(1), .hero-stats-strip .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* =========================================================
   Cards / grids
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-2--contact { grid-template-columns: 1.3fr 1fr; align-items: flex-start; }
@media (max-width: 900px) {
  .grid-3, .grid-2, .grid-2--contact { grid-template-columns: 1fr; }
}

.territory-list--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .territory-list--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .territory-list--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-100);
  border-radius: 10px;
  color: var(--red-600);
  margin-bottom: 16px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 0.4em; }
.card p { margin-bottom: 0; font-size: 0.96rem; }

.card--photo { padding-top: 0; overflow: hidden; }
.card--photo .card-photo {
  margin: 0 -26px 18px;
  height: 132px;
  background: var(--cream-100);
}
.card--photo .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card--photo .icon { margin-top: 20px; }

/* =========================================================
   Who We Serve — dark section with graphic backdrop + row cards
   ========================================================= */
.serve-section {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  overflow: hidden;
}
.serve-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNDAiIGhlaWdodD0iMzQwIiB2aWV3Qm94PSIwIDAgMzQwIDM0MCI+CiAgPGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDcpIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMCwzMCkgc2NhbGUoMS42KSI+CiAgICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjgiLz48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIzIi8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNTAsMTApIHNjYWxlKDEuNCkgcm90YXRlKDE1IDEyIDEyKSI+CiAgICAgIDxwYXRoIGQ9Ik0xNC43IDYuM2E0IDQgMCAwIDEtNS40IDUuNEw0IDE3bDMgMyA1LjMtNS4zYTQgNCAwIDAgMSA1LjQtNS40TDIxIDZsLTMtM3oiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIzMCw5MCkgc2NhbGUoMS41KSI+CiAgICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjQiLz4KICAgICAgPHBhdGggZD0iTTEyIDN2M00xMiAxOHYzTTQuMiA0LjJsMi4xIDIuMU0xNy43IDE3LjdsMi4xIDIuMU0zIDEyaDNNMTggMTJoM000LjIgMTkuOGwyLjEtMi4xTTE3LjcgNi4zbDIuMS0yLjEiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwLDE5MCkgc2NhbGUoMS43KSI+CiAgICAgIDxyZWN0IHg9IjMiIHk9IjciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMCIgcng9IjEiLz48cGF0aCBkPSJNMTYgMTBoM2wyIDN2NGgtNXoiLz48Y2lyY2xlIGN4PSI3LjUiIGN5PSIxOC41IiByPSIxLjUiLz48Y2lyY2xlIGN4PSIxNy41IiBjeT0iMTguNSIgcj0iMS41Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOTAsMjMwKSBzY2FsZSgxLjQpIHJvdGF0ZSgtMTAgMTIgMTIpIj4KICAgICAgPHBhdGggZD0iTTQgMjBsNi02TTE0IDRsMS41IDEuNU00IDRsMS41IDEuNU0yMCAxMGwtMS41IDEuNU05IDR2M000IDloM00xNyA0djNNMjAgN2gtMyIvPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjcwLDI1MCkgc2NhbGUoMS4yKSI+CiAgICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjgiLz48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIzIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=");
  background-size: 340px 340px;
  background-repeat: repeat;
  pointer-events: none;
}
.serve-section .container { position: relative; }
.serve-section .section-head h2 { color: var(--white); }
.serve-section .section-head p { color: rgba(255,255,255,0.78); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.serve-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.serve-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.serve-item__icon {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--red-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.serve-item__icon svg { width: 24px; height: 24px; }
.serve-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.3em; }
.serve-item p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-bottom: 0; }
.serve-item--wide { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }
@media (max-width: 780px) {
  .serve-grid { grid-template-columns: 1fr; }
  .serve-item--wide { max-width: none; }
}

/* =========================================================
   Texas trade-area map
   ========================================================= */
.map-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: var(--navy-900);
  border-color: rgba(255,255,255,0.12);
}
.map-card:hover { transform: none; }
.tx-map { width: 100%; height: auto; display: block; }
.tx-map .city {
  font-family: var(--font-head);
  font-size: 17px;
  fill: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: var(--navy-900);
  stroke-width: 3.5px;
  stroke-linejoin: round;
}
.tx-map .hq { fill: var(--red-400); font-size: 13px; }
.tx-map .soon {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  fill: var(--red-400);
  letter-spacing: 0.03em;
  paint-order: stroke;
  stroke: var(--navy-900);
  stroke-width: 3px;
  stroke-linejoin: round;
}
.tx-map .lg-t {
  font-family: var(--font-head);
  font-size: 18px;
  fill: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tx-map .lg { font-family: var(--font-body); font-size: 14.5px; fill: rgba(255,255,255,0.82); }
@media (max-width: 620px) {
  .tx-map .city { font-size: 22px; stroke-width: 4.5px; }
  .tx-map .soon { font-size: 17px; }
  .tx-map .lg-t { font-size: 23px; }
  .tx-map .lg { font-size: 18px; }
  .tx-map .hq { font-size: 17px; }
}

/* Value strip */
.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-strip .item {
  flex: 1 1 220px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}
.value-strip .item:last-child { border-right: none; }
.value-strip .num { font-family: var(--font-head); color: var(--red-600); font-size: 1.7rem; display: block; }
.value-strip .label { font-size: 0.85rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.04em; }

/* History page inset photo */
.history-photo {
  float: right;
  width: 240px;
  margin: 6px 0 18px 26px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.history-photo img { width: 100%; display: block; }
.history-photo figcaption {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px 10px;
}
@media (max-width: 640px) {
  .history-photo { float: none; width: 100%; max-width: 280px; margin: 0 auto 24px; }
}

/* =========================================================
   Timeline (history page)
   ========================================================= */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 3px solid var(--line);
}
.timeline-item { position: relative; padding: 0 0 42px 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red-600);
  border: 3px solid var(--cream-100);
  box-shadow: 0 0 0 2px var(--red-600);
}
.timeline-year {
  font-family: var(--font-head);
  color: var(--red-600);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

/* Quote block */
.quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  text-transform: none;
  color: var(--navy-900);
  line-height: 1.4;
  margin: 0 0 18px;
}
.quote-block cite {
  font-style: normal;
  color: var(--ink-500);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================================
   Team / rep cards
   ========================================================= */
.rep-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rep-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.rep-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.rep-photo .market-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red-600);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.rep-photo svg { width: 56%; height: 56%; opacity: 0.85; }
.rep-photo img.rep-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.rep-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.rep-name { font-family: var(--font-head); text-transform: uppercase; font-size: 1.1rem; color: var(--navy-900); margin-bottom: 2px; }
.rep-role { color: var(--red-600); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 12px; }
.rep-body p { font-size: 0.93rem; margin-bottom: 14px; }
.rep-body p em { color: var(--red-600); font-style: normal; font-weight: 600; }
.rep-meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-500); }
.rep-meta strong { color: var(--ink-900); }

.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--ink-500);
  background: var(--cream-100);
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 4px 8px;
  margin-top: 10px;
}

/* =========================================================
   Map / territory
   ========================================================= */
.territory-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.territory-list .t-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.t-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red-500); flex: none; }
.t-item strong { color: var(--white); display: block; font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.03em; }
.t-item span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
@media (max-width: 640px) { .territory-list { grid-template-columns: 1fr; } }

/* =========================================================
   Forms
   ========================================================= */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  margin-bottom: 18px;
  background: var(--cream-50);
  color: var(--ink-900);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--red-400);
  outline-offset: 1px;
}
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--ink-500); margin-top: -6px; }

.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card .row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-card .row svg { width: 20px; height: 20px; color: var(--red-400); flex: none; margin-top: 3px; }
.contact-info-card .row strong { display: block; color: var(--white); font-size: 0.95rem; }
.contact-info-card .row span, .contact-info-card .row a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.contact-info-card .row a:hover { color: var(--red-400); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--red-700), var(--red-500));
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 4px solid rgba(255,255,255,0.85);
}
.cta-band h3 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.92); margin-bottom: 0; }
.cta-band .btn--primary { background: var(--navy-900); }
.cta-band .btn--primary:hover { background: var(--navy-800); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 26px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-top__copy { max-width: 480px; }
.footer-top__copy p:not(.footer-slogan) { margin-bottom: 0; }
.footer-top__logo { margin: 0; flex: none; }
.brand-logo-plate--lg { padding: 18px 24px; }
.brand-logo-plate--lg img { height: 76px; }
@media (max-width: 700px) {
  .footer-top { justify-content: center; text-align: center; }
  .footer-top__copy { max-width: 100%; }
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.site-footer .brand-text strong { color: var(--white); }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.site-footer p.footer-slogan { color: var(--red-400); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 0.9rem; }
.footer-links a:hover { color: var(--red-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
