/* ============================================================
   COURSE PAGE — За закрытыми дверями
   Light editorial with dark accent cards
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.cp-hero {
  background: var(--parchment);
  padding-top: 72px;
  overflow: hidden;
}

.cp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 72px;
}

.cp-hero-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.cp-hero-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--wine);
  border: 1px solid var(--wine);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.cp-hero-heading {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 20px;
}

.cp-hero-sub {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

/* ── Hero Arch image ────────────────────────────────────── */
.cp-hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cp-hero-arch {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  background: var(--parchment2);
}

.cp-hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Features strip ──────────────────────────────────────── */
.cp-hero-features {
  background: var(--ivory);
  border-top: 1px solid var(--parchment2);
}

.cp-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cp-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 32px 36px;
  border-right: 1px solid var(--parchment2);
}

.cp-feature:last-child { border-right: none; }

.cp-feature-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.cp-feature-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wine);
}

.cp-feature-desc {
  display: block;
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* ── SHARED BUTTON ────────────────────────────────────────── */
.cp-btn {
  display: inline-flex;
  align-items: center;
  background: var(--wine);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s;
}

.cp-btn:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.cp-btn--sm {
  padding: 10px 24px;
  font-size: 13px;
  margin-top: 20px;
}

/* ── LIGHT SECTION (base) ─────────────────────────────────── */
.cp-section-light {
  background: var(--ivory);
  padding: 80px 0;
}

.cp-section-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cp-section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ── STORY CARD ────────────────────────────────────────────── */
.cp-story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--wine-dark);
  min-height: 560px;
}

.cp-story-card--reverse {
  direction: rtl;
}

.cp-story-card--reverse > * {
  direction: ltr;
}

.cp-story-photo {
  overflow: hidden;
}

.cp-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cp-story-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.cp-story-body h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.cp-story-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 12px;
}

.cp-story-body cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-top: 16px;
}

/* Checklist inside story */
.cp-check-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-check-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.cp-check-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 3px;
}

/* ── PROBLEM SECTION ──────────────────────────────────────── */
.cp-problem-card {
  background: var(--charcoal);
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 56px;
}

.cp-problems-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.cp-problems-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.cp-problems-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.5;
}

/* Silence block */
.cp-silence {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cp-silence h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.cp-silence-big {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 24px;
}

.cp-silence p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 12px;
}

.cp-silence-box {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 28px 0;
  text-align: left;
}

.cp-silence-box p {
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.5;
}

.cp-silence-box p:last-child { margin-bottom: 0; }

.cp-what-if {
  margin-top: 56px;
  padding: 48px;
  background: var(--wine-dark);
  border-radius: 16px;
  text-align: center;
}

.cp-what-if h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ── PROGRAM ──────────────────────────────────────────────── */
.cp-program {
  background: var(--charcoal);
  padding: 88px 0;
}

.cp-program-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 56px;
}

.cp-track-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
}

.cp-track-divider::before,
.cp-track-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* Women arch cards */
.cp-arch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.cp-arch-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--wine-deep);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.cp-arch-card:hover { transform: translateY(-6px); }

.cp-arch-img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  background-size: cover;
  background-position: center top;
  border-radius: 999px 999px 0 0;
  flex-shrink: 0;
}

.cp-arch-text {
  padding: 20px 16px 24px;
  flex: 1;
}

.cp-arch-num {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cp-arch-text h3 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.cp-arch-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* Men rect cards */
.cp-rect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cp-rect-card {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}

.cp-rect-card:hover { transform: translateY(-6px); }

.cp-rect-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,15,0.96) 40%, rgba(10,5,15,0.3) 100%);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cp-rect-overlay h3 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  margin-top: 6px;
  line-height: 1.3;
}

.cp-rect-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── THREE STEPS ──────────────────────────────────────────── */
.cp-steps-section {
  background: var(--parchment);
}

.cp-steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}

.cp-step-col {
  text-align: center;
  padding: 0 16px;
}

.cp-step-n {
  display: block;
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  color: rgba(123,45,62,0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.cp-step-col h3 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.cp-step-col p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.85;
}

.cp-step-arrow {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.6;
  padding-top: 40px;
  flex-shrink: 0;
}

/* ── REVIEWS ──────────────────────────────────────────────── */
.cp-reviews {
  background: var(--wine-deep);
  padding: 88px 0;
}

.cp-reviews-eyebrow {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.cp-reviews-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}

.cp-reviews-sub {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 52px;
  line-height: 1.7;
}

.cp-reviews-sub em { font-style: italic; }

.cp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cp-review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.cp-review-card:hover {
  border-color: rgba(184,137,58,0.3);
  transform: translateY(-4px);
}

.cp-review-body {
  padding: 28px 24px;
}

.cp-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.cp-review-body p {
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cp-review-body cite {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.cp-faqs {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.cp-faq-item {
  border-bottom: 1px solid var(--parchment2);
}

.cp-faq-item:first-child { border-top: 1px solid var(--parchment2); }

.cp-faq-item summary {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}

.cp-faq-item summary::-webkit-details-marker { display: none; }

.cp-faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--wine);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.cp-faq-item[open] summary::after { transform: rotate(45deg); }
.cp-faq-item summary:hover { color: var(--wine); }

.cp-faq-item p {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.85;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cp-cta-card {
  background: var(--wine-dark);
  border-radius: 24px;
  padding: 72px 80px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cp-cta-card h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cp-cta-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cp-cta-contacts {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}

.cp-cta-contacts a {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.cp-cta-contacts a:hover { color: var(--white); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .cp-arch-grid { grid-template-columns: repeat(3, 1fr); }
  .cp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-hero-inner { gap: 40px; }
}

@media (max-width: 1024px) {
  .cp-rect-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-steps-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cp-step-arrow { display: none; }
  .cp-step-col {
    padding: 24px 0;
    border-bottom: 1px solid var(--parchment2);
    text-align: left;
  }
  .cp-step-col:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .cp-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .cp-hero-visual { display: none; }
  .cp-story-card {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr;
  }
  .cp-story-card--reverse { direction: ltr; }
  .cp-story-photo { height: 320px; }
  .cp-story-card--reverse .cp-story-photo { order: -1; }
  .cp-story-body { padding: 40px 32px; }
  .cp-cta-card { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .cp-features-row { grid-template-columns: 1fr; }
  .cp-feature { border-right: none; border-bottom: 1px solid var(--parchment2); }
  .cp-feature:last-child { border-bottom: none; }
  .cp-arch-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-rect-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-problems-list { grid-template-columns: 1fr; }
  .cp-reviews-grid { grid-template-columns: 1fr 1fr; }
  .cp-problem-card { padding: 28px 24px; }
  .cp-what-if { padding: 36px 28px; }
}

@media (max-width: 520px) {
  .cp-arch-grid { grid-template-columns: 1fr; }
  .cp-rect-grid { grid-template-columns: 1fr; }
  .cp-reviews-grid { grid-template-columns: 1fr; }
  .cp-hero-heading { font-size: 22px; }
  .cp-cta-card { padding: 40px 24px; }
}
