/* ============================================
   ARSENAL BOXING SCHOOL & GYM
   ============================================ */
:root {
  --black: #0b0b0d;
  --panel: #141417;
  --panel-2: #1b1b20;
  --line: #26262c;
  --red: #931630;      /* brand crimson, sampled from the Arsenal logo */
  --red-bright: #b71c3d;
  --red-dark: #6e0f23;
  --gold: #f5b301;
  --white: #f4f2ee;
  --muted: #9a988f;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 12px; }
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-bright); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: #ffc41f; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo .glove-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo span em { color: var(--red); font-style: normal; }
.logo-img { height: 44px; width: auto; }
@media (max-width: 520px) { .logo-img { height: 36px; } }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav .nav-cta { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.cart-btn:hover { border-color: var(--gold); }
.cart-count {
  background: var(--red);
  color: #fff;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.nav-toggle { display: none; background: none; border: none; color: var(--white); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 20px 5%;
    gap: 18px;
  }
  .main-nav.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(95deg, rgba(11, 11, 13, 0.96) 32%, rgba(11, 11, 13, 0.55) 68%, rgba(20, 8, 12, 0.45)),
    url('../images/hero-fight.jpg') right center / cover no-repeat,
    var(--black);
}
@media (max-width: 700px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(11, 11, 13, 0.88), rgba(11, 11, 13, 0.72)),
      url('../images/hero-fight.jpg') center 20% / cover no-repeat,
      var(--black);
  }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 60px,
    rgba(255, 255, 255, 0.015) 60px 61px
  );
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; }
.hero h1 {
  font-size: clamp(2.3rem, 6.2vw, 4.9rem);
  line-height: 1.04;
  margin: 8px 0 20px;
}
.hero h1 .accent { color: var(--red); }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.hero-stat .lbl {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-art {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 520px;
  opacity: 0.16;
  transform: rotate(-12deg);
  pointer-events: none;
}
@media (max-width: 700px) { .hero-art { width: 340px; } }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.strip-track {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}
.strip-track span { margin: 0 26px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards / Programs ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: #3a3a42; }
.card .card-icon { width: 46px; height: 46px; margin-bottom: 18px; color: var(--red-bright); }
.card.card-photo { padding: 0; overflow: hidden; }
.card.card-photo .photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}
.card.card-photo .card-body { padding: 26px 28px 30px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .card-meta { margin-top: 16px; color: var(--gold); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 1040px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }

.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.plan:hover { transform: translateY(-5px); }
.plan.featured { border-color: var(--red); background: linear-gradient(180deg, rgba(225,29,46,0.10), rgba(225,29,46,0.02)), var(--panel); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.25rem; margin-bottom: 6px; }
.plan .plan-tag { color: var(--muted); font-size: 0.85rem; min-height: 40px; }
.plan .price { font-family: var(--font-display); font-size: 2.9rem; margin: 18px 0 2px; }
.plan .price .per { font-size: 1rem; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.plan ul { list-style: none; margin: 20px 0 28px; flex: 1; }
.plan li {
  padding: 8px 0 8px 26px;
  font-size: 0.92rem;
  color: #cfcdc5;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Shop ---------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.chip {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.15s;
}
.chip:hover { color: var(--white); border-color: #3a3a42; }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1040px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.product:hover { transform: translateY(-4px); border-color: #3a3a42; }
.product-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--panel-2), #101014);
  position: relative;
}
.product-img svg { width: 62%; height: 62%; }
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(245, 179, 1, 0.14);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; }
.product-body .desc { color: var(--muted); font-size: 0.84rem; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; gap: 10px; }
.product-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 200;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--panel);
  border-left: 1px solid var(--line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 1.2rem; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 1.5rem; line-height: 1; }
.cart-close:hover { color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { color: var(--muted); text-align: center; padding: 60px 0; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background: var(--panel-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-img svg { width: 70%; height: 70%; }
.cart-item-info { flex: 1; }
.cart-item-info .name { font-weight: 700; font-size: 0.92rem; }
.cart-item-info .unit { color: var(--muted); font-size: 0.8rem; }
.qty-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: none;
  color: var(--white);
  font-weight: 700;
}
.qty-btn:hover { border-color: var(--gold); }
.cart-item .line-total { font-family: var(--font-display); color: var(--gold); font-size: 1.05rem; }
.remove-btn { background: none; border: none; color: var(--muted); font-size: 0.75rem; text-decoration: underline; padding: 0; }
.remove-btn:hover { color: var(--red); }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-row .amt { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); }
.cart-note { color: var(--muted); font-size: 0.75rem; margin-top: 12px; text-align: center; }

/* ---------- Coming soon (shop paused) ---------- */
.outline-text { color: transparent; -webkit-text-stroke: 2px var(--white); }
.coming-soon { padding: 110px 0 120px; }
.cs-big {
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px var(--red-bright);
}

/* ---------- Class schedule ---------- */
.schedule-scroll { overflow-x: auto; padding-bottom: 8px; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(158px, 1fr));
  gap: 12px;
  min-width: 1160px;
}
.sched-day {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 12px;
}
.sched-day.today { border-color: var(--gold); }
.sched-day-head {
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.today-tag {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  border-radius: 99px;
}
.sched-slot {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  color: var(--white);
  transition: border-color 0.15s, transform 0.15s;
}
.sched-slot:hover { border-color: var(--red-bright); transform: translateY(-2px); }
/* A class that already started today — visible for context, but not bookable */
.sched-slot.past {
  opacity: 0.32;
  cursor: not-allowed;
  border-style: dashed;
}
.sched-slot.past:hover { transform: none; border-color: var(--line); }
.sched-slot.past .slot-time { text-decoration: line-through; }
.sched-slot.past .slot-book { color: var(--muted); }
.sched-slot .slot-time { display: block; font-weight: 800; font-size: 0.92rem; }
.sched-slot .slot-name { display: block; color: var(--muted); font-size: 0.78rem; margin: 2px 0 6px; }
.sched-slot .slot-book { display: block; color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.sched-notes { margin-top: 28px; color: var(--muted); font-size: 0.92rem; max-width: 640px; }
.sched-notes p { margin-bottom: 10px; }
.sched-notes strong { color: var(--white); }

/* ---------- Booking modal ---------- */
.booking-modal { text-align: left; position: relative; max-width: 480px; }
.bk-close { position: absolute; top: 16px; right: 20px; }
.bk-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.bk-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 10px;
}
.bk-dates { display: flex; flex-wrap: wrap; gap: 8px; }
.bk-date {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.bk-date input { display: none; }
.bk-date.checked { border-color: var(--red-bright); background: rgba(147, 22, 48, 0.18); }
.bk-date.full { opacity: 0.45; cursor: not-allowed; text-decoration: line-through; }
.bk-left {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.bk-left.full { color: var(--muted); }
.bk-loading { color: var(--muted); font-size: 0.88rem; }
.bk-input {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.bk-input:focus { outline: none; border-color: var(--red-bright); }
.bk-input::placeholder { color: var(--muted); }
.bk-error { color: #ff7b90; font-size: 0.85rem; min-height: 1.2em; margin-bottom: 10px; }
#card-container { min-height: 92px; margin-bottom: 6px; }

/* ---------- Wallet buttons (Apple Pay / Google Pay) ---------- */
#wallet-buttons { margin-top: 16px; }
#apple-pay-button {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: pay;
  -apple-pay-button-style: black;
}
#google-pay-button { min-height: 44px; margin-bottom: 4px; cursor: pointer; }
.pm-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 14px 0 4px;
}
.pm-divider::before, .pm-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery a, .gallery .shot { border-radius: 10px; overflow: hidden; display: block; position: relative; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery .shot:hover img { transform: scale(1.04); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery .wide { grid-column: span 2; }
}

/* ---------- Champion band ---------- */
.champion-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #000; }
.champion-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}
@media (max-width: 800px) { .champion-inner { grid-template-columns: 1fr; } }
.champion-inner img { border-radius: 12px; width: 100%; max-width: 440px; margin: 0 auto; }
.champion-inner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.champion-inner p { color: var(--muted); margin-bottom: 28px; max-width: 480px; }

/* ---------- Schedule / hours ---------- */
.hours-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .hours-wrap { grid-template-columns: 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-table td:last-child { text-align: right; color: var(--muted); }
.hours-table tr.today td { color: var(--gold); font-weight: 700; }
.hours-table tr.today td:last-child { color: var(--gold); }

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px;
}
.contact-card h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; }
.contact-row svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.contact-row a:hover { color: var(--gold); }
.contact-row .muted { color: var(--muted); font-size: 0.85rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.cta-band p { opacity: 0.9; margin-bottom: 30px; max-width: 520px; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: #0a0a0c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.footer-about { color: var(--muted); font-size: 0.9rem; max-width: 300px; margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  z-index: 300;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 0.9rem;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 400;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 36px;
  text-align: center;
}
.modal h3 { font-size: 1.4rem; margin-bottom: 12px; }
.modal p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(147, 22, 48, 0.22), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--line);
}
.page-hero.photo-ring {
  padding: 120px 0 88px;
  background:
    linear-gradient(95deg, rgba(11, 11, 13, 0.94) 35%, rgba(11, 11, 13, 0.5)),
    url('../images/ring.jpg') center 60% / cover no-repeat;
}
.page-hero.photo-mat {
  padding: 120px 0 88px;
  background:
    linear-gradient(95deg, rgba(11, 11, 13, 0.94) 35%, rgba(11, 11, 13, 0.45)),
    url('../images/ring-logo.jpg') center 35% / cover no-repeat;
}
.page-hero.photo-spar {
  padding: 120px 0 88px;
  background:
    linear-gradient(95deg, rgba(11, 11, 13, 0.94) 35%, rgba(11, 11, 13, 0.42)),
    url('../images/ring-logo.jpg') center 55% / cover no-repeat;
}

/* ---------- Saturday sparring ---------- */
.spar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1040px) { .spar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spar-grid { grid-template-columns: 1fr; } }
.spar-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.spar-card:hover { transform: translateY(-4px); border-color: #3a3a42; }
.spar-card.is-full { opacity: 0.55; }
.spar-card.is-full:hover { transform: none; }
.spar-date { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; }
.spar-time { color: var(--muted); font-size: 0.9rem; }
.spar-spots {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.spar-spots.full { color: var(--muted); }
.spar-waiver {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(147, 22, 48, 0.12);
  border: 1px solid rgba(183, 28, 61, 0.45);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 36px;
  max-width: 640px;
  color: #e8d9dc;
  font-size: 0.95rem;
}
.spar-waiver svg { color: var(--red-bright); flex-shrink: 0; margin-top: 2px; }
.spar-waiver strong { color: #fff; }

/* ---------- Visit section photo ---------- */
.visit-photo {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.visit-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 65%; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 6px 0 14px; }
.page-hero p { color: var(--muted); max-width: 560px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

::selection { background: var(--red); color: #fff; }
