:root {
  --bg: #080909;
  --panel: #121313;
  --panel-2: #191715;
  --text: #f6f0e8;
  --muted: #c8beb2;
  --line: rgba(246, 240, 232, 0.16);
  --red: #b3211c;
  --red-2: #e23c31;
  --amber: #d99a43;
  --steel: #858d91;
  --shadow: rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

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

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

.site-header {
  align-items: center;
  background: rgba(8, 9, 9, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 9, 0.92);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-logo {
  border: 1px solid rgba(255, 255, 255, 0.24);
  height: 50px;
  object-fit: cover;
  width: 50px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--red), #232323 65%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  font-family: Oswald, sans-serif;
  font-size: 21px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Oswald, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 2px;
  text-transform: uppercase;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--amber);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 40px;
  padding: 8px;
  width: 44px;
}

.menu-toggle span {
  background: var(--text);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 100%;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 84px) 96px;
  position: relative;
}

.hero-video,
.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-video,
.hero-image {
  object-fit: cover;
}

.hero-video {
  background: #000;
}

.hero-shade {
  background:
    radial-gradient(circle at 76% 45%, rgba(255, 255, 255, 0.12), rgba(8, 9, 9, 0.12) 28%, rgba(8, 9, 9, 0.62) 52%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(8, 9, 9, 0.72) 38%, rgba(8, 9, 9, 0.42) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 9, 0) 35%);
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.86;
  margin: 0;
  max-width: 860px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.78);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin: 26px 0 0;
  max-width: 640px;
}

.hero-crest {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: end;
  max-width: 410px;
  text-align: center;
}

.crest-frame {
  background: rgba(0, 0, 0, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.78);
  padding: clamp(10px, 1.8vw, 18px);
}

.crest-frame img {
  aspect-ratio: 1;
  object-fit: cover;
  width: min(32vw, 380px);
}

.hero-crest span {
  color: var(--text);
  font-family: Oswald, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
}

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

.button-primary:hover {
  background: var(--red-2);
}

.button-ghost {
  border-color: var(--line);
  color: var(--text);
}

.button-dark {
  background: #0d0e0e;
  border-color: var(--line);
  color: var(--text);
  cursor: pointer;
  width: 100%;
}

.hero-stats {
  border-top: 1px solid var(--line);
  bottom: 0;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-stats span {
  background: rgba(8, 9, 9, 0.74);
  color: var(--muted);
  padding: 18px clamp(18px, 4vw, 54px);
  text-transform: uppercase;
}

.hero-stats strong {
  color: var(--text);
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 28px;
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(179, 33, 28, 0.16), rgba(8, 9, 9, 0) 50%),
    #080909;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.46fr);
  min-height: 74vh;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 6vw, 84px);
}

.page-hero h1 {
  font-size: clamp(64px, 10vw, 142px);
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  max-width: 720px;
}

.page-hero img {
  border: 1px solid var(--line);
  box-shadow: 0 34px 110px var(--shadow);
  justify-self: end;
  max-height: 430px;
  object-fit: cover;
  width: min(100%, 430px);
}

.gallery-page-hero img {
  aspect-ratio: 1;
}

.page-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 6vw, 84px);
}

.intro,
.contact {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section-heading h2,
.contact h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  margin: 0;
}

.intro-copy {
  color: var(--muted);
  display: grid;
  font-size: 18px;
  gap: 20px;
  line-height: 1.75;
}

.intro-copy p,
.contact-copy p {
  margin: 0;
}

.values {
  background: #0e0f0f;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 1px;
  padding-top: 1px;
}

.values article {
  background: var(--panel);
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
}

.values span {
  color: var(--red-2);
  font-family: Oswald, sans-serif;
  font-size: 20px;
}

.values h3,
.event-card h3 {
  font-size: 30px;
  margin: 22px 0 12px;
}

.values p,
.event-card p,
.contact-copy p,
.presence-copy p,
.site-footer {
  color: var(--muted);
  line-height: 1.65;
}

.presence {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(179, 33, 28, 0.1), rgba(8, 9, 9, 0) 45%),
    #090a0a;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
}

.presence-copy h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  margin: 0;
}

.presence-copy {
  display: grid;
  gap: 22px;
}

.presence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.presence-list a {
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  text-transform: uppercase;
}

.presence-list a:hover {
  background: var(--red);
  border-color: var(--red);
}

.presence-map {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px var(--shadow);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.presence-map img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.presence-map figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0));
  bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  left: 0;
  padding: 54px 18px 18px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.board {
  background:
    linear-gradient(180deg, rgba(217, 154, 67, 0.06), rgba(8, 9, 9, 0)),
    var(--bg);
}

.board-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.board-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 250px;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
}

.board-card::before {
  background: var(--red);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.board-role {
  color: var(--amber);
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.board-card h3 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  margin: 22px 0 12px;
}

.board-card p {
  color: var(--muted);
  margin: 0 0 28px;
  text-transform: uppercase;
}

.board-card a {
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 14px;
}

.board-card a:hover {
  background: var(--red);
  border-color: var(--red);
}

.albums {
  background:
    linear-gradient(180deg, rgba(217, 154, 67, 0.06), rgba(8, 9, 9, 0)),
    var(--bg);
}

.album-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.album-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 480px;
  overflow: hidden;
}

.album-card img,
.album-empty {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.album-card div:not(.album-empty) {
  padding: clamp(22px, 3vw, 32px);
}

.album-card span {
  color: var(--amber);
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.album-card h3 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  margin: 18px 0 12px;
}

.album-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.album-empty {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(179, 33, 28, 0.24), rgba(217, 154, 67, 0.12)),
    repeating-linear-gradient(45deg, #171717 0 12px, #202020 12px 24px);
  color: var(--text);
  display: flex;
  font-family: Oswald, sans-serif;
  font-size: 86px;
  justify-content: center;
}

.events {
  background:
    linear-gradient(180deg, rgba(179, 33, 28, 0.08), rgba(8, 9, 9, 0)),
    var(--bg);
}

.event-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.event-card {
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 96px 1fr;
  padding: 22px;
}

.event-card time {
  align-items: center;
  background: var(--panel-2);
  color: var(--amber);
  display: flex;
  font-family: Oswald, sans-serif;
  font-size: 27px;
  height: 96px;
  justify-content: center;
  text-align: center;
}

.event-card h3 {
  margin-top: 0;
}

.event-card p {
  margin: 0;
}

.photo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin-top: 34px;
}

.anthem-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-row: span 2;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.anthem-video {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(179, 33, 28, 0.18), rgba(8, 9, 9, 0.18)),
    #1a1a1a;
  position: relative;
  width: 100%;
}

.anthem-video iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.anthem-copy {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
}

.anthem-copy .eyebrow {
  margin: 0;
}

.anthem-copy h3 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 0;
}

.anthem-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.anthem-copy .button {
  justify-self: start;
  margin-top: 4px;
}

.photo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.photo-card-wide {
  grid-row: span 2;
}

.photo-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-card video,
.photo-card iframe {
  border: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.texture-card,
.road-card {
  background:
    linear-gradient(135deg, rgba(217, 154, 67, 0.24), rgba(179, 33, 28, 0.1)),
    repeating-linear-gradient(45deg, #171717 0 12px, #202020 12px 24px);
}

.road-card {
  background:
    linear-gradient(135deg, rgba(133, 141, 145, 0.18), rgba(8, 9, 9, 0.1)),
    linear-gradient(160deg, #111 0%, #222 48%, #0d0d0d 49%, #161616 100%);
}

.photo-card span {
  display: block;
  inset: 0;
  position: absolute;
}

.photo-card figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  bottom: 0;
  font-weight: 800;
  left: 0;
  padding: 54px 20px 20px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.anthem-card .button {
  width: auto;
}

.contact {
  background: var(--panel-2);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.contact-copy .button {
  align-self: flex-start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

input,
textarea {
  background: #0d0e0e;
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(18px, 6vw, 84px);
}

.site-footer p {
  margin: 0;
}

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

  .site-nav {
    background: rgba(8, 9, 9, 0.96);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 22px;
    position: absolute;
    right: 0;
    top: 72px;
  }

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

  .hero {
    min-height: 100vh;
    padding-bottom: 170px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.92), rgba(8, 9, 9, 0.48)),
      linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 9, 0) 45%);
  }

  .hero-stats,
  .hero-layout,
  .page-hero,
  .intro,
  .values,
  .contact,
  .presence,
  .board-grid,
  .album-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .anthem-card {
    grid-row: auto;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero img {
    justify-self: start;
    max-width: 280px;
  }

  .hero-crest {
    justify-self: start;
    max-width: 230px;
  }

  .crest-frame img {
    width: 210px;
  }

  .hero-stats {
    font-size: 12px;
  }

  .hero-stats span {
    padding: 14px 18px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-logo {
    height: 42px;
    width: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .anthem-card .button {
    width: 100%;
  }

  .hero-stats strong {
    font-size: 23px;
  }
}
