/* ============================================================
   Southwest Paintball Ltd — Corporate site
   ============================================================ */

:root {
  --bg: #0b1220;
  --bg-alt: #111a2b;
  --bg-card: #152033;
  --bg-soft: #1a2740;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f6fb;
  --text-muted: #a8b3c7;
  --text-dim: #7c8aa3;
  --accent: #2f9e6b;
  --accent-bright: #3ec98a;
  --accent-soft: rgba(47, 158, 107, 0.14);
  --accent-glow: rgba(47, 158, 107, 0.28);
  --gold: #d4b483;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --max: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---------- Layout ---------- */

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  line-height: 1.7;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a.active {
  color: var(--accent-bright);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-bright);
  color: #062216;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  background: var(--accent-soft);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 0.98rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: clamp(28rem, 72vh, 40rem);
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(4rem, 9vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a2438;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 1;
  filter: brightness(0.95) saturate(1.08);
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(8, 14, 26, 0.92) 0%,
      rgba(8, 14, 26, 0.78) 38%,
      rgba(8, 14, 26, 0.42) 68%,
      rgba(8, 14, 26, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(8, 14, 26, 0.2) 0%, rgba(8, 14, 26, 0.15) 55%, var(--bg) 100%),
    radial-gradient(ellipse 55% 70% at 85% 30%, rgba(47, 158, 107, 0.22), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(8px);
  color: #e8eef8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.85rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  color: var(--accent-bright);
}

.hero p {
  color: #d5deec;
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 34rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(11, 18, 32, 0.35);
  backdrop-filter: blur(6px);
}

.hero .btn-outline:hover {
  border-color: var(--accent-bright);
  background: var(--accent-soft);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 18, 32, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 650;
  line-height: 1.1;
  color: #fff;
}

.hero-stats .stat span {
  font-size: 0.82rem;
  color: #b7c3d8;
  font-weight: 500;
}

/* ---------- Page hero ---------- */

.page-hero {
  position: relative;
  min-height: clamp(16rem, 36vh, 22rem);
  display: flex;
  align-items: flex-end;
  padding: clamp(4rem, 9vw, 5.5rem) 0 clamp(2.75rem, 6vw, 3.75rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a2438;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 1;
  filter: brightness(0.92) saturate(1.05);
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(8, 14, 26, 0.9) 0%,
      rgba(8, 14, 26, 0.72) 42%,
      rgba(8, 14, 26, 0.4) 72%,
      rgba(8, 14, 26, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(8, 14, 26, 0.15) 0%, rgba(8, 14, 26, 0.35) 70%, var(--bg) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #b7c3d8;
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--accent-bright);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.page-hero p {
  color: #d5deec;
  max-width: 36rem;
  font-size: 1.08rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.page-hero .section-label {
  color: var(--accent-bright);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

/* ---------- Cards & grids ---------- */

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

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

.brand-card,
.venue-card,
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.brand-card:hover,
.venue-card:hover {
  border-color: rgba(47, 158, 107, 0.35);
  transform: translateY(-2px);
}

.brand-card-media,
.venue-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.brand-card-media img,
.venue-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card-body,
.venue-card-body,
.info-card {
  padding: 1.35rem 1.4rem 1.5rem;
}

.brand-card h3,
.venue-card h3,
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.brand-card p,
.venue-card p,
.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* ---------- Feature list ---------- */

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 1.5rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 0.45rem 0.45rem no-repeat,
    var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(47, 158, 107, 0.35);
}

/* ---------- Split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 158, 107, 0.28);
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(47, 158, 107, 0.16), transparent 55%),
    var(--bg-card);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ---------- Contact ---------- */

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.contact-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.contact-item a {
  color: var(--text);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--accent-bright);
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Legal ---------- */

.legal-doc {
  max-width: 44rem;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.legal-doc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.35rem 0 0.55rem;
  color: var(--text);
}

.legal-doc p,
.legal-doc li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-doc ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-doc a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 2.75rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-mark {
  margin-bottom: 0.15rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0.85rem 0 1rem;
  max-width: 22rem;
}

.footer-phone {
  display: inline-block;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 0.35rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--accent-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-bottom > span:first-child {
  max-width: 52rem;
}

/* ---------- Error page ---------- */

.error-page {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.15rem 1.15rem;
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: 0;
    margin-top: 0.35rem;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .cta-band-actions,
  .card-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-band-actions .btn {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .brand-card:hover,
  .venue-card:hover {
    transform: none;
  }
}
