:root {
  --bg: #f7fbf2;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --text: #153b28;
  --muted: #4d6c5c;
  --green-dark: #0f6a3d;
  --green-mid: #1b8a52;
  --green-soft: #ddf2da;
  --red-main: #d92f2f;
  --red-deep: #b32222;
  --yellow-main: #f7c948;
  --yellow-soft: #fff1b6;
  --blue-soft: #e3f2ff;
  --rose-soft: #fff1ec;
  --accent: #0f6a3d;
  --accent-dark: #d92f2f;
  --accent-soft: #fff1b6;
  --line: rgba(15, 106, 61, 0.12);
  --shadow: 0 22px 60px rgba(15, 106, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(56, 161, 105, 0.18), transparent 22%),
    linear-gradient(180deg, #fcfff9 0%, var(--bg) 42%, #f7fbef 100%);
}

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

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 106, 61, 0.95), rgba(27, 138, 82, 0.94));
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 10;
  box-shadow: var(--shadow);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand > span:last-child {
  min-width: 0;
}

.brand strong {
  font-family: "Quicksand", sans-serif;
  font-size: 1.12rem;
  background: linear-gradient(90deg, #1f78ff 0%, #13a3ff 24%, #18a957 48%, #f6ae2d 72%, #d92f2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand small {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 2px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--red-main);
  font-weight: 800;
  background: radial-gradient(circle at 30% 30%, #fff7d0, var(--yellow-main));
  box-shadow: 0 10px 26px rgba(247, 201, 72, 0.38);
}

.brand-logo-image {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 18px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 10px 26px rgba(247, 201, 72, 0.24);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
}

.top-banner,
.hero,
.welcome-strip,
.section-grid,
.feature-grid,
.info-grid,
.campus-section,
.gallery-grid,
.policy-links,
.form-grid,
.site-footer {
  display: grid;
  gap: 20px;
}

.top-banner {
  margin-top: 22px;
  padding: 0;
  border-radius: 26px;
  border: 1px solid rgba(15, 106, 61, 0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(240,250,236,0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.banner-slider {
  position: relative;
}

.banner-track {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(11, 63, 37, 0.08) 0%, rgba(11, 63, 37, 0.7) 64%, rgba(11, 63, 37, 0.82) 100%);
  color: #ffffff;
}

.banner-overlay h2 {
  margin: 0 0 10px;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #ffffff;
}

.banner-overlay p:last-of-type {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 66ch;
}

.eyebrow.light {
  color: var(--yellow-main);
}

.banner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.banner-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.banner-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;
}

.banner-arrow,
.banner-dot {
  border: none;
  cursor: pointer;
}

.banner-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.banner-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 63, 37, 0.26);
  backdrop-filter: blur(10px);
}

.banner-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.banner-dot.is-active {
  background: var(--yellow-main);
}

.hero {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  padding: 26px 0 24px;
}

.hero-copy,
.hero-panel,
.content-card,
.feature-card,
.info-card,
.gallery-card,
.site-footer {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(247, 201, 72, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(247,251,242,0.92));
}

.hero-copy h1,
.policy-page h1,
.admin-page h1 {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  margin: 0 0 18px;
  color: var(--red-main);
  text-wrap: balance;
}

.lead,
.section-heading p,
.content-card p,
.feature-card p,
.info-card p,
.facility-item p,
.gallery-card figcaption,
.policy-page p,
.contact-list dd,
.form-note,
.footer-copy p,
.footer-contact p,
.footer-links a {
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--green-mid);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-actions,
.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  cursor: pointer;
  min-height: 48px;
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--red-main), var(--red-deep));
}

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(15, 106, 61, 0.18);
}

.announcement {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 241, 182, 0.76), rgba(255, 248, 221, 0.9));
  color: #94620b;
  line-height: 1.6;
  border: 1px solid rgba(247, 201, 72, 0.36);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.welcome-strip {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 22px;
  padding: 6px 0 10px;
}

.welcome-card,
.welcome-notes article {
  border-radius: 24px;
  border: 1px solid rgba(15, 106, 61, 0.08);
  box-shadow: 0 14px 34px rgba(15, 106, 61, 0.08);
}

.welcome-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(227,242,255,0.56), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,251,242,0.94));
}

.welcome-card h2 {
  margin: 0 0 12px;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--green-dark);
}

.welcome-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.welcome-notes {
  display: grid;
  gap: 14px;
}

.welcome-notes article {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,234,0.92));
}

.welcome-notes strong {
  color: var(--red-main);
  font-family: "Quicksand", sans-serif;
  font-size: 1.08rem;
}

.welcome-notes span {
  color: var(--muted);
  line-height: 1.7;
}

.stat-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(227,242,255,0.7));
  border: 1px solid rgba(15, 106, 61, 0.1);
}

.stat-card strong,
.footer-copy h2,
.footer-contact h3,
.footer-links h3,
.sun-card h2,
.section-heading h2,
.content-card h2,
.feature-card h3,
.info-card h3,
.facility-item h3 {
  font-family: "Quicksand", sans-serif;
  margin: 0;
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-panel {
  min-height: 100%;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(247, 201, 72, 0.45), transparent 30%),
    linear-gradient(180deg, rgba(21, 123, 71, 0.96), rgba(15, 106, 61, 0.92));
}

.sun-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 252, 244, 0.94));
}

.sun-dot {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff9cf, var(--yellow-main));
  box-shadow: 0 0 0 16px rgba(247, 201, 72, 0.26);
}

.photo-card img,
.campus-visual img,
.gallery-card img {
  width: 100%;
  border-radius: 22px;
  margin-top: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-grid {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 28px 0 12px;
}

.content-card {
  padding: 32px;
}

.bullet-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(247, 201, 72, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(221,242,218,0.78));
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-list dt {
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-list dd {
  margin: 0;
}

.features-section,
.story-section,
.gallery-section,
.policy-page,
.admin-page {
  padding-top: 34px;
}

.section-heading {
  margin-bottom: 22px;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.section-heading p:last-child {
  margin-top: 10px;
}

.feature-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.info-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,251,241,0.84));
}

.feature-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,244,229,0.9));
}

.feature-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(233,245,255,0.88));
}

.feature-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(221,242,218,0.88));
}

.feature-card:nth-child(2),
.info-card:nth-child(2) {
  transform: translateY(12px);
}

.feature-card:nth-child(3),
.info-card:nth-child(3) {
  transform: translateY(24px);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow-main), #f6ae2d);
  color: var(--red-main);
  font-weight: 800;
  margin-bottom: 14px;
}

.campus-section {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  padding-top: 40px;
}

.campus-visual {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(227,242,255,0.86));
  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-copy {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,241,236,0.82));
}

.facility-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.facility-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,251,231,0.8));
  border: 1px solid rgba(15, 106, 61, 0.08);
}

.gallery-grid {
  grid-template-columns: 1.1fr 1fr 0.9fr;
  align-items: start;
  gap: 24px;
}

.gallery-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,252,244,0.98));
}

.gallery-card:nth-child(2) {
  margin-top: 28px;
}

.gallery-card:nth-child(3) {
  margin-top: 56px;
}

.gallery-card figcaption {
  margin-top: 14px;
}

.site-footer {
  grid-template-columns: 1.1fr 1fr 0.9fr;
  padding: 34px;
  margin-top: 44px;
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(15,106,61,0.96), rgba(18,123,71,0.95));
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-copy,
.footer-contact,
.footer-links {
  min-width: 0;
}

.footer-contact,
.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-copy h2,
.footer-contact h3,
.footer-links h3 {
  color: #ffffff;
}

.footer-contact p,
.footer-links a {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover {
  color: var(--yellow-main);
}

.footer-links a {
  padding: 6px 0;
}

.footer-copy .eyebrow {
  color: var(--yellow-main);
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.admin-page.narrow {
  max-width: 640px;
  margin: 0 auto;
}

.image-manager-section {
  display: grid;
  gap: 20px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.image-manager-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.image-manager-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 106, 61, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,251,242,0.94));
}

.image-manager-preview {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(227, 242, 255, 0.6);
  border: 1px solid rgba(15, 106, 61, 0.08);
}

.image-manager-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
}

.image-manager-meta {
  display: grid;
  gap: 6px;
}

.image-manager-meta h3 {
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

.image-manager-meta p {
  margin: 0;
  color: var(--muted);
  word-break: break-word;
}

.image-upload-form {
  display: grid;
  gap: 12px;
}

.image-upload-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-form {
  display: grid;
  gap: 18px;
}

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

.admin-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 106, 61, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.form-alert {
  padding: 14px 16px;
  border-radius: 18px;
  margin-bottom: 14px;
}

.form-alert.success {
  background: rgba(150, 216, 176, 0.2);
  color: #2a6d3f;
}

.form-alert.error {
  background: rgba(236, 149, 149, 0.2);
  color: #8b2432;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (max-width: 960px) {
  .top-banner,
  .hero,
  .welcome-strip,
  .section-grid,
  .feature-grid,
  .info-grid,
  .campus-section,
  .gallery-grid,
  .image-manager-grid,
  .form-grid,
  .site-footer,
  .admin-header,
  .stats-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    margin: 0 -2px;
    scrollbar-width: thin;
  }

  .main-nav::-webkit-scrollbar {
    height: 6px;
  }

  .main-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.34);
    border-radius: 999px;
  }

  .hero-copy,
  .hero-panel,
  .top-banner,
  .welcome-card,
  .content-card,
  .feature-card,
  .info-card,
  .gallery-card,
  .site-footer {
    border-radius: 24px;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .info-card:nth-child(2),
  .info-card:nth-child(3),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3) {
    transform: none;
    margin-top: 0;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .banner-controls {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .site-header,
  .top-banner,
  .hero-copy,
  .hero-panel,
  .welcome-card,
  .content-card,
  .feature-card,
  .info-card,
  .gallery-card,
  .site-footer {
    padding: 20px;
  }

  .site-header {
    top: 0;
    border-radius: 18px;
    gap: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    gap: 12px;
    align-items: center;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .brand-mark,
  .brand-logo-image {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    flex: 0 0 auto;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-link {
    padding: 12px 14px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.menu-open .main-nav {
    display: grid;
  }

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

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

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

  .hero-copy h1,
  .policy-page h1,
  .admin-page h1 {
    font-size: 2.05rem;
    line-height: 1.04;
  }

  .lead,
  .section-heading p,
  .content-card p,
  .feature-card p,
  .info-card p,
  .facility-item p,
  .gallery-card figcaption,
  .policy-page p {
    line-height: 1.68;
  }

  .hero {
    gap: 18px;
    padding: 28px 0 18px;
  }

  .top-banner {
    margin-top: 14px;
    min-height: 0;
  }

  .banner-overlay {
    padding: 20px;
    gap: 10px;
  }

  .banner-overlay h2,
  .welcome-card h2 {
    font-size: 1.55rem;
  }

  .banner-overlay p:last-of-type {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .banner-badges {
    gap: 8px;
  }

  .banner-badges span {
    font-size: 0.82rem;
    padding: 9px 12px;
  }

  .banner-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .banner-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .hero-actions,
  .admin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .stats-row {
    gap: 10px;
  }

  .stat-card,
  .feature-card,
  .info-card,
  .facility-item,
  .gallery-card {
    padding: 18px;
  }

  .section-grid,
  .features-section,
  .story-section,
  .gallery-section,
  .policy-page,
  .admin-page,
  .campus-section,
  .welcome-strip {
    padding-top: 24px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .content-card {
    padding: 22px;
  }

  .gallery-grid,
  .feature-grid,
  .info-grid {
    gap: 16px;
  }

  .gallery-card figcaption {
    font-size: 0.94rem;
  }

  .site-footer {
    margin-top: 28px;
    gap: 18px;
  }

  .footer-contact,
  .footer-links {
    gap: 6px;
  }

  .admin-form {
    gap: 14px;
  }
}
