/* ═══════════════════════════════════════════════════════════
   PENNY LARSON · THE FIELD GUIDE WAS WRONG
   Token system
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Palette */
  --ink:       #1a0a2e;   /* deep indigo-black — dark bg */
  --ink-mid:   #251240;   /* slightly lighter dark surface */
  --crimson:   #7a1a52;   /* logo magenta-crimson */
  --plum:      #3d1468;   /* logo deep purple */
  --cream:     #f2e8d4;   /* warm parchment — light bg */
  --cream-mid: #e8dbc4;   /* slightly darker parchment */
  --gold:      #b8965a;   /* muted warm gold — dividers / accents */
  --text-dark: #f0e4c8;   /* body text on dark */
  --text-light:#1f0e38;   /* body text on light */
  --muted-dark:#9b87b8;   /* secondary text on dark */
  --muted-light:#6b5580;  /* secondary text on light */

  /* Type */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'DM Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-s:   1rem;
  --space-m:   2rem;
  --space-l:   4rem;
  --space-xl:  7rem;

  /* Radius */
  --r: 2px;
}

/* ═══════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text-dark);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.specimen-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-s);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.specimen-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.specimen-label--dark {
  color: var(--crimson);
}
.specimen-label--dark::before {
  background: var(--crimson);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: var(--space-s);
}
.h2--dark {
  color: var(--text-light);
}
h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.section-dark  { background: var(--ink); }
.section-cream { background: var(--cream); color: var(--text-light); }
.section-cream h3 { color: var(--text-light); }
.section-cream h4 { color: var(--text-light); }

.section-head {
  max-width: 680px;
  margin-bottom: var(--space-l);
}
.section-head--dark .section-intro { color: var(--muted-light); }

.section-intro {
  font-size: 1.05rem;
  color: var(--muted-dark);
  line-height: 1.8;
  max-width: 600px;
}
.section-intro--dark {
  color: var(--muted-light);
}

section { padding: var(--space-xl) 0; }

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


.btn-primary {
  display: inline-block;
  background: var(--crimson);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: var(--r);
  border: 1px solid var(--crimson);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: transparent;
  color: var(--crimson);
}
.btn-ghost {
  display: inline-block;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--muted-dark);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  background: rgba(26,10,46,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,150,90,0.15);
  transition: padding 0.3s;
}
#nav.scrolled {
  padding: 0.6rem 2rem;
}

.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-emblem { height: 40px; width: auto; filter: brightness(1.1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-dark); }

.nav-cta {
  background: var(--crimson) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--r);
  border: 1px solid var(--crimson) !important;
  transition: background 0.2s !important, color 0.2s !important;
}
.nav-cta:hover { background: transparent !important; color: var(--crimson) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 191;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  filter: none;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,10,46,0.25) 0%,
    rgba(26,10,46,0.15) 35%,
    rgba(26,10,46,0.6)  75%,
    rgba(26,10,46,1)    100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem var(--space-m) 5rem;
  max-width: 860px;
}

.hero-logo {
  margin: 1rem 0 1.5rem;
  position: relative;
}
.hero-logo::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -8%;
  right: -8%;
  bottom: -10%;
  background: radial-gradient(ellipse at center,
    rgba(242,232,212,0.55) 0%,
    rgba(242,232,212,0.35) 45%,
    rgba(242,232,212,0)    75%
  );
  filter: blur(18px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-logo-img {
  max-width: 680px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(26,10,46,0.25));
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  margin-bottom: var(--space-m);
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.scroll-text {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--ink-mid);
  border-top: 1px solid rgba(184,150,90,0.2);
  border-bottom: 1px solid rgba(184,150,90,0.2);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  flex-shrink: 0;
}
.ticker-sep {
  color: var(--gold) !important;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   LESSONS
   ═══════════════════════════════════════════════════════════ */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,150,90,0.15);
  border: 1px solid rgba(184,150,90,0.15);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: var(--space-l);
}
.lesson-card {
  background: var(--ink-mid);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
}
.lesson-card:hover { background: #2d1650; }
.lesson-card-icon {
  margin-bottom: 1.25rem;
}
.lesson-card-icon img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: hue-rotate(0deg);
}
.lesson-card h3 { color: var(--text-dark); }
.lesson-card p { color: var(--muted-dark); font-size: 0.95rem; margin-bottom: 0.75rem; }
.lesson-card-detail {
  font-family: var(--mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0 !important;
}

.curriculum {
  border-top: 1px solid rgba(184,150,90,0.2);
  padding-top: var(--space-l);
}
.curriculum-head {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-m);
  font-weight: 400;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m) var(--space-l);
}
.curriculum-item h4 { color: var(--text-dark); }
.curriculum-item p { color: var(--muted-dark); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.6rem;
}
.about-img-main {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: var(--r);
}
.about-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.02); }
.about-img-secondary, .about-img-tertiary {
  overflow: hidden;
  border-radius: var(--r);
}
.about-img-secondary img, .about-img-tertiary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.about-img-secondary:hover img,
.about-img-tertiary:hover img { transform: scale(1.04); }
figure { margin: 0; }

.about-text { padding-top: 0.5rem; }
.about-text p {
  color: var(--muted-light);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-text strong { color: var(--text-light); font-weight: 500; }

.credentials {
  margin-top: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.credential {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-top: 1px solid var(--cream-mid);
  font-size: 0.88rem;
}
.credential .mono {
  color: var(--crimson);
  flex-shrink: 0;
  font-size: 0.62rem;
}
.credential span:last-child { color: var(--muted-light); }

/* Endorsements */
.endorsements { border-top: 1px solid var(--cream-mid); padding-top: var(--space-l); }
.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.endorsement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.endorsement-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  filter: grayscale(20%);
  transition: filter 0.3s;
  margin-bottom: 1rem;
}
.endorsement-item img:hover { filter: grayscale(0); }
.endorsement-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.endorsement-text-only {
  border: 1px solid var(--cream-mid);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  background: var(--cream-mid);
  margin-bottom: 1rem;
}
.endorsement-text-only .endorsement-name { font-size: 1.3rem; }
.endorsement-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
}
.endorsement-emblem {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.endorsement-text-badge { display: flex; flex-direction: column; align-items: center; }
.endorsement-press {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-light);
}
.endorsement-press a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   RATES
   ═══════════════════════════════════════════════════════════ */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-m);
}
.rates-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.rate-card {
  border: 1px solid rgba(184,150,90,0.2);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--ink-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.rate-card--featured {
  border-color: var(--crimson);
  background: rgba(122,26,82,0.12);
}
.rate-region {
  color: var(--gold);
  font-size: 0.7rem;
}
.rate-price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.rate-amount {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
}
.rate-currency {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.6rem;
  letter-spacing: 0.1em;
}
.rate-duration {
  font-size: 0.82rem;
  color: var(--muted-dark);
}
.rates-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted-dark);
  max-width: 580px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--r);
  margin: 0;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.88) contrast(1.05);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item--wide img {
  height: 300px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-l);
}
.faq-item {
  border-top: 1px solid rgba(184,150,90,0.2);
  padding: 1.5rem 0;
}
.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.faq-item p { font-size: 0.9rem; color: var(--muted-dark); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-inner {
  max-width: 640px;
  position: relative;
}
.contact-intro {
  color: var(--muted-light);
  font-size: 1rem;
  margin-bottom: var(--space-m);
  line-height: 1.8;
}
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--crimson);
  text-decoration: none;
  border-bottom: 1px solid var(--crimson);
  padding-bottom: 2px;
  margin-bottom: var(--space-m);
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover { color: var(--plum); border-color: var(--plum); }

.contact-tip {
  border: 1px solid var(--cream-mid);
  border-radius: var(--r);
  padding: 1.5rem;
  background: var(--cream-mid);
}
.contact-tip .mono {
  color: var(--crimson);
  display: block;
  margin-bottom: 0.75rem;
}
.contact-tip ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-tip li {
  font-size: 0.88rem;
  color: var(--muted-light);
  padding-left: 1rem;
  position: relative;
}
.contact-tip li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--crimson);
}

.contact-emblem {
  position: absolute;
  right: 0;
  bottom: -2rem;
  opacity: 0.06;
  pointer-events: none;
}
.contact-emblem img { width: 240px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(184,150,90,0.15);
  padding: var(--space-m) 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-m);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-emblem { height: 44px; width: auto; opacity: 0.85; }
.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.footer-tagline {
  color: var(--gold);
  font-size: 0.6rem;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-dark); }
.footer-meta {
  text-align: right;
  font-size: 0.8rem;
  color: var(--muted-dark);
  line-height: 1.6;
}
.footer-meta a { color: var(--gold); text-decoration: none; }
.footer-meta a:hover { color: var(--text-dark); }
.footer-copy { font-size: 0.72rem; margin-top: 0.25rem; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
  .hero-scroll { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,10,46,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 190;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { padding: 0.75rem 2rem !important; }

  .lessons-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: var(--space-l); }
  .about-images { order: -1; }
  .about-img-main img { height: 280px; }

  .endorsement-grid { grid-template-columns: 1fr 1fr; }
  .endorsement-text-only { display: none; }

  .rates-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }

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

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 4rem;
    --space-l: 2.5rem;
  }
  #nav { padding: 0.75rem 1.25rem; }
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 7rem 1.25rem 4rem; }
  .hero-logo-img { max-width: 100%; }

  .curriculum-grid { grid-template-columns: 1fr; }
  .about-img-main img { height: 220px; }
  .about-img-secondary img, .about-img-tertiary img { height: 160px; }

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

  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item img { height: 160px; }
  .gallery-item--wide img { height: 200px; }

  .footer-nav { gap: 1rem; }
}
