/* Home hero */
.hero {
  position: relative;
  height: calc(100vw * 286 / 1024);
  max-height: 520px;
  min-height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--navy);
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4% 0 5%;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(22px, 3.8vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 .5em;
  max-width: 42%;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero__sub {
  font-size: clamp(11px, 1.4vw, 18px);
  line-height: 1.5;
  color: #fff;
  margin: 0 0 1em;
  max-width: 46%;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero__cta {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--gold), #E0A93A);
  color: #fff;
  font-size: clamp(11px, 1.2vw, 16px);
  font-weight: 700;
  padding: .6em 1.8em;
  border-radius: var(--r-sm);
  box-shadow: 0 4px 16px rgba(200,148,31,.4);
}

/* Divisions section */
.divisions { background: var(--bg-light); padding: 64px 0 96px; }

/* Who We Are section */
.who-we-are { background: #fff; padding: 96px 0; }
.who-we-are__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.who-we-are__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-hero);
}
.who-we-are__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.who-we-are__photo-caption {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--gold);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  border-top-right-radius: var(--r-md);
}
.who-we-are__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.who-we-are__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
  color: var(--navy);
  margin: 0 0 22px;
}
.who-we-are__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 34px;
  max-width: 520px;
}

/* Partnerships dark section */
.partnerships { background: var(--navy); color: #fff; padding: 90px 0; }

/* Milestones section */
.milestones { background: #fff; padding: 90px 0; }

/* Leadership teaser */
.leadership-teaser { background: var(--bg-light); padding: 96px 0; }
.leadership-teaser__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.leadership-teaser__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.leadership-teaser__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.leadership-teaser__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 8px;
}
.leadership-teaser__role {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 26px;
}
.leadership-teaser__body {
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-body);
  margin: 0 0 30px;
  max-width: 560px;
}
.leadership-teaser__badges { display: flex; gap: 42px; flex-wrap: wrap; margin-bottom: 34px; }

/* CCDYA section */
.ccdya-section { background: #fff; padding: 90px 0; }
.ccdya-section__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

/* News section */
.news-section { background: #fff; padding: 90px 0; }

/* Contact CTA */
.contact-cta { position: relative; }

/* ── Home page responsive ─────────────────────────────────── */

/* Laptop */
@media (max-width: 1199px) {
  .who-we-are__grid       { gap: 40px; }
  .leadership-teaser__grid{ gap: 48px; }
}

/* Tablet */
@media (max-width: 991px) {
  /* Hero — widen text blocks */
  .hero__title  { max-width: 62%; }
  .hero__sub    { max-width: 66%; }

  /* Section padding */
  .divisions, .who-we-are, .partnerships,
  .milestones, .leadership-teaser,
  .ccdya-section, .news-section     { padding: 64px 0; }

  /* Stack two-column grids */
  .who-we-are__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .who-we-are__photo { max-width: 560px; margin: 0 auto; width: 100%; }

  .who-we-are__stats { grid-template-columns: repeat(2, 1fr); }

  .leadership-teaser__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .leadership-teaser__photo { max-width: 360px; margin: 0 auto; width: 100%; }

  .ccdya-section__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Mobile */
@media (max-width: 767px) {
  /* Hero */
  .hero         { height: 56vw; min-height: 260px; }
  .hero__title  { max-width: 85%; }
  .hero__sub    { max-width: 90%; display: none; } /* hide subtitle on very small */
  .hero__cta    { padding: .7em 1.6em; }

  /* Section padding */
  .divisions, .who-we-are, .partnerships,
  .milestones, .leadership-teaser,
  .ccdya-section, .news-section     { padding: 48px 0; }

  .leadership-teaser__badges { gap: 24px; margin-bottom: 24px; }
}

@media (max-width: 479px) {
  .hero         { min-height: 240px; }
  .hero__title  { max-width: 90%; }
  .hero__sub    { display: none; }
  .who-we-are__stats { grid-template-columns: 1fr 1fr; }
}

/* ── Contact Form ─────────────────────────────────────── */
.contact-form {
  margin-top: 36px;
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 479px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 10px 14px;
  outline: none;
  transition: border-color .18s;
  width: 100%;
  box-sizing: border-box;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form__submit {
  margin-top: 8px;
  width: 100%;
}

.contact-form__error {
  margin-top: 12px;
  font-size: 14px;
  color: #ff8a8a;
  text-align: center;
}

.contact-success {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.contact-success__msg {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
