:root {
  --navy: #071a33;
  --navy-2: #0b2447;
  --blue: #1456d8;
  --blue-2: #0d3f9f;
  --gold: #d89b22;
  --gold-2: #f1c45d;
  --stone: #f4efe7;
  --warm: #fbf8f3;
  --ink: #172033;
  --muted: #647086;
  --line: rgba(12, 35, 68, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.13);
  --soft-shadow: 0 14px 38px rgba(7, 26, 51, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.top-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--navy), #0d315f);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.top-bar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  min-width: 0;
}

.top-note strong {
  color: var(--gold-2);
  font-weight: 800;
}

.top-note span,
.top-note strong {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
}

.top-actions {
  display: flex;
  gap: 16px;
  min-width: 0;
  text-align: right;
}

.top-actions span {
  line-height: 1.25;
}

.site-header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.internal {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 36px rgba(7, 26, 51, 0.1);
  backdrop-filter: blur(14px);
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: min(48vw, 210px);
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: background 220ms ease, box-shadow 220ms ease, transform 180ms ease;
}

.brand img {
  width: clamp(124px, 17vw, 172px);
  height: auto;
}

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

.site-header:not(.internal):not(.is-scrolled) .brand {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  padding: 11px 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .nav-links a,
.site-header.internal .nav-links a {
  color: var(--navy);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(216, 155, 34, 0.14);
  color: var(--gold-2);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.internal .nav-links a:hover,
.site-header.is-scrolled .nav-links a.active,
.site-header.internal .nav-links a.active {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 34px rgba(20, 86, 216, 0.26);
}

.btn-gold {
  color: #1a2436;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 34px rgba(216, 155, 34, 0.22);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline.dark {
  color: var(--navy);
  border-color: rgba(7, 26, 51, 0.18);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.site-header.is-scrolled .menu-toggle,
.site-header.internal .menu-toggle {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 184px 0 72px;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.94) 0%, rgba(7, 26, 51, 0.76) 43%, rgba(7, 26, 51, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 26, 51, 0.65), rgba(7, 26, 51, 0.08)),
    var(--hero-image, url("hero-campus.jpg")) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(216, 155, 34, 0.22), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 720px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.45;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.trust-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -62px;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ribbon-card,
.card {
  border: 1px solid rgba(12, 35, 68, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.ribbon-card {
  padding: 22px;
  min-height: 124px;
  backdrop-filter: blur(12px);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(20, 86, 216, 0.1);
  margin-bottom: 14px;
}

.icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.ribbon-card h3,
.card h3 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}

.ribbon-card p,
.card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 72px 0;
}

.section.stone {
  background: var(--stone);
}

.section.navy {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.96), rgba(13, 49, 95, 0.96)),
    url("workshop-1.jpg") center / cover no-repeat;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section.navy .section-kicker {
  color: var(--gold-2);
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section.navy h2,
.section.navy .section-head p,
.section.navy .card h3 {
  color: #fff;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #dfe8f4, #fff3d8);
}

.media-frame::before {
  content: "";
  display: block;
  aspect-ratio: 4 / 3;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.tall::before {
  aspect-ratio: 4 / 4.7;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 26, 51, 0.72);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.message-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(216, 155, 34, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 237, 0.92));
  box-shadow: var(--soft-shadow);
}

.portrait-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, #f4d991, #ffffff);
  font-size: 54px;
  font-weight: 900;
}

.quote-mark {
  color: var(--gold);
  font-size: 72px;
  line-height: 0.75;
  font-family: Georgia, serif;
}

.feature-trade {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.trade-card {
  padding: 34px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #0c376e);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trade-meta {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216, 155, 34, 0.17);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold-2);
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 26px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 86, 216, 0.22);
}

.facility-card {
  min-height: 250px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  border-radius: 8px;
  background: var(--navy);
}

.facility-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.facility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 51, 0.86), rgba(7, 26, 51, 0.08));
}

.facility-card:hover img {
  transform: scale(1.06);
}

.facility-card div {
  position: relative;
  z-index: 1;
}

.facility-card h3 {
  margin-bottom: 4px;
  color: #fff;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 250px;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe6ee;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 6;
  min-height: 330px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 450ms ease, filter 220ms ease;
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(7, 26, 51, 0.72);
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  flex: 0 0 24px;
  text-align: center;
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue-2));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  color: #fff;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #061427;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1fr;
  gap: 44px;
}

.footer-logo {
  width: 180px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--gold-2);
}

.page-hero {
  position: relative;
  padding: 190px 0 92px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.94), rgba(7, 26, 51, 0.66)),
    var(--page-image, url("hero-campus.jpg")) center / cover no-repeat;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 62px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.value-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-weight: 800;
  font-size: 14px;
}

.info-table {
  display: grid;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.info-row strong {
  color: var(--navy);
}

.document-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.document-list li {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.document-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.form-card {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(12, 35, 68, 0.17);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 86, 216, 0.1);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-card {
  min-height: 185px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 900;
}

.map-box {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(12, 35, 68, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(45deg, rgba(20, 86, 216, 0.12) 0 1px, transparent 1px 18px),
    #e8edf2;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 13, 25, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  max-width: min(1100px, 94vw);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .ribbon-grid,
  .steps,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split,
  .feature-trade {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .top-bar {
    position: static;
    font-size: 12px;
  }

  .top-bar .container {
    align-items: stretch;
    flex-direction: column;
    min-height: 0;
    padding: 9px 0 10px;
    gap: 8px;
  }

  .top-note {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .top-note span:last-child {
    grid-column: 1 / -1;
  }

  .top-actions {
    display: block;
    text-align: left;
    color: rgba(255, 255, 255, 0.78);
  }

  .site-header,
  .site-header.internal {
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 34px rgba(7, 26, 51, 0.1);
  }

  .navbar {
    height: 74px;
  }

  .brand img {
    width: clamp(118px, 36vw, 150px);
  }

  .site-header:not(.internal):not(.is-scrolled) .brand {
    padding: 7px 11px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a,
  .site-header.is-scrolled .nav-links a,
  .site-header.internal .nav-links a {
    color: var(--navy);
    padding: 12px;
  }

  .nav-links .btn {
    margin-top: 6px;
  }

  .hero,
  .page-hero {
    padding-top: 136px;
  }

  .hero {
    min-height: 720px;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: span 6;
  }

  .message-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 760px;
    padding-bottom: 76px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 26, 51, 0.96), rgba(7, 26, 51, 0.72)),
      var(--hero-image, url("hero-campus.jpg")) center / cover no-repeat;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .section {
    padding: 72px 0;
  }

  .ribbon-grid,
  .steps,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-ribbon {
    margin-top: -38px;
  }

  .cta-band {
    padding: 30px 24px;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: span 12;
    min-height: 245px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 430px) {
  .top-note {
    grid-template-columns: 1fr;
  }

  .top-note span:last-child {
    grid-column: auto;
  }

  .navbar {
    gap: 10px;
  }

  .brand {
    max-width: calc(100vw - 92px);
  }

  .brand img {
    width: clamp(108px, 34vw, 132px);
  }

  .site-header:not(.internal):not(.is-scrolled) .brand {
    padding: 6px 9px;
  }
}
