:root {
  --navy: #10203f;
  --navy2: #172e5a;
  --camel: #c6a36a;
  --red: #c63232;
  --red2: #a92727;
  --ink: #121212;
  --muted: rgba(18, 18, 18, 0.64);
  --muted2: rgba(18, 18, 18, 0.48);
  --paper: #faf8f4;
  --white: #fff;
  --line: rgba(18, 18, 18, 0.08);
  --shadow: 0 20px 60px rgba(16, 32, 63, 0.1);
  --soft: 0 10px 30px rgba(16, 32, 63, 0.07);
  --r-xl: 34px;
  --r-lg: 26px;
  --r-md: 18px;
  --max: 1160px;
  --header: 76px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}
.section {
  padding: 86px 0;
  scroll-margin-top: calc(var(--header) + 22px);
}
.compact {
  padding: 56px 0;
}
.white {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.navy {
  background: var(--navy);
  color: var(--white);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--camel);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
  font-weight: 900;
  max-width: 770px;
}
.navy .section-title,
.contact-info .section-title {
  color: var(--white);
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.13rem);
  line-height: 1.85;
  max-width: 775px;
  margin-top: 18px;
}
.navy .lead,
.contact-info .lead {
  color: rgba(255, 255, 255, 0.74);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 21px;
  font-size: 0.94rem;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(198, 50, 50, 0.22);
}
.btn-red:hover {
  background: var(--red2);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy2);
}
.btn-soft {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(16, 32, 63, 0.14);
}
.btn-soft:hover {
  border-color: rgba(16, 32, 63, 0.32);
  background: rgba(16, 32, 63, 0.035);
}
.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(250, 248, 244, 0.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}
.brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: none;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: rgba(18, 18, 18, 0.66);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 27px 0 25px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.16s ease,
    border-color 0.16s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--navy);
  border-bottom-color: var(--camel);
}
.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
}
.header-actions .btn {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.86rem;
}
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.45rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header);
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--soft);
  padding: 10px 0 16px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  border-radius: 16px;
  padding: 14px 16px;
  color: rgba(18, 18, 18, 0.74);
  font-weight: 900;
}
.mobile-menu a:hover {
  background: rgba(198, 163, 106, 0.13);
  color: var(--navy);
}
.announcements {
  padding: 26px 0 0;
}
.announcements.hidden {
  display: none;
}
.announcement-grid {
  display: grid;
  gap: 14px;
}
.announcement {
  display: grid;
  gap: 10px;
  border-radius: var(--r-lg);
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 32, 63, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.announcement:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.announcement.red {
  background: #fff2f2;
  border-color: rgba(198, 50, 50, 0.18);
  color: #4d1111;
}
.announcement.navy {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.announcement.camel {
  background: #fbf0df;
  border-color: rgba(198, 163, 106, 0.28);
  color: #5f421d;
}
.announcement small {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.78;
}
.announcement h2 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.18;
}
.announcement p {
  opacity: 0.76;
}
.announcement span {
  font-weight: 900;
}
.hero {
  position: relative;
  padding: 74px 0 84px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -160px;
  border-radius: 50%;
  background: rgba(198, 163, 106, 0.18);
  filter: blur(8px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 44px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(198, 163, 106, 0.26);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  color: #855f2e;
  font-weight: 900;
  font-size: 0.9rem;
}
.hero-kicker em {
  font-weight: 600;
}
.hero h1 {
  color: var(--navy);
  font-size: clamp(2.65rem, 7vw, 5.25rem);
  line-height: 0.97;
  letter-spacing: -0.068em;
  font-weight: 950;
  max-width: 820px;
}
.hero-subtitle {
  color: var(--muted);
  max-width: 690px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted2);
  font-size: 0.92rem;
  font-weight: 800;
}
.hero-note span,
.hero-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-note a {
  color: var(--navy);
  font-weight: 950;
}
.hero-note a:hover {
  text-decoration: underline;
}
.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 42px;
  background: rgba(198, 163, 106, 0.2);
  filter: blur(24px);
}
.hero-logo {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 24px;
}
.mini-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.mini-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(18, 18, 18, 0.7);
  font-size: 0.94rem;
}
.mini-line b {
  color: var(--navy);
}
.split {
  display: grid;
  gap: 36px;
  align-items: start;
}
.card-grid {
  display: grid;
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(16, 32, 63, 0.05);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--navy);
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.card h3 {
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  line-height: 1.75;
}
.support-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.support-card {
  display: grid;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.support-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}
.support-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}
.support-card.featured h3 {
  color: var(--white);
}
.support-card p {
  color: var(--muted);
  line-height: 1.75;
}
.support-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  color: rgba(18, 18, 18, 0.7);
  font-weight: 850;
  font-size: 0.84rem;
}
.featured .tag {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.84);
}
.space-gallery {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.photo-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(198, 163, 106, 0.16),
    rgba(16, 32, 63, 0.08)
  );
  box-shadow: var(--soft);
}
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}
.join-strip {
  scroll-margin-top: calc(var(--header) + 22px);
  padding: 0 0 28px;
}
.join-inner {
  position: relative;
  display: grid;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(16, 32, 63, 0.1);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--soft);
  overflow: hidden;
}
.join-inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--camel);
}
.join-inner strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 3px;
}
.join-inner p {
  color: var(--muted);
  line-height: 1.65;
}
.subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.subjects span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.87rem;
  font-weight: 800;
}
.study-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--soft);
}
.benefits {
  display: grid;
  gap: 11px;
  list-style: none;
  margin-top: 24px;
}
.benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: 16px;
  background: var(--paper);
  color: rgba(18, 18, 18, 0.7);
  font-weight: 850;
}
.benefits li:before {
  content: "✓";
  color: var(--red);
  font-weight: 950;
}
.other-services {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.service-mini {
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.service-mini h3 {
  color: var(--navy);
  margin-bottom: 8px;
}
.service-mini p {
  color: var(--muted);
  line-height: 1.72;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.partner-logo {
  display: grid;
  place-items: center;
  min-height: 104px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: 0 10px 26px rgba(16, 32, 63, 0.045);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft);
}
.partner-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition:
    filter 0.18s ease,
    opacity 0.18s ease;
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.contact-grid {
  display: grid;
  gap: 18px;
}
.contact-panel {
  border-radius: var(--r-xl);
  padding: 30px;
}
.contact-info {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}
.contact-item strong {
  color: var(--white);
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: rgba(18, 18, 18, 0.7);
  font-size: 0.9rem;
  font-weight: 900;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 17px;
  background: var(--paper);
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
textarea {
  resize: vertical;
  min-height: 124px;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(16, 32, 63, 0.48);
  box-shadow: 0 0 0 4px rgba(16, 32, 63, 0.08);
}
.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted2);
  line-height: 1.6;
}
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted2);
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
  }
  .announcement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .full {
    grid-column: 1/-1;
  }
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 760px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .support-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .other-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .space-gallery {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }
  .photo-card:first-child {
    grid-row: span 2;
  }
  .photo-card:first-child img,
  .photo-card:first-child {
    min-height: 494px;
  }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 980px) {
  .nav,
  .header-actions {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
  .partners-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .split {
    grid-template-columns: 0.86fr 1.14fr;
  }
  .study-split {
    grid-template-columns: 0.88fr 1.12fr;
  }
  .contact-grid {
    grid-template-columns: 0.88fr 1.12fr;
  }
  .join-inner {
    grid-template-columns: 1fr auto;
    padding: 22px 24px;
  }
}
@media (max-width: 520px) {
  :root {
    --header: 70px;
  }
  .container {
    width: min(calc(100% - 24px), var(--max));
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 48px 0 64px;
  }
  .hero h1 {
    font-size: 2.62rem;
  }
  .hero-card,
  .study-box,
  .contact-panel {
    padding: 22px;
  }
  .brand img {
    height: 44px;
  }
}
