:root {
  --bg: #0b0d0c;
  --surface: #161a18;
  --panel: #1b201d;
  --cream: #f4eacb;
  --text: #e6e8e2;
  --muted: #a5afa7;
  --yellow: #f2c230;
  --green: #168c35;
  --blue: #0878c9;
  --line: #ffffff21;
  --heading: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.7 var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a,
button {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}
::selection {
  background: var(--yellow);
  color: var(--bg);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.02;
}
h1,
h2 {
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(42px, 4.6vw, 68px);
  margin: 16px 0 26px;
}
h2 em,
h1 em {
  color: var(--yellow);
  font-style: italic;
}
h3 {
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 600;
}
p {
  color: var(--muted);
  margin-bottom: 20px;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.accent {
  color: var(--yellow);
}
.tiny-line {
  height: 2px;
  width: 30px;
  background: var(--yellow);
}
.button {
  background: var(--yellow);
  color: #11160e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 25px;
  min-height: 52px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--yellow);
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #ffe06a;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button.outline {
  color: var(--cream);
  border-color: #ffffff60;
  background: #10171455;
}
.button.outline:hover {
  background: #ffffff13;
  border-color: var(--cream);
}
.button.small {
  padding: 10px 19px;
  min-height: 42px;
}
.button-row {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #0b0d0cee;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 0.25s;
}
.nav-wrap {
  width: min(1360px, calc(100% - 64px));
  margin: auto;
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: min-height 0.2s;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  object-fit: contain;
  border: 1px solid #f4eacb3a;
  border-radius: 2px;
}
.brand span {
  font-family: var(--heading);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 1px;
  font-weight: 700;
}
.brand strong {
  display: block;
  color: var(--yellow);
  font-size: 22px;
}
.brand small {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  margin-top: 8px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}
.site-header nav a {
  font-size: 12px;
  color: #c3c7c1;
  position: relative;
  white-space: nowrap;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--yellow);
}
.site-header nav a.active:after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--yellow);
}
.site-header.compact .nav-wrap {
  min-height: 76px;
}
.site-header.compact .brand img {
  width: 53px;
  height: 53px;
}
.nav-join {
  white-space: nowrap;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 790px;
  height: min(920px, 100svh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 110px;
}
.hero-image {
  position: absolute;
  inset: -24px 0;
  background: url("../images/hero.webp") center center/cover;
  will-change: transform;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080e0bd9 0%, #090e0b9e 38%, #090e0b12 72%),
    linear-gradient(0deg, #0b0d0ce8, transparent 35%, #0b0d0c22);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    110deg,
    transparent 0 180px,
    #d3dbaa06 181px 182px
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.est {
  border-left: 1px solid #ffffff60;
  padding-left: 12px;
  color: var(--yellow);
}
h1 {
  font-size: clamp(58px, 6.4vw, 94px);
  line-height: 0.96;
  margin: 30px 0 28px;
  max-width: 770px;
  text-shadow: 0 2px 20px #0003;
  color: var(--cream);
}
.hero-content > p {
  max-width: 510px;
  color: #c8cfc5;
  font-size: 15px;
  line-height: 1.9;
}
.hero-values {
  display: flex;
  gap: 25px;
  margin-top: 45px;
  font-size: 11px;
  color: #d4d9ce;
}
.hero-values i {
  color: var(--yellow);
  margin-right: 8px;
}
.hero-bottom {
  position: absolute;
  bottom: 27px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.scroll-link {
  font-size: 10px;
  letter-spacing: 2px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.scroll-link span {
  border: 1px solid #ffffff40;
  width: 29px;
  height: 38px;
  border-radius: 20px;
  text-align: center;
  line-height: 36px;
  font-size: 17px;
}
.coordinates {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #b3bbae;
}
.coordinates i {
  margin-left: 15px;
  color: var(--yellow);
}
.photo-note {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #adb7a8;
}
.hero-side {
  position: absolute;
  right: 20px;
  top: 47%;
  writing-mode: vertical-rl;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 3px;
  color: #d0d7c3;
}
.trail-strip {
  background: var(--yellow);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  height: 66px;
  overflow: hidden;
  font: 700 italic 26px var(--heading);
  letter-spacing: 1px;
  white-space: nowrap;
}
.trail-strip b {
  -webkit-text-stroke: 1px #242912;
  color: transparent;
}
.trail-strip i {
  font-style: normal;
  font-size: 36px;
}
.about {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 90px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 565px;
  padding-right: 38px;
}
.about-photo {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.65);
  clip-path: polygon(0 0, 94% 0, 100% 6%, 100% 100%, 0 100%);
}
.logo-card {
  position: absolute;
  right: 0;
  top: 110px;
  padding: 10px;
  background: #121613;
  border: 1px solid #f4eacb66;
  box-shadow: 0 20px 70px #0008;
  transform: rotate(4deg);
}
.logo-card img {
  width: 260px;
  height: 260px;
  object-fit: contain;
}
.year-stamp {
  position: absolute;
  left: 25px;
  bottom: 60px;
  color: var(--cream);
  font: 600 18px var(--heading);
  line-height: 1;
}
.year-stamp strong {
  display: block;
  font: 800 75px var(--heading);
}
.image-caption {
  position: absolute;
  left: 25px;
  bottom: 30px;
  font-size: 9px;
  letter-spacing: 2px;
}
.lead {
  font-size: 19px;
  color: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px 26px;
  margin-top: 34px;
}
.values-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.values-grid i {
  color: var(--yellow);
  font-size: 21px;
  margin-bottom: 15px;
}
.values-grid h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.values-grid p {
  font-size: 12px;
  margin: 0;
}
.stats-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, #121a14, #121512);
  padding: 42px 0 20px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats > div {
  padding-left: 45px;
  border-right: 1px solid var(--line);
}
.stats > div:first-child {
  padding-left: 0;
}
.stats > div:last-child {
  border: 0;
}
.stats strong {
  font: 700 62px var(--heading);
  color: var(--cream);
  line-height: 1;
}
.stats strong span {
  color: var(--yellow);
  font-size: 40px;
}
.stats p {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 0;
}
.demo-note {
  font-size: 11px;
  color: #a3aca2;
}
.stats-section .demo-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 10px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 35px;
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head > p {
  font-size: 13px;
  margin: 0;
  max-width: 360px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.filters button {
  background: transparent;
  color: #bfc7bd;
  border: 1px solid #ffffff24;
  border-radius: 2px;
  font-size: 12px;
  padding: 9px 16px;
  min-height: 40px;
  transition: 0.2s;
}
.filters button:hover {
  border-color: var(--yellow);
  color: var(--cream);
}
.filters button[aria-pressed="true"] {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
  font-weight: 700;
}
.section-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.demo-pill {
  color: #aeb6aa;
  font-size: 9px;
  letter-spacing: 1.5px;
  white-space: nowrap;
  border: 1px solid var(--line);
  padding: 5px 10px;
}
.ride-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.ride-card {
  background: var(--surface);
  border: 1px solid var(--line);
  transition:
    transform 0.25s,
    border-color 0.25s;
  overflow: hidden;
}
.ride-card:hover {
  transform: translateY(-5px);
  border-color: #f2c23066;
}
.card-image {
  height: 225px;
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: saturate(0.72);
}
.ride-card:hover img {
  transform: scale(1.04);
}
.card-image:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #090e09b3);
}
.card-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cream);
  color: var(--bg);
  font: 600 12px var(--heading);
  text-align: center;
  padding: 9px 12px;
  line-height: 1.3;
  z-index: 1;
}
.card-date strong {
  font-size: 29px;
  display: block;
}
.card-status {
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 1;
  font-size: 9px;
  letter-spacing: 1px;
  background: #0e542b;
  padding: 4px 8px;
  color: #e0ffde;
}
.card-status.past {
  background: #333b39;
}
.card-body {
  padding: 24px;
}
.card-location {
  font-size: 10px;
  color: #b5beb0;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.card-location i {
  color: var(--yellow);
  margin-right: 6px;
}
.card-body h3 {
  font-size: 29px;
  color: var(--cream);
  margin-bottom: 17px;
}
.ride-meta {
  display: flex;
  gap: 20px;
  font-size: 11px;
  margin-bottom: 15px;
}
.ride-meta i {
  color: var(--yellow);
  margin-right: 5px;
}
.difficulty {
  color: #93c4a2;
}
.difficulty.hard {
  color: #e5b981;
}
.card-body > p {
  font-size: 12px;
  margin: 0 0 20px;
}
.card-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  background: none;
  padding: 16px 0 0;
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
}
.card-link span {
  color: var(--yellow);
  font-size: 22px;
}
.ride-card:nth-child(4) {
  grid-column: auto;
}
.section-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.section-foot > i {
  color: var(--yellow);
}
.section-foot p {
  font-size: 11px;
  max-width: 620px;
  margin: 0;
}
.section-foot a {
  font-size: 12px;
  color: var(--yellow);
  margin-left: auto;
  white-space: nowrap;
}
.gallery-section {
  background: #111612;
  border-block: 1px solid var(--line);
  position: relative;
}
.gallery-section .filters {
  margin-bottom: 28px;
}
.gallery {
  columns: 3;
  column-gap: 20px;
}
.gallery-item {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  margin: 0 0 20px;
  width: 100%;
  break-inside: avoid;
  overflow: hidden;
  background: #151c15;
  text-align: left;
}
.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s;
  filter: saturate(0.75);
}
.gallery-item.tall img {
  height: 330px;
}
.gallery-item:hover img {
  transform: scale(1.035);
}
.gallery-item:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #071009cc);
}
.gallery-caption {
  position: absolute;
  bottom: 17px;
  left: 18px;
  right: 18px;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.gallery-caption span {
  border: 1px solid #ffffff70;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 26px;
  font-size: 18px;
}
.gallery-empty {
  column-span: all;
  border: 1px solid var(--line);
  padding: 32px;
  color: var(--muted);
}
.membership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.membership-copy {
  padding-top: 25px;
  position: sticky;
  top: 115px;
}
.membership-copy > p {
  max-width: 420px;
}
.benefits {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 13px;
  margin: 30px 0;
}
.benefits li {
  font-size: 14px;
}
.benefits li:before {
  content: "✓";
  color: var(--yellow);
  margin-right: 13px;
}
.member-mark {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 25px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.member-mark img {
  object-fit: contain;
}
.member-mark div {
  font: 600 20px var(--heading);
}
.member-mark small {
  display: block;
  font: 10px var(--body);
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: 8px;
}
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  padding: 32px;
}
.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.form-heading > span:last-child {
  font-size: 32px;
  color: var(--yellow);
}
.form-help {
  font-size: 11px;
  line-height: 1.6;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid label {
  font-size: 12px;
  font-weight: 500;
  display: block;
}
.form-grid label > span {
  font-size: 10px;
  color: var(--muted);
}
input,
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #ffffff2a;
  border-radius: 2px;
  background: #0e120f;
  color: var(--text);
  padding: 12px 13px;
  margin-top: 7px;
  min-width: 0;
  font-size: 12px;
}
input::placeholder,
textarea::placeholder {
  color: #899387;
}
textarea {
  resize: vertical;
}
select {
  min-height: 44px;
  color-scheme: dark;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin: 23px 0;
}
.checkbox input {
  width: 16px;
  flex: 0 0 16px;
  accent-color: var(--yellow);
  margin-top: 3px;
}
.text-button {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
}
.text-button:hover {
  color: var(--yellow);
}
.submit {
  width: 100%;
  justify-content: space-between;
}
.form-status {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--yellow);
}
.form-status:empty {
  display: none;
}
.form-status.error {
  color: #ffc1a1;
}
.form-status.success {
  color: #a2e6b4;
}
.form-panel > .form-help:last-child {
  margin: 18px 0 0;
}
.configuration-note {
  display: block;
  color: #c9b673;
}
.trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.responsibility {
  background: #10331e;
  border-block: 1px solid #387447;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.responsibility:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 70px,
    #81b27409 72px 74px
  );
  pointer-events: none;
}
.responsibility-inner {
  position: relative;
}
.responsibility .eyebrow {
  color: #a7c1a2;
}
.responsibility h2 {
  font-size: 56px;
  margin-bottom: 15px;
}
.responsibility > div > div > p {
  color: #bacbb7;
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 35px;
}
.safety-grid article {
  padding-top: 26px;
  border-top: 1px solid #ffffff30;
}
.safety-grid i {
  color: var(--yellow);
  font-size: 24px;
  margin-bottom: 20px;
}
.safety-grid h3 {
  font-size: 25px;
  margin-bottom: 13px;
}
.safety-grid p {
  font-size: 12px;
  color: #b2c7af;
  margin-bottom: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.news-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  filter: saturate(0.6);
}
.news-meta {
  display: flex;
  gap: 16px;
  margin-top: 21px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.news-meta span {
  color: var(--yellow);
}
.news-card h3 {
  font-size: 30px;
  margin: 14px 0;
}
.news-card p {
  font-size: 12px;
}
.news-card .card-link {
  justify-content: flex-start;
  gap: 20px;
  border: 0;
  padding: 0;
}
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact-grid .form-panel {
  background: #111612;
}
.contact-info {
  display: grid;
  gap: 26px;
  margin: 10px 0 26px;
}
.contact-info > div {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-info i {
  color: var(--yellow);
  font-size: 18px;
  padding-top: 6px;
}
.contact-info span {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.contact-info strong {
  display: block;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 5px;
  overflow-wrap: anywhere;
}
.contact-info small {
  font-size: 11px;
  letter-spacing: 0;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  font-size: 10px;
}
.social-link i {
  font-size: 15px;
  color: var(--cream);
}
.social-link.unavailable {
  color: var(--muted);
}
.social-link small {
  font-size: 8px;
}
.map {
  height: 265px;
  border: 1px solid #44674755;
  background-color: #101c13;
  background-image:
    repeating-linear-gradient(24deg, transparent 0 35px, #70926f13 36px 37px),
    repeating-linear-gradient(105deg, transparent 0 55px, #70926f13 56px 57px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.map strong {
  display: block;
  font: 600 25px var(--heading);
  letter-spacing: 4px;
  margin-top: 5px;
}
.map i {
  color: var(--yellow);
  font-size: 25px;
}
.map p {
  font-size: 10px;
  margin: 8px 12px 12px;
}
.map small {
  display: block;
  font-size: 8px;
  margin-top: 10px;
  color: var(--muted);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.footer-main {
  padding-block: 60px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-main h3 {
  font: 600 17px var(--heading);
  letter-spacing: 1px;
  margin: 8px 0 24px;
}
.footer-main > div > a:not(.brand) {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-main a:hover {
  color: var(--yellow);
}
.footer-main p {
  font-size: 11px;
}
.footer-brand p {
  margin: 20px 0 0;
}
.footer-motto {
  font: 600 20px var(--heading);
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 25px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  border: 1px solid #b39530;
  background: #141b12;
  color: var(--yellow);
  z-index: 40;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  font-size: 23px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.2s;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
dialog {
  border: 1px solid #ffffff40;
  background: var(--surface);
  color: var(--text);
  padding: 0;
  max-width: min(720px, calc(100% - 32px));
  max-height: 90svh;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #000d;
  backdrop-filter: blur(5px);
}
body.dialog-open {
  overflow: hidden;
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  border: 1px solid #ffffff60;
  background: #101710;
  color: var(--cream);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
}
.detail-content {
  padding: 38px;
}
.detail-content h2 {
  font-size: 44px;
  padding-right: 20px;
}
.detail-content p {
  font-size: 14px;
}
.detail-content > img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  margin: 0 0 25px;
}
.detail-content ul {
  color: var(--muted);
  padding-left: 20px;
}
.detail-content .notice {
  border-left: 3px solid var(--yellow);
  padding: 15px;
  background: #f2c23009;
  color: var(--cream);
  font-size: 12px;
}
.lightbox {
  width: min(1150px, calc(100% - 30px));
  max-width: none;
  background: #080c09;
  padding: 60px 60px 25px;
  overflow: auto;
}
.lightbox figure {
  margin: 0;
}
.lightbox img,
.lightbox video {
  max-height: 70svh;
  width: 100%;
  object-fit: contain;
}
.lightbox figcaption {
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
  color: var(--cream);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 48%;
  background: #101710cc;
  border: 1px solid #ffffff50;
  width: 40px;
  height: 44px;
  font-size: 23px;
}
.lightbox-prev {
  left: 10px;
}
.lightbox-next {
  right: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip {
  position: fixed;
  left: 15px;
  top: -100px;
  background: var(--yellow);
  color: #111;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.noscript {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: var(--yellow);
  color: var(--bg);
  z-index: 60;
}
.reveal {
  opacity: 1;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.motion-ready .reveal.in-view {
  opacity: 1;
  transform: none;
}
[hidden] {
  display: none !important;
}
.muted {
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero {
    min-height: 860px;
  }
  .hero-image {
    background-position: center 55%;
  }
}
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 72px);
  }
  .nav-wrap {
    width: calc(100% - 40px);
    gap: 18px;
  }
  .brand span {
    display: none;
  }
  .site-header nav {
    gap: 20px;
  }
  .nav-join {
    padding-inline: 15px !important;
  }
  .about {
    gap: 50px;
  }
  .membership {
    gap: 55px;
  }
  .contact-grid {
    gap: 55px;
  }
  .logo-card img {
    width: 220px;
    height: 220px;
  }
  .card-body {
    padding: 20px;
  }
  .hero {
    min-height: 740px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero-image {
    background-position: 60% center;
  }
}
@media (max-width: 960px) {
  .nav-wrap {
    min-height: 80px;
  }
  .site-header nav {
    gap: 16px;
  }
  .site-header nav a {
    font-size: 11px;
  }
  .nav-join {
    display: none;
  }
  .hero h1 {
    font-size: 72px;
  }
  .about {
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
  }
  .about-visual {
    min-height: 580px;
    padding-right: 10px;
  }
  .about-photo {
    height: 565px;
  }
  .logo-card img {
    width: 180px;
    height: 180px;
  }
  .logo-card {
    top: 100px;
  }
  .values-grid {
    gap: 20px;
  }
  .ride-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .membership {
    gap: 35px;
  }
  .form-panel {
    padding: 25px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .section {
    padding-block: 80px;
  }
  .contact-grid {
    gap: 35px;
  }
  .footer-main {
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
  }
  .gallery {
    columns: 2;
  }
  .news-grid {
    gap: 20px;
  }
  .news-card h3 {
    font-size: 26px;
  }
  .stats > div {
    padding-left: 25px;
  }
  .stats strong {
    font-size: 50px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    width: calc(100% - 32px);
    min-height: 76px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .brand span {
    display: block;
    font-size: 15px;
  }
  .brand strong {
    font-size: 18px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    padding: 10px;
  }
  .menu-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--cream);
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #101611;
    border-bottom: 1px solid #ffffff30;
    padding: 15px 22px 22px;
    margin: 0;
    gap: 0;
    box-shadow: 0 20px 30px #0007;
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header nav a {
    font-size: 15px;
    padding: 11px 8px;
  }
  .site-header nav a.active:after {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 790px;
    padding: 140px 0 110px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(52px, 11.7vw, 76px);
    margin-top: 25px;
    line-height: 0.98;
  }
  .hero:after {
    background:
      linear-gradient(90deg, #08120ade, #08110a82 70%, #08110a66),
      linear-gradient(0deg, #0b0d0c, transparent 40%);
  }
  .hero-image {
    background-position: 66% center;
  }
  .hero-content > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .tiny-line {
    width: 17px;
  }
  .est {
    padding-left: 8px;
  }
  .hero-content > p {
    font-size: 13px;
    max-width: 380px;
  }
  .hero .button {
    font-size: 12px;
    padding: 14px 18px;
    gap: 15px;
  }
  .hero-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 28px;
    font-size: 10px;
  }
  .hero-side {
    display: none;
  }
  .hero-bottom {
    bottom: 24px;
  }
  .coordinates {
    display: none;
  }
  .photo-note {
    font-size: 7px;
    max-width: 90px;
    text-align: right;
  }
  .scroll-link {
    font-size: 9px;
  }
  .trail-strip {
    height: 53px;
    gap: 25px;
    font-size: 23px;
    justify-content: flex-start;
    padding-inline: 20px;
  }
  .section {
    padding-block: 65px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-visual {
    min-height: 355px;
    padding-right: 25px;
  }
  .about-photo {
    height: 350px;
  }
  .logo-card {
    top: 50px;
    right: 5px;
  }
  .logo-card img {
    width: 190px;
    height: 190px;
  }
  .year-stamp {
    bottom: 50px;
  }
  .year-stamp strong {
    font-size: 55px;
  }
  .image-caption {
    font-size: 8px;
    bottom: 23px;
  }
  .values-grid {
    gap: 25px;
  }
  .values-grid h3 {
    font-size: 22px;
  }
  .eyebrow {
    font-size: 9px;
  }
  h2 {
    font-size: 48px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .stats > div:nth-child(3) {
    padding-left: 0;
  }
  .stats > div:nth-child(2) {
    border: 0;
  }
  .stats p {
    font-size: 9px;
  }
  .stats-section {
    padding-top: 32px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }
  .section-head > p {
    font-size: 12px;
  }
  .section-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .filters {
    gap: 6px;
  }
  .filters button {
    font-size: 11px;
    padding: 8px 11px;
  }
  .ride-grid {
    grid-template-columns: 1fr;
  }
  .card-image {
    height: 230px;
  }
  .card-body {
    padding: 23px;
  }
  .card-body h3 {
    font-size: 31px;
  }
  .section-foot {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .section-foot > p {
    flex: 1;
  }
  .section-foot a {
    width: 100%;
    margin: 8px 0 0 27px;
  }
  .gallery {
    columns: 2;
    column-gap: 12px;
  }
  .gallery-item {
    margin-bottom: 12px;
  }
  .gallery-item img {
    height: 160px;
  }
  .gallery-item.tall img {
    height: 235px;
  }
  .gallery-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
    gap: 6px;
  }
  .gallery-caption span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    font-size: 15px;
    line-height: 22px;
  }
  .membership {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .membership-copy {
    position: static;
    padding-top: 0;
  }
  .form-panel {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full {
    grid-column: 1/-1;
  }
  .form-grid label {
    font-size: 11px;
  }
  .responsibility {
    padding-block: 55px;
  }
  .responsibility h2 {
    font-size: 48px;
  }
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .safety-grid article {
    position: relative;
    padding-left: 45px;
  }
  .safety-grid i {
    position: absolute;
    left: 0;
    top: 28px;
    font-size: 23px;
  }
  .safety-grid h3 {
    margin-bottom: 10px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-card img {
    height: 230px;
  }
  .news-card h3 {
    font-size: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 45px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    font-size: 9px;
  }
  .footer-bottom > div {
    gap: 20px;
  }
  .back-top {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }
  .detail-content {
    padding: 25px;
  }
  .detail-content h2 {
    font-size: 38px;
  }
  .lightbox {
    padding: 65px 45px 22px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 34px;
  }
  .lightbox-prev {
    left: 5px;
  }
  .lightbox-next {
    right: 5px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 49px;
  }
  .hero {
    min-height: 805px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .hero .button {
    padding: 13px 15px;
    gap: 10px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    columns: 1;
  }
  .gallery-item img,
  .gallery-item.tall img {
    height: 240px;
  }
  .logo-card img {
    width: 165px;
    height: 165px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-image {
    transform: none !important;
  }
}
