@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #12161c;
  --bg-soft: #1c222b;
  --bg-deep: #0b0d10;
  --surface: #1b222a;
  --surface-light: #f4f4f1;
  --surface-muted: #e7e7e1;
  --text: #f4f4f4;
  --text-dim: rgba(244, 244, 244, 0.72);
  --text-dark: #1a1d21;
  --text-mid: #5d636b;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #2e8750;
  --accent-strong: #246b3f;
  --max-width: 1120px;
  --header-height: 5.5rem;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

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

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

iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239, 239, 233, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: var(--header-height);
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 4.25rem;
  height: auto;
}

.brand span,
.site-nav a,
.button,
.eyebrow,
.text-link,
.proof-grid,
.contact-copy h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.brand span {
  color: var(--text-dark);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  white-space: nowrap;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button.header-workshop-mobile {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.3rem;
  height: 2px;
  background: #253142;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  color: #49515a;
  font-size: 0.76rem;
  font-weight: 700;
}

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

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-dropdown__trigger::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.14rem) rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  z-index: 30;
  min-width: 14.5rem;
  padding: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.65rem;
  background: #0b111b;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-0.35rem);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

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

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--accent);
}

.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after {
  transform: translateY(0.05rem) rotate(225deg);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.68rem 0.8rem;
  border-radius: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.site-nav a:hover,
.text-link:hover,
.contact-copy a:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.button-small {
  padding: 0.8rem 1.1rem;
}

.button-solid {
  background: var(--accent);
  color: white;
}

.button-solid:hover {
  background: var(--accent-strong);
}

.button-workshop {
  background: #d71920;
  color: white;
}

.button-workshop:hover {
  background: #b9141a;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.button-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: calc(76svh + var(--header-height));
  display: flex;
  align-items: center;
}

.hero-image,
.hero-image img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-home {
  object-position: center 0%;
}

.hero-image-about {
  object-position: center 45%;
}

.hero-image-woodbridge {
  object-position: center 50%;
}

.hero-image-woodbridge-kids {
  object-position: center 30%;
}

.hero-image-king-city {
  object-position: center 30%;
}

.hero-image-king-city-kids {
  object-position: center 20%;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at top left, rgba(46, 135, 80, 0.26), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(7rem + 1rem) 0 5rem;
  text-align: center;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow-dark {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(4rem, 10vw, 8rem);
}

h2 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h3 {
  font-size: 2rem;
}

h1 span,
h2 span,
.tenet-card h3,
.stars,
.text-link {
  color: var(--accent);
}

.hero-title-white {
  color: var(--text);
}

.hero-copy {
  max-width: 44rem;
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.proof-bar {
  background: var(--accent);
  color: white;
  padding: 1rem 0;
}

.trust-line {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
}

.section {
  padding: 6rem 0;
}

.section-light {
  background: white;
  color: var(--text-dark);
}

.section-light p,
.section-muted p {
  color: var(--text-mid);
}

.section-muted {
  background: var(--surface-muted);
  color: var(--text-dark);
}

.section-dark {
  background: var(--bg-deep);
}

.section-secondary {
  background: var(--bg-soft);
}

.section-center,
.section-intro,
.cta-block {
  text-align: center;
}

.section-intro {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--text-dim);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.image-stack img,
.photo-strip img,
.map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-stack img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-stack .image-wide {
  grid-column: 1 / -1;
  height: 18rem;
}

.image-stack .image-focus-top {
  object-position: center 40%;
}

.image-stack .image-focus-mission {
  object-position: center 28%;
}

.image-stack .image-focus-certificates {
  object-position: center 8%;
}

.image-stack .image-focus-trophy {
  object-position: center 12%;
}

.image-stack .image-focus-king-city-medal {
  object-position: center 12%;
}

.image-stack .image-focus-group {
  object-position: center 78%;
}

.image-stack .image-focus-king-city-kids-group {
  object-position: center 30%;
}

.image-stack .image-focus-bowing {
  object-position: center 20%;
}

.image-stack .image-focus-woodbridge-kids-medal {
  object-position: center 0%;
}

#instructor .image-stack {
  grid-template-columns: 1fr;
  justify-items: center;
}

#instructor .image-stack .image-wide {
  width: min(100%, 32rem);
  height: min(32rem, calc(100vw - 2rem));
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

#grandmaster .image-stack {
  grid-template-columns: 1fr;
  justify-items: center;
}

#grandmaster .image-stack .image-wide {
  width: min(100%, 30rem);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

#expect .image-stack {
  grid-template-columns: 1fr;
  justify-items: center;
}

#expect .image-stack .image-wide {
  width: min(100%, 30rem);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

#expect .image-stack .image-focus-king-city-kids-expect {
  object-position: center 10%;
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.program-card {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.location-card {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: left;
}

.location-card h3,
.location-card p {
  color: var(--text-dark);
}

.location-card .button {
  margin-top: 1rem;
}

.program-card p {
  color: #5d636b;
}

.card-rule {
  width: 3rem;
  height: 2px;
  margin: 0 auto 1.25rem;
  background: var(--accent);
}

.tenet-card,
.review-card {
  background: var(--surface);
}

.tenet-card p,
.review-card p,
.contact-copy p {
  color: var(--text-dim);
}

.tenet-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--bg);
}

.photo-strip img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-stack img:hover,
.photo-strip img:hover {
  transform: scale(1.04);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.review-card strong {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
}

.review-card-light {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
}

.review-card-light p {
  color: var(--text-mid);
}

#reviews h2.section-center {
  margin-bottom: 3rem;
}

.review-embed {
  margin-top: 0;
}

.section-note {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--text-mid);
  text-align: center;
}

.stars {
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list-centered {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.check-list li {
  position: relative;
  margin-top: 0.85rem;
  padding-left: 1.6rem;
  color: var(--text-mid);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--accent);
}

.closing-line {
  margin-top: 1.5rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.1rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--text-dim);
}

.cta-block {
  max-width: 42rem;
}

.cta-block p:last-of-type {
  color: var(--text-dim);
}

.section-light .contact-copy p,
.section-muted .contact-copy p {
  color: var(--text-mid);
}

.section-light .cta-block p:last-of-type,
.section-muted .cta-block p:last-of-type {
  color: var(--text-dark);
}

.cta-block .button {
  margin-top: 1rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cta-actions .button {
  margin-top: 0;
}

.contact-grid {
  margin-top: 2rem;
  align-items: stretch;
}

.map-wrap {
  min-height: 22rem;
}

.contact-copy {
  display: grid;
  gap: 2rem;
  align-content: center;
}

.contact-copy h3 {
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.legal-page {
  padding-top: 5rem;
}

.legal-container {
  max-width: 58rem;
}

.legal-page h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
}

.legal-updated {
  margin: 1rem 0 2.5rem;
  color: var(--text-mid);
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 2rem;
}

.legal-block {
  display: grid;
  gap: 0.8rem;
}

.legal-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-block h3 {
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.legal-block p,
.legal-block ul {
  margin: 0;
}

.legal-block ul {
  padding-left: 1.25rem;
  color: var(--text-mid);
}

.legal-block a,
.site-footer__links a {
  color: var(--accent);
  font-weight: 700;
}

.legal-block a:hover,
.site-footer__links a:hover {
  color: var(--accent-strong);
}

.legal-contact-list {
  display: grid;
  gap: 0.45rem;
}

.site-footer {
  padding: 2.5rem 0 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(10rem, 0.65fr) minmax(12rem, 0.75fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
}

.site-footer__brand,
.site-footer__column {
  display: grid;
  gap: 0.85rem;
}

.site-footer__brand {
  justify-items: start;
}

.site-footer__column h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--text);
}

.site-footer img {
  width: 6rem;
  height: auto;
  padding: 0.5rem;
  border-radius: 0.6rem;
  background: white;
}

.site-footer__socials {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  background: var(--text);
  box-shadow: 0 0.35rem 0.85rem rgba(46, 135, 80, 0.42);
  opacity: 1;
  transform: translateY(-0.12rem);
}

.site-footer .site-footer__social-icon {
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.site-footer__social-link:hover .site-footer__social-icon,
.site-footer__social-link:focus-visible .site-footer__social-icon {
  filter: brightness(0) saturate(100%) invert(43%) sepia(38%) saturate(777%) hue-rotate(92deg) brightness(92%) contrast(87%);
  opacity: 1;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  text-align: left;
  font-size: 0.92rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.site-footer__bottom p {
  text-align: right;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 0.75rem;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal-open {
  overflow: hidden;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 8, 0.74);
  backdrop-filter: blur(8px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto;
  width: min(100%, 44rem);
  margin: auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: var(--surface-light);
  box-shadow: var(--shadow);
}

.lead-modal__header {
  padding: 1rem 3.7rem 0.65rem 1.2rem;
  color: var(--text-dark);
}

.lead-modal__header .eyebrow {
  margin-bottom: 0.35rem;
}

.lead-modal__header h2 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 0.95;
}

.lead-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: white;
  color: var(--text-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:hover {
  color: var(--accent);
}

.lead-form-frame {
  display: block;
  min-height: 0;
  height: 66rem;
  background: white;
}

.hardcoded-schedule {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1.1rem;
  width: min(calc(100vw - 7rem), 77rem);
  margin-top: 2.5rem;
  margin-left: 50%;
  transform: translateX(-50%);
}

.schedule-day {
  display: grid;
  grid-template-rows: auto repeat(4, minmax(6.6rem, 1fr));
  gap: 1rem;
  min-width: 0;
}

.schedule-three-rows .schedule-day {
  grid-template-rows: auto repeat(3, minmax(6.6rem, 1fr));
}

.schedule-day h2 {
  color: #030303;
  font-size: 1.15rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.schedule-slot {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 6.6rem;
  overflow: hidden;
  border-radius: 0.45rem;
}

.schedule-slot-empty {
  background: #7e7f84;
}

.hardcoded-schedule .schedule-slot-bookable,
.hardcoded-schedule .schedule-slot-static {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: 1.15rem 0.8rem 1rem;
  border: 3px solid #18d7a1;
  background: #f4f3ff;
  color: #02040a;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0.35rem 1rem rgba(24, 215, 161, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hardcoded-schedule .schedule-slot-bookable:hover,
.hardcoded-schedule .schedule-slot-bookable:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0.55rem 1.2rem rgba(36, 107, 63, 0.2);
  outline: 0;
  transform: translateY(-0.08rem);
}

.hardcoded-schedule .schedule-slot-bookable strong,
.hardcoded-schedule .schedule-slot-static strong {
  display: block;
  color: #02040a;
  font-size: clamp(0.8rem, 0.95vw, 0.98rem);
  font-weight: 800;
  line-height: 1.12;
}

.hardcoded-schedule .schedule-slot-bookable span,
.hardcoded-schedule .schedule-slot-static span {
  display: block;
  color: #263144;
  font-size: clamp(0.72rem, 0.8vw, 0.85rem);
  font-weight: 700;
  line-height: 1.2;
}

.hardcoded-schedule .schedule-slot-bookable i,
.hardcoded-schedule .schedule-slot-static i {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #18d7a1;
}

.calendar-embed {
  width: min(100%, 50rem);
  margin: 3rem auto 0;
}

.calendar-embed h3 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-align: center;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 37.5rem;
  max-width: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .proof-grid,
  .two-column,
  .card-grid-two,
  .card-grid-three,
  .card-grid-five,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 0;
    width: calc(100% - 2rem);
  }

  .brand {
    justify-content: flex-start;
    text-align: left;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .button.header-workshop-mobile {
    display: inline-flex;
    max-width: 12.5rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.62rem;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    background: rgba(239, 239, 233, 0.98);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown__trigger {
    justify-content: space-between;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin: 0.15rem 0 0.4rem;
    padding: 0.35rem;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    background: #0b111b;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown__trigger::after,
  .nav-dropdown:focus-within .nav-dropdown__trigger::after {
    transform: translateY(-0.14rem) rotate(45deg);
  }

  .site-nav a {
    display: block;
    padding: 0.8rem 0.2rem;
  }

  .nav-dropdown__menu a {
    padding: 0.7rem 0.8rem;
  }

  .header-actions,
  .site-menu .button {
    width: 100%;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .button-workshop {
    display: none;
  }

  .hero-content {
    padding: 6rem 0 4rem;
  }

  .photo-strip img {
    height: 13rem;
  }

  .hardcoded-schedule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__column {
    justify-items: center;
  }

  .site-footer p,
  .site-footer__bottom p {
    text-align: center;
  }

  .site-footer__socials {
    justify-content: center;
  }

  .site-footer__bottom {
    justify-content: center;
    padding-inline: 1rem;
  }

  .hero {
    min-height: calc(52svh + var(--header-height));
  }

  .hero-image-about {
    object-position: center 72%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-stack img {
    grid-column: auto;
    height: 14rem;
  }

  .image-stack .image-wide {
    grid-column: 1 / -1;
    height: 14rem;
  }

  #instructor .image-stack .image-wide {
    width: 100%;
    height: calc(100vw - 2rem);
    max-height: 26rem;
  }

  #grandmaster .image-stack .image-wide {
    width: 100%;
    height: auto;
    max-height: 26rem;
  }

  #expect .image-stack .image-wide {
    width: 100%;
    height: auto;
    max-height: 26rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .brand span {
    white-space: normal;
  }

  .button.header-workshop-mobile {
    max-width: 10.75rem;
    padding: 0.65rem 0.7rem;
    font-size: 0.56rem;
  }

  .lead-modal {
    padding: 0.5rem;
  }

  .lead-modal__dialog {
    width: min(100%, 40rem);
  }

  .lead-modal__header {
    padding: 0.85rem 3.4rem 0.5rem 1rem;
  }

  .lead-modal__header h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .lead-form-frame {
    height: 68rem;
  }

  .hardcoded-schedule {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .calendar-embed iframe {
    height: 42rem;
  }

  .schedule-day {
    grid-template-rows: auto;
    gap: 0.7rem;
  }

  .schedule-day h2 {
    text-align: left;
  }

  .schedule-slot,
  .schedule-slot-empty {
    min-height: 5.5rem;
  }

  .schedule-slot-empty {
    display: none;
  }
}
