:root {
  --red: #c91522;
  --red-dark: #970d17;
  --ink: #101113;
  --muted: #62666d;
  --line: #dedfe3;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --charcoal: #1b1d22;
  --gold: #c99b39;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(16, 17, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(222, 223, 227, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 6px;
  color: #292b31;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
  background: rgba(201, 21, 34, 0.07);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(16, 17, 19, 0.88), rgba(16, 17, 19, 0.5) 48%, rgba(16, 17, 19, 0.12)),
    var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.sub-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(16, 17, 19, 0.85), rgba(16, 17, 19, 0.38)),
    var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.hero-inner,
.sub-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

.sub-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.lead {
  max-width: 700px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.page-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--charcoal);
  color: #fff;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.section-heading p {
  color: var(--muted);
}

.dark .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 1.6rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--red);
  font-family: Oswald, Impact, sans-serif;
  font-size: 2.15rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(340px, 1.1fr) minmax(0, 0.9fr);
}

.split-text h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.split-text p {
  color: var(--muted);
}

.photo-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ddd;
}

.photo-panel img {
  width: 100%;
  height: clamp(320px, 48vw, 560px);
  object-fit: cover;
}

.photo-panel.short img {
  height: clamp(250px, 33vw, 390px);
}

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

.card {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card.accent {
  border-color: rgba(201, 21, 34, 0.28);
  background: linear-gradient(180deg, rgba(201, 21, 34, 0.08), #fff);
}

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

.team-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.team-list strong {
  color: var(--ink);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.event-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  gap: 1.2rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.event-row time,
.event-row .label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.event-row h3 {
  margin-bottom: 0.35rem;
}

.event-row p {
  color: var(--muted);
}

.event-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: var(--soft);
}

.gallery-grid .wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.info-box {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-box h3 {
  margin-bottom: 0.5rem;
}

.info-box p {
  color: var(--muted);
}

.form {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.support-band p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 3rem clamp(1rem, 4vw, 2rem) 1.5rem;
  color: #fff;
  background: #101113;
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-logo {
  width: 78px;
  margin-bottom: 1rem;
}

.footer h2 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1rem;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 2rem auto 0;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .section-heading,
  .split,
  .split.reverse,
  .contact-layout,
  .support-band {
    grid-template-columns: 1fr;
  }

  .stat-row,
  .cards,
  .team-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-row {
    grid-template-columns: 1fr;
  }

  .event-row img {
    max-height: 280px;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-inner,
  .sub-hero-inner {
    padding-bottom: 4rem;
  }

  .stat-row,
  .cards,
  .team-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

  .gallery-grid .wide {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
