/* ============================================================
   SOVEREIGN IRONWORKS LTD.
   Main Stylesheet — Forged in Permanence
   © 2026 Sovereign Ironworks Ltd.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,700&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --iron-grey:        #2C2C2C;
  --iron-grey-mid:    #3E3E3E;
  --iron-grey-light:  #5C5C5C;
  --charcoal:         #1A1A1A;
  --burgundy:         #6B1E1E;
  --burgundy-mid:     #7E2424;
  --burgundy-light:   #9A3030;
  --brass:            #B5922A;
  --brass-light:      #CDA840;
  --brass-pale:       #E0CA80;
  --cream:            #F4F0E6;
  --cream-dark:       #E4DDD0;
  --cream-darker:     #CEC4B2;
  --white:            #FAF8F3;
  --black:            #0F0F0F;

  --font-heading: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body:    'Crimson Pro', Georgia, 'Times New Roman', serif;

  --max-width: 1180px;
  --section-padding: 6rem 2rem;
  --border-brass: 1px solid var(--brass);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--iron-grey);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brass);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--iron-grey);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.35em;
}

p:last-child {
  margin-bottom: 0;
}

blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--iron-grey);
}

/* Section label / eyebrow — ALL CAPS, wide tracking */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2C2C2C;
  display: block;
  margin-bottom: 0.85rem;
}

/* ============================================================
   BRASS HORIZONTAL RULES
   Between sections: a single thin brass line
   ============================================================ */

.brass-rule {
  border: none;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
  margin: 0;
}

.brass-rule--wide {
  opacity: 0.35;
}

.ornament-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.ornament-rule::before,
.ornament-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}

.ornament-rule-center {
  font-family: var(--font-heading);
  color: var(--brass);
  font-size: 1rem;
}

.section-title-block {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-block h2 {
  color: var(--iron-grey);
}

.section-title-block .ornament-rule {
  max-width: 320px;
  margin: 1rem auto;
}

/* Engraved heading effect */
.engraved-light {
  color: var(--cream);
  text-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 -1px 0 rgba(0,0,0,0.45);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

/* Dark section — charcoal ground */
.section--dark {
  background-color: var(--iron-grey);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--dark p {
  color: var(--cream-dark);
}

.section--dark .eyebrow {
  color: var(--brass-light);
}

.section--charcoal {
  background-color: var(--charcoal);
  color: var(--cream);
}

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4 {
  color: var(--cream);
}

.section--charcoal p {
  color: var(--cream-dark);
}

.section--charcoal .eyebrow {
  color: var(--brass-light);
}

/* Burgundy section */
.section--burgundy {
  background-color: var(--burgundy);
  color: var(--cream);
}

.section--burgundy h1,
.section--burgundy h2,
.section--burgundy h3,
.section--burgundy h4 {
  color: var(--cream);
}

.section--burgundy p {
  color: var(--cream-dark);
}

.section--burgundy .eyebrow {
  color: var(--brass-light);
}

/* Cream sections */
.section--cream {
  background-color: var(--cream);
}

.section--cream-dark {
  background-color: var(--cream-dark);
}

/* Grid system */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ============================================================
   SITE HEADER & NAVIGATION
   ============================================================ */

.site-header {
  background-color: var(--charcoal);
  border-bottom: 2px solid var(--brass);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-logo__tagline {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-style: italic;
  color: var(--brass);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
}

.site-nav__item a {
  display: block;
  padding: 0 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dark);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  height: 76px;
  line-height: 76px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.site-nav__item a:hover,
.site-nav__item a.active {
  color: var(--brass-light);
  border-bottom-color: var(--brass);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--cream);
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  background-color: var(--charcoal);
  padding: 9rem 2rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--brass);
}

/* Subtle grid texture — no gradients */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(181,146,42,0.03) 47px, rgba(181,146,42,0.03) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(181,146,42,0.03) 47px, rgba(181,146,42,0.03) 48px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero__crest-line {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brass);
  margin-bottom: 1.25rem;
  line-height: 1;
  letter-spacing: 0.5em;
}

.hero__est {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 2rem;
  display: block;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--brass-light);
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

/* Thin brass rule under subtitle */
.hero__rule {
  width: 80px;
  height: 1px;
  background: var(--brass);
  margin: 1.75rem auto;
  opacity: 0.7;
}

.hero__body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--cream-dark);
  max-width: 620px;
  margin: 0 auto 2.75rem;
  line-height: 1.85;
}

/* ============================================================
   BUTTONS
   Burgundy filled, ALL CAPS, letter-spaced, no border-radius
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
}

/* Primary: burgundy filled */
.btn--burgundy {
  color: var(--cream);
  border-color: var(--burgundy);
  background: var(--burgundy);
}

.btn--burgundy:hover {
  background: var(--burgundy-mid);
  border-color: var(--burgundy-mid);
  color: var(--cream);
}

/* Outline variants */
.btn--cream {
  color: var(--cream);
  border-color: var(--cream);
  background: transparent;
}

.btn--cream:hover {
  background: var(--cream);
  color: var(--iron-grey);
}

.btn--brass {
  color: #2C2C2C;
  border-color: var(--brass);
  background: transparent;
}

.btn--brass:hover {
  background: var(--brass);
  color: var(--charcoal);
}

.btn--dark {
  color: var(--iron-grey);
  border-color: var(--iron-grey);
  background: transparent;
}

.btn--dark:hover {
  background: var(--iron-grey);
  color: var(--cream);
}

/* ============================================================
   STAT / SINCE STRIP
   ============================================================ */

.since-strip {
  background-color: var(--burgundy);
  border-top: 1px solid rgba(181,146,42,0.35);
  border-bottom: 1px solid rgba(181,146,42,0.35);
  padding: 1.5rem 2rem;
}

.since-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.since-strip__item {
  text-align: center;
}

.since-strip__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brass-light);
  line-height: 1;
  display: block;
}

.since-strip__label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-dark);
  display: block;
  margin-top: 4px;
}

/* ============================================================
   DIVISION CARDS
   Bordered boxes with brass top rule — no drop shadows
   ============================================================ */

.division-card {
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-top: 3px solid var(--brass);
  padding: 2.25rem;
  transition: border-top-color 0.2s ease;
}

.division-card:hover {
  border-top-color: var(--burgundy);
}

.division-card__icon {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--brass);
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.division-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--iron-grey);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.division-card__body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--iron-grey-light);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   PULL QUOTES — burgundy
   ============================================================ */

.pull-quote {
  border-left: 3px solid var(--burgundy);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(107,30,30,0.04);
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.pull-quote__attribution {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2C2C2C;
  font-weight: 500;
}

/* Light variant (on dark backgrounds) */
.pull-quote--light {
  border-left-color: var(--brass-light);
  background: rgba(181,146,42,0.07);
}

.pull-quote--light blockquote {
  color: var(--cream);
}

.pull-quote--light .pull-quote__attribution {
  color: var(--brass-light);
}

/* ============================================================
   TIMELINE — brass dot markers
   ============================================================ */

.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0;
  width: 1px;
  background: var(--brass);
  opacity: 0.5;
}

.timeline__item {
  position: relative;
  margin-bottom: 2.75rem;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Brass dot marker */
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brass);
  border: 2px solid var(--brass-pale);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2C2C2C;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--iron-grey);
  margin-bottom: 0.4rem;
}

.timeline__body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--iron-grey-light);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   LEADERSHIP CARDS
   ============================================================ */

.leader-card {
  border-top: 2px solid var(--brass);
  padding-top: 1.75rem;
}

.leader-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--iron-grey);
  margin-bottom: 0.2rem;
}

.leader-card__title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2C2C2C;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.leader-card__body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--iron-grey-light);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   MOTORSPORT / RACING
   ============================================================ */

.racing-hero {
  background-color: var(--charcoal);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 24px,
      rgba(107,30,30,0.07) 24px,
      rgba(107,30,30,0.07) 25px
    );
  padding: 8rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--burgundy);
  position: relative;
}

.racing-hero::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brass);
}

.livery-swatch {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
}

.livery-swatch__block {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
}

.livery-swatch__label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dark);
}

/* Spec / data tables */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.97rem;
  margin: 1.5rem 0;
}

.spec-table tr {
  border-bottom: 1px solid var(--cream-darker);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 0.75rem 0;
  vertical-align: top;
}

.spec-table td:first-child {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2C2C2C;
  font-weight: 600;
  width: 38%;
  padding-right: 1rem;
}

.spec-table--dark tr {
  border-bottom-color: var(--iron-grey-light);
}

.spec-table--dark td {
  color: var(--cream-dark);
}

.spec-table--dark td:first-child {
  color: var(--brass-light);
}

/* ============================================================
   INDUSTRIES PAGE — division sections
   ============================================================ */

.industry-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--brass);
  border-bottom-opacity: 0.3;
}

.industry-section:last-child {
  border-bottom: none;
}

.industry-section__label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #2C2C2C;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.industry-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.industry-section__head {
  position: sticky;
  top: 100px;
}

.industry-section__head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.capability-list {
  margin-top: 1.5rem;
}

.capability-list li {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--iron-grey-light);
  padding: 0.45rem 0 0.45rem 1.3rem;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  line-height: 1.5;
}

.capability-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-family: var(--font-heading);
}

.capability-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */

.page-banner {
  background-color: var(--charcoal);
  border-bottom: 2px solid var(--brass);
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
}

.page-banner__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.85rem;
}

.page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.page-banner__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brass-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--brass);
  border-bottom-width: 1px;
  border-bottom-color: rgba(181,146,42,0.3);
  padding: 0.65rem 2rem;
}

.breadcrumb__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iron-grey-light);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb__inner a {
  color: var(--iron-grey-light);
}

.breadcrumb__inner a:hover {
  color: var(--brass);
}

.breadcrumb__sep {
  color: var(--brass);
  font-size: 0.62rem;
}

/* ============================================================
   INFOBOX (bordered box, no shadow)
   ============================================================ */

.infobox {
  border: 1px solid rgba(181,146,42,0.35);
  padding: 2.25rem;
}

.infobox--dark {
  border-color: rgba(181,146,42,0.25);
  background: transparent;
}

/* ============================================================
   DIVISION INDEX NAV (Industries page)
   ============================================================ */

.division-nav {
  background: var(--iron-grey);
  border-bottom: 1px solid rgba(181,146,42,0.25);
  padding: 0 2rem;
}

.division-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.division-nav__link {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dark);
  padding: 1rem 1.5rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  display: block;
}

.division-nav__link:hover,
.division-nav__link.active {
  color: var(--brass-light);
  border-bottom-color: var(--brass);
}

/* ============================================================
   SPORTS HUB PAGE
   ============================================================ */

.sports-card {
  border: 1px solid var(--cream-darker);
  border-top: 3px solid var(--brass);
  padding: 2.5rem;
  background: var(--cream);
  transition: border-top-color 0.2s ease;
}

.sports-card:hover {
  border-top-color: var(--burgundy);
}

.sports-card__label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2C2C2C;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.sports-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--iron-grey);
  margin-bottom: 0.85rem;
}

.sports-card__body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--iron-grey-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--black);
  border-top: 2px solid var(--brass);
  color: var(--cream-darker);
  padding: 4.5rem 2rem 2.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(181,146,42,0.2);
  margin-bottom: 2rem;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand__address {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--iron-grey-light);
  line-height: 1.85;
  font-style: normal;
}

.footer-col__heading {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  display: block;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(181,146,42,0.25);
}

.footer-col__list li {
  margin-bottom: 0.55rem;
}

.footer-col__list a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--iron-grey-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col__list a:hover {
  color: var(--brass-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--iron-grey-light);
}

.footer-reg {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  color: var(--iron-grey-light);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 900px) {
  :root {
    --section-padding: 4.5rem 1.5rem;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .industry-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .industry-section__head {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 640px) {
  :root {
    --section-padding: 3.5rem 1.25rem;
  }

  .container,
  .container--narrow,
  .container--wide {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 5.5rem 1.25rem 4.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .since-strip__inner {
    gap: 1rem;
  }

  .since-strip__item {
    min-width: 44%;
  }

  .pull-quote {
    padding: 1.25rem 1.25rem;
  }

  /* Mobile nav */
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(181,146,42,0.3);
    border-bottom: 2px solid var(--brass);
    flex-direction: column;
    align-items: stretch;
    z-index: 999;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__item a {
    height: auto;
    line-height: 1.4;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(181,146,42,0.15);
    border-left: 3px solid transparent;
  }

  .site-nav__item a:hover,
  .site-nav__item a.active {
    border-bottom-color: rgba(181,146,42,0.15);
    border-left-color: var(--brass);
    border-bottom-width: 0px;
  }

  .nav-toggle {
    display: flex;
  }

  .industry-section {
    padding: 3rem 1.25rem;
  }

  .page-banner {
    padding: 3.5rem 1.25rem 3rem;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .site-header,
  .nav-toggle,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 11pt;
  }

  .hero,
  .page-banner {
    background: white;
    color: black;
    border-bottom: 1pt solid black;
  }
}
