/* ============================================================
   Kontenders Box Club — Ismat Guliyev
   Modern, mobile-first athletic theme
   ============================================================ */

:root {
  --bg: #0c0d10;
  --bg-2: #121317;
  --bg-3: #1a1c22;
  --surface: #16181e;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f4f5f7;
  --muted: #9aa0ab;
  --muted-2: #6c727d;
  --red: #e11d2a;
  --red-2: #ff3b48;
  --gold: #f5c518;
  --green: #2ec27e;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.08; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red-2);
  margin-bottom: 14px;
}
.hl { color: var(--gold); }

.section__head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section__head h2,
.about__text h2, .why__head h2, .contact__info h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--red), #b3121d);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(225, 29, 42, 0.7);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(225, 29, 42, 0.85); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-2);
  color: var(--text);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; }
.btn--lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 13, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45)); transition: transform 0.25s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.05); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--red), #8e0f17);
  display: grid; place-items: center;
  font-family: "Anton", sans-serif; font-size: 1.4rem; color: #fff;
  box-shadow: 0 6px 18px -6px rgba(225, 29, 42, 0.8);
}
.brand__text {
  font-family: "Oswald", sans-serif; font-weight: 700; letter-spacing: 0.04em;
  font-size: 1.02rem; line-height: 1; display: flex; flex-direction: column; gap: 3px;
}
.brand__text small { font-family: "Inter", sans-serif; font-weight: 500; font-size: 0.62rem; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--red); color: #fff !important; padding: 10px 20px; border-radius: 999px;
  font-weight: 700;
}
.nav__cta:hover { background: var(--red-2); }

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

/* Language switch (AZ / EN) */
.lang-switch { display: inline-flex; padding: 3px; gap: 2px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-2); border-radius: 999px; }
.lang-switch button {
  font: inherit; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--muted); background: none; border: 0; cursor: pointer;
  padding: 6px 11px; border-radius: 999px; line-height: 1; transition: color 0.2s, background 0.2s;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.is-active { background: var(--red); color: #fff; box-shadow: 0 4px 12px -4px rgba(225,29,42,0.8); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 78% 8%, rgba(225, 29, 42, 0.18), transparent 60%),
    radial-gradient(900px 500px at 12% 90%, rgba(245, 197, 24, 0.08), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 26px),
    var(--bg);
}
.hero__glow { position: absolute; width: 540px; height: 540px; right: -120px; top: 10%; background: radial-gradient(circle, rgba(225,29,42,0.28), transparent 70%); filter: blur(20px); animation: float 9s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(28px); } }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 40px; width: 100%; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem; font-weight: 700; color: var(--gold); margin-bottom: 18px; }
.hero__title { font-family: "Anton", sans-serif; font-weight: 400; font-size: clamp(3.4rem, 11vw, 7rem); line-height: 1.05; letter-spacing: 0.01em; text-transform: uppercase; }
.hero__title span { display: inline-block; -webkit-text-stroke: 2px var(--red); color: transparent; text-stroke: 2px var(--red); }
.hero__tag { color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.18rem); max-width: 520px; margin: 22px 0 30px; }
.hero__tag strong { color: var(--text); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 12px; align-items: center; margin-top: 28px; color: var(--muted-2); font-size: 0.86rem; flex-wrap: wrap; }
.hero__trust strong { color: var(--text); }

.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 2rem; color: var(--muted); animation: bob 1.8s infinite; }
@keyframes bob { 0%,100%{ transform: translate(-50%,0); } 50%{ transform: translate(-50%,8px); } }

/* photo frame (placeholder) */
.hero__photo { display: flex; justify-content: center; }
.photo-frame { position: relative; width: 100%; max-width: 380px; aspect-ratio: 4 / 5; border-radius: 22px; padding: 10px; background: linear-gradient(160deg, rgba(225,29,42,0.5), rgba(245,197,24,0.25)); box-shadow: var(--shadow); }
.photo-frame__img {
  position: relative; overflow: hidden;
  width: 100%; height: 100%; border-radius: 16px;
  background:
    radial-gradient(circle at 50% 40%, rgba(225,29,42,0.18), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 10px, transparent 10px 20px),
    var(--bg-2);
}
.photo-frame__ph { position: absolute; inset: 0; display: grid; place-content: center; gap: 14px; color: var(--muted-2); text-align: center; }
.frame-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 2; }
.photo-frame .glove { width: 86px; height: 86px; color: rgba(225,29,42,0.6); margin: 0 auto; }
.photo-frame__hint { font-size: 0.78rem; }
.photo-frame__hint code { background: rgba(255,255,255,0.07); padding: 2px 7px; border-radius: 6px; color: var(--gold); font-size: 0.72rem; }
.photo-frame__badge {
  position: absolute; bottom: -16px; left: -16px; z-index: 3;
  background: linear-gradient(135deg, var(--red), #97101a);
  border: 3px solid var(--bg);
  border-radius: 16px; padding: 12px 18px; text-align: center; line-height: 1; box-shadow: var(--shadow);
}
.photo-frame__badge .big { display: block; font-family: "Anton", sans-serif; font-size: 1.7rem; letter-spacing: 0.02em; }
.photo-frame__badge .small { display: block; font-size: 0.72rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.85); margin-top: 4px; }
.photo-frame--alt { max-width: 100%; aspect-ratio: 1 / 1; }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(var(--bg-2), var(--bg-2)); border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 44px 22px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); width: 1px; height: 46px; background: var(--line); }
.stat__num { display: block; font-family: "Anton", sans-serif; font-size: clamp(2.4rem, 7vw, 3.6rem); color: var(--gold); line-height: 1; }
.stat__label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--muted); margin-top: 8px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.about__media { display: grid; gap: 20px; }
.about__factcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.about__factcard h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.05rem; margin-bottom: 14px; color: var(--gold); }
.about__factcard dl { display: grid; gap: 12px; }
.about__factcard dl > div { display: flex; justify-content: space-between; gap: 16px; font-size: 0.9rem; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.about__factcard dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.about__factcard dt { color: var(--muted); }
.about__factcard dd { text-align: right; font-weight: 600; }
.factcard__verify { display: inline-block; margin-top: 16px; color: var(--gold); font-weight: 600; font-size: 0.84rem; }
.factcard__verify:hover { text-decoration: underline; }

.about__text p { color: var(--muted); margin-top: 16px; }
.about__text h2 { margin-bottom: 4px; }
.checklist { display: grid; gap: 12px; margin: 24px 0 28px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text); font-weight: 500; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: rgba(46,194,126,0.16); color: var(--green); border-radius: 6px; display: grid; place-items: center; font-size: 0.8rem; font-weight: 800; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 104px; top: 8px; bottom: 8px; width: 2px; background: var(--line-2); }
.timeline__item { display: grid; grid-template-columns: 88px 1fr; gap: 34px; align-items: start; position: relative; }
.timeline__year { font-family: "Oswald", sans-serif; font-weight: 700; color: var(--gold); text-align: right; padding-top: 16px; font-size: 0.92rem; white-space: nowrap; }
.timeline__item::before { content: ""; position: absolute; left: 98px; top: 20px; width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 3px solid var(--bg); z-index: 2; }
.timeline__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; }
.timeline__card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline__card p { color: var(--muted); font-size: 0.92rem; }
.timeline__card--accent { border-color: rgba(245,197,24,0.4); background: linear-gradient(180deg, rgba(245,197,24,0.06), var(--surface)); }

/* ---------- Cards (programs) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; overflow: hidden; }
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card__icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.94rem; }
.card ul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.card ul li { font-size: 0.76rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }
.card--feature { border-color: rgba(225,29,42,0.45); background: linear-gradient(180deg, rgba(225,29,42,0.07), var(--surface)); }
.card__tag { position: absolute; top: 16px; right: 16px; background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; padding: 5px 10px; border-radius: 999px; }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-tile { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1 / 1; margin: 0;
  background: radial-gradient(circle at 50% 35%, rgba(225,29,42,0.16), transparent 60%), repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 10px, transparent 10px 20px), var(--bg-2);
  border: 1px solid var(--line); transition: transform 0.3s var(--ease), border-color 0.3s; }
.g-tile:hover { transform: translateY(-4px); border-color: var(--gold); }
.g-tile--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.g-tile .frame-photo { transition: transform 0.5s var(--ease); }
.g-tile:hover .frame-photo { transform: scale(1.05); }

/* ---------- Schedule ---------- */
.schedule__wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.schedule__table { width: 100%; border-collapse: collapse; }
.schedule__table th, .schedule__table td { padding: 16px 22px; text-align: left; font-size: 0.94rem; }
.schedule__table thead th { background: var(--bg-3); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--muted); font-weight: 700; }
.schedule__table tbody tr { border-top: 1px solid var(--line); transition: background 0.2s; }
.schedule__table tbody tr:hover { background: rgba(255,255,255,0.025); }
.schedule__table td:first-child { font-weight: 600; }
.pill { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,0.08); color: var(--text); }
.pill--gold { background: rgba(245,197,24,0.16); color: var(--gold); }
.pill--red { background: rgba(225,29,42,0.18); color: var(--red-2); }
.pill--green { background: rgba(46,194,126,0.16); color: var(--green); }
.schedule__note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 24px; }

/* two-venue schedule cards */
.sched-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sched-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 8px 20px; overflow: hidden; transition: border-color 0.25s; }
.sched-card:hover { border-color: var(--line-2); }
.sched-card__head { padding: 18px 18px 14px; }
.sched-card__head h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.25rem; }
.sched-card__loc { display: inline-block; color: var(--gold); font-size: 0.84rem; font-weight: 600; margin-top: 6px; }
.sched-card .schedule__table { width: 100%; border-collapse: collapse; }
.sched-card .schedule__table thead th { background: var(--bg-3); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.68rem; color: var(--muted); }
.sched-card .schedule__table td:last-child { font-weight: 600; color: var(--text); }
.sched-card__note { padding: 14px 18px 0; color: var(--muted); font-size: 0.82rem; }

/* ---------- Pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s var(--ease), border-color 0.3s; }
.price:hover { transform: translateY(-5px); border-color: var(--line-2); }
.price h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.15rem; }
.price__amount { font-family: "Anton", sans-serif; font-size: 2.8rem; margin: 8px 0 6px; line-height: 1; }
.price__amount span { font-family: "Inter", sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.price__desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.price ul { display: grid; gap: 11px; margin-bottom: 24px; flex: 1; }
.price ul li { position: relative; padding-left: 26px; font-size: 0.92rem; color: var(--text); }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.price--featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(245,197,24,0.08), var(--surface)); box-shadow: 0 30px 70px -30px rgba(245,197,24,0.4); transform: translateY(-6px) scale(1.01); }
.price--featured:hover { transform: translateY(-11px) scale(1.01); }
.price__ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1a1300; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 999px; text-transform: uppercase; white-space: nowrap; }
.pricing__note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 22px; }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.why__head h2 { margin: 4px 0 14px; }
.why__head p { color: var(--muted); }
.why__features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; display: flex; gap: 14px; transition: transform 0.25s var(--ease), border-color 0.25s; }
.feature:hover { transform: translateY(-4px); border-color: var(--line-2); }
.feature__i { font-size: 1.5rem; line-height: 1; }
.feature h4 { font-size: 1rem; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: 0.86rem; }

/* ---------- FAQ ---------- */
.faq__inner { max-width: 820px; margin: 0 auto; }
.accordion { display: grid; gap: 12px; }
.accordion details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s; }
.accordion details[open] { border-color: var(--line-2); }
.accordion summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1rem; }
.accordion summary::-webkit-details-marker { display: none; }
.acc__plus { color: var(--red-2); font-size: 1.4rem; font-weight: 400; transition: transform 0.3s; flex-shrink: 0; }
.accordion details[open] .acc__plus { transform: rotate(45deg); }
.accordion p { padding: 0 22px 20px; color: var(--muted); font-size: 0.94rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 60px); align-items: start; }
.contact__info h2 { margin: 4px 0 14px; }
.contact__info > p { color: var(--muted); margin-bottom: 26px; }
.contact__list { display: grid; gap: 16px; margin-bottom: 26px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__i { font-size: 1.3rem; width: 44px; height: 44px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; flex-shrink: 0; }
.contact__list div { display: flex; flex-direction: column; }
.contact__list strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }
.contact__list a { color: var(--gold); font-weight: 600; word-break: break-word; }
.contact__list a:hover { text-decoration: underline; }
.contact__hours { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.contact__hours strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.contact__hours span { color: var(--muted); font-size: 0.92rem; }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.field .opt { color: var(--muted-2); font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font: inherit; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,42,0.18); }
.field textarea { resize: vertical; }
.form__note { text-align: center; font-size: 0.84rem; color: var(--muted); }
.form__note.ok { color: var(--green); }

/* ---------- Location / map ---------- */
.location { padding-bottom: 0; }
.loc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: clamp(34px, 5vw, 52px); }
.loc-card { position: relative; display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.loc-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.loc-card__badge { display: inline-block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(225,29,42,0.18); color: var(--red-2); margin-bottom: 12px; }
.loc-card__badge--alt { background: rgba(245,197,24,0.16); color: var(--gold); }
.loc-card h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.4rem; }
.loc-card__addr { color: var(--text); font-size: 0.92rem; margin: 8px 0 4px; }
.loc-card__times { color: var(--muted); font-size: 0.86rem; }
.loc-card__cta { display: inline-block; color: var(--gold); font-weight: 600; font-size: 0.86rem; margin-top: 16px; }
.location__map { position: relative; height: clamp(340px, 48vw, 520px); margin-top: 8px; border-top: 1px solid var(--line); }
.location__map iframe { width: 100%; height: 100%; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.95); }
.location__pin {
  position: absolute; left: clamp(16px, 5vw, 64px); top: 50%; transform: translateY(-50%);
  display: flex; gap: 14px; align-items: center;
  background: rgba(16, 17, 22, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 18px 22px;
  max-width: 320px; box-shadow: var(--shadow); transition: transform 0.25s var(--ease), border-color 0.25s;
}
.location__pin:hover { transform: translateY(-50%) scale(1.02); border-color: var(--gold); }
.location__pin-i { font-size: 1.8rem; }
.location__pin strong { display: block; font-family: "Oswald", sans-serif; font-size: 1.1rem; }
.location__pin span { display: block; color: var(--muted); font-size: 0.86rem; margin: 3px 0 6px; }
.location__pin em { color: var(--gold); font-style: normal; font-weight: 600; font-size: 0.84rem; }

/* ---------- CTA banner ---------- */
.cta-banner { padding: clamp(56px, 8vw, 90px) 0; background: radial-gradient(900px 400px at 50% 0%, rgba(225,29,42,0.22), transparent 65%), var(--bg-2); border-top: 1px solid var(--line); }
.cta-banner__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: clamp(1.9rem, 5vw, 3rem); }
.cta-banner p { color: var(--muted); margin: 14px 0 26px; font-size: 1.05rem; }
.cta-banner__social { margin: 22px 0 0; font-size: 0.95rem; }
.cta-banner__social strong { color: var(--gold); }
.cta-banner__social a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.cta-banner__social a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted); font-size: 0.9rem; margin-top: 16px; max-width: 320px; }
.footer__col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted-2); }
.footer__credit { color: var(--muted); font-weight: 600; transition: color 0.2s; }
.footer__credit:hover { color: var(--gold); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 18px; right: 18px; z-index: 90;
  display: none; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #25d366, #128c4b); color: #fff;
  padding: 13px 20px; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,0.7);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__photo { order: -1; }
  .photo-frame { max-width: 300px; }
  .about__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; width: 100%; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .g-tile--wide { grid-column: span 2; }
  .sched-grid, .loc-cards { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-5px); }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(12,13,16,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px;
    transform: translateY(-130%); transition: transform 0.35s var(--ease);
    max-height: calc(100svh - 72px); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__cta { text-align: center; margin-top: 14px; border-bottom: 0 !important; }
  .nav__burger { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .stat:nth-child(2)::after { display: none; }

  /* schedule -> stacked cards */
  .schedule__table thead { display: none; }
  .schedule__table, .schedule__table tbody, .schedule__table tr, .schedule__table td { display: block; width: 100%; }
  .schedule__table tr { padding: 8px 4px 14px; border-top: 1px solid var(--line); }
  .schedule__table tr:first-child { border-top: 0; }
  .schedule__table td { display: flex; justify-content: space-between; gap: 16px; padding: 7px 18px; text-align: right; }
  .schedule__table td::before { content: attr(data-l); color: var(--muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; text-align: left; }
  .schedule__table td:first-child { font-size: 1.05rem; color: var(--gold); }

  .sticky-cta { display: inline-flex; }
  .footer__bar { flex-direction: column; align-items: flex-start; }

  .location__pin { position: static; transform: none; max-width: none; margin: 16px clamp(16px, 5vw, 64px); border-radius: var(--radius); }
  .location__pin:hover { transform: none; }
  .location__map { height: auto; display: flex; flex-direction: column-reverse; }
  .location__map iframe { height: 320px; }

@media (max-width: 480px) {
  .cards, .why__features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
