:root {
  --ink: #10140f;
  --panel: #171b16;
  --muted: #657063;
  --line: #dce4d9;
  --paper: #f7f8f3;
  --white: #ffffff;
  --green: #13a43b;
  --green-dark: #086327;
  --acid: #80ea31;
  --purple: #47216f;
  --purple-soft: #6a3ca0;
  --shadow: 0 20px 50px rgba(13, 20, 12, .18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(247, 248, 243, .94);
  border-bottom: 1px solid rgba(16, 20, 15, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 164px;
}

.brand img,
.site-footer img {
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav li {
  display: contents;
  list-style: none;
}

.site-nav a {
  padding: 12px 14px;
  color: #20291e;
}

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

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--ink);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 5vw, 76px) 70px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/paintball-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 13, 8, .93) 0%, rgba(9, 13, 8, .74) 42%, rgba(9, 13, 8, .16) 100%),
    linear-gradient(0deg, rgba(9, 13, 8, .52), rgba(9, 13, 8, .08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(740px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero h1,
.section-heading h2,
.intro h2,
.locations h2,
.booking h2,
.price-band h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 104px);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
}

.button.secondary.dark {
  border-color: rgba(16, 20, 15, .28);
  color: var(--ink);
}

.deal-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 76px);
  bottom: 52px;
  width: min(310px, calc(100% - 40px));
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--green);
}

.deal-panel strong {
  display: block;
  font-size: 64px;
  line-height: .85;
}

.deal-panel span {
  display: block;
  margin: 8px 0 12px;
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
}

.deal-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.section-pad {
  padding: 86px clamp(20px, 5vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 54px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.locations h2,
.booking h2,
.price-band h2 {
  font-size: clamp(36px, 5vw, 66px);
  text-transform: uppercase;
}

.intro p,
.section-heading p,
.locations p,
.booking-copy p,
.price-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quick-stats div {
  min-height: 156px;
  padding: 22px;
  background: var(--white);
}

.quick-stats strong {
  display: block;
  color: var(--green-dark);
  font-size: 46px;
  line-height: 1;
}

.quick-stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

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

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

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

.included-grid article,
.zone-grid article {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.card-media,
.page-card-media {
  width: 100%;
  height: 112px;
  margin-top: auto;
  object-fit: cover;
  border: 1px solid var(--line);
}

.included-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

h3 {
  margin: 22px 0 10px;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.players {
  background: var(--panel);
  color: var(--white);
}

.players .section-heading p,
.players .section-heading h2 {
  color: var(--white);
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.player-grid a {
  min-height: 134px;
  display: flex;
  align-items: end;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(19, 164, 59, .18), rgba(106, 60, 160, .18)),
    #20271f;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.player-grid a:hover {
  background: var(--green);
}

.locations {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 620px);
  gap: 46px;
  align-items: start;
  background: var(--white);
}

.zones {
  background:
    linear-gradient(180deg, rgba(128, 234, 49, .09), rgba(71, 33, 111, .08)),
    var(--paper);
}

.zone-grid article {
  background: var(--white);
  border-top: 5px solid var(--purple);
}

.price-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 58px clamp(20px, 5vw, 76px);
  background: var(--green-dark);
  color: var(--white);
}

.price-band p,
.price-band .section-label {
  color: rgba(255, 255, 255, .82);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
  background: var(--white);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 20px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

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

input,
textarea {
  width: 100%;
  border: 1px solid #cfd8cb;
  background: var(--white);
  color: var(--ink);
  padding: 14px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(19, 164, 59, .22);
  border-color: var(--green);
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: rgba(255, 255, 255, .75);
}

.site-footer img {
  width: 132px;
}

.site-footer a {
  color: var(--acid);
  font-weight: 900;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 150px clamp(20px, 5vw, 76px) 80px;
  background: var(--white);
}

.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  text-transform: uppercase;
}

.page-hero-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.page-hero-image {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.page-cards article {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
}

.page-cards h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

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


.page-booking {
  border-top: 1px solid var(--line);
}

.home-intro {
  background: var(--white);
}

.home-pages {
  background: var(--paper);
}

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

.home-page-card {
  display: grid;
  grid-template-rows: 230px auto 1fr;
  min-height: 430px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
}

.home-page-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.home-page-card span {
  display: block;
  padding: 22px 22px 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.home-page-card p {
  margin: 0;
  padding: 12px 22px 24px;
  color: var(--muted);
  line-height: 1.6;
}

.home-page-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .included-grid,
  .zone-grid,
  .player-grid,
  .home-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .locations,
  .booking,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 73px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px;
  }

  .hero {
    min-height: 820px;
    padding-top: 112px;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 13, 8, .96) 0%, rgba(9, 13, 8, .76) 54%, rgba(9, 13, 8, .28) 100%);
  }

  .deal-panel {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .quick-stats,
  .included-grid,
  .zone-grid,
  .player-grid,
  .home-page-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 64px 20px;
  }

  .price-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }
}
