:root {
  --navy: #183153;
  --navy-deep: #10243e;
  --teal: #2f7f82;
  --teal-dark: #195f63;
  --coral: #e76f51;
  --coral-dark: #c54f36;
  --gold: #f4b942;
  --cream: #fffaf0;
  --cream-2: #f7f1e6;
  --paper: #ffffff;
  --ink: #1e293b;
  --muted: #5d6879;
  --line: #dce2e8;
  --shadow-sm: 0 8px 24px rgba(16, 36, 62, .10);
  --shadow-lg: 0 24px 70px rgba(16, 36, 62, .16);
  --radius: 18px;
  --radius-lg: 30px;
  --max: 1680px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--teal-dark); text-underline-offset: 3px; }
a:hover { color: var(--coral-dark); }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: .5rem;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(24, 49, 83, .10);
  background: rgba(255, 250, 240, .94);
  backdrop-filter: blur(15px);
}
.header-inner {
  width: 100%;
  min-height: 92px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 1.5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 58px; height: 58px; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 1.6vw, 1.62rem); font-weight: 800; }
.brand-place { margin-top: .25rem; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: .3rem; margin-left: auto; }
.site-nav a {
  padding: .72rem 1rem;
  color: var(--navy);
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.03rem;
  font-weight: 700;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; background: var(--navy); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--navy);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .2s ease;
}

main { overflow: hidden; }
.container { width: min(var(--max), calc(100% - clamp(2rem, 5vw, 6rem))); margin-inline: auto; }
.section { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(2.8rem, 6vw, 5rem) 0; }
.section-white { background: var(--paper); }
.section-cream { background: var(--cream-2); }
.section-navy { color: #fff; background: var(--navy-deep); }
.section-heading { max-width: 900px; margin-bottom: 2.2rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .85rem;
  color: var(--coral-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--gold); border-radius: 9px; }
h1, h2, h3 { margin: 0 0 .7em; color: var(--navy); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
h1 { font-size: clamp(2.55rem, 6.6vw, 5.5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
.section-navy h2, .section-navy h3 { color: #fff; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.24rem); }
.section-navy .lead { color: rgba(255,255,255,.78); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .75rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--coral); box-shadow: 0 10px 22px rgba(231, 111, 81, .25); }
.btn-primary:hover { color: #fff; background: var(--coral-dark); }
.btn-secondary { color: var(--navy); border-color: rgba(24, 49, 83, .24); background: #fff; }
.btn-secondary:hover { color: var(--navy); border-color: var(--navy); }
.btn-light { color: var(--navy); background: #fff; }
.btn-light:hover { color: var(--navy); background: var(--gold); }

.hero { position: relative; padding: clamp(3.5rem, 8vw, 7.2rem) 0 clamp(4rem, 8vw, 7rem); background: linear-gradient(135deg, #fffaf0 0%, #f4eee2 100%); }
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  opacity: .17;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, var(--teal) 25%, transparent 25%),
    linear-gradient(-45deg, var(--coral) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--navy) 75%);
  background-size: 44px 44px;
  background-position: 0 0, 0 22px, 22px -22px, -22px 0;
  transform: rotate(12deg);
}
.hero::before { top: -68px; right: -80px; }
.hero::after { bottom: -130px; left: -90px; transform: rotate(-12deg); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero-copy .lead { max-width: 650px; }
.hero-photo-wrap { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 9% -6% -7% 12%;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: var(--gold);
  transform: rotate(3deg);
}
.hero-sticker {
  position: absolute;
  left: -1.5rem;
  bottom: 1.5rem;
  max-width: 240px;
  padding: 1rem 1.15rem;
  color: #fff;
  background: var(--navy);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
}
.hero-sticker strong { display: block; color: var(--gold); font-size: 1.15rem; }

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: end start;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 31, 54, .93) 0%, rgba(11, 31, 54, .72) 50%, rgba(11, 31, 54, .20) 100%); }
.page-hero .container { position: relative; z-index: 1; padding-block: 5rem; }
.page-hero h1 { max-width: 800px; color: #fff; }
.page-hero .lead { max-width: 650px; color: rgba(255,255,255,.87); }
.page-hero-calendar { background-image: url('../images/hero-calendar.jpg'); }
.page-hero-classes { background-image: url('../images/hero-classes.jpg'); }
.page-hero-about { background-image: url('../images/hero-about.jpg'); }
.page-hero-contact { background-image: url('../images/hero-contact.jpg'); }

.announcement-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.announcement-shell::before {
  content: "New dancers welcome";
  position: absolute;
  top: -16px;
  left: 30px;
  padding: .45rem .9rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.date-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin: 1.5rem 0; }
.date-card { padding: 1rem; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); }
.date-card .month { color: var(--coral-dark); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.date-card .day { color: var(--navy); font-family: Georgia, serif; font-size: 2.15rem; font-weight: 900; line-height: 1; }
.date-card .label { margin-top: .35rem; color: var(--muted); font-size: .89rem; font-weight: 700; }
.callout { padding: 1rem 1.1rem; border-left: 5px solid var(--coral); border-radius: 0 14px 14px 0; background: #fff4f0; }
.callout strong { color: var(--navy); }
.flyer-card { align-self: start; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--cream-2); box-shadow: var(--shadow-sm); }
.flyer-card a.flyer-image-link { display: block; padding: .9rem; }
.flyer-card img { width: 100%; max-height: 650px; object-fit: contain; border-radius: 12px; background: #fff; }
.flyer-actions { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0 .9rem .9rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.info-card { position: relative; min-height: 100%; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.info-card .icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1rem; color: #fff; border-radius: 14px; background: var(--teal); font-size: 1.45rem; }
.info-card:nth-child(2) .icon { background: var(--coral); }
.info-card:nth-child(3) .icon { color: var(--navy); background: var(--gold); }
.info-card p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.check-list { display: grid; gap: .75rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -.1rem; color: var(--teal); font-size: 1.25rem; font-weight: 900; }

/* Calendar */
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.calendar-toolbar h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.calendar-nav { display: flex; gap: .55rem; }
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: .55px currentColor;
  box-shadow: var(--shadow-sm);
}
.icon-button:hover:not(:disabled) { color: #fff; background: var(--navy); }
.icon-button:disabled { opacity: .35; cursor: not-allowed; }
.calendar-wrap { overflow-x: auto; padding: 1rem; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.calendar-grid { min-width: 780px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.weekday { padding: .75rem .45rem; color: #fff; background: var(--navy); text-align: center; font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.calendar-day { min-height: 128px; padding: .55rem; background: #fff; }
.calendar-day.outside { background: #f4f5f7; }
.day-number { display: inline-grid; place-items: center; width: 30px; height: 30px; margin-bottom: .35rem; color: var(--navy); border-radius: 50%; font-size: .88rem; font-weight: 900; }
.event-chip { width: 100%; margin-top: .3rem; padding: .48rem .55rem; border: 0; border-radius: 9px; text-align: left; cursor: pointer; font-size: .78rem; font-weight: 800; line-height: 1.2; }
.event-chip.fun { color: #fff; background: var(--coral); }
.event-chip.class { color: #fff; background: var(--teal); }
.event-chip:hover, .event-chip:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin: .9rem 0 0; color: var(--muted); font-size: .9rem; }
.legend-item { display: inline-flex; align-items: center; gap: .4rem; }
.legend-dot { width: 12px; height: 12px; border-radius: 4px; background: var(--teal); }
.legend-dot.fun { background: var(--coral); }
.event-details { margin-top: 1.4rem; padding: clamp(1.2rem, 3vw, 2rem); border-radius: 20px; color: #fff; background: var(--navy); box-shadow: var(--shadow-sm); }
.event-details h3 { color: #fff; }
.event-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem 1.5rem; margin: 1rem 0; }
.event-meta div { color: rgba(255,255,255,.82); }
.event-details a { color: var(--gold); }
.mobile-event-list { display: none; }
.mobile-event-item { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.mobile-event-item button { width: 100%; padding: 0; border: 0; color: var(--navy); background: transparent; text-align: left; cursor: pointer; }
.mobile-event-item strong { display: block; font-size: 1.05rem; }
.mobile-event-item span { color: var(--muted); }

/* Classes */
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.fact { padding: 1.2rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.fact-label { color: var(--coral-dark); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.fact strong { display: block; margin-top: .25rem; color: var(--navy); font-size: 1.04rem; }
.faq { display: grid; gap: .8rem; }
details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
summary { padding: 1rem 1.15rem; color: var(--navy); cursor: pointer; font-weight: 850; }
details p { margin: 0; padding: 0 1.15rem 1.15rem; color: var(--muted); }

/* About / people */
.leadership-heading { margin-inline: auto; text-align: center; }
.leadership-heading .eyebrow { justify-content: center; }
.leadership-heading h2 { font-size: clamp(1.8rem, 2.5vw, 2.45rem); }
.leadership-heading .lead { margin-inline: auto; }
.people-grid { width: min(100%, 1100px); margin-inline: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.person-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.person-placeholder { min-height: 195px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--teal), var(--navy)); }
.person-initials { display: grid; place-items: center; width: 96px; height: 96px; border: 4px solid rgba(255,255,255,.65); border-radius: 50%; font-family: Georgia, serif; font-size: 2.25rem; font-weight: 900; }
.person-photo-wrap { overflow: hidden; }
.person-photo { width: 100%; height: 195px; object-fit: cover; object-position: 50% 55%; }
.person-photo-paul { object-position: 50% 58%; }
.person-photo-darrell { object-position: 50% 42%; }
.person-photo-karen { object-position: 50% 62%; }
.person-photo-mcpherson { object-position: 50% 67%; }
.person-copy { padding: 1rem 1.1rem 1.05rem; }
.person-copy h3 { margin-bottom: .25rem; }
.person-copy p { margin: .55rem 0 0; }
.person-title { color: var(--coral-dark); font-weight: 850; }
.placeholder-card { display: grid; place-items: center; min-height: 360px; padding: 2rem; border: 2px dashed #bfc9d4; border-radius: 20px; color: var(--muted); background: rgba(255,255,255,.55); text-align: center; }

.people-grid .person-card:nth-child(2) .person-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.people-grid .person-card:nth-child(3) .person-placeholder {
  background: linear-gradient(135deg, var(--coral-dark), var(--navy));
}

@media (min-width: 961px) {
  .people-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .people-grid .person-card { grid-column: span 2; }
  .people-grid .person-card:nth-child(4) { grid-column: 2 / span 2; }
  .people-grid .person-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card { padding: clamp(1.4rem, 4vw, 2.2rem); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-card.featured { color: #fff; background: var(--navy); }
.contact-card.featured h2, .contact-card.featured h3 { color: #fff; }
.contact-card.featured a { color: var(--gold); }
.contact-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 1rem; border-radius: 16px; color: var(--navy); background: var(--gold); font-size: 1.5rem; }
.contact-email { overflow-wrap: anywhere; font-size: clamp(1.15rem, 3vw, 1.65rem); font-weight: 900; }

.notice { padding: 1rem 1.2rem; border-radius: 14px; color: #664d03; background: #fff3cd; border: 1px solid #ffecb5; }
.photo-note { color: var(--muted); font-size: .84rem; }

.site-footer { color: rgba(255,255,255,.82); background: var(--navy-deep); }
.footer-inner { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand img { width: 58px; height: 58px; }
.footer-brand strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 1.3rem; }
.footer-links { display: grid; gap: .35rem; }
.footer-links a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .88rem; }

.decorated::before, .decorated::after { content: ""; position: absolute; width: 120px; height: 120px; opacity: .08; border: 16px solid var(--teal); transform: rotate(45deg); pointer-events: none; }
.decorated::before { top: 30px; left: -80px; }
.decorated::after { right: -75px; bottom: 30px; border-color: var(--coral); }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: grid; }
  .site-nav a { border-radius: 12px; }
  .hero-grid, .announcement-shell, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 720px; }
  .hero-sticker { left: .8rem; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .header-inner { min-height: 72px; }
  .brand img { width: 44px; height: 44px; }
  .brand-place { display: none; }
  .hero { padding-top: 2.6rem; }
  .hero-photo-wrap::before { inset: 7% -3% -5% 7%; }
  .hero-sticker { position: relative; left: auto; bottom: auto; max-width: none; margin: -1rem 1rem 0; transform: rotate(-1deg); }
  .date-grid, .fact-grid, .card-grid, .people-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 370px; background-position: 62% center; }
  .calendar-wrap { display: none; }
  .mobile-event-list { display: block; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
  .event-meta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .btn-row, .menu-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 1.5rem 0; }
  .calendar-wrap { box-shadow: none; }
}


/* ==========================================================
   August 2026 layout refinement
   - More compact hero and page banners
   - Smaller calendar
   - Club smiley + four-square navigation mark
   - Video page
   ========================================================== */
:root { --wide-max: 1360px; }

.brand > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}
.nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: .15rem;
  flex: 0 0 auto;
}
.nav-mark img { width: 36px; height: 36px; }
.footer-brand img { object-fit: contain; }

h2 { font-size: clamp(1.9rem, 3.7vw, 3.25rem); }
.lead { font-size: clamp(1rem, 1.55vw, 1.17rem); }

/* Home hero */
.hero {
  padding: clamp(1.8rem, 2.3vw, 2.4rem) 0 clamp(3rem, 5vw, 4.8rem);
}
.hero .container {
  width: min(1540px, calc(100% - 3rem));
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: 0;
}
.hero-grid {
  grid-template-columns: minmax(0, 600px) minmax(0, 790px);
  justify-content: center;
  gap: clamp(6rem, 6.5vw, 8rem);
  width: 100%;
  max-width: none;
  margin-inline: auto;
}
.home-hero-copy { width: 100%; min-width: 0; }
.home-hero-copy h1 {
  max-width: 600px;
  margin-bottom: .42em;
  font-size: clamp(2.3rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.home-hero-copy h1 span { display: block; white-space: nowrap; }
.home-hero-copy .lead { max-width: 720px; font-size: clamp(1.05rem, 1.35vw, 1.2rem); }
.hero-photo-wrap { width: 100%; max-width: 790px; justify-self: start; }
.hero-photo {
  width: 100%;
  height: auto;
  max-height: 585px;
  aspect-ratio: auto;
  object-fit: contain;
  border-width: 8px;
}
.hero-photo-wrap::before { inset: 8% -5% -6% 10%; }
.hero-sticker {
  left: -.8rem;
  bottom: .9rem;
  max-width: 290px;
  padding: .85rem 1rem;
  font-size: .94rem;
  line-height: 1.4;
}
.hero-sticker strong { font-size: 1.08rem; }
.sticker-emphasis {
  display: block;
  margin-top: .42rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
}

/* Compact page banners */
.page-hero {
  height: 225px;
  min-height: 225px;
  place-items: center start;
}
.page-hero .container {
  display: grid;
  align-content: center;
  width: 100%;
  max-width: none;
  height: 100%;
  padding-block: 1.5rem;
  padding-inline: clamp(1rem, 1.5vw, 2rem);
}
.page-hero h1 {
  max-width: 820px;
  margin-bottom: .28em;
  font-size: clamp(2.35rem, 4.7vw, 3.6rem);
  line-height: 1.02;
}
.page-hero .lead {
  max-width: 980px;
  margin: 0;
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
}
.page-hero-videos { background-image: url('../images/hero-classes.jpg'); }

/* Home announcement: same width, reduced vertical footprint */
.home-announcement-section { padding: clamp(3.2rem, 5vw, 4.8rem) 0; }
.announcement-shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: clamp(1.8rem, 3vw, 3rem);
  padding: clamp(1.75rem, 2.7vw, 2.5rem);
}
.announcement-copy h2 {
  margin-bottom: .4em;
  font-size: clamp(2.15rem, 3.1vw, 3.05rem);
}
.announcement-copy .lead { font-size: clamp(1.04rem, 1.35vw, 1.16rem); line-height: 1.55; }
.date-grid { gap: .65rem; margin: 1rem 0; }
.date-card { padding: .9rem 1rem; }
.date-card .day { font-size: 2rem; }
.date-card .label { margin-top: .18rem; font-size: .82rem; }
.callout { padding: .8rem .95rem; }
.program-highlight {
  display: inline-flex;
  margin: .65rem 0 1rem;
  padding: .55rem .85rem;
  color: var(--navy);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: rgba(47, 127, 130, .11);
  font-style: italic;
  font-weight: 850;
}
.flyer-card a.flyer-image-link { padding: .72rem; }
.flyer-card img { max-height: 620px; }
.flyer-actions { padding: 0 .72rem .72rem; }

/* Calendar sizing */
.calendar-section { padding: 2.15rem 0 3.1rem; }
.calendar-toolbar,
.calendar-wrap,
.event-details,
.calendar-actions { width: min(100%, 1320px); margin-inline: auto; }
.calendar-toolbar { margin-bottom: .7rem; }
.calendar-toolbar h2 { font-size: clamp(1.85rem, 3vw, 2.55rem); }
.calendar-wrap { padding: .8rem; border-radius: 18px; }
.calendar-grid { min-width: 860px; border-radius: 12px; }
.weekday { padding: .65rem .4rem; font-size: .78rem; }
.calendar-day { min-height: 104px; padding: .5rem; }
.day-number { width: 32px; height: 32px; margin-bottom: .2rem; font-size: 1rem; }
.event-chip { margin-top: .22rem; padding: .45rem .5rem; font-size: .76rem; border-radius: 8px; }
.calendar-legend { margin-top: .72rem; font-size: .88rem; }
.event-details { margin-top: 1rem; padding: 1.25rem 1.5rem; }
.calendar-actions { justify-content: flex-start; }
.calendar-bottom-image { width: min(80%, 690px); justify-self: center; }
.calendar-bottom-section .split { gap: clamp(1.5rem, 4vw, 3.5rem); }

/* Classes and Contact refinements */
.classes-intro h2 { font-size: clamp(1.95rem, 2.9vw, 2.7rem); }
.classes-intro .lead { font-size: clamp(.98rem, 1.4vw, 1.08rem); }
.contact-grid { width: 100%; margin-inline: auto; gap: 1.25rem; }
.contact-card { padding: clamp(1.2rem, 2.6vw, 1.65rem); border-radius: 19px; }
.contact-card h2 { font-size: clamp(1.65rem, 2.2vw, 2.05rem); }
.contact-icon { width: 48px; height: 48px; margin-bottom: .75rem; }
.contact-email { font-size: clamp(1.05rem, 1.8vw, 1.32rem); }
.contact-section { padding: clamp(2.8rem, 5vw, 4.3rem) 0; }

/* Video page */
.video-section { padding: clamp(3rem, 5vw, 4.7rem) 0; }
.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, .58fr);
  gap: clamp(1.5rem, 3.5vw, 2.7rem);
  align-items: start;
}
.video-layout h2 { font-size: clamp(2rem, 3.1vw, 2.85rem); }
.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 1.25rem;
  border: 8px solid #fff;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-side-card {
  padding: clamp(1.25rem, 2.7vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}
.video-side-card h2 { font-size: clamp(1.8rem, 2.7vw, 2.45rem); }
.video-encouragement {
  padding: 1rem;
  border-left: 5px solid var(--coral);
  border-radius: 0 14px 14px 0;
  color: var(--navy);
  background: #fff4f0;
}
.video-note-section { padding: clamp(3rem, 5vw, 4.5rem) 0; }

@media (max-width: 1100px) {
  .hero .container { width: 100%; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 2rem; }
  .home-hero-copy h1 { font-size: clamp(2.25rem, 4.2vw, 2.65rem); }
  .home-hero-copy h1 span { white-space: normal; }
}

@media (max-width: 960px) {
  .hero-grid,
  .announcement-shell,
  .split,
  .contact-grid,
  .video-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-photo-wrap { max-width: 720px; justify-self: start; }
  .hero-photo { max-height: none; }
  .announcement-shell { max-width: 820px; margin-inline: auto; }
  .announcement-copy,
  .flyer-card { min-width: 0; max-width: 100%; }
  .flyer-card { width: min(100%, 520px); justify-self: center; }
  .contact-grid { width: min(100%, 760px); }
  .video-side-card { max-width: 760px; }
  .calendar-bottom-image { width: min(78%, 620px); }
  .nav-mark { margin-bottom: .25rem; }
}

@media (max-width: 680px) {
  .brand > img { width: 46px; height: 46px; }
  .hero { padding: 2.2rem 0 2.8rem; }
  .hero .container { width: 100%; padding-inline: 1rem; }
  .home-hero-copy h1 { font-size: clamp(2.05rem, 9.5vw, 2.55rem); }
  .home-hero-copy h1 span { white-space: normal; }
  .hero-sticker { margin: -.7rem .6rem 0; }
  .page-hero { height: 210px; min-height: 210px; background-position: 62% center; }
  .page-hero .container { padding: 1.4rem 1.25rem; }
  .page-hero h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .announcement-shell { width: 100%; padding: 1.25rem; }
  .announcement-copy,
  .announcement-copy p,
  .date-grid,
  .flyer-card,
  .flyer-actions { min-width: 0; max-width: 100%; }
  .announcement-copy p { overflow-wrap: break-word; }
  .date-grid { grid-template-columns: minmax(0, 1fr); }
  .date-card { padding: .8rem 1rem; }
  .date-card .month { font-size: .68rem; }
  .date-card .day { font-size: 1.7rem; }
  .date-card .label { font-size: .78rem; }
  .flyer-card img { width: 100%; height: auto; }
  .calendar-section { padding-top: 1.6rem; }
  .calendar-toolbar { align-items: flex-end; flex-wrap: wrap; }
  .calendar-toolbar > div:first-child { min-width: 0; flex: 1 1 155px; }
  .calendar-nav { margin-left: auto; }
  .icon-button { width: 54px; height: 54px; font-size: 1.9rem; }
  .calendar-bottom-image { width: 100%; }
  .contact-card { padding: 1.2rem; }
  .video-frame { border-width: 5px; border-radius: 18px; }
  .nav-mark { display: none; }
}
