:root {
  --bg: #f8f2e7;
  --surface: #fffaf3;
  --surface-strong: #ffffff;
  --surface-tint: #efe4d0;
  --ink: #1f2a25;
  --muted: #5d675f;
  --line: rgba(31, 42, 37, 0.12);
  --green: #154d3a;
  --green-deep: #0d3628;
  --green-soft: #d8ebdb;
  --gold: #e7a63e;
  --gold-soft: #f7e2bb;
  --terracotta: #c9643b;
  --shadow: 0 22px 48px rgba(17, 31, 25, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(231, 166, 62, 0.18), transparent 28%),
    radial-gradient(circle at right 10% top 15%, rgba(21, 77, 58, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf6ee 0%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.notice-strip {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
}

.notice-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  padding: 0.85rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 242, 231, 0.82);
  border-bottom: 1px solid rgba(31, 42, 37, 0.07);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 32px rgba(13, 54, 40, 0.08);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.brand__logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 14px 24px rgba(21, 77, 58, 0.16);
  flex-shrink: 0;
}
.brand__badge {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green) 0%, #2b7c5e 100%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(21, 77, 58, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--green-deep);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--terracotta);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.3rem;
}

.nav-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin: 0.35rem 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 7% auto auto -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(201, 100, 59, 0.09);
  filter: blur(0.5px);
}

.hero__grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__grid {
  padding: 5.5rem 0 4rem;
}

.page-hero__grid {
  padding: 4rem 0 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.hero p,
.page-hero p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero__copy {
  display: grid;
  gap: 1.3rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(21, 77, 58, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--green-deep);
  border: 1px solid rgba(21, 77, 58, 0.14);
}

.button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.metric-card,
.contact-card,
.program-card,
.path-card,
.person-card,
.timeline-card,
.gallery-card,
.visual-card,
.info-panel,
.quote-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--green-deep);
  font-family: "Sora", sans-serif;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__media {
  position: relative;
  min-height: 40rem;
}

.hero-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card--primary {
  position: absolute;
  inset: 0 2.25rem 5.5rem 0;
  background: var(--surface-strong);
}

.hero-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 54, 40, 0.86) 100%);
  color: #fff;
}

.hero-card__body h2 {
  font-size: 1.5rem;
  margin: 0.65rem 0 0.45rem;
}

.hero-card__body p,
.hero-card__caption span {
  color: rgba(255, 255, 255, 0.82);
}

.pill {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pill--soft {
  background: var(--gold-soft);
  border-color: transparent;
  color: #895300;
}

.hero-card--floating {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(20rem, 48%);
  background: var(--surface-strong);
}

.hero-card--floating img {
  aspect-ratio: 1.08;
  object-fit: cover;
}

.hero-card__caption {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem 1.2rem;
}

.hero-card__caption strong {
  color: var(--green-deep);
  font-family: "Sora", sans-serif;
}

.hero-card__caption span {
  color: var(--muted);
}

.section {
  padding: 2rem 0 4.5rem;
}

.section--surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(239, 228, 208, 0.45) 100%);
}

.section--cta {
  padding-top: 1rem;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
  max-width: 38rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  color: var(--muted);
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.split--story {
  align-items: center;
}

.stack {
  display: grid;
  gap: 1rem;
}

.feature-list,
.day-grid {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.day-grid article {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.feature-list strong,
.day-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Sora", sans-serif;
}

.feature-list--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-grid,
.program-grid,
.gallery-strip,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  min-height: 15rem;
}

.path-card:hover {
  transform: translateY(-3px);
}

.path-card__index {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--green-soft);
  color: var(--green-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.path-card h3,
.program-card h3,
.visual-card h3,
.gallery-card h3,
.contact-card h2,
.person-card h3,
.timeline-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.path-card p,
.program-card p,
.visual-card p,
.gallery-card p,
.contact-card p,
.person-card p,
.timeline-card p,
.info-panel p,
.quote-card p,
.location-panel__copy p {
  color: var(--muted);
}

.faculty-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.person-card,
.program-card,
.contact-card,
.timeline-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.person-card {
  padding: 0;
  overflow: hidden;
}

.person-card__image {
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: #f4eee1;
}

.person-card__body {
  display: grid;
  gap: 0.35rem;
  padding: 1.4rem;
}

.person-card__meta {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}
.person-card__tag,
.contact-card__label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.gallery-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card,
.gallery-card {
  overflow: hidden;
  border-radius: 26px;
}

.visual-card img,
.gallery-card img {
  height: 18rem;
  object-fit: cover;
}

.visual-card__body,
.gallery-card__body {
  padding: 1.25rem;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--green-deep) 0%, #215a45 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 16ch;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-panel p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .eyebrow::before {
  background: rgba(255, 255, 255, 0.46);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.brand--footer {
  align-items: center;
  color: #fff;
}

.brand--footer .brand__logo {
  box-shadow: 0 16px 28px rgba(5, 16, 12, 0.2);
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  margin-top: 2rem;
  padding: 2.25rem 0 1rem;
  background:
    radial-gradient(circle at top left, rgba(231, 166, 62, 0.14), transparent 24%),
    linear-gradient(180deg, #123f30 0%, var(--green-deep) 100%);
  color: rgba(255, 255, 255, 0.88);
}

.footer-shell {
  display: grid;
  gap: 1.4rem;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 34rem;
}

.footer-summary {
  color: rgba(255, 255, 255, 0.8);
}

.footer-address {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.footer-details {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr) auto;
  gap: 1.1rem 1.4rem;
  align-items: start;
}

.footer-group {
  display: grid;
  gap: 0.75rem;
}

.footer-group--social {
  justify-items: end;
}

.footer-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-chip:hover,
.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.footer-social-link {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-social-link .social-link__icon {
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  color: #fff;
}

.footer-social-link .social-link__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a:hover,
.text-link:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .footer-details {
    grid-template-columns: 1fr;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-group--social {
    justify-items: start;
  }

  .footer-social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
  }

  .footer-chip {
    width: 100%;
    justify-content: flex-start;
  }
}


.info-panel {
  padding: 1.4rem;
  border-radius: 24px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.timeline-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.quote-card {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 226, 187, 0.7) 100%);
}

.quote-card p {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--green-deep);
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card h2 {
  font-size: 1.45rem;
}

.text-link {
  color: var(--green);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card--large {
  grid-column: span 7;
}

.gallery-card--wide {
  grid-column: span 7;
}

.gallery-grid .gallery-card:not(.gallery-card--large):not(.gallery-card--wide) {
  grid-column: span 5;
}

.gallery-card--large img {
  height: 27rem;
}

.location-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-panel__media img {
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .path-grid,
  .program-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip,
  .faculty-preview,
  .feature-list--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card--large,
  .gallery-card--wide,
  .gallery-grid .gallery-card:not(.gallery-card--large):not(.gallery-card--wide) {
    grid-column: span 12;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-top: 4rem;
  }

  .hero__media {
    min-height: 32rem;
  }

  .hero-card--primary {
    inset: 0 1.25rem 4.5rem 0;
  }

  .metric-row,
  .path-grid,
  .program-grid,
  .contact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 640px) {
  .notice-strip__inner {
    justify-content: flex-start;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .hero__media {
    min-height: 26rem;
  }

  .hero-card--primary {
    inset: 0 0.8rem 4.2rem 0;
  }

  .hero-card--floating {
    width: 66%;
  }

  .cta-panel {
    padding: 1.5rem;
  }

  .visual-card img,
  .gallery-card img,
  .gallery-card--large img {
    height: 15.5rem;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}




.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.notice-entry {
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.notice-entry h3 {
  margin: 0.85rem 0 0.65rem;
  font-size: 1.4rem;
}

.notice-entry p {
  color: var(--muted);
}

.notice-status {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-status--open {
  background: var(--green-soft);
  color: var(--green-deep);
}

.notice-status--time {
  background: var(--gold-soft);
  color: #8b5800;
}

.notice-status--visit {
  background: rgba(201, 100, 59, 0.14);
  color: var(--terracotta);
}

.notice-status--info {
  background: rgba(21, 77, 58, 0.1);
  color: var(--green);
}

.notice-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.notice-list span {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .notice-grid {
    grid-template-columns: 1fr;
  }
}

.notice-entry .button {
  margin-top: 1rem;
}














.site-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  background: rgba(21, 77, 58, 0.08);
  border: 1px solid rgba(21, 77, 58, 0.14);
  color: var(--green-deep);
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav__button:hover,
.site-nav__button[aria-current="page"] {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}

.site-nav__button[aria-current="page"]::after {
  display: none;
}
