:root {
  --navy: rgb(17, 41, 76);
  --turq: rgb(129, 206, 198);
  --turq-soft: rgba(129, 206, 198, 0.22);
  --white: #ffffff;
  --ink: #13213a;
  --muted: #5d6a78;
  --line: rgba(17, 41, 76, 0.14);
  --shadow: 0 24px 70px rgba(17, 41, 76, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #eef8f7;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 8%, rgba(129, 206, 198, 0.55), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(17, 41, 76, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #eef8f7 48%, #dff4f1 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 41, 76, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 41, 76, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 78%);
}

.hidden { display: none !important; }

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(17,41,76,0.10);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--turq);
  background: var(--navy);
  border: 3px solid var(--turq);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small { display: block; }

.brand strong { font-size: 18px; }
.brand small { color: var(--muted); font-weight: 700; }

.topnav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(129,206,198,0.25);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
}

.glass-panel,
.feature-card,
.snapshot-card,
.info-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.home-hero,
.venue-hero,
.photo-section,
.respect-section,
#not-found-view {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(17,41,76,0.92), rgba(17,41,76,0.66)),
    radial-gradient(circle at 88% 12%, rgba(129,206,198,0.75), transparent 36%);
  color: white;
}

.home-hero::before {
  content: "⚽";
  position: absolute;
  right: clamp(14px, 8vw, 110px);
  top: clamp(14px, 6vw, 70px);
  font-size: clamp(80px, 17vw, 190px);
  opacity: 0.14;
  transform: rotate(-12deg);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.home-hero .eyebrow,
.venue-hero .eyebrow { color: var(--turq); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(34px, 7vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.home-hero h1,
.venue-hero h1 { color: white; max-width: 920px; }

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(26px, 4.4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 { color: var(--navy); margin-bottom: 8px; }

.hero-copy,
.section-copy {
  margin-bottom: 0;
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.55;
  color: var(--muted);
}

.home-hero .hero-copy,
.venue-hero .hero-copy { color: rgba(255,255,255,0.86); }

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.venue-tile {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 28px;
  color: white;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.venue-tile:hover { transform: translateY(-3px); }

.venue-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.venue-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(17,41,76,0.92), rgba(17,41,76,0.32));
}

.tile-pill,
.photo-label {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--turq);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.venue-tile h2 { color: white; margin: 18px 0 8px; }
.venue-tile p { color: rgba(255,255,255,0.82); margin-bottom: 0; line-height: 1.45; }

.venue-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(17,41,76,0.96), rgba(17,41,76,0.76)),
    radial-gradient(circle at 88% 18%, rgba(129,206,198,0.62), transparent 35%);
  color: white;
}

.hero-content {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-photo-wrap {
  position: relative;
  min-height: 380px;
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid rgba(129,206,198,0.78);
  background: rgba(255,255,255,0.08);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(17,41,76,0.18);
}

.button-primary { color: var(--navy); background: var(--turq); }
.button-secondary { color: white; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35); }

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0;
}

.snapshot-card {
  min-height: 190px;
  border-radius: 24px;
  padding: 22px;
  border-top: 8px solid var(--turq);
}

.snapshot-icon,
.info-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--turq);
  font-size: 26px;
}

.snapshot-card p,
.info-card p { color: var(--muted); line-height: 1.5; margin: 0; }

.two-column-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-bottom: 18px;
}

.feature-card {
  border-radius: 28px;
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid rgba(255,255,255,0.78);
}

.kit-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  overflow: hidden;
}

.kit-photo-frame {
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--turq-soft), white);
  border: 1px solid var(--line);
}

.kit-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.styled-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 700;
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--turq);
  box-shadow: 0 0 0 5px rgba(129,206,198,0.20);
}

.photo-section,
.respect-section { margin: 18px 0; }

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.section-heading.compact { display: block; }

.section-heading .section-copy { max-width: 430px; }

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  border: 1px solid var(--line);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
}

.photo-card figcaption strong,
.photo-card figcaption span { display: block; }
.photo-card figcaption strong { margin-bottom: 4px; }
.photo-card figcaption span { color: var(--muted); line-height: 1.35; font-size: 14px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 210px;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.78);
}

.respect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.respect-card {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}

.do-card { border-top: 8px solid var(--turq); }
.dont-card { border-top: 8px solid var(--navy); }

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 900px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .topnav { justify-content: flex-start; }
  .venue-grid,
  .snapshot-grid,
  .photo-gallery,
  .info-grid { grid-template-columns: 1fr 1fr; }
  .venue-hero,
  .two-column-section,
  .kit-card { grid-template-columns: 1fr; }
  .hero-content { min-height: 260px; }
  .hero-photo-wrap { min-height: 320px; }
  .section-heading { display: block; }
}

@media (max-width: 620px) {
  .app-shell,
  .topbar,
  .footer { width: min(100% - 20px, 1180px); }
  .venue-grid,
  .snapshot-grid,
  .photo-gallery,
  .info-grid,
  .respect-grid { grid-template-columns: 1fr; }
  .topnav a { font-size: 13px; }
  .home-hero,
  .venue-hero,
  .photo-section,
  .respect-section,
  #not-found-view { border-radius: 24px; }
}
