section#home.hero,
.hero {
  --hero-red: var(--red, #E10600);
  --hero-ink: #ffffff;
  --hero-muted: #c8c8c8;
  --hero-page: #0B0B0B;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0B0B0B;
  background-color: #0B0B0B;
  background-image: none;
  color: var(--hero-ink);
}

section#home.hero::before,
section#home.hero::after,
.hero::before,
.hero::after {
  content: none;
  background: none;
  background-image: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 32px 28px;
  padding: 56px 0 64px;
  background: transparent;
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  background: transparent;
}

.hero h1 {
  margin: 0;
  font-family: var(--display, "Barlow Condensed", "Arial Narrow", sans-serif);
  font-size: clamp(2.2rem, 3.6vw, 3.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--hero-ink);
  text-transform: none;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  font-style: normal;
  color: var(--hero-red);
}

.hero__lede {
  margin: 18px 0 0;
  max-width: 38ch;
  color: var(--hero-muted);
  font-size: 1.04rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  margin-top: 26px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans, "Outfit", Arial, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.hero__btn svg { flex: 0 0 auto; }

.hero__btn:hover { transform: translateY(-1px); }

.hero__btn--primary {
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--hero-red);
  color: #ffffff;
}

.hero__btn--primary:hover { background: var(--red-hover, #c10500); }

.hero__btn--link {
  min-height: 48px;
  padding: 12px 2px;
  background: transparent;
  color: #ffffff;
}

.hero__btn--link:hover { color: var(--hero-red); }

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #ececec;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__points svg {
  flex: 0 0 auto;
  color: var(--hero-red);
}

.hero__stage {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 0;
  background: transparent;
}

.hero__campus {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.hero__campus img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero__officer {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(48%, 380px);
  margin: 0;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 22%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 22%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero__officer img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero__campus--ph {
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #eef1f4 0%, #dfe4ea 42%, #c5ccd4 100%);
}

.hero__ph-sky {
  position: absolute;
  inset: 0 0 40% 0;
  background: linear-gradient(180deg, #cfd6de, #e7ebf0);
}

.hero__ph-lot {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 8%;
  height: 38%;
  border-radius: 4px;
  background: #4a4f56;
}

.hero__ph-bldg {
  position: absolute;
  background: linear-gradient(160deg, #f7f7f7, #d8d8d8);
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero__ph-bldg--a { left: 16%; bottom: 38%; width: 22%; height: 28%; }
.hero__ph-bldg--b { left: 40%; bottom: 40%; width: 28%; height: 34%; }
.hero__ph-bldg--c { left: 70%; bottom: 38%; width: 16%; height: 24%; }

.hero__ph-suv {
  position: absolute;
  left: 42%;
  bottom: 16%;
  width: 11%;
  height: 8%;
  border-radius: 4px;
  background: #111;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 40px 0 28px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 6.4vw, 3.1rem);
  }

  .hero__officer {
    width: min(46%, 260px);
    right: 0;
  }
}

@media (max-width: 640px) {
  .hero__inner { padding: 28px 0 20px; }

  .hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.4rem);
    line-height: 1.04;
  }

  .hero__lede { font-size: 0.98rem; }

  .hero__actions { gap: 2px 16px; }

  .hero__points {
    gap: 8px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
  }

  .hero__officer {
    width: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__btn { transition: none; }
  .hero__btn:hover { transform: none; }
}
