@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap");


:root {
  --bg: #fffdf8;
  --paper: #ffffff;
  --paper_soft: #fff6ef;
  --ink: #101010;
  --muted: #626262;
  --line: #e8ded2;
  --red: #f20808;
  --red_dark: #bf0000;
  --yellow: #ffe600;
  --yellow_soft: #fff7b8;
  --shadow: 0 22px 60px rgba(16, 16, 16, 0.08);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 20px;
  line-height: 1.58;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site_header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 222, 210, 0.9);
  transition: transform 0.45s ease, opacity 0.45s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 0.35s ease;
}

.logo_link img {
  width: 292px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  transition: width 0.35s ease, max-height 0.35s ease, opacity 0.35s ease;
}


.site_header.compact {
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 40px rgba(16, 16, 16, 0.06);
}

.site_header.compact .nav {
  min-height: 58px;
}

.site_header.compact .logo_link img {
  width: 228px;
  max-height: 42px;
}

.site_header.away {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.nav_links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav_links a {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 850;
  color: #353535;
  padding: 8px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav_links a:hover,
.nav_links a.active {
  color: var(--red);
  background: var(--paper_soft);
}

.nav_toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-size: 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(242, 8, 8, 0.18);
  transition: 0.2s ease;
}

.button:hover {
  background: var(--red_dark);
  border-color: var(--red_dark);
  transform: translateY(-2px);
}

.button.alt {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button.alt:hover {
  background: var(--ink);
  color: #fff;
}

.hero {
  padding: 88px 0 70px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--yellow_soft);
  border: 1px solid rgba(255, 230, 0, 0.85);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

h1, h2, h3 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  line-height: 0.96;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.12;
  margin-bottom: 10px;
}

.red {
  color: var(--red);
}

.lead {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 710px;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.photo_frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.photo_frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
}

.photo_frame.tall img {
  aspect-ratio: 5 / 6;
}

.photo_tag {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 222, 210, 0.95);
  border-radius: 20px;
  padding: 14px 16px;
  font-weight: 900;
  color: var(--red);
  box-shadow: 0 16px 40px rgba(16, 16, 16, 0.12);
}

section {
  padding: 72px 0;
}

.section_head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 32px;
}

.section_head p {
  max-width: 560px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 36px rgba(16, 16, 16, 0.05);
}

.card p {
  color: var(--muted);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 950;
  margin-bottom: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(16, 16, 16, 0.04);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

.dark_panel {
  background: var(--ink);
  color: white;
  border-radius: 36px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.dark_panel::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--red);
  border-radius: 50%;
  right: -140px;
  top: -160px;
  opacity: 0.55;
}

.dark_panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  background: var(--yellow);
  border-radius: 50%;
  left: 10%;
  bottom: -130px;
  opacity: 0.42;
}

.dark_panel > * {
  position: relative;
  z-index: 1;
}

.dark_panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.dark_panel p {
  color: #eeeeee;
  margin-bottom: 16px;
}

.image_card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 12px 36px rgba(16, 16, 16, 0.06);
}

.image_card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.image_card p {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 14px 8px 4px;
}

.page_intro {
  padding: 84px 0 36px;
}

.page_intro.center {
  text-align: center;
}

.page_intro.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.program_box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.program_item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.program_item:last-child {
  border-bottom: 0;
}

.number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 950;
  background: #fffafa;
}

.team_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 34px 28px;
}

.team_card img {
  width: 168px;
  height: 168px;
  border-radius: 34px;
  object-fit: cover;
  object-position: center 28%;
  border: 2px solid rgba(242, 8, 8, 0.28);
  background: white;
  padding: 4px;
  margin-left: auto;
  margin-right: auto;
}


.team_card img.lead_photo {
  width: 188px;
  height: 188px;
  object-position: center 22%;
}

.team_card img.aria_photo {
  object-position: center 18%;
}

.team_card img.james_photo {
  object-position: center 10%;
  background: white;
}

.team_card div {
  max-width: 620px;
  margin: 0 auto;
}

.team_card small {
  color: var(--red);
  font-weight: 900;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffefa;
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(242, 8, 8, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.contact_list {
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.contact_list strong {
  color: var(--ink);
}

.contact_list a {
  color: var(--red_dark);
  font-weight: 900;
}

.cta {
  background: radial-gradient(circle at top right, rgba(255, 230, 0, 0.7), transparent 30%), radial-gradient(circle at bottom left, rgba(242, 8, 8, 0.12), transparent 30%), white;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 58px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.cta p {
  max-width: 690px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.footer {
  margin-top: 60px;
  color: white;
  background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)), url('../images/footer_bg.jpg') center / cover;
}

.footer_inner {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
}

.footer img {
  width: auto;
}

.footer p,
.footer a {
  color: rgba(255,255,255,0.86);
}

.footer_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 900;
}

.footer_links a:hover {
  color: var(--yellow);
}

@media (max-width: 980px) {
  .nav_toggle {
    display: grid;
    place-items: center;
  }

  .nav_links {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav_links.open {
    display: flex;
  }

  .hero,
  .two,
  .three,
  .dark_panel,
  .footer_inner {
    grid-template-columns: 1fr;
  }

  .section_head {
    display: block;
  }

  .section_head p {
    margin-top: 14px;
  }

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

  .footer_links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {

  .site_header.compact .logo_link img {
    width: 184px;
    max-height: 40px;
  }

  .site_header.compact .nav {
    min-height: 54px;
  }

  body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 20px;
  line-height: 1.58;
  letter-spacing: 0;
}

  .page {
    width: min(100% - 22px, 1180px);
  }

  .logo_link img {
  width: 292px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  transition: width 0.35s ease, max-height 0.35s ease, opacity 0.35s ease;
}

  h1 {
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  line-height: 0.96;
  margin-bottom: 24px;
}

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .program_item,
  .team_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 34px 28px;
}

  .dark_panel,
  .program_box,
  .cta {
    padding: 30px;
    border-radius: 28px;
  }
}


button,
input,
textarea,
select,
label,
.nav_links a,
.button,
.photo_tag,
.stat span,
.stat strong,
.eyebrow,
small {
  font-family: inherit;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand_icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand_text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.03;
}

.brand_title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #2f2248;
  white-space: normal;
}

.brand_since {
  font-size: 0.92rem;
  font-weight: 600;
  color: #2f2248;
  margin-top: 4px;
}

.logo_link, .logo_link img {
  display: none !important;
}

.nav {
  min-height: 72px;
}

.nav_links a {
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  font-size: 0.94rem;
  font-weight: 700;
}

.footer_brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer_brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: white;
  padding: 4px;
  border-radius: 14px;
  margin-bottom: 0;
}

.footer_brand_title {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer_brand_since {
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer p,
.footer a {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .brand_title {
    font-size: 0.98rem;
  }

  .brand_since {
    font-size: 0.85rem;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand_icon {
    width: 44px;
    height: 44px;
  }

  .brand_title {
    font-size: 0.82rem;
    line-height: 1.05;
  }

  .brand_since {
    font-size: 0.74rem;
    margin-top: 2px;
  }

  .nav_links {
    top: 72px;
  }

  .button {
    font-size: 1rem;
  }
}
