/* One Source Sales — site styles
   Brand: navy #123C63, gold #C5A059
   Headings: Lora  |  Body: Source Sans 3 */

:root {
  --navy: #123C63;
  --navy-deep: #0D2E4C;
  --gold: #C5A059;
  --gold-dark: #A8792B;
  --cream: #F7F4EE;
  --pale: #F4F7FA;
  --white: #ffffff;
  --ink: #1E2732;
  --muted: #5F6B78;
  --line: #DCE4EC;
  --navy-soft: #C7D5E4;
  --navy-mist: #9DB6D4;
  --num: #BFCFE1;
  --header-h: 84px;
  --wrap: 1120px;
  --radius: 6px;
  --font-serif: "Lora", Cambria, "Times New Roman", serif;
  --font-sans: "Source Sans 3", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); font-weight: 600; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

/* ——— Header / Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 42px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a.is-active {
  color: var(--navy);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
}

/* ——— Eyebrow + section heads ——— */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}

/* ——— Bands ——— */
.band {
  padding: 88px 0;
}
.band--cream { background: var(--cream); }
.band--pale { background: var(--pale); }
.band--white { background: var(--white); }
.band--navy {
  background: var(--navy);
  color: var(--navy-soft);
  position: relative;
}
.band--navy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--gold);
}
.band--navy .section-title,
.band--navy h1,
.band--navy h2 { color: var(--white); }
.band--navy .lede { color: var(--navy-soft); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--gold-dark); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ——— Hero ——— */
.hero {
  background: var(--navy);
  color: var(--navy-soft);
  padding: 96px 0 108px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--gold);
}
.hero-logo-chip {
  display: inline-flex;
  background: var(--white);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 36px;
}
.hero-logo-chip img { height: 48px; width: auto; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.15;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 16px;
}
.hero .sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--navy-soft);
  font-family: var(--font-serif);
  margin-bottom: 28px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.pill {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-mist);
  border: 1px solid rgba(157, 182, 212, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ——— Cards ——— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
}
.card--tint {
  background: var(--pale);
}
.card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 16px 0 10px;
}
.card p { font-size: 15.5px; line-height: 1.6; }

.icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon--gold { background: var(--gold); }

/* ——— Lanes / coverage ——— */
.lane-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.lane-tag--gold { background: var(--gold); }
.retail-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.retail-list li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.retail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ——— Approach steps ——— */
.step-num {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--num);
  line-height: 1;
}
.step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* ——— Brand wordmarks ——— */
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 20px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.brand-card span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.brand-card--logo { min-height: 110px; padding: 16px 20px; }
.brand-card img {
  max-height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.band--pale .brand-card { background: var(--white); }
.band--white .brand-card { background: var(--pale); }
.brand-card--dark {
  background: #111 !important;
  border-color: #111;
}

/* ——— Team ——— */
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.avatar--gold { background: var(--gold); }
.team-card {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--navy);
}
.team-card--accent::before { background: var(--gold); }
.team-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 20px; margin: 0; }
.role {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.team-card p { font-size: 15px; }

/* ——— Page intro (inner pages) ——— */
.page-hero {
  padding: 80px 0 24px;
  background: var(--cream);
}
.page-hero.band--white { background: var(--white); padding-bottom: 8px; }

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-block:first-child { border-top: none; padding-top: 0; }
.contact-block h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.contact-block .meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-block a { color: var(--navy); }
.contact-block a:hover { color: var(--gold-dark); }

.form {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.form h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  outline: none;
}
.field input:focus,
.field textarea:focus { border-color: var(--navy); }
.field textarea { min-height: 140px; resize: vertical; }

/* ——— Footer ——— */
.site-footer {
  background: var(--navy);
  color: var(--navy-mist);
  padding: 28px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--navy-soft); }
.site-footer a:hover { color: var(--gold); }

/* ——— Page-specific ——— */
.who-copy {
  font-size: 18px;
  line-height: 1.75;
  max-width: 780px;
}

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .grid-3, .grid-5 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .wrap { width: calc(100% - 32px); }
  .band { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .grid-3, .grid-2, .grid-5 { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 8px; font-size: 16px; }
  .logo img { height: 34px; }
  .hero-logo-chip img { height: 40px; }
}
