/* ── PAGE: ART SCHOOL ── */

/* PROGRAM CARDS */
.programs {
  padding: 100px 50px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}
.section-head h2 em {
  font-style: italic;
  color: var(--gold);
}
.section-head p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-mute);
  text-wrap: pretty;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.prog-card {
  position: relative;
  padding: 34px 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: var(--surface-2);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.prog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.prog-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}
.prog-card:hover::before { opacity: 1; }

.prog-card.featured {
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.08) 0%, var(--surface-2) 60%);
  border-color: var(--gold-dim);
}
.prog-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gold);
  color: #070707;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.prog-num {
  font-family: var(--font-playfair-display), serif;
  font-size: 50px;
  font-weight: 900;
  color: rgba(200, 169, 110, 0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.prog-title {
  font-family: var(--font-playfair-display), serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #fff;
}
.prog-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.prog-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mute);
  margin-bottom: 22px;
  flex: 1;
}
.prog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prog-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text);
}
.prog-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.prog-foot {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}
.prog-price {
  font-family: var(--font-playfair-display), serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.prog-price .cur {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
}
.prog-price-unit {
  font-size: 10px;
  color: var(--text-soft);
  margin-top: 4px;
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.prog-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s;
}
.prog-cta:hover {
  background: var(--gold);
  color: #070707;
  border-color: var(--gold);
}
.prog-cta svg {
  width: 11px; height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CURRICULUM */
.curriculum {
  padding: 80px 50px;
  max-width: 1300px;
  margin: 0 auto;
}
.curr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.curr-side h2 {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
}
.curr-side h2 em { font-style: italic; color: var(--gold); }
.curr-side p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-mute);
  margin-bottom: 26px;
  text-wrap: pretty;
}

.curr-stages {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stage {
  display: flex;
  gap: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.stage:hover {
  border-color: var(--gold-dim);
  background: var(--gold-glow);
}
.stage-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-playfair-display), serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}
.stage-name {
  font-family: var(--font-playfair-display), serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.stage-age {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.stage-desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-mute);
}

/* INSTRUCTORS */
.instructors {
  padding: 80px 50px;
  max-width: 1300px;
  margin: 0 auto;
}
.inst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.inst-card {
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: var(--surface-2);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.inst-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.inst-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-playfair-display), serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
}
.inst-name {
  font-family: var(--font-playfair-display), serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.inst-role {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.inst-bio {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-mute);
}

/* FAQ */
.faq-section {
  padding: 80px 50px 100px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: var(--glass);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--gold-dim); }
.faq-q {
  padding: 20px 24px;
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  outline: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-family: var(--font-playfair-display), serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after {
  content: "−";
}
.faq-a {
  padding: 0 24px 22px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-mute);
  text-wrap: pretty;
}

@media (max-width: 1100px) {
  .programs, .curriculum, .instructors, .faq-section { padding-left: 32px; padding-right: 32px; }
  .programs-grid { gap: 22px; }
  .inst-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; }
  .curr-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .programs, .curriculum, .instructors, .faq-section { padding-left: 20px; padding-right: 20px; }
  .programs { padding-top: 70px; }
  .inst-grid { grid-template-columns: 1fr; }
}
