/* Developing Directors — site stylesheet */

:root {
  --black: #111111;
  --white: #ffffff;
  --yellow: #f2ef88;
  --yellow-soft: #f7f5b8;
  --text: #2b2b2b;
  --text-light: #555555;
  --max-width: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active { border-bottom-color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions .linkedin svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.btn-enroll {
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-enroll:hover { background: var(--white); color: var(--black); }

.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s;
}

.nav-toggle-label span { top: 10px; }
.nav-toggle-label span::before { top: -8px; }
.nav-toggle-label span::after { top: 8px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../assets/asset2.webp") center / cover no-repeat;
  padding: 100px 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero .tagline {
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-style: italic;
  font-weight: 600;
  margin-top: 18px;
}

.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  padding: 18px 56px;
  margin-top: 48px;
  transition: filter 0.15s;
}

.btn-yellow:hover { filter: brightness(0.95); }

/* ---------- Generic sections ---------- */

section { padding: 80px 0; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Intro (yellow band) ---------- */

.intro { background: var(--yellow); text-align: center; }

.intro p {
  max-width: 880px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.btn-outline-dark {
  display: inline-block;
  border: 1px solid var(--black);
  color: var(--black);
  text-decoration: none;
  padding: 14px 34px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ---------- Programs ---------- */

.programs .lede {
  max-width: 820px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

.offerings h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}

details.accordion {
  border-bottom: 1px solid #e2e2e2;
}

details.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 36px 16px 0;
  font-weight: 500;
  position: relative;
  font-size: 1rem;
}

details.accordion summary::-webkit-details-marker { display: none; }

details.accordion summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
}

details.accordion[open] summary::after { content: "\2212"; }

details.accordion .accordion-body {
  padding: 0 8px 20px 0;
  color: var(--text-light);
  font-size: 0.97rem;
}

.programs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Registration ---------- */

.registration {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../assets/asset2.webp") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.registration .btn-yellow { margin-top: 28px; }

/* ---------- Benefits ---------- */

.benefits { background: #fafaf5; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 12px;
}

.benefits h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.benefits ul { list-style: none; }

.benefits li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid #ececdf;
}

.benefits li::before {
  content: "\2713";
  position: absolute;
  left: 4px;
  color: var(--black);
  font-weight: 700;
}

/* ---------- FAQ ---------- */

.faq .contact-line {
  margin-top: 40px;
  font-size: 1.05rem;
}

.faq .contact-line a { font-weight: 600; }

/* ---------- About the directors ---------- */

.about { background: var(--yellow-soft); }

.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 16px;
}

.director img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  margin-bottom: 22px;
}

.director h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* ---------- Clients ---------- */

.clients ul {
  list-style: none;
  columns: 2;
  column-gap: 64px;
  max-width: 800px;
}

.clients li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  break-inside: avoid;
}

/* ---------- Testimonials ---------- */

.testimonials { background: var(--black); color: var(--white); }

.testimonial-list {
  display: grid;
  gap: 56px;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial .attribution {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonial .attribution img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.testimonial .attribution cite {
  font-style: normal;
  font-size: 0.95rem;
  color: #d8d8d8;
}

/* ---------- Coaching page ---------- */

.page-hero {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}

.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.package {
  border: 1px solid #e4e4e4;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.package.featured { background: var(--yellow-soft); border-color: var(--yellow); }

.package h3 { font-size: 1.2rem; }

.package .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 22px;
}

.package ul { list-style: none; flex: 1; }

.package li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 0.96rem;
  color: var(--text-light);
}

.package li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--black);
  font-weight: 700;
}

.package .btn-yellow {
  margin-top: 28px;
  text-align: center;
  padding: 14px 0;
}

/* ---------- Enroll page ---------- */

.catalog-section h2 {
  font-size: 1.5rem;
  margin: 48px 0 20px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product {
  border: 1px solid #e4e4e4;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product h3 { font-size: 1.05rem; font-weight: 600; }

.product .price { font-weight: 700; }

.product .btn-yellow,
.product .sold-out {
  margin-top: auto;
  text-align: center;
  padding: 12px 0;
  font-size: 0.95rem;
}

.product .btn-yellow { margin-top: 16px; }

.product .sold-out {
  margin-top: 16px;
  background: #eee;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 14px 0;
}

.enroll-note {
  background: var(--yellow-soft);
  padding: 20px 26px;
  margin: 28px 0 8px;
  font-size: 0.98rem;
}

/* ---------- Privacy ---------- */

.prose {
  max-width: 760px;
}

.prose p { margin-bottom: 20px; font-size: 1.02rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: #cfcfcf;
  padding: 56px 0;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.site-footer a { color: var(--white); }

.footer-links { display: flex; gap: 24px; align-items: center; }

.site-footer .linkedin svg { width: 20px; height: 20px; fill: var(--white); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .programs-grid,
  .benefits-grid,
  .directors-grid { grid-template-columns: 1fr; }

  .programs-photo { order: -1; }

  .packages-grid { grid-template-columns: 1fr; }

  .clients ul { columns: 1; }
}

@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }

  .nav-toggle-label { display: block; order: 3; }

  .header-actions { margin-left: auto; }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    order: 4;
    padding-top: 12px;
  }

  .main-nav a { padding: 8px 0; }

  .nav-toggle:checked ~ .main-nav { display: flex; }

  section { padding: 56px 0; }
}
