:root {
  --ohhs-green: #11823b;
  --ohhs-bright-green: #42b72a;
  --ohhs-dark-green: #053b22;
  --ohhs-yellow: #ffd400;
  --ohhs-gold: #f4b400;
  --ohhs-navy: #07142b;
  --ohhs-white: #ffffff;
  --ohhs-cream: #fffbea;
  --ohhs-grey: #f4f7f2;
  --ohhs-dark: #222222;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ohhs-navy);
  background: var(--ohhs-white);
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Top utility bar */
.topbar {
  background: #2d2d2d;
  border-bottom: 2px solid var(--ohhs-yellow);
}

.topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 24px 12px;
}

.utility-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.utility-links a:hover,
.utility-links .highlight-link {
  color: var(--ohhs-yellow);
}

.keyword-search {
  margin-top: 8px;
}

.keyword-search input {
  width: min(320px, 100%);
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 12px 24px;
  background: #a8a8a8;
  color: var(--ohhs-yellow);
  font-weight: 700;
  text-transform: uppercase;
}

.keyword-search input::placeholder {
  color: var(--ohhs-yellow);
  opacity: 1;
}

/* Main header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ohhs-dark-green);
  border-bottom: 3px solid var(--ohhs-yellow);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.main-header.scrolled {
  box-shadow: var(--shadow);
}

.main-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 240px;
}

.brand img {
  width: 88px;
  height: auto;
}

.brand-text strong {
  display: block;
  color: var(--ohhs-yellow);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.4px;
}

.brand-text small {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-style: italic;
  margin-top: 3px;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-menu > a,
.dropdown-toggle {
  color: #ffffff;
  background: transparent;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-menu > a:hover,
.primary-menu > a.active,
.dropdown:hover .dropdown-toggle {
  color: var(--ohhs-yellow);
}

.apply-button {
  background: var(--ohhs-yellow) !important;
  color: var(--ohhs-navy) !important;
  padding: 15px 24px !important;
  border-radius: 7px;
  box-shadow: 0 6px 14px rgba(255, 212, 0, 0.22);
}

.apply-button:hover {
  background: #ffffff !important;
  color: var(--ohhs-dark-green) !important;
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ▾";
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  padding: 12px 0;
  background: #ffffff;
  color: var(--ohhs-navy);
  border-top: 4px solid var(--ohhs-yellow);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  text-transform: none;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: var(--ohhs-cream);
  color: var(--ohhs-green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 28px;
  background: #ffffff;
  margin: 6px auto;
  border-radius: 999px;
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 665px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 5.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-overlay.darker {
  background: linear-gradient(90deg, rgba(5, 59, 34, 0.88) 0%, rgba(5, 59, 34, 0.65) 45%, rgba(0, 0, 0, 0.25) 100%);
}

.pattern-slide {
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  padding: 105px 40px 0 115px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ohhs-yellow);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.eyebrow.green {
  color: var(--ohhs-green);
}

.hero-content h1 {
  margin: 0 0 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.88;
  font-weight: 800;
  text-shadow: 3px 5px 14px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  color: var(--ohhs-yellow);
}

.hero-text {
  max-width: 700px;
  margin: 0 0 32px;
  font-size: 21px;
  line-height: 1.65;
}

.dark-content {
  color: var(--ohhs-navy);
  text-shadow: none;
}

.dark-content h1 {
  text-shadow: none;
}

.dark-content h1 span {
  color: var(--ohhs-green);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-yellow {
  background: var(--ohhs-yellow);
  color: var(--ohhs-navy);
}

.btn-yellow:hover {
  background: #ffffff;
  color: var(--ohhs-dark-green);
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--ohhs-navy);
}

.btn-green {
  background: var(--ohhs-green);
  color: #ffffff;
}

.btn-green:hover {
  background: var(--ohhs-yellow);
  color: var(--ohhs-navy);
}

.btn-dark-outline {
  border: 2px solid var(--ohhs-navy);
  color: var(--ohhs-navy);
}

.btn-dark-outline:hover {
  background: var(--ohhs-navy);
  color: #ffffff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
  width: 52px;
  height: 74px;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.45);
  color: var(--ohhs-yellow);
}

.slider-prev { left: 28px; }
.slider-next { right: 28px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 8;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--ohhs-yellow);
  border-color: var(--ohhs-yellow);
}

/* Quick cards */
.quick-cards {
  position: relative;
  z-index: 20;
  max-width: 1120px;
  margin: -62px auto 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.quick-card {
  display: block;
  padding: 42px 34px;
  border-right: 1px solid #e8ece6;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card:hover {
  background: var(--ohhs-cream);
  transform: translateY(-4px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--ohhs-green);
  color: #ffffff;
  font-weight: 800;
}

.quick-card h2 {
  margin: 0 0 12px;
  color: var(--ohhs-dark-green);
  font-size: 24px;
}

.quick-card p {
  margin: 0;
  color: #57605a;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 72px 24px;
}

.section-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 44px;
  align-items: center;
}

.two-columns {
  grid-template-columns: 1.05fr 0.95fr;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--ohhs-green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-kicker.yellow {
  color: var(--ohhs-yellow);
}

.section-copy h2,
.section-heading h2,
.development-copy h2,
.beacon-cta h2,
.alumni-inner h2 {
  margin: 0 0 22px;
  color: var(--ohhs-navy);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-copy p {
  color: #4f5b55;
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--ohhs-green);
  font-weight: 800;
}

.text-link:hover {
  color: var(--ohhs-gold);
}

.school-values-card {
  padding: 42px;
  background: linear-gradient(145deg, var(--ohhs-dark-green), var(--ohhs-green));
  color: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.school-values-card h3 {
  margin: 0 0 22px;
  color: var(--ohhs-yellow);
  font-size: 30px;
}

.school-values-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.school-values-card li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.school-values-card li:last-child {
  border-bottom: 0;
}

.school-values-card strong {
  display: block;
  color: var(--ohhs-yellow);
  font-size: 18px;
}

.school-values-card span {
  display: block;
  margin-top: 4px;
  color: #f4fff5;
}

.centered {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.centered h2 {
  margin-bottom: 16px;
}

.title-line {
  width: min(620px, 90%);
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--ohhs-yellow), var(--ohhs-green), transparent);
}

/* Story cards */
.featured-section {
  background: var(--ohhs-grey);
}

.story-grid,
.admissions-grid,
.event-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.story-card,
.admission-panel,
.event-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.story-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.story-body {
  padding: 26px;
}

.story-body span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ohhs-green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.story-body h3 {
  margin: 0 0 10px;
  color: var(--ohhs-dark-green);
  font-size: 22px;
}

.story-body p,
.admission-panel p,
.event-card p {
  color: #57605a;
  line-height: 1.7;
}

/* Development */
.development-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 100px 24px;
}

.development-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 59, 34, 0.84);
}

.development-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.development-copy {
  max-width: 760px;
  margin-bottom: 44px;
}

.development-copy h2 {
  color: #ffffff;
}

.development-copy p {
  color: #edf8ed;
  font-size: 18px;
  line-height: 1.8;
}

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

.development-grid > div {
  padding: 28px;
  min-height: 210px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.development-grid h3 {
  margin: 0 0 12px;
  color: var(--ohhs-yellow);
  font-size: 24px;
}

.development-grid p {
  color: #f4fff5;
  line-height: 1.7;
}

/* Admissions */
.admissions-section {
  background: #ffffff;
}

.admission-panel {
  padding: 34px;
  border-top: 6px solid var(--ohhs-yellow);
}

.admission-panel:nth-child(2) {
  border-top-color: var(--ohhs-green);
}

.admission-panel h3 {
  margin: 0 0 14px;
  color: var(--ohhs-dark-green);
  font-size: 26px;
}

.admission-panel a {
  display: inline-block;
  margin-top: 18px;
  color: var(--ohhs-green);
  font-weight: 800;
}

/* CTA */
.beacon-cta {
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, var(--ohhs-dark-green), var(--ohhs-green));
  color: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.beacon-cta h2 {
  color: #ffffff;
}

.beacon-cta p {
  max-width: 660px;
  margin: 0;
  color: #f3fff3;
  font-size: 17px;
  line-height: 1.7;
}

/* Events */
.events-section {
  background: var(--ohhs-cream);
}

.event-card {
  padding: 32px;
  border-bottom: 5px solid var(--ohhs-green);
}

.event-date {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ohhs-yellow);
  color: var(--ohhs-navy);
  border-radius: 50%;
  font-weight: 900;
}

.event-card h3 {
  margin: 0 0 12px;
  color: var(--ohhs-dark-green);
  font-size: 23px;
}

/* Alumni */
.alumni-strip {
  padding: 86px 24px;
  background-image: linear-gradient(90deg, rgba(5, 59, 34, 0.96), rgba(17, 130, 59, 0.88)), url('../images/pattern-bg.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}

.alumni-inner {
  max-width: 820px;
  margin: 0 auto;
}

.alumni-inner h2 {
  color: #ffffff;
}

.alumni-inner p {
  margin: 0 auto 28px;
  color: #f4fff5;
  line-height: 1.8;
  font-size: 18px;
}

/* Footer */
.footer {
  background: #1f1f1f;
  color: #ffffff;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 42px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-logo {
  width: 90px;
  margin-bottom: 16px;
}

.footer h3,
.footer h4 {
  margin: 0 0 16px;
  color: var(--ohhs-yellow);
}

.footer p,
.footer a {
  color: #e8e8e8;
  line-height: 1.7;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

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

.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8d8d8;
  font-size: 14px;
}

/* Help bubble */
.help-bubble {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-bubble button {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--ohhs-green);
  color: #ffffff;
  font-size: 25px;
  box-shadow: var(--shadow);
}

.help-bubble span {
  padding: 15px 20px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--ohhs-navy);
  font-size: 17px;
  box-shadow: var(--soft-shadow);
}

/* Responsive */
@media (max-width: 1180px) {
  .main-header-inner {
    padding-inline: 24px;
  }

  .primary-menu {
    gap: 18px;
    font-size: 13px;
  }

  .hero-content {
    padding-left: 84px;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .main-header-inner {
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .primary-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--ohhs-dark-green);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .primary-menu.open {
    display: flex;
  }

  .primary-menu > a,
  .dropdown-toggle {
    width: 100%;
    padding: 14px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: auto;
    border-top: 0;
    border-left: 4px solid var(--ohhs-yellow);
    margin-bottom: 10px;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero-slider {
    height: 610px;
  }

  .hero-content {
    padding: 95px 34px 0 56px;
  }

  .quick-cards,
  .story-grid,
  .admissions-grid,
  .event-grid,
  .development-grid,
  .footer-grid,
  .two-columns {
    grid-template-columns: 1fr 1fr;
  }

  .beacon-cta {
    margin-inline: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .main-header-inner {
    padding: 14px 18px;
  }

  .brand img {
    width: 64px;
  }

  .brand-text small {
    display: none;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-content {
    padding: 88px 24px 0;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-text {
    font-size: 17px;
  }

  .slider-arrow {
    display: none;
  }

  .quick-cards {
    margin-top: 0;
  }

  .quick-cards,
  .story-grid,
  .admissions-grid,
  .event-grid,
  .development-grid,
  .footer-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid #e8ece6;
  }

  .section {
    padding-block: 58px;
  }

  .school-values-card,
  .beacon-cta {
    padding: 32px 24px;
  }

  .help-bubble {
    display: none;
  }
}


/* Inner pages */
.inner-site .main-header {
  position: sticky;
}

.page-hero {
  position: relative;
  min-height: 430px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 59, 34, 0.88), rgba(5, 59, 34, 0.58), rgba(0, 0, 0, 0.18));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 80px 24px;
  margin: 0 auto;
  width: 100%;
  color: #ffffff;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  color: #ffffff;
  text-shadow: 3px 5px 14px rgba(0, 0, 0, 0.42);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.7;
}

.soft-bg {
  background: var(--ohhs-grey);
}

.rounded-img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  object-fit: cover;
}

.narrow {
  max-width: 850px;
  margin: 0 auto;
}

.feature-grid,
.card-grid,
.gallery-grid,
.downloads-grid,
.checklist-grid,
.staff-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

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

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

.info-box,
.download-card,
.staff-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  padding: 30px;
  border-top: 5px solid var(--ohhs-yellow);
}

.info-box h3,
.download-card h3,
.staff-card h3 {
  margin: 0 0 12px;
  color: var(--ohhs-dark-green);
  font-size: 23px;
}

.info-box p,
.download-card p,
.staff-card p,
.staff-card span {
  color: #57605a;
  line-height: 1.7;
}

.highlight-card {
  border-top-color: var(--ohhs-green);
}

.highlight-card .btn {
  margin-top: 18px;
}

.mini-list,
.styled-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #4f5b55;
  line-height: 1.9;
}

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

.styled-list {
  padding: 32px 40px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

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

.download-card {
  display: block;
  transition: transform 0.2s ease;
}

.download-card:hover {
  transform: translateY(-4px);
}

.download-card span {
  display: inline-block;
  margin-top: 15px;
  color: var(--ohhs-green);
  font-weight: 800;
}

.staff-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.staff-card {
  text-align: center;
}

.staff-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 18px;
}

.staff-card.principal {
  max-width: 430px;
  margin: 0 auto 34px;
}

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

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

.gallery-grid img {
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steps-list {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.steps-list div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.steps-list span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ohhs-yellow);
  color: var(--ohhs-navy);
  font-weight: 900;
  border-radius: 50%;
}

.steps-list p {
  margin: 0;
  color: #4f5b55;
  line-height: 1.7;
}

.table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  border-radius: 16px;
  overflow: hidden;
}

.simple-table th,
.simple-table td {
  padding: 18px;
  border-bottom: 1px solid #e8ece6;
  text-align: left;
}

.simple-table th {
  background: var(--ohhs-dark-green);
  color: #ffffff;
}

.contact-form {
  padding: 34px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ohhs-dark-green);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ccd8cc;
  border-radius: 10px;
  padding: 13px 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ohhs-green);
  box-shadow: 0 0 0 3px rgba(17, 130, 59, 0.12);
}

.search-results {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

.search-result-card {
  display: block;
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  background: #ffffff;
  border-left: 5px solid var(--ohhs-yellow);
}

.search-result-card h3 {
  margin: 0 0 6px;
  color: var(--ohhs-dark-green);
}

.search-result-card p {
  margin: 0;
  color: #57605a;
}

@media (max-width: 980px) {
  .feature-grid.four,
  .card-grid.three,
  .downloads-grid,
  .gallery-grid,
  .staff-grid,
  .checklist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 360px;
  }

  .feature-grid.four,
  .card-grid.three,
  .downloads-grid,
  .gallery-grid,
  .staff-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .steps-list div {
    grid-template-columns: 1fr;
  }
}

/* RECORDS PAGE */

.records-hero {
  background:
    linear-gradient(rgba(0, 77, 38, 0.78), rgba(0, 77, 38, 0.78)),
    url("../images/records-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 110px 20px;
  text-align: center;
}

.records-hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
  color: #ffd700;
}

.records-hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.records-section {
  padding: 80px 20px;
  background: #f7fbf4;
}

.records-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 45px;
  align-items: start;
}

.records-info {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 77, 38, 0.08);
  border-left: 6px solid #ffd700;
}

.records-info h2 {
  color: #004d26;
  font-size: 34px;
  margin-bottom: 15px;
}

.records-info p {
  color: #444;
  line-height: 1.8;
}

.section-tag {
  display: inline-block;
  background: #ffd700;
  color: #004d26;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 13px;
}

.notice-box {
  margin-top: 25px;
  background: #fff8d6;
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid #ffd700;
}

.notice-box h3 {
  color: #004d26;
  margin-bottom: 8px;
}

.records-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 77, 38, 0.08);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.records-form .form-group {
  display: flex;
  flex-direction: column;
}

.records-form .full-width {
  grid-column: span 2;
}

.records-form label {
  font-weight: 700;
  color: #004d26;
  margin-bottom: 8px;
}

.records-form input,
.records-form select,
.records-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d7e2d0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
}

.records-form input:focus,
.records-form select:focus,
.records-form textarea:focus {
  border-color: #00843d;
  box-shadow: 0 0 0 3px rgba(0, 132, 61, 0.12);
}

.records-submit-btn {
  grid-column: span 2;
  background: #004d26;
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.records-submit-btn:hover {
  background: #ffd700;
  color: #004d26;
}

/* MOBILE */
@media (max-width: 850px) {
  .records-grid {
    grid-template-columns: 1fr;
  }

  .records-form {
    grid-template-columns: 1fr;
  }

  .records-form .full-width,
  .records-submit-btn {
    grid-column: span 1;
  }

  .records-hero h1 {
    font-size: 38px;
  }
}
