@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Oswald:wght@500;600;700&display=swap");

:root {
  --ink: #100d0c;
  --muted: #6b625d;
  --paper: #fff8ef;
  --white: #ffffff;
  --red: #d42027;
  --orange: #f36c21;
  --gold: #ffd047;
  --deep-red: #8f1217;
  --line: rgba(16, 13, 12, 0.15);
  --shadow: 0 18px 45px rgba(16, 13, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(16, 13, 12, 0.94);
  border-bottom: 4px solid var(--orange);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.42));
}

.brand-mark {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.7vw, 22px);
  font-size: 0.96rem;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--gold);
  border-radius: 6px;
}

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

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(141, 17, 19, 0.5), rgba(243, 108, 33, 0.18)),
    url("https://lirp.cdn-website.com/8b8baec9/dms3rep/multi/opt/616081837_1447031214096789_7301889080303670546_n-1920w.jpg") center / cover;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(46px, 9vw, 110px) clamp(18px, 7vw, 92px);
  color: var(--white);
}

.hero-logo {
  width: clamp(118px, 16vw, 220px);
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.62));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 62ch;
  font-size: 1.15rem;
}

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

.button,
.card a,
.mini-card a,
.resource-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary,
.card a,
.mini-card a,
.resource-grid a {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.button.secondary {
  color: var(--ink);
  background: var(--gold);
}

.section {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 72px);
}

.weather-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 1.25fr);
  align-items: center;
  gap: 22px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--deep-red) 48%, var(--orange));
}

.weather-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.weather-band p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 80px);
  background: var(--white);
}

.intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 13, 12, 0.92), rgba(143, 18, 23, 0.82), rgba(243, 108, 33, 0.74)),
    url("https://lirp.cdn-website.com/8b8baec9/dms3rep/multi/opt/607216775_1435768808556363_4059771407910512695_n-1920w.jpg") center / cover;
}

.access-copy p:not(.eyebrow) {
  max-width: 62ch;
  font-size: 1.12rem;
}

.access-grid {
  display: grid;
  gap: 14px;
}

.access-grid article {
  padding: 22px;
  background: rgba(16, 13, 12, 0.78);
  border: 1px solid rgba(255, 208, 71, 0.36);
  border-radius: 8px;
}

.access-grid p {
  margin-bottom: 0;
}

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

.feature-strip article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #222;
}

.feature-strip img {
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.35s ease;
}

.feature-strip article:hover img {
  transform: scale(1.04);
}

.feature-strip h3 {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: var(--white);
  font-size: 2rem;
  text-transform: uppercase;
}

.service-grid,
.action-grid,
.supply-grid,
.photo-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card,
.mini-card,
.resource-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(212, 32, 39, 0.16);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 13, 12, 0.06);
}

.card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
}

.card p,
.mini-card p,
.resource-grid p {
  color: var(--muted);
}

.price {
  color: var(--deep-red) !important;
  font-size: 1.15rem;
  font-weight: 900;
}

.card a,
.mini-card a {
  align-self: flex-start;
  margin-top: auto;
}

.schedule-band {
  background: #fff2df;
}

.action-grid .mini-card {
  min-height: 210px;
}

.event-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #2a1210);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.event-list a {
  min-height: 74px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.event-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-list a:hover {
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.run-board {
  background: #fff3e6;
}

.run-board .section-heading .button {
  margin-top: 14px;
}

.run-board-live {
  height: min(78vh, 760px);
  min-height: 520px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 32, 39, 0.22);
  border-radius: 8px;
  background: var(--white);
}

.run-board-live iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.run-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(212, 32, 39, 0.22);
  border-radius: 8px;
  background: rgba(212, 32, 39, 0.22);
}

.run-card {
  display: contents;
}

.run-card > span {
  min-height: 58px;
  padding: 14px 16px;
  background: var(--white);
  font-weight: 800;
}

.run-card.header > span {
  color: var(--white);
  background: var(--deep-red);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.run-status {
  color: var(--red);
}

.apparel-section {
  background: var(--paper);
}

.photography-section {
  color: var(--white);
  background: linear-gradient(135deg, #1d1d1d, #35110f);
}

.photography-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.photo-grid .mini-card {
  color: var(--ink);
}

.resources {
  background: var(--white);
}

.resource-grid article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  overflow: hidden;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.resource-grid a {
  align-self: flex-start;
}

.resource-image {
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 1 / 1;
  margin: -22px -22px 18px;
  object-fit: cover;
  border-bottom: 1px solid rgba(212, 32, 39, 0.16);
}

.notice {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-red), var(--red), var(--orange));
}

.notice p {
  max-width: 88ch;
  font-size: 1.08rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
  border-top: 4px solid var(--gold);
}

.contact-section {
  background: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.hidden-field {
  display: none;
}

.site-footer a {
  display: block;
  margin: 6px 0;
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.run-order-page {
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.run-order-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(14px, 4vw, 28px);
  color: var(--white);
  background: var(--ink);
  border-bottom: 4px solid var(--orange);
}

.run-order-shell {
  height: calc(100vh - 72px);
}

.run-order-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

@media (max-width: 1020px) {
  .service-grid,
  .action-grid,
  .supply-grid,
  .photo-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-nav {
    position: absolute;
    inset: 70px 14px auto 14px;
    display: none;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12)),
      url("https://lirp.cdn-website.com/8b8baec9/dms3rep/multi/opt/616081837_1447031214096789_7301889080303670546_n-1920w.jpg") center / cover;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 38px;
  }

  .intro,
  .access-section,
  .feature-strip,
  .event-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .action-grid,
  .supply-grid,
  .photo-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .run-grid {
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .run-board-live {
    height: 680px;
    min-height: 680px;
  }

  .run-card {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(15, 107, 110, 0.24);
    border-radius: 8px;
  }

  .run-card.header {
    display: none;
  }

  .run-card > span {
    min-height: auto;
    padding: 11px 14px;
  }

  .run-card > span::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
  }

  .feature-strip article {
    min-height: 230px;
  }
}
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  font-family: "Oswald", Impact, sans-serif;
  font-family: "Oswald", Impact, sans-serif;
