/*
 * Pachavega — Courses Page
 * Brand: Sage #709970 | Cream #E8E5D9 | Clay #AC675A | Ink #363035 | Maroon #6D3B36
 * Rule: border-radius: 0 everywhere — no rounded corners
 */

:root {
  --c-sage:   #709970;
  --c-cream:  #E8E5D9;
  --c-clay:   #AC675A;
  --c-ink:    #363035;
  --c-maroon: #6D3B36;
  --c-white:  #FFFFFF;
  --c-trans:  0.22s ease;
  --c-max:    1240px;
  --c-pad:    clamp(20px, 5vw, 80px);
}

/* ── Reset ── */
.pvc-page *, .pvc-page *::before, .pvc-page *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}
.pvc-page { font-family: "Glacial Indifference", Arial, sans-serif; }
.pvc-page h1,.pvc-page h2,.pvc-page h3,.pvc-page h4 { margin: 0; line-height: 1.15; }
.pvc-page p  { margin: 0; line-height: 1.65; }
.pvc-page ul { list-style: none; margin: 0; padding: 0; }
.pvc-page a  { text-decoration: none; }
.pvc-page img { display: block; max-width: 100%; object-fit: cover; }

/* ── Container ── */
.pvc-wrap {
  width: 100%;
  max-width: var(--c-max);
  margin: 0 auto;
  padding: 0 var(--c-pad);
}

/* ── Buttons ── */
.pvc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--c-trans), color var(--c-trans), border-color var(--c-trans);
  border-radius: 0 !important;
  white-space: nowrap;
}
.pvc-btn--primary {
  background: var(--c-clay);
  color: var(--c-white);
  border-color: var(--c-clay);
}
.pvc-btn--primary:hover {
  background: var(--c-maroon);
  border-color: var(--c-maroon);
  color: var(--c-white);
}
.pvc-btn--outline {
  background: transparent;
  color: var(--c-maroon);
  border-color: var(--c-maroon);
}
.pvc-btn--outline:hover {
  background: var(--c-maroon);
  color: var(--c-white);
}
.pvc-btn--light {
  background: var(--c-cream);
  color: var(--c-maroon);
  border-color: var(--c-cream);
}
.pvc-btn--light:hover {
  background: var(--c-white);
  border-color: var(--c-white);
}

/* ── Section labels ── */
.pvc-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pvc-label--sage   { color: var(--c-sage); }
.pvc-label--clay   { color: var(--c-clay); }
.pvc-label--cream  { color: var(--c-cream); opacity: .7; }
.pvc-label--maroon { color: var(--c-maroon); }

/* ═══════════════════════════════
   1. HERO
═══════════════════════════════ */
.pvc-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.pvc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.pvc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(54,48,53,.92) 0%,
    rgba(54,48,53,.60) 45%,
    rgba(109,59,54,.20) 100%
  );
}
.pvc-hero__content {
  position: relative;
  padding: 80px var(--c-pad) 72px;
  width: 100%;
  max-width: var(--c-max);
  margin: 0 auto;
}
.pvc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pvc-hero__line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-clay);
}
.pvc-hero__eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--c-clay);
}
.pvc-hero__title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 20px;
  max-width: 700px;
}
.pvc-hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(232,229,217,.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.pvc-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.pvc-hero__scroll {
  position: absolute;
  bottom: 28px;
  right: var(--c-pad);
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(232,229,217,.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pvc-hero__scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(232,229,217,.30);
}

/* ═══════════════════════════════
   2. INTRO STRIP
═══════════════════════════════ */
.pvc-intro {
  background: var(--c-maroon);
  padding: 28px var(--c-pad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pvc-intro p {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  color: rgba(232,229,217,.85);
  text-align: center;
  max-width: 860px;
}
.pvc-intro strong { color: var(--c-cream); }

/* ═══════════════════════════════
   3. ONLINE COURSES
═══════════════════════════════ */
.pvc-online {
  background: var(--c-cream);
  padding: 80px 0;
}
.pvc-section-head {
  margin-bottom: 56px;
}
.pvc-section-head__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.pvc-section-head__desc {
  font-size: 15px;
  color: rgba(54,48,53,.72);
  max-width: 600px;
}

/* Sub-heading divider */
.pvc-sub-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.pvc-sub-head h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-maroon);
  white-space: nowrap;
}
.pvc-sub-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(109,59,54,.20);
}

/* Course grid */
.pvc-grid { display: grid; gap: 2px; margin-bottom: 48px; }
.pvc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pvc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pvc-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Course card */
.pvc-card {
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow var(--c-trans), transform var(--c-trans);
}
.pvc-card:hover {
  box-shadow: 0 12px 40px rgba(54,48,53,.14);
  transform: translateY(-2px);
  z-index: 1;
  position: relative;
}
.pvc-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-cream);
}
.pvc-card__img img {
  width: 100%;
  height: 100%;
  transition: transform .40s ease;
}
.pvc-card:hover .pvc-card__img img { transform: scale(1.04); }
.pvc-card__badge {
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--c-clay);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.pvc-card__body {
  padding: 22px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--c-cream);
}
.pvc-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1.25;
}
.pvc-card__desc {
  font-size: 13px;
  color: rgba(54,48,53,.68);
  flex: 1;
  line-height: 1.55;
}
.pvc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(54,48,53,.08);
}
.pvc-card__price {
  font-size: 18px;
  font-weight: 900;
  color: var(--c-maroon);
}
.pvc-card__price small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(54,48,53,.50);
  display: block;
  margin-bottom: 2px;
}
.pvc-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-clay);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--c-trans), gap var(--c-trans);
}
.pvc-card__link:hover { color: var(--c-maroon); gap: 9px; }

/* Featured card variant (chef cert) */
.pvc-card--featured .pvc-card__body { border-top-color: var(--c-maroon); }
.pvc-card--featured .pvc-card__title { color: var(--c-maroon); }

/* ═══════════════════════════════
   4. WHY PACHAVEGA
═══════════════════════════════ */
.pvc-why {
  background: var(--c-ink);
  padding: 80px 0;
}
.pvc-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pvc-why__text .pvc-section-head__title { color: var(--c-cream); }
.pvc-why__text .pvc-section-head__desc  { color: rgba(232,229,217,.65); }
.pvc-why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pvc-stat {
  background: rgba(232,229,217,.06);
  padding: 28px 24px;
  border-left: 3px solid var(--c-clay);
}
.pvc-stat__num {
  font-size: 38px;
  font-weight: 900;
  color: var(--c-clay);
  line-height: 1;
  margin-bottom: 6px;
}
.pvc-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,229,217,.60);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pvc-why__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.pvc-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(232,229,217,.78);
  font-size: 14px;
  line-height: 1.5;
}
.pvc-why__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-sage);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   5. IN-PERSON RETREATS
═══════════════════════════════ */
.pvc-retreats {
  background: var(--c-white);
  padding: 80px 0;
}
.pvc-retreat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
/* Retreat card */
.pvc-rcard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pvc-rcard__img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.pvc-rcard__img img { width: 100%; height: 100%; }
.pvc-rcard__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(54,48,53,.55), transparent 50%);
}
.pvc-rcard__dates {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--c-maroon);
  color: rgba(232,229,217,.90);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 1;
}
.pvc-rcard__body {
  background: var(--c-cream);
  padding: 26px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--c-maroon);
}
.pvc-rcard__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1.2;
}
.pvc-rcard__desc {
  font-size: 13px;
  color: rgba(54,48,53,.68);
  flex: 1;
  line-height: 1.55;
}
.pvc-rcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(54,48,53,.10);
  margin-top: 4px;
}
.pvc-rcard__price {
  font-size: 19px;
  font-weight: 900;
  color: var(--c-maroon);
}
.pvc-rcard__price small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(54,48,53,.45);
  display: block;
  margin-bottom: 2px;
}

/* ═══════════════════════════════
   6. APPROVED BY
═══════════════════════════════ */
.pvc-approved {
  background: var(--c-cream);
  padding: 64px 0;
  border-top: 1px solid rgba(109,59,54,.12);
}
.pvc-approved__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.pvc-approved__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(54,48,53,.45);
  white-space: nowrap;
}
.pvc-approved__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.pvc-approved__logos img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .80;
  transition: opacity var(--c-trans), filter var(--c-trans);
}
.pvc-approved__logos img:hover { opacity: 1; filter: none; }

/* ═══════════════════════════════
   7. TESTIMONIALS
═══════════════════════════════ */
.pvc-testimonials {
  background: var(--c-white);
  padding: 80px 0;
  border-top: 1px solid rgba(54,48,53,.08);
}
.pvc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.pvc-testi {
  background: var(--c-cream);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 3px solid var(--c-sage);
}
.pvc-testi__quote {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-sage);
  line-height: 1;
  margin-bottom: -6px;
}
.pvc-testi__text {
  font-size: 14px;
  color: rgba(54,48,53,.80);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.pvc-testi__author {
  border-top: 1px solid rgba(54,48,53,.10);
  padding-top: 16px;
}
.pvc-testi__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-maroon);
  margin-bottom: 3px;
}
.pvc-testi__role {
  font-size: 12px;
  color: rgba(54,48,53,.50);
}

/* ═══════════════════════════════
   8. FINAL CTA BAND
═══════════════════════════════ */
.pvc-cta-band {
  background: var(--c-maroon);
  padding: 72px var(--c-pad);
  position: relative;
  overflow: hidden;
}
.pvc-cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(172,103,90,.22), transparent 68%);
  pointer-events: none;
}
.pvc-cta-band__inner {
  position: relative;
  max-width: var(--c-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pvc-cta-band__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--c-cream);
  max-width: 540px;
  line-height: 1.2;
}
.pvc-cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .pvc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pvc-why__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .pvc-grid--4,
  .pvc-grid--2,
  .pvc-retreat-grid,
  .pvc-testi-grid { grid-template-columns: 1fr; }
  .pvc-why__stats { grid-template-columns: 1fr 1fr; }
  .pvc-hero__title { font-size: clamp(36px, 8vw, 52px); }
}

@media (max-width: 480px) {
  .pvc-why__stats { grid-template-columns: 1fr; }
  .pvc-cta-band__inner { flex-direction: column; align-items: flex-start; }
  .pvc-hero__ctas { flex-direction: column; }
}
