:root {
  --bg: #101214;
  --bg-soft: #181c20;
  --bg-panel: rgba(22, 25, 28, 0.82);
  --surface: #ffffff;
  --surface-soft: #f6efe1;
  --surface-card: #fffaf1;
  --text: #f5f0e6;
  --text-dark: #161616;
  --muted: #c9c2b8;
  --muted-dark: #61584f;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #f4b400;
  --gold-deep: #cb8a00;
  --green: #0f766e;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #fbf6ea, #f8f3e8 55%, #f4ede1 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.top-bar {
  height: 10px;
  background: var(--gold);
}

.home-page {
  background: linear-gradient(180deg, #121416 0%, #0f1113 100%);
}

.home-page .top-bar,
.home-page .site-header,
.home-page .hero {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.home-page .hero {
  min-height: min(78vh, 640px);
}

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

.page-hero__inner,
.section-heading,
.split-layout,
.footer-grid,
.admissions-grid,
.narrative-grid {
  display: flex;
  gap: 2rem;
}

.header-row {
  display: flex;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(45, 45, 45, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
}

.site-header--solid {
  position: relative;
}

.header-row {
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.82rem 0;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  color: white;
  min-width: 0;
  flex: 0 1 auto;
}

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

.brand-mark {
  width: 3.1rem;
  aspect-ratio: 1;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #120f08, #36240a),
    linear-gradient(135deg, #f4b400, #af7200);
  border: 2px solid rgba(244, 180, 0, 0.65);
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark--logo {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-color: rgba(244, 180, 0, 0.55);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.brand-mark--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-kicker,
.eyebrow,
.card-tag,
.spotlight-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.76rem;
}

.brand-kicker {
  margin: 0 0 0.22rem;
  color: rgba(255, 255, 255, 0.6);
}

.brand h1,
.hero h2,
.section h2,
.page-hero h2,
.site-footer h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.brand h1 {
  font-size: clamp(0.96rem, 1.65vw, 1.16rem);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  position: relative;
  white-space: nowrap;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  min-width: 14rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem;
  border-radius: 14px;
  background: rgba(248, 244, 238, 0.98);
  border: 1px solid rgba(66, 53, 22, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 40;
}

.nav-submenu--about {
  min-width: 13rem;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  color: #272522;
  text-transform: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(244, 180, 0, 0.12);
  color: #161616;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 3px;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 12px;
  transition: background 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 1.7rem;
  height: 2px;
  background: #fff;
  margin: 0.28rem 0;
}

.hero {
  position: relative;
  min-height: min(90vh, 860px);
  background: linear-gradient(180deg, #303031 0%, #242628 100%);
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #151719;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.12);
  transform-origin: center center;
}

.hero-image-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 18, 20, 0.14) 0%, rgba(15, 18, 20, 0.18) 45%, rgba(15, 18, 20, 0.62) 100%),
    linear-gradient(90deg, rgba(7, 9, 11, 0.22) 0%, rgba(7, 9, 11, 0.04) 35%, rgba(7, 9, 11, 0.22) 100%);
}

.hero-overlay {
  position: relative;
  min-height: min(90vh, 860px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 8rem 0 1rem;
}

.hero-overlay__inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  border-radius: 0;
  background: rgba(14, 16, 18, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-overlay--compact .hero-overlay__inner--compact {
  width: min(29rem, calc(100% - 0.9rem));
  margin: 0 0.1rem 0 auto;
  padding: 0.62rem 0.85rem 0.62rem;
  gap: 0.65rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(10, 12, 14, 0.48), rgba(10, 12, 14, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.hero-overlay--compact .hero-overlay__inner--compact > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-page .hero-overlay--compact .hero-overlay__inner--compact {
  width: min(40rem, calc(100% - 1rem));
  margin: 0 0.45rem 0 auto;
  padding: 0.9rem 1.05rem 0.9rem;
  gap: 0.8rem;
}

.hero-accent {
  width: 5px;
  min-width: 5px;
  min-height: 3.25rem;
  align-self: flex-start;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd35f, #f4b400);
  box-shadow: 0 0 22px rgba(244, 180, 0, 0.22);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
}

.eyebrow--gold {
  color: #ffcf57;
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.04;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-overlay--compact h2 {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.98rem, 1.45vw, 1.3rem);
  line-height: 1.02;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.home-page .hero-overlay--compact h2 {
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
}

.home-page .hero-eyebrow {
  font-size: 0.5rem;
}

.hero-eyebrow {
  max-width: none;
  white-space: nowrap;
  margin-bottom: 0.14rem;
  font-size: 0.43rem;
  letter-spacing: 0.12em;
  color: rgba(183, 223, 214, 0.96);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.section-heading p,
.program-panel p,
.card p,
.showcase-card p,
.narrative-copy p,
.spotlight-card p,
.site-footer p,
.footer-list,
.hours-table {
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
}

.cards,
.showcase-grid {
  display: grid;
  gap: 1.25rem;
}

.button,
.section-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.section-menu:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #ffd768, #f4b400);
  color: #181818;
}

.button--light {
  background: white;
  color: #111;
}

.button--dark {
  background: #111;
  color: white;
}

.showcase-card h3,
.spotlight-card h3,
.footer-grid h3 {
  font-family: "Sora", sans-serif;
}

.section,
.page-main {
  position: relative;
}

.section {
  padding: 5.5rem 0;
}

.page-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.anchor-card {
  scroll-margin-top: 8rem;
}

.section--slate,
.site-footer {
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.11), transparent 26%),
    linear-gradient(180deg, #16181a, #0f1113);
  color: var(--text);
}

.section--cream {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.07), transparent 22%),
    linear-gradient(180deg, #f6efe2, #efe5d4);
}

.section-heading,
.page-hero__inner,
.narrative-grid,
.footer-grid,
.split-layout,
.admissions-grid {
  justify-content: space-between;
  align-items: flex-start;
}

.section-heading h2,
.page-hero h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-heading p,
.page-hero__inner .section-menu {
  max-width: 36rem;
}

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

.card,
.showcase-card,
.spotlight-card,
.program-panel,
.stack-card {
  border-radius: var(--radius-lg);
}

.card,
.stack-card {
  background: var(--surface-card);
  color: var(--text-dark);
  padding: 1.6rem;
  box-shadow: 0 18px 50px rgba(59, 44, 11, 0.09);
  border: 1px solid rgba(74, 55, 17, 0.08);
}

.card--feature {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.card-tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--gold);
}

.card h3,
.showcase-card h3,
.spotlight-card h3 {
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
}

.program-panel {
  padding: 1rem 0;
  color: var(--text);
}

.program-panel h2,
.program-panel p,
.program-panel .check-list li {
  color: var(--text);
}

.program-panel .eyebrow {
  color: rgba(119, 212, 200, 0.92);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(244, 180, 0, 0.15);
}

.spotlight-card {
  padding: 2rem;
  background: linear-gradient(180deg, #efba37, #e0a100);
  color: #16120a;
  box-shadow: 0 20px 50px rgba(64, 43, 0, 0.16);
}

.spotlight-card--gold {
  align-self: stretch;
}

.spotlight-card__eyebrow {
  margin: 0 0 1rem;
  color: rgba(17, 17, 17, 0.75);
}

.showcase-card {
  min-height: 17rem;
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.95)),
    linear-gradient(135deg, rgba(244, 180, 0, 0.2), rgba(15, 118, 110, 0.18));
  border: 1px solid rgba(103, 82, 36, 0.08);
}

.showcase-card--tall {
  grid-row: span 2;
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(19, 22, 24, 0.96), rgba(37, 42, 45, 0.92)),
    linear-gradient(135deg, rgba(244, 180, 0, 0.25), transparent);
  color: white;
}

.showcase-card--accent {
  background:
    linear-gradient(180deg, rgba(244, 180, 0, 0.92), rgba(240, 166, 0, 0.86)),
    linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}

.activity-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.activity-photo-card {
  position: relative;
  min-height: 24rem;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 52px rgba(21, 18, 12, 0.14);
}

.activity-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.activity-photo-card:hover img {
  transform: scale(1.03);
}

.activity-photo-card__caption {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: calc(100% - 1.4rem);
  padding: 0.95rem 1rem 1rem;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.9), rgba(24, 24, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.activity-photo-card__caption--light {
  color: #111;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.95), rgba(232, 232, 232, 0.95));
  border-color: rgba(17, 17, 17, 0.08);
}

.activity-photo-card__caption h3 {
  margin: 0 0 0.35rem;
  font-size: 1.16rem;
}

.activity-photo-card__caption p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer {
  padding: 4rem 0;
}

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

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 0.4rem;
}

.page-hero {
  padding: 4.2rem 0 3rem;
  color: white;
  background: linear-gradient(180deg, #3b3b3b 0%, #343434 100%);
}

.page-hero--admissions,
.page-hero--about,
.page-hero--contact,
.page-hero--academics,
.page-hero--activities,
.page-hero--leadership {
  position: relative;
  overflow: hidden;
}

.page-hero--admissions::after,
.page-hero--about::after,
.page-hero--contact::after,
.page-hero--academics::after,
.page-hero--activities::after,
.page-hero--leadership::after {
  content: "";
  position: absolute;
  inset: auto -12% -3rem auto;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.22), transparent 70%);
}

.section-menu {
  background: var(--gold);
  color: #111;
}

.admissions-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
}

.admissions-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 2rem;
}

.admissions-link {
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.08rem;
}

.admissions-link.active {
  color: var(--gold);
  font-weight: 700;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.narrative-copy p,
.program-panel p,
.card p,
.showcase-card p,
.spotlight-card p,
.site-footer p {
  margin: 0 0 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .brand h1 {
    font-size: clamp(0.9rem, 1.5vw, 1.06rem);
  }

  .brand-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .site-nav {
    gap: 0.6rem;
  }

  .showcase-grid,
  .footer-grid,
  .admissions-grid,
  .narrative-grid,
  .split-layout,
  .activity-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-card--tall {
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .section-heading p,
  .program-panel p,
  .card p,
  .showcase-card p,
  .narrative-copy p,
  .spotlight-card p,
  .site-footer p,
  .footer-list,
  .hours-table {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .header-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.78rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem 1rem;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0 0 0.1rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav > a,
  .nav-group > a {
    display: inline-flex;
    width: auto;
    flex: 0 0 auto;
    padding: 0.15rem 0;
  }

  .nav-group {
    width: auto;
    display: flex;
    gap: 0;
  }

  .nav-submenu {
    display: none;
  }

  .site-nav a.active::after,
  .site-nav a:hover::after {
    bottom: -0.18rem;
  }

  .hero-overlay {
    align-items: flex-end;
    padding: 3.6rem 0 2rem;
  }

  .hero-overlay__inner,
  .section-heading,
  .page-hero__inner,
  .footer-grid,
  .narrative-grid,
  .admissions-grid,
  .split-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-overlay__inner {
    border-radius: 24px;
    width: 100%;
  }

  .page-hero {
    padding: 3.4rem 0 2.4rem;
  }

  .page-hero__inner .section-menu {
    width: 100%;
    max-width: none;
  }

  .hero-overlay--compact .hero-overlay__inner--compact {
    width: min(22rem, calc(100% - 0.45rem));
    margin: 0 0.1rem 1rem auto;
  }

  .home-page .hero-overlay--compact .hero-overlay__inner--compact {
    width: min(24rem, calc(100% - 0.45rem));
  }

  .showcase-grid,
  .footer-grid,
  .admissions-links,
  .admissions-grid,
  .narrative-grid,
  .split-layout,
  .page-sections-grid,
  .activity-gallery {
    grid-template-columns: 1fr;
  }

  .cards--three {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card--tall {
    min-height: auto;
  }

  .activity-photo-card {
    min-height: 26rem;
  }

  .spotlight-card,
  .card,
  .showcase-card,
  .stack-card {
    padding: 1.45rem;
  }

  .section,
  .site-footer {
    padding: 4rem 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 0.9rem, 1180px);
  }

  .top-bar {
    height: 7px;
  }

  .header-row {
    gap: 0.65rem;
    padding: 0.72rem 0;
    align-items: flex-start;
  }

  .brand {
    flex: 1 1 auto;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .brand-mark {
    width: 2.65rem;
    border-radius: 12px;
    flex: 0 0 auto;
  }

  .brand-kicker {
    margin-bottom: 0.12rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .brand h1 {
    font-size: 0.92rem;
    line-height: 1.14;
    white-space: normal;
  }

  .site-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .site-nav {
    gap: 0.5rem 0.85rem;
    padding-bottom: 0.1rem;
  }

  .hero h2,
  .section-heading h2,
  .page-hero h2,
  .site-footer h2 {
    max-width: none;
  }

  .section-heading h2,
  .page-hero h2,
  .site-footer h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.1;
  }

  .card h3,
  .showcase-card h3,
  .spotlight-card h3 {
    font-size: 1.2rem;
  }

  .section-heading p,
  .program-panel p,
  .card p,
  .showcase-card p,
  .narrative-copy p,
  .spotlight-card p,
  .site-footer p,
  .footer-list,
  .hours-table {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-overlay__inner {
    padding: 1.05rem;
  }

  .hero-overlay--compact .hero-overlay__inner--compact {
    width: min(17rem, calc(100% - 0.25rem));
    margin: 0 0.05rem 1.45rem auto;
    padding: 0.6rem 0.75rem 0.65rem;
    border-radius: 14px;
  }

  .home-page .hero-overlay--compact .hero-overlay__inner--compact {
    width: min(17.8rem, calc(100% - 0.25rem));
  }

  .hero-overlay--compact h2 {
    font-size: 0.88rem;
    white-space: normal;
    max-width: 17ch;
    margin-top: 0.08rem;
  }

  .hero-eyebrow {
    white-space: normal;
    font-size: 0.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.02rem;
  }

  .hero-accent {
    min-height: 2.7rem;
    margin-top: 0.02rem;
  }

  .hero-image {
    object-position: center 48%;
    transform: scale(1.06);
  }

  .page-hero {
    padding: 2.9rem 0 2rem;
  }

  .section,
  .site-footer {
    padding: 3.2rem 0;
  }

  .page-sections-grid,
  .cards,
  .showcase-grid,
  .split-layout,
  .footer-grid,
  .activity-gallery {
    gap: 1rem;
  }

  .spotlight-card,
  .card,
  .showcase-card,
  .stack-card {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .activity-photo-card {
    min-height: 20rem;
    border-radius: 18px;
  }

  .activity-photo-card__caption {
    width: calc(100% - 1rem);
    bottom: 0.65rem;
    padding: 0.78rem 0.8rem 0.82rem;
    border-radius: 14px;
  }

  .activity-photo-card__caption h3 {
    font-size: 1rem;
  }

  .activity-photo-card__caption p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .button,
  .section-menu {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.82rem 1rem;
  }

  .hours-table td {
    display: block;
    padding: 0.55rem 0;
  }

  .hours-table td:last-child {
    text-align: left;
    padding-top: 0;
  }

}

@media (max-width: 420px) {
  .brand-mark {
    width: 2.45rem;
  }

  .brand-kicker {
    font-size: 0.54rem;
  }

  .brand h1 {
    font-size: 0.86rem;
  }

  .section-heading h2,
  .page-hero h2,
  .site-footer h2 {
    font-size: clamp(1.45rem, 8.5vw, 1.9rem);
  }

  .home-page .hero {
    min-height: min(72vh, 560px);
  }

  .home-page .hero-overlay--compact .hero-overlay__inner--compact {
    width: min(16.6rem, calc(100% - 0.2rem));
    padding: 0.56rem 0.68rem 0.6rem;
  }

  .hero-overlay--compact h2 {
    font-size: 0.82rem;
    max-width: 16ch;
    margin-top: 0.04rem;
  }

  .hero-eyebrow {
    font-size: 0.36rem;
    margin-bottom: 0;
  }
}
