:root {
  --bg: #FBFFFE;
  --text: #1a1f2b;
  --text-soft: rgba(26,31,43,0.65);
  --blue: #1F2E52;
  --blue-soft: #3a4d80;
  --green: #5A7F4E;
  --red: #A9232E;
  --card: #FFFFFF;
  --line: rgba(31,46,82,0.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

a { color: inherit; }

/* Top banner */
.topbar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 8px 16px;
}
.topbar a {
  text-decoration: underline;
  font-weight: 800;
  color: #fff;
}

/* Header */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  border-radius: 8px;
  transform: rotate(-6deg);
  flex-shrink: 0;
}
.logo-text {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-text em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
}
.nav-links {
  display: none;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 150ms ease;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 150ms ease;
}
.nav-cta:hover { transform: translateY(-2px); }

.site-header { position: relative; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
  cursor: pointer;
  padding: 4px 6px;
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 859px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 16px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(31,46,82,0.10);
    gap: 16px;
    z-index: 20;
  }
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 110px) 24px clamp(56px, 9vw, 130px);
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  transform: rotate(-2deg);
  margin-bottom: 32px;
}
.hero h1 {
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(44px, 9vw, 108px);
  color: var(--blue);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero p {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text-soft);
}

.info-bar {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31,46,82,0.06);
}
.info-bar > div {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.info-bar > div:last-child { border-right: none; }
.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.info-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 3px;
}
.info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.info-value a { text-decoration: none; }
.info-value a:hover { color: var(--blue); }

.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary, .btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 999px;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 0 rgba(31,46,82,0.15);
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-ghost {
  color: var(--blue);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); background: var(--blue); color: #fff; }

/* Promo grid */
.promo-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.promo-card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(31,46,82,0.10);
}
.promo-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.promo-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--blue);
}
.promo-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* Coming soon page */
.soon-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 60px 24px;
}
.soon-card {
  max-width: 560px;
  text-align: center;
}
.soon-card .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.soon-card h1 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 76px);
  line-height: 0.95;
  margin: 0 0 20px;
  color: var(--blue);
}
.soon-card h1 em {
  font-style: normal;
  color: var(--red);
}
.soon-card p {
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 32px;
}
.soon-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.soon-info > div {
  text-align: left;
  min-width: 160px;
}
.soon-info .lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 4px;
}
.soon-info a { text-decoration: none; font-weight: 700; color: var(--text); }
.soon-info a:hover { color: var(--blue); }

/* Page hero (subpages) */
.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) 24px 40px;
  text-align: center;
}
.page-hero .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.page-hero h1 {
  margin: 0 0 16px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(34px, 6vw, 58px);
  color: var(--blue);
}
.page-hero h1 em {
  font-style: normal;
  color: var(--green);
}
.page-hero .lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Prose / content sections */
.page-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.page-section h2 {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 16px;
}
.page-section p {
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
}
.page-section p:last-child { margin-bottom: 0; }

/* Fact callouts (real, confirmed details) */
.fact-grid {
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.fact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 20px 22px;
}
.fact-card .fact-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.fact-card .fact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
}

/* Placeholder image blocks */
.placeholder-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, rgba(31,46,82,0.05), rgba(31,46,82,0.05) 10px, rgba(31,46,82,0.02) 10px, rgba(31,46,82,0.02) 20px);
  border: 2px dashed var(--line);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.ph-16x9 { aspect-ratio: 16 / 9; width: 100%; }
.ph-square { aspect-ratio: 1 / 1; width: 100%; }

/* Pro roster grid */
.pro-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pro-card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(31,46,82,0.10);
}
.pro-card .pro-body { padding: 20px 22px; }
.pro-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue);
}
.pro-card .pro-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.pro-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}

/* Individual pro bio page */
.pro-bio {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 640px) {
  .pro-bio { grid-template-columns: 1fr; }
}
.pro-bio .pro-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.book-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.book-link:hover { color: var(--blue); border-color: var(--blue); }

/* Schedule block (editable content, not hardcoded dates) */
.schedule-block {
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.schedule-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 28px 8px;
}
.schedule-card .schedule-note {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-list .day {
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.schedule-list .detail { color: var(--text-soft); text-align: right; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px;
  background: var(--card);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-soft);
}
