:root {
  --ink: #102642;
  --charcoal: #07182d;
  --paper: #f8f5ef;
  --warm: #c8a15a;
  --sage: #697b86;
  --olive: #17314c;
  --mist: #eef2f4;
  --white: #fffdf8;
  --line: rgba(16, 38, 66, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 24, 45, 0.82), rgba(7, 24, 45, 0));
}

.brand {
  display: grid;
  gap: 2px;
  width: fit-content;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand span {
  font-size: clamp(0.95rem, 1.6vw, 1.28rem);
}

.brand small {
  color: var(--warm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 45, 0.94), rgba(7, 24, 45, 0.56) 42%, rgba(7, 24, 45, 0.06)),
    linear-gradient(0deg, rgba(7, 24, 45, 0.5), rgba(7, 24, 45, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 92vw);
  padding: 126px clamp(20px, 6vw, 72px) 96px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: inherit;
  line-height: 1.04;
  font-weight: 700;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  letter-spacing: -0.015em;
}

.strapline {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.profile-section,
.setting-section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.light {
  background: var(--white);
}

.security-section {
  background: var(--mist);
}

.split,
.setting-grid,
.school-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 8vw, 94px);
  align-items: start;
}

.lead-copy,
.setting-section p,
.school-location-grid p {
  font-size: 1.08rem;
}

.lead-copy p:first-child {
  margin-top: 0;
}

.setting-section {
  background: var(--charcoal);
  color: var(--white);
}

.aerial-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.08);
}

.aerial-figure img {
  width: 100%;
  height: min(70vh, 760px);
  object-fit: cover;
  object-position: center center;
}

.map-wrap {
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

footer {
  padding: 30px 0;
  background: var(--olive);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .hero,
  .hero-content {
    min-height: 88vh;
  }

  .hero img {
    object-position: center center;
  }

  .split,
  .setting-grid,
  .school-location-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    max-width: 14ch;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    max-width: 160px;
  }

  .hero-content {
    padding: 112px 20px 64px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .strapline {
    font-size: 1.18rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
    height: 380px;
  }

  .aerial-figure img {
    height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
