
:root {
  --black: #050505;
  --panel: #101112;
  --panel-2: #17191a;
  --green: #7ed321;
  --green-bright: #9bea28;
  --white: #f7f7f7;
  --muted: #c5c8c6;
  --line: rgba(126, 211, 33, 0.35);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(126,211,33,.08), transparent 28rem),
    linear-gradient(180deg, #020202, #090a09 52%, #020202);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem clamp(1rem, 4vw, 3rem);
  background: rgba(2,2,2,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.brand img {
  width: min(255px, 56vw);
  height: 54px;
  object-fit: cover;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .87rem;
  letter-spacing: .05em;
}

.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--green-bright); }

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--green-bright), #64b600);
  color: #080b06;
  border-radius: 6px;
  padding: .78rem 1.1rem;
  box-shadow: 0 0 26px rgba(126,211,33,.18);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: .4rem;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px;
  background: var(--white);
}

.hero {
  max-width: 1536px;
  margin: 0 auto;
  padding-bottom: 1.4rem;
}

.hero-image-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin: -1.35rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.button {
  min-width: 210px;
  text-align: center;
  padding: .9rem 1.25rem;
  border: 1px solid var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.button.secondary {
  background: #0c0d0d;
  color: var(--white);
  border-radius: 6px;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--green-bright);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 900;
  font-size: .82rem;
}

.centre { text-align: center; }

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1, h2 {
  text-transform: uppercase;
  letter-spacing: .025em;
}

h1 { font-size: clamp(2rem, 4vw, 3.35rem); }
h2 { font-size: clamp(1.9rem, 3.3vw, 2.75rem); text-align: center; }

.split h1 { text-align: left; }

p { color: var(--muted); }

.coverage-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 2rem;
  border: 1px solid rgba(126,211,33,.27);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(126,211,33,.15), transparent 52%),
    repeating-linear-gradient(60deg, transparent 0 28px, rgba(255,255,255,.025) 29px 30px),
    var(--panel);
  box-shadow: var(--shadow);
}

.coverage-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -110px;
  bottom: -130px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(126,211,33,.28);
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.locations span {
  padding: .7rem .92rem;
  border: 1px solid rgba(126,211,33,.4);
  border-radius: 99px;
  background: rgba(0,0,0,.35);
  font-weight: 800;
}

.coverage-note {
  max-width: 430px;
  margin-top: 1.5rem;
}

.services-section {
  width: min(1280px, calc(100% - 2rem));
  border-top: 1px solid rgba(255,255,255,.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 220px;
  padding: 1.45rem;
  background: linear-gradient(145deg, var(--panel-2), #0b0c0c);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}

.service-card .icon {
  font-size: 2.3rem;
  filter: grayscale(1) sepia(1) saturate(5) hue-rotate(35deg);
}

.service-card h3 {
  margin: .75rem 0 .45rem;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.sponsor-section {
  width: min(1280px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: .78fr 1.4fr;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.sponsor-copy h2 {
  text-align: left;
  max-width: 440px;
}

.sponsor-copy h2 span { color: var(--green-bright); }

.tagline {
  color: var(--white);
  font-weight: 800;
}

.sponsor-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(126,211,33,.25);
  box-shadow: var(--shadow);
}

.contact-section {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem;
  border: 1px solid rgba(126,211,33,.35);
  background: var(--panel);
  border-radius: 12px;
  transition: transform .2s ease, background .2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: #171a16;
}

.contact-icon {
  color: var(--green-bright);
  font-size: 1.9rem;
}

.contact-card small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, auto);
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  background: #020202;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 250px;
  height: 52px;
  object-fit: cover;
  object-position: left center;
}

.site-footer p {
  margin: 0;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: #050505;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: .85rem 1rem;
  }

  .nav-cta { margin-top: .4rem; text-align: center; }

  .split,
  .sponsor-section {
    grid-template-columns: 1fr;
  }

  .service-grid { grid-template-columns: repeat(2, 1fr); }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .hero-image-wrap img {
    min-height: 260px;
    object-position: center;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .button { width: 100%; }

  .service-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 1.35rem, 1180px);
  }

  .site-header {
    min-height: 68px;
  }

  .brand img {
    height: 45px;
  }
}
