/* ===================================================
   ポッドキャストビズ - メインスタイルシート
   bare-home-453.css
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4982a;
  --gold-hover: #c08a22;
  --dark: #1a1a1a;
  --text: #333333;
  --muted: #666666;
  --bg: #f5f0eb;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --trans: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 8px 0;
  font-size: 12px;
  color: var(--muted);
}
.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar__item i { color: var(--gold); font-size: 11px; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: var(--trans);
}
.header.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__svg { width: 40px; height: 40px; flex-shrink: 0; }
.logo__text {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
}
.logo__text span { color: var(--gold); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--trans);
}
.nav__item a:hover,
.nav__item a.active { color: var(--gold); }

.header__cta { display: flex; align-items: center; gap: 12px; }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 16px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
.mobile-nav .nav__item a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 15px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  transition: var(--trans);
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,152,42,0.35);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--sm { padding: 9px 18px; font-size: 13px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.35) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}
.hero__label {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Noto Serif JP', serif;
}
.hero__title span { color: var(--gold); }
.hero__text {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero stats */
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Noto Serif JP', serif;
}
.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* ===== LOGOS STRIP ===== */
.logos-strip {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.logos-strip__label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.logos-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logos-strip__item {
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== SECTION DEFAULTS ===== */
.section { padding: 90px 0; }
.section--bg-white { background: var(--white); }
.section--bg-gold { background: var(--gold); }
.section--bg-dark { background: var(--dark); }

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 40px;
}
.section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section__title {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  font-family: 'Noto Serif JP', serif;
}
.section__title--white { color: var(--white); }
.section__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}
.section__desc--white { color: rgba(255,255,255,0.85); }

/* ===== BENEFITS / COURSES GRID ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.course-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.course-card__body { padding: 22px; }
.course-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.course-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.course-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.course-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.course-card__duration { font-size: 12px; color: var(--muted); }
.course-card__price {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gold);
  border-radius: 16px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1160px;
}
.cta-banner__deco {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.cta-banner__deco--tl { top: -60px; left: -60px; }
.cta-banner__deco--br { bottom: -80px; right: -60px; width: 260px; height: 260px; }
.cta-banner__title-thin {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.cta-banner__title {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  margin: 6px 0 14px;
}
.cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.cta-banner .btn--outline {
  border-color: var(--white);
  color: var(--white);
}
.cta-banner .btn--outline:hover {
  background: var(--white);
  color: var(--gold);
}

/* ===== HOW IT WORKS ===== */
.steps { display: flex; flex-direction: column; gap: 40px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  font-family: 'Noto Serif JP', serif;
}
.step__content { padding-top: 6px; }
.step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step__desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

.step-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.step-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative;
  border: 2px solid transparent;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212,152,42,0.18);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__plan {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-size: 44px;
  font-weight: 900;
  color: var(--dark);
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-card__period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
.pricing-card__feat i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.pricing-card__feat--off { color: #bbb; }
.pricing-card__feat--off i { color: #ddd; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-card__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testi-card__quote::before { content: '\201C'; color: var(--gold); font-size: 32px; line-height: 0.6; vertical-align: -10px; margin-right: 4px; }
.testi-card__author { display: flex; align-items: center; gap: 14px; }
.testi-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}
.testi-card__name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-card__role { font-size: 12px; color: var(--muted); }
.testi-card__stars { color: var(--gold); font-size: 13px; margin-bottom: 2px; }

/* ===== NEWS / EVENTS GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-card__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.news-card__body { padding: 20px; }
.news-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.news-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.news-card__date { font-size: 12px; color: var(--muted); }

/* ===== FORM SECTION ===== */
.form-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.form-section__content { flex: 1; }
.form-section__img-wrap {
  flex-shrink: 0;
  width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}
.form-section__img { width: 100%; height: 100%; object-fit: cover; }

.form__title {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Noto Serif JP', serif;
}
.form__subtitle { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.form__group { margin-bottom: 16px; }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus { border-color: var(--gold); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.form__check input { margin-top: 3px; accent-color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 14px 0 20px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--trans);
}
.footer__social a:hover { background: var(--gold); color: var(--white); }

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--trans);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.footer__contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: var(--trans); }
.footer__legal a:hover { color: var(--gold); }

/* ===== COOKIES GDPR ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
#cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 260px;
}
#cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn--sm { white-space: nowrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  padding: 110px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,152,42,0.15), transparent 60%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== INNER PAGE CONTENT ===== */
.inner-content {
  max-width: 860px;
  margin: 0 auto;
}
.inner-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 14px;
  font-family: 'Noto Serif JP', serif;
}
.inner-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}
.inner-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.inner-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.inner-content ul li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 6px;
}
.inner-content a { color: var(--gold); text-decoration: underline; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(212,152,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info__label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info__val { font-size: 15px; color: var(--text); line-height: 1.55; }

/* ===== EVENT NEWS PAGE ===== */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: var(--trans);
}
.event-card:hover { box-shadow: var(--shadow); }
.event-card__date-block {
  flex-shrink: 0;
  width: 72px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}
.event-card__day { font-size: 28px; font-weight: 900; color: var(--white); line-height: 1; }
.event-card__month { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; }
.event-card__body { padding: 20px 22px; }
.event-card__type { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.event-card__title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.event-card__desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===== HIGHLIGHT FEATURES ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212,152,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.feature-item__title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.feature-item__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== MISSION SPLIT ===== */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-split__img { border-radius: var(--radius); overflow: hidden; }
.mission-split__img img { width: 100%; height: 460px; object-fit: cover; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-split { gap: 36px; }
}
@media (max-width: 768px) {
  .hero__title { font-size: 36px; }
  .section__title { font-size: 28px; }
  .section__header { flex-direction: column; gap: 16px; }
  .courses-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-section { flex-direction: column; }
  .form-section__img-wrap { width: 100%; }
  .events-grid { grid-template-columns: 1fr; }
  .mission-split { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: flex; }
  .header__cta .btn--outline { display: none; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner__title { font-size: 28px; }
  .hero__stats { gap: 20px; }
  .hero__stat-num { font-size: 26px; }
  .top-bar { display: none; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .hero__ctas { flex-direction: column; }
  .page-hero__title { font-size: 30px; }
  #cookie-banner { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
