:root {
  --red: #ef1520;
  --red-dark: #a4080e;
  --black: #050505;
  --black-2: #0c0c0c;
  --white: #fff;
  --gray: #bdbdbd;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 900px;
  height: 100vh;
  max-height: 1080px;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 52%, rgba(0,0,0,.30) 100%),
    linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.05) 50%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center top;
  transform: scale(1.015);
}
.nav {
  position: relative;
  z-index: 5;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: .85; transform: rotate(-3deg); }
.logo-main {
  color: var(--red);
  font-size: clamp(30px, 3.6vw, 50px);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 900;
}
.logo-sub {
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  padding-left: 15px;
}
.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .6px;
  padding: 10px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .7px;
  border-radius: 999px;
}
.nav-cta {
  background: var(--red);
  padding: 13px 24px;
  box-shadow: 0 8px 28px rgba(239,21,32,.28);
}
.hero-content {
  position: relative;
  z-index: 3;
  height: calc(100% - 105px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 105px;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-block;
  background: var(--red);
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  transform: skew(-7deg);
}
h1 {
  margin: 18px 0 18px;
  font-size: clamp(55px, 8vw, 112px);
  line-height: .86;
  letter-spacing: -5px;
  text-transform: uppercase;
  font-weight: 1000;
  text-shadow: 5px 7px 0 rgba(0,0,0,.38);
}
h1 em { color: var(--red); font-style: normal; }
.hero-copy > p {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  max-width: 680px;
  margin: 0 0 30px;
}
.button {
  background: var(--red);
  padding: 15px 28px;
  box-shadow: 0 7px 0 var(--red-dark);
  transition: .18s ease;
}
.button:hover { transform: translateY(3px); box-shadow: 0 4px 0 var(--red-dark); }
.hero-slogan {
  position: absolute;
  right: 0;
  bottom: 180px;
  width: 220px;
  transform: rotate(-6deg);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 36px;
  line-height: .92;
  text-align: center;
  text-shadow: 3px 3px 0 #000;
}
.hero-slogan span { display: block; }
.hero-slogan::after {
  content: "";
  display: block;
  height: 6px;
  background: var(--red);
  transform: rotate(-9deg);
  margin-top: 16px;
  border-radius: 100%;
}
.hero-bottom {
  position: absolute;
  z-index: 4;
  left: 0; right: 0; bottom: -1px;
  height: 130px;
  background: linear-gradient(transparent, var(--black));
}

.section { padding: 100px 0; }
.intro { background: #060606; }
.section-title { display: flex; align-items: center; gap: 28px; justify-content: center; margin-bottom: 30px; }
.section-title .line { height: 2px; flex: 1; background: var(--red); max-width: 300px; }
.section-title h2, .section-title.left h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(35px, 5vw, 58px);
  line-height: .95;
  letter-spacing: -2px;
}
.section-title strong, .kicker { color: var(--red); }
.intro-text {
  max-width: 850px;
  margin: 0 auto;
  color: #ddd;
  font-size: 18px;
  text-align: center;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}
.feature { display: flex; gap: 20px; }
.feature-icon {
  flex: 0 0 68px;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: 33px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(239,21,32,.18);
}
.feature h3 {
  margin: 2px 0 7px;
  font-size: 19px;
  text-transform: uppercase;
}
.feature p { margin: 0; color: #aaa; font-size: 15px; }

.events {
  background:
    linear-gradient(180deg, #0b0b0b 0%, #070707 100%),
    url("../images/background.jpg") center/cover;
}
.section-title.left { justify-content: flex-start; align-items: flex-start; display: block; }
.kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.event-card {
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  transform: rotate(var(--r, 0deg));
  box-shadow: 0 14px 35px rgba(0,0,0,.4);
}
.event-card:nth-child(1) { --r: -2deg; }
.event-card:nth-child(2) { --r: 1deg; }
.event-card:nth-child(3) { --r: -1deg; }
.event-card:nth-child(4) { --r: 2deg; }
.event-card:nth-child(5) { --r: -1deg; }
.event-card img { width: 100%; aspect-ratio: 1.75 / 1; object-fit: cover; display: block; }
.event-label {
  position: absolute;
  left: -5%; right: -5%; bottom: 10px;
  background: var(--red);
  padding: 8px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.booking {
  position: relative;
  background: var(--red);
  overflow: hidden;
  text-align: center;
}
.booking-inner { position: relative; }
.booking-content { position: relative; z-index: 2; }
.booking h2 { margin: 8px 0 12px; font-size: clamp(38px, 6vw, 68px); text-transform: uppercase; line-height: .9; }
.booking h2 strong { color: #111; }
.booking p { font-weight: 800; font-size: 17px; margin: 0; }
.email {
  display: inline-block;
  margin: 4px 0 25px;
  font-size: clamp(25px, 4vw, 43px);
  font-weight: 1000;
  text-decoration: none;
  border-bottom: 4px solid #fff;
}
.button.dark { background: #070707; box-shadow: 0 7px 0 #000; }
.mountain {
  position: absolute;
  bottom: -80px;
  width: 370px;
  height: 190px;
  opacity: .13;
  background: #000;
  clip-path: polygon(0 100%, 20% 65%, 34% 78%, 55% 25%, 67% 57%, 82% 38%, 100% 100%);
}
.mountain-left { left: -30px; }
.mountain-right { right: -30px; transform: scaleX(-1); }

footer {
  background: #030303;
  padding: 25px 0;
  color: #777;
  font-size: 13px;
}
footer .container { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 950px) {
  .nav-links { display: none; }
  .hero { min-height: 820px; }
  .hero-bg { background-position: 56% top; }
  .hero-slogan { display: none; }
  .features { grid-template-columns: 1fr; gap: 28px; max-width: 700px; margin-inline: auto; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .container { width: min(100% - 30px, var(--max)); }
  .nav { height: 80px; }
  .logo-main { font-size: 31px; }
  .logo-sub { font-size: 11px; }
  .nav-cta { padding: 10px 14px; font-size: 11px; }
  .hero { min-height: 760px; height: 88vh; }
  .hero-bg{
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .hero-content { height: calc(100% - 80px); padding-bottom: 65px; }
  h1 { font-size: clamp(47px, 15vw, 75px); letter-spacing: -3px; }
  .hero-copy > p { font-size: 16px; }
  .eyebrow { font-size: 10px; }
  .section { padding: 70px 0; }
  .section-title { gap: 12px; }
  .section-title .line { max-width: 50px; }
  .intro-text { font-size: 16px; }
  .event-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .event-card { transform: none; }
  footer .container { flex-direction: column; text-align: center; }
}
