@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/wp-content/themes/sbr-training/assets/fonts/inter-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/wp-content/themes/sbr-training/assets/fonts/roboto-condensed-latin-variable.woff2") format("woff2");
}
:root {
  --bg: #09090b;
  --bg-elevated: #111114;
  --panel: #151519;
  --panel-2: #1b1b20;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);
  --text: #f4f1ed;
  --muted: #aaa5a7;
  --muted-2: #7c777a;
  --accent: #8d2635;
  --accent-light: #c63a4b;
  --accent-dark: #5e1622;
  --success: #75b798;
  --warning: #d7a84a;
  --shadow: 0 22px 70px rgba(0,0,0,.36);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% -10%, rgba(141,38,53,.24), transparent 33rem),
    radial-gradient(circle at -10% 26%, rgba(112,31,42,.12), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-tight { padding: 62px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #d46c79;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, .display {
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: .96;
}
h1 { font-size: clamp(3.3rem, 8vw, 7.4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.15rem); margin-bottom: 13px; }
p { color: var(--muted); }
.lead { max-width: 720px; font-size: clamp(1.03rem, 1.8vw, 1.25rem); color: #c8c3c4; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading > div:first-child { max-width: 820px; }
.section-heading p { max-width: 560px; margin-bottom: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,9,11,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 180px; height: auto; max-height: 58px; object-fit: contain; } .brand-copy { display: none; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif; font-size: 1.28rem; letter-spacing: .06em; }
.brand-copy span { margin-top: 5px; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: #ccc7c8; font-size: .87rem; font-weight: 700; }
.nav-links a:hover, .nav-links a.active { color: white; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 999px; }
.cart-count { position: absolute; top: -5px; right: -4px; display: grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 99px; background: var(--accent-light); color: white; font-size: .68rem; font-weight: 900; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); background: transparent; border-radius: 999px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent-light), var(--accent-dark)); color: white; box-shadow: 0 12px 36px rgba(141,38,53,.28); }
.btn-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.025); }
.btn-secondary:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .74rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.text-link { color: #efadb5; font-weight: 800; font-size: .88rem; }
.text-link:hover { color: white; }

.hero { position: relative; overflow: hidden; min-height: 760px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,11,1) 0%, rgba(9,9,11,.97) 38%, rgba(9,9,11,.5) 68%, rgba(9,9,11,.86) 100%),
    repeating-linear-gradient(118deg, transparent 0 64px, rgba(255,255,255,.018) 65px 66px),
    radial-gradient(circle at 73% 40%, rgba(198,58,75,.31), transparent 29rem);
}
.hero::after {
  content: "SBR";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(255,255,255,.025);
  font: 900 clamp(19rem, 35vw, 38rem)/.7 Impact, sans-serif;
  letter-spacing: -.09em;
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); align-items: end; gap: 56px; padding: 110px 0 82px; }
.hero h1 span { color: #09090b; -webkit-text-stroke: 0; text-shadow: -1px -1px 0 #d65d6c, 0 -1px 0 #d65d6c, 1px -1px 0 #d65d6c, -1px 0 0 #d65d6c, 1px 0 0 #d65d6c, -1px 1px 0 #d65d6c, 0 1px 0 #d65d6c, 1px 1px 0 #d65d6c; }
.hero-copy { max-width: 770px; }
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: grid; gap: 14px; }
.next-course, .stat-card, .glass-card {
  background: linear-gradient(145deg, rgba(31,31,36,.88), rgba(15,15,18,.8));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.next-course { padding: 24px; border-radius: var(--radius); }
.next-course .topline { display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #d3ccce; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.status-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--success); }
.status-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(117,183,152,.09); }
.next-course h3 { margin: 24px 0 10px; font-size: 2rem; }
.course-meta { display: flex; flex-wrap: wrap; gap: 12px 18px; color: var(--muted); font-size: .82rem; }
.course-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat-card { padding: 18px 15px; border-radius: 14px; text-align: center; box-shadow: none; }
.stat-card strong { display: block; font: 900 1.4rem/1 "Roboto Condensed", "Arial Narrow", Impact, sans-serif; }
.stat-card span { display: block; margin-top: 6px; color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }

.trust-strip { border-bottom: 1px solid var(--line); background: #0d0d10; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 5px; font-size: .84rem; text-transform: uppercase; letter-spacing: .06em; }
.trust-item span { color: var(--muted); font-size: .77rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.training-card, .product-card, .review-card, .info-card, .course-detail {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--panel), #101013);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.training-card { min-height: 380px; padding: 30px; display: flex; flex-direction: column; justify-content: end; transition: transform .2s ease, border-color .2s ease; }
.training-card:hover { transform: translateY(-5px); border-color: rgba(198,58,75,.45); }
.training-card::before {
  content: attr(data-number);
  position: absolute;
  top: 20px;
  right: 18px;
  color: rgba(255,255,255,.045);
  font: 900 7rem/1 Impact, sans-serif;
}
.training-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0, rgba(141,38,53,.22), transparent 19rem); pointer-events: none; }
.training-card > * { position: relative; z-index: 2; }
.card-kicker { color: #d16a77; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.training-card h3 { margin-top: 12px; font-size: 2.1rem; }
.training-card p { min-height: 72px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.card-footer span { color: #dad4d5; font-size: .78rem; font-weight: 800; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.feature-panel { position: relative; overflow: hidden; min-height: 530px; padding: 48px; border-radius: 26px; border: 1px solid var(--line); background: linear-gradient(145deg, #18181d, #0f0f12); }
.feature-panel.accent { background: linear-gradient(145deg, #811f2d, #310c13); }
.feature-panel .large-number { position: absolute; right: -10px; bottom: -40px; color: rgba(255,255,255,.055); font: 900 16rem/1 Impact, sans-serif; }
.feature-list { display: grid; gap: 22px; margin-top: 36px; }
.feature-item { display: grid; grid-template-columns: 38px 1fr; gap: 15px; }
.feature-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(198,58,75,.14); border: 1px solid rgba(198,58,75,.26); color: #e47885; font-weight: 900; }
.feature-item strong { display: block; margin-bottom: 4px; }
.feature-item p { margin-bottom: 0; font-size: .9rem; }

.schedule-preview { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.event-list { display: grid; gap: 10px; }
.event-row { display: grid; grid-template-columns: 74px 1fr auto; gap: 20px; align-items: center; padding: 18px; background: var(--panel); border: 1px solid var(--line); border-radius: 15px; }
.event-date { text-align: center; border-right: 1px solid var(--line); padding-right: 18px; }
.event-date strong { display: block; font: 900 1.8rem/1 "Roboto Condensed", "Arial Narrow", Impact, sans-serif; }
.event-date span { display: block; margin-top: 4px; color: #d16a77; font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.event-info h4 { margin: 0 0 5px; font-size: .98rem; }
.event-info span { color: var(--muted); font-size: .77rem; }
.badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: rgba(198,58,75,.12); border: 1px solid rgba(198,58,75,.24); color: #e9959f; font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.badge.green { background: rgba(117,183,152,.1); border-color: rgba(117,183,152,.25); color: #9ad0b8; }
.badge.gold { background: rgba(215,168,74,.1); border-color: rgba(215,168,74,.25); color: #e6c16f; }

.review-card { padding: 34px; }
.review-card blockquote { margin: 0 0 28px; color: #ece8e5; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.55; }
.review-author { display: flex; align-items: center; gap: 13px; }
.avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--accent-dark)); font-weight: 900; }
.review-author strong { display: block; font-size: .86rem; }
.review-author span { color: var(--muted); font-size: .73rem; }
.stars { margin-bottom: 15px; color: #e4b75f; letter-spacing: .12em; }
.schedule-preview-full { grid-template-columns: 1fr; }
.reviews-section { padding-top: 52px; }
.review-carousel-tools { display: flex; align-items: center; gap: 16px; }
.review-counter { min-width: 44px; color: var(--muted-2); font-size: .74rem; font-weight: 800; letter-spacing: .08em; }
.review-counter strong { color: white; font-size: 1rem; }
.review-carousel-controls { display: flex; gap: 8px; }
.review-viewport { overflow: hidden; border-radius: var(--radius); outline: none; }
.review-viewport:focus-visible { box-shadow: 0 0 0 3px rgba(198,58,75,.28); }
.review-track { display: flex; transition: transform .48s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.review-slide { flex: 0 0 100%; min-width: 0; min-height: 280px; display: grid; grid-template-columns: minmax(160px,.36fr) 1fr; align-items: center; gap: clamp(28px,5vw,66px); padding: clamp(34px,5vw,64px); }
.review-slide blockquote { max-width: 820px; margin-bottom: 26px; font-size: clamp(1.35rem,2.3vw,2rem); line-height: 1.45; }
.review-rating { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; padding-right: 28px; border-right: 1px solid var(--line); }
.review-rating .stars { font-size: 1.05rem; }
.review-dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.review-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #555158; cursor: pointer; transition: width .25s ease, background .25s ease; }
.review-dot.active { width: 28px; border-radius: 99px; background: var(--accent-light); }
@media (prefers-reduced-motion: reduce) { .review-track { transition: none; } }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { padding: 14px; }
.product-art { position: relative; display: grid; place-items: center; aspect-ratio: 1 / .86; overflow: hidden; border-radius: 13px; background: linear-gradient(145deg, #27272d, #101012); border: 1px solid var(--line); }
.product-art::before { content: "SBR"; color: rgba(255,255,255,.07); font: 900 6rem/1 Impact, sans-serif; transform: rotate(-8deg); }
.product-art .mock-product { position: absolute; width: 44%; height: 57%; border-radius: 8px 8px 15px 15px; background: #18181b; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 20px 30px rgba(0,0,0,.4); }
.product-art .mock-product::after { content: "S.B.R."; position: absolute; left: 50%; top: 45%; transform: translate(-50%,-50%); color: #c43c4c; font: 900 1.15rem Impact, sans-serif; letter-spacing: .06em; }
.product-art.hat .mock-product { width: 54%; height: 30%; border-radius: 70% 70% 22% 22%; transform: translateY(16px); }
.product-art.hat .mock-product::before { content: ""; position: absolute; left: 46%; bottom: -30%; width: 65%; height: 60%; border-radius: 50%; background: #141416; border: 1px solid rgba(255,255,255,.14); }
.product-art.patch .mock-product { width: 42%; height: 42%; clip-path: polygon(50% 0, 100% 22%, 90% 79%, 50% 100%, 10% 79%, 0 22%); }
.product-art.book .mock-product { width: 48%; height: 65%; border-radius: 4px; transform: rotate(-5deg); }
.product-card-body { padding: 17px 5px 7px; }
.product-card h3 { margin-bottom: 8px; font-size: 1.35rem; }
.product-price { color: white; font-weight: 900; }
.product-actions { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-top: 18px; }

.cta-band { position: relative; overflow: hidden; padding: 58px; border-radius: 28px; border: 1px solid rgba(198,58,75,.36); background: linear-gradient(120deg, #7e1e2b, #2b0b11 72%); }
.cta-band::after { content: "TRAIN"; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.05); font: 900 10rem/1 Impact, sans-serif; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { max-width: 800px; margin-bottom: 16px; }
.cta-band p { max-width: 650px; color: #d9cfd1; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.page-hero { position: relative; overflow: hidden; padding: 108px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero::after { content: attr(data-watermark); position: absolute; right: -1rem; top: 28%; color: rgba(255,255,255,.025); font: 900 clamp(8rem, 23vw, 20rem)/1 Impact, sans-serif; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 960px; font-size: clamp(3.7rem, 8vw, 7rem); }
.page-hero .lead { max-width: 760px; }
.breadcrumb { margin-bottom: 22px; color: var(--muted); font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a { color: #e78490; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-btn { min-height: 38px; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 99px; background: transparent; color: #c7c2c3; cursor: pointer; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.filter-btn.active, .filter-btn:hover { background: var(--accent); border-color: var(--accent); color: white; }
.course-stack { display: grid; gap: 22px; }
.course-detail { display: grid; grid-template-columns: 1fr 1.45fr; min-height: 420px; }
.course-visual { position: relative; min-height: 100%; padding: 34px; background: radial-gradient(circle at 70% 24%, rgba(198,58,75,.32), transparent 20rem), linear-gradient(145deg, #232329, #101013); }
.course-visual::after { content: attr(data-number); position: absolute; right: 14px; bottom: -20px; color: rgba(255,255,255,.045); font: 900 12rem/1 Impact, sans-serif; }
.course-visual .badge { position: relative; z-index: 2; }
.course-visual h2 { position: absolute; z-index: 2; left: 34px; bottom: 28px; max-width: 80%; margin: 0; font-size: clamp(2.5rem, 4vw, 4rem); }
.course-content { padding: 38px; }
.course-content > p { font-size: 1rem; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin: 25px 0; }
.spec { padding: 13px; border-radius: 10px; background: rgba(255,255,255,.025); border: 1px solid var(--line); }
.spec span { display: block; color: var(--muted-2); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.spec strong { display: block; margin-top: 5px; font-size: .82rem; }
.course-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.check-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 9px; }
.check-list li { position: relative; padding-left: 23px; color: #c2bdbe; font-size: .84rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #dc7180; font-weight: 900; }
.course-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 27px; }

.calendar-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(310px, .5fr); gap: 22px; align-items: start; }
.calendar-card { padding: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.calendar-head h3 { margin: 0; font-size: 1.8rem; }
.calendar-controls { display: flex; gap: 7px; }
.icon-btn { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; }
.icon-btn:hover { background: rgba(255,255,255,.06); }
.calendar-grid { min-width: 0; }
.calendar-month-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-mobile-agenda { display: none; }
.cal-weekday { padding: 10px 4px; color: var(--muted-2); text-align: center; font-size: .67rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.cal-day { position: relative; min-height: 105px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: #101013; }
.cal-day.muted { opacity: .28; }
.cal-day.today { border-color: rgba(198,58,75,.7); }
.cal-number { color: #d4cfd0; font-size: .72rem; font-weight: 850; }
.cal-event { display: block; margin-top: 9px; padding: 7px; border-radius: 7px; background: rgba(141,38,53,.2); border-left: 2px solid var(--accent-light); color: #f0dadd; font-size: .62rem; line-height: 1.25; cursor: pointer; }
.cal-event:hover { background: rgba(141,38,53,.34); }
.calendar-agenda-item { display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 10px 13px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #101013; }
.calendar-agenda-date { display: grid; place-items: center; align-self: stretch; padding: 8px 5px; border-right: 1px solid var(--line); }
.calendar-agenda-date strong { font: 800 1.7rem/1 "Roboto Condensed", "Arial Narrow", Impact, sans-serif; }
.calendar-agenda-date span { color: var(--accent-light); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.calendar-agenda-copy { min-width: 0; }
.calendar-agenda-copy h4 { margin: 0 0 4px; font-size: 1rem; }
.calendar-agenda-copy p { margin: 0 0 5px; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.calendar-agenda-copy span { color: #6fd3ad; font-size: .68rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.calendar-agenda-item .btn { grid-column: 2; width: 100%; }
.calendar-agenda-empty { padding: 26px 18px; border: 1px dashed var(--line-strong); border-radius: 12px; color: var(--muted); text-align: center; font-size: .84rem; }
.calendar-side { display: grid; gap: 16px; }
.side-card { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.side-card h3 { font-size: 1.65rem; }
.side-card .review-card { border: 0; padding: 0; background: transparent; }
.side-card .review-card blockquote { font-size: 1.02rem; }
.schedule-list { display: grid; gap: 11px; }
.schedule-item { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: #111114; }
.schedule-item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.schedule-item h4 { margin: 0 0 5px; font-size: .95rem; }
.schedule-item p { margin: 0; font-size: .76rem; }
.schedule-item .btn { margin-top: 15px; }

.shop-layout { display: grid; grid-template-columns: 1fr 330px; gap: 24px; align-items: start; }
.shop-main .product-grid { grid-template-columns: repeat(2, 1fr); }
.cart-panel { position: sticky; top: 98px; padding: 24px; border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius); }
.cart-panel h3 { font-size: 1.7rem; }
.cart-items { display: grid; gap: 13px; margin: 20px 0; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.cart-item strong { display: block; font-size: .81rem; }
.cart-item span { color: var(--muted); font-size: .72rem; }
.cart-remove { padding: 0; border: 0; background: transparent; color: #d97986; cursor: pointer; font-size: .68rem; }
.cart-total { display: flex; justify-content: space-between; margin: 19px 0; font-weight: 900; }
.empty-cart { padding: 22px 0; color: var(--muted); text-align: center; font-size: .85rem; }

.checkout-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.checkout-card { padding: 30px; border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius); }
.checkout-card h2 { font-size: 2.25rem; }
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 28px; }
.step { padding: 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); font-size: .73rem; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: .06em; }
.step.active { border-color: rgba(198,58,75,.6); background: rgba(141,38,53,.15); color: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #ccc6c7; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; padding: 11px 13px; color: white; background: #0f0f12; border: 1px solid var(--line-strong); border-radius: 9px; outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-light); box-shadow: 0 0 0 3px rgba(198,58,75,.11); }
.notice { padding: 15px; border-radius: 10px; background: rgba(215,168,74,.09); border: 1px solid rgba(215,168,74,.22); color: #e5c985; font-size: .78rem; }
.summary-lines { display: grid; gap: 12px; margin: 20px 0; }
.summary-line { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .84rem; }
.summary-line.total { padding-top: 14px; border-top: 1px solid var(--line); color: white; font-weight: 900; font-size: 1rem; }
.payment-mock { display: grid; gap: 11px; margin-top: 20px; }
.payment-option { padding: 15px; border-radius: 10px; border: 1px solid var(--line); background: #101013; }
.payment-option strong { display: block; font-size: .82rem; }
.payment-option span { color: var(--muted); font-size: .7rem; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 35px; }
.accordion { display: grid; gap: 10px; }
.accordion-item { border: 1px solid var(--line); border-radius: 13px; background: var(--panel); overflow: hidden; }
.accordion-btn { width: 100%; display: flex; justify-content: space-between; gap: 18px; padding: 19px 20px; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 850; }
.accordion-panel { display: none; padding: 0 20px 20px; }
.accordion-item.open .accordion-panel { display: block; }
.accordion-panel p { margin: 0; font-size: .88rem; }

.site-footer { padding: 62px 0 26px; border-top: 1px solid var(--line); background: #08080a; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 38px; }
.footer-brand p { max-width: 380px; margin-top: 18px; }
.footer-title { margin-bottom: 14px; color: white; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--muted); font-size: .82rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .72rem; }
.social-row { display: flex; gap: 8px; margin-top: 18px; }
.social-row a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; font-size: .72rem; font-weight: 850; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.modal.open { display: grid; }
.modal-card { width: min(100%, 560px); max-height: 90vh; overflow: auto; padding: 30px; border: 1px solid var(--line-strong); border-radius: 20px; background: #151519; box-shadow: var(--shadow); }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.modal-head h3 { font-size: 2rem; }
.modal-close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* SBR HEADER OPTION B */
.site-header .nav-wrap { height: 112px; align-items: flex-end; padding-bottom: 14px; }
.site-header .brand { position: relative; z-index: 2; width: 310px; height: 104px; margin: 0; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 12px; background: linear-gradient(145deg, #17171b, #09090b); box-shadow: 0 18px 42px rgba(0,0,0,.48); transform: translateY(34px); }
.site-header .brand img { width: 100%; height: 100%; max-height: none; object-fit: contain; object-position: center; }
.site-header .brand-copy { display: none; }
.site-header .nav-links, .site-header .header-actions { padding-bottom: 8px; }
.hero-grid { padding-top: 150px; }
.page-hero { padding-top: 145px; }
/* SBR INNER PAGE OPTION C */
.page-hero { padding: 42px 0 24px; }
.page-hero h1 { max-width: 980px; margin-bottom: 10px; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.page-hero .lead { max-width: 980px; margin-bottom: 0; font-size: 1rem; }
.page-hero .breadcrumb { margin-bottom: 8px; }
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero .filter-bar { margin: 16px 0 0; }
.page-hero + .section { padding-top: 30px; }
@media (max-width: 980px) {
  .site-header .nav-wrap { height: 92px; padding-bottom: 10px; }
  .site-header .brand { width: 230px; height: 82px; padding: 6px 10px; transform: translateY(24px); }
  .site-header .header-actions { padding-bottom: 4px; }
  .site-header .nav-links { padding-bottom: 0; }
  .hero-grid { padding-top: 130px; }
  .page-hero { padding-top: 130px; }
  .page-hero { padding: 38px 0 22px; }
  .page-hero + .section { padding-top: 26px; }
  .nav-links { position: fixed; inset: 79px 0 auto 0; display: none; padding: 30px 20px; background: rgba(9,9,11,.98); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .header-actions .btn { display: none; }
  .hero-grid, .calendar-layout, .checkout-layout, .faq-grid, .schedule-preview { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-proof { max-width: 620px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .course-detail { grid-template-columns: 1fr; }
  .course-visual { min-height: 330px; }
  .shop-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .hero-grid { padding: 120px 0 60px; gap: 36px; }
  h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-stats, .trust-grid, .card-grid, .split, .course-columns, .spec-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .product-grid, .shop-main .product-grid { grid-template-columns: 1fr; }
  .feature-panel { min-height: 430px; padding: 32px; }
  .event-row { grid-template-columns: 65px 1fr; }
  .event-row > .badge { grid-column: 2; justify-self: start; }
  .calendar-card { padding: 13px; overflow: visible; }
  .calendar-grid { min-width: 0; }
  .course-content { padding: 27px 22px; }
  .cta-band { padding: 34px 24px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 118px; }
  .brand-copy span { display: none; }
  .site-header .brand { width: 190px; height: 70px; padding: 5px 8px; transform: translateY(20px); }
  .page-hero { padding: 34px 0 20px; }
  .page-hero h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .page-hero .lead { font-size: .92rem; }
  .page-hero + .section { padding-top: 22px; }
}

@media (max-width: 720px) {
  .reviews-section { padding-top: 38px; }
  .review-carousel-tools { width: 100%; justify-content: space-between; }
  .review-slide { min-height: 340px; grid-template-columns: 1fr; align-content: center; gap: 24px; padding: 30px 24px; }
  .review-rating { align-self: auto; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-rating .eyebrow { margin-bottom: 0; }
  .review-slide blockquote { font-size: 1.25rem; }
}
/* SBR RESPONSIVE AUDIT */
.calendar-swipe-hint { display: none; margin: -5px 0 14px; color: var(--muted); font-size: .78rem; }
.calendar-layout > *, .shop-layout > *, .checkout-layout > * { min-width: 0; }
.course-mobile-toggle { display: none; width: 100%; min-height: 44px; margin: 4px 0 18px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.025); color: #efadb5; cursor: pointer; font-size: .74rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.course-columns[hidden] { display: none !important; }

.review-dot,
.review-dot.active {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
}
.review-dot::after { content: ""; width: 9px; height: 9px; border-radius: 99px; background: #555158; transition: width .25s ease, background .25s ease; }
.review-dot.active::after { width: 28px; background: var(--accent-light); }

@media (max-width: 980px) {
  html { overflow-x: hidden; }
  body { overflow-x: clip; }
  .nav-links { inset: 92px 0 auto 0; max-height: calc(100dvh - 92px); overflow-y: auto; }
  .nav-links.open { display: flex; gap: 0; }
  .nav-links.open a { width: 100%; min-height: 48px; display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links.open a:last-child { border-bottom: 0; }
  .menu-toggle, .icon-btn, .social-row a { width: 44px; height: 44px; }
  .card-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .footer-links a { display: flex; align-items: center; min-height: 36px; }
}

@media (min-width: 760px) and (max-width: 980px) {
  .hero { min-height: 720px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(280px,.8fr); gap: 26px; padding: 120px 0 70px; }
  .hero h1 { font-size: clamp(3.6rem, 7vw, 4.8rem); }
  .next-course { padding: 20px; }
  .hero-stats { gap: 7px; }
  .stat-card { padding: 14px 8px; }
  .page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 58px 0; }
  .section-tight { padding: 44px 0; }
  .section-heading { gap: 16px; margin-bottom: 28px; }
  .site-header .nav-wrap { height: 84px; }
  .site-header .brand { width: 184px; height: 68px; transform: translateY(18px); }
  .nav-links { inset: 84px 0 auto 0; max-height: calc(100dvh - 84px); padding: 22px 18px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: minmax(0,1fr); padding: 96px 0 48px; gap: 28px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(3.1rem, 15vw, 4.15rem); }
  .hero h1 span { display: inline-block; max-width: 100%; font-size: clamp(2.25rem, 11.3vw, 3.1rem); line-height: 1; letter-spacing: 0; white-space: nowrap; -webkit-text-stroke-width: 0; }
  .hero-copy .lead { margin-bottom: 24px; font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .next-course { padding: 20px; }
  .next-course .topline { gap: 10px; }
  .next-course h3 { margin-top: 18px; }
  .hero-stats { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
  .stat-card { padding: 12px 5px; }
  .stat-card strong { font-size: 1.08rem; }
  .stat-card span { font-size: .54rem; }
  .trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-item { padding: 18px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .training-card { min-height: 310px; padding: 24px; }
  .training-card p { min-height: 0; }
  .feature-panel { min-height: 0; padding: 28px 24px; }
  .feature-panel .large-number { font-size: 10rem; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; margin: 0 -14px 24px; padding: 0 14px 8px; scrollbar-width: thin; }
  .filter-btn { flex: 0 0 auto; min-height: 44px; }
  .course-stack { gap: 16px; }
  .course-visual { min-height: 230px; padding: 24px; }
  .course-visual h2 { left: 24px; bottom: 22px; font-size: clamp(2.15rem, 11vw, 3.15rem); }
  .course-content { padding: 24px 18px; }
  .course-content > p { font-size: .92rem; }
  .spec-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
  .spec { min-width: 0; padding: 11px 9px; }
  .spec strong { overflow-wrap: anywhere; }
  .course-columns { gap: 18px; }
  .course-mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .course-actions { display: grid; }
  .course-actions .btn { width: 100%; }
  .calendar-swipe-hint { display: block; }
  .calendar-card { padding: 14px; }
  .calendar-head { margin-bottom: 8px; }
  .calendar-head h3 { font-size: 1.55rem; }
  .calendar-grid { min-width: 0; }
  .calendar-month-grid { display: none; }
  .calendar-mobile-agenda { display: grid; gap: 10px; }
  .calendar-list-section { display: none; }
  .cal-day { min-height: 92px; padding: 8px; }
  .cal-event { font-size: .6rem; }
  .schedule-item { padding: 15px; }
  .schedule-item-top { gap: 10px; }
  .schedule-item-top .badge { flex: 0 0 auto; }
  .side-card { padding: 20px; }
  body[data-page="home"] .product-grid .product-card:nth-child(n+3) { display: none; }
  .product-card { padding: 12px; }
  .product-card-body { padding: 14px 4px 5px; }
  .product-actions { align-items: stretch; flex-direction: column; }
  .product-actions .btn { width: 100%; }
  .checkout-card { padding: 24px 18px; }
  .checkout-card h2 { font-size: 2rem; }
  .stepper { gap: 5px; }
  .step { padding: 10px 4px; font-size: .61rem; }
  .field.full label:has(input[type="checkbox"]) { display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; }
  .field input[type="checkbox"] { flex: 0 0 20px; width: 20px !important; height: 20px; margin: 0 !important; }
  .summary-line { gap: 12px; font-size: .78rem; }
  .summary-line strong { text-align: right; overflow-wrap: anywhere; }
  .info-card { padding: 26px !important; }
  .review-carousel-tools { width: 100%; }
  .review-slide { min-height: 320px; }
  .review-dots { gap: 0; margin-top: 8px; }
  .cta-band { padding: 30px 22px; }
  .cta-actions { display: grid; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { gap: 28px; }
  .social-row a { width: 44px; height: 44px; }
  .footer-bottom { margin-top: 34px; }
}

@media (max-width: 420px) {
  .next-course .topline { align-items: flex-start; flex-direction: column; }
  .event-row { grid-template-columns: 56px 1fr; gap: 13px; padding: 14px 12px; }
  .event-date { padding-right: 12px; }
  .event-info span { font-size: .72rem; }
  .schedule-item-top { display: grid; }
  .schedule-item-top .badge { justify-self: start; }
  .notice { font-size: .74rem; }
}