:root {
  --bg: #070707;
  --panel: #111111;
  --panel-2: #171717;
  --ink: #f7f5f2;
  --muted: #b7b0aa;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d71920;
  --red-dark: #8c0f13;
  --gold: #c9a66b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 46px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line);
}

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

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

.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: #e8e3dd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav .active {
  border-color: rgba(215, 25, 32, 0.5);
  color: white;
  background: rgba(215, 25, 32, 0.15);
}

.site-nav .nav-pill {
  background: var(--ink);
  color: #111;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero,
.page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 140px clamp(20px, 5vw, 72px) 72px;
}

.hero-image,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 38%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 1) 0%, rgba(7, 7, 7, 0) 38%);
}

.hero-content,
.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.tag {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 10vw, 118px);
  line-height: 0.88;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  line-height: 1.08;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #e7dfd6;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.btn.ghost {
  background: rgba(0, 0, 0, 0.4);
  color: white;
}

.text-link {
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 48px;
  z-index: 2;
  width: min(330px, calc(100% - 40px));
  border-left: 4px solid var(--red);
  background: rgba(8, 8, 8, 0.76);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.hero-card span {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  min-height: 56vh;
}

.page-hero.compact {
  min-height: 46vh;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.intro-band {
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.split p,
.story-card p,
.values p,
.contact-layout p,
.feature p,
.event-card p,
.event-row p {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature div {
  padding: 22px;
}

.feature span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dark-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 82px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.12), rgba(0, 0, 0, 0)),
    var(--panel);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(140px, 0.28fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 82px;
  background: #050505;
  border: 1px solid rgba(215, 25, 32, 0.46);
}

.event-date span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-date strong {
  font-size: 34px;
  line-height: 1;
}

.event-row h3,
.event-card h2 {
  margin-bottom: 7px;
}

.event-meta {
  display: grid;
  gap: 6px;
  color: #e8e2db;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-strip,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-strip figure,
.photo-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--panel);
}

.photo-strip img,
.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-strip figure:hover img,
.photo-grid figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  align-items: stretch;
  background: var(--red-dark);
}

.cta-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.cta-band div {
  padding: clamp(36px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-band p {
  color: #f4dbd7;
  font-size: 18px;
}

.story-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  min-height: 360px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.story-card.red {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.35), rgba(0, 0, 0, 0.18)),
    #16090a;
}

.values {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
}

.value-grid {
  display: grid;
  gap: 16px;
}

.value-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.value-grid span {
  color: var(--red);
  font-weight: 900;
}

.image-band img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.events-page {
  display: grid;
  gap: 22px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.event-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.event-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.event-card dt {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card dd {
  margin: 4px 0 0;
  color: white;
  font-weight: 800;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-tabs a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: #eee;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-tabs .selected {
  border-color: var(--red);
  background: var(--red);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 46px;
  align-items: start;
}

.contact-note {
  display: grid;
  gap: 5px;
  max-width: 440px;
  margin-top: 26px;
  border-left: 4px solid var(--red);
  background: var(--panel);
  padding: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 7px;
  color: #f2ede7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: #050505;
  color: white;
  font: inherit;
  letter-spacing: 0;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.alert {
  padding: 13px 14px;
  font-weight: 800;
}

.alert.success {
  background: rgba(30, 140, 68, 0.18);
  color: #c7f4d5;
}

.alert.error {
  background: rgba(215, 25, 32, 0.18);
  color: #ffd8d8;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
  padding: 48px clamp(20px, 5vw, 72px) 24px;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.5fr;
  gap: 42px;
}

.footer-logo {
  width: 86px;
  margin-bottom: 14px;
}

.site-footer h2 {
  font-size: 14px;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--muted);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  font-weight: 800;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

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

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.97);
  }

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

  .site-nav a {
    border-radius: 0;
  }

  .hero,
  .page-hero {
    min-height: 78vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 120px 20px 48px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    margin: 26px 20px 0;
  }

  .split,
  .feature-grid,
  .story-layout,
  .values,
  .event-card,
  .contact-layout,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .event-meta {
    grid-column: 2;
  }

  .photo-strip,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .brand small {
    letter-spacing: 0.12em;
  }

  .hero,
  .page-hero {
    min-height: 72vh;
  }

  h1 {
    font-size: clamp(32px, 10vw, 38px);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(28px, 8.8vw, 32px);
  }

  .hero-content,
  .page-hero > div,
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  .hero-copy {
    max-width: 320px;
  }

  .hero,
  .page-hero,
  .section,
  .cta-band,
  .site-header {
    max-width: 100vw;
  }

  h1,
  h2,
  h3,
  p {
    overflow-wrap: break-word;
  }

  .split > *,
  .section-head > *,
  .story-card,
  .event-row > *,
  .feature,
  .contact-layout > * {
    min-width: 0;
  }

  .photo-strip,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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