/* src/app/globals.css */
:root {
  --paper: #ffffff;
  --ink: #000000;
  --muted: #a8a6a1;
  --brand: #fc221c;
  --brand-deep: #b31316;
  --line: rgba(0, 0, 0, 0.12);
  --card: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --font-display: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-body: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-sans: Arial, Helvetica, sans-serif;
  --site-gutter: clamp(22px, 3vw, 43px);
  --site-gutter-wide: clamp(20px, 2vw, 34px);
  --site-content-max: 1240px;
  --site-content-wide-max: 1380px;
  --site-content-ultra-max: 1520px;
  --site-content-narrow-max: 760px;
  --site-page-gap: 28px;
  --site-page-pad-top: 18px;
  --site-page-pad-bottom: 52px;
  --site-surface-radius: 34px;
  --site-card-radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: #fff;
  color: var(--ink);
}

body {
  color: var(--ink);
  font-family: var(--font-body), Georgia, "Times New Roman", serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Preserved Squarespace-wide migration rules. */
#footer-sections a {
  text-decoration: none;
}

a.eventlist-button.sqs-editable-button {
  display: none;
}

.product-mark.sale {
  visibility: hidden;
}

.empty-message a {
  color: hsl(43, 4%, 65%);
  text-decoration: underline;
  text-underline-position: under;
}

.eventlist-excerpt a {
  text-decoration: underline;
  text-underline-position: under;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-page-stack {
  display: grid;
  gap: var(--site-page-gap);
  padding: var(--site-page-pad-top) 0 var(--site-page-pad-bottom);
}

.site-page-stack--tight {
  gap: 0;
}

.site-page-stack--flush {
  gap: 0;
  padding: 0;
}

.site-band--bleed {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.site-band__inner {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: calc(var(--site-content-max) + (var(--site-gutter) * 2));
  padding-inline: var(--site-gutter);
  width: 100%;
}

.site-band__inner--narrow {
  max-width: calc(var(--site-content-narrow-max) + (var(--site-gutter) * 2));
}

.site-band__inner--wide {
  max-width: calc(var(--site-content-wide-max) + (var(--site-gutter) * 2));
}

.site-band__inner--ultra {
  max-width: calc(var(--site-content-ultra-max) + (var(--site-gutter-wide) * 2));
  padding-inline: var(--site-gutter-wide);
}

.site-surface {
  background: rgba(255, 252, 247, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--site-surface-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-surface--dark {
  background: linear-gradient(115deg, #16171d 0%, #222631 52%, #11131b 100%);
  color: #fff8f4;
}

@media (max-width: 640px) {
  :root {
    --site-page-gap: 20px;
    --site-page-pad-top: 10px;
    --site-page-pad-bottom: 36px;
    --site-gutter: 18px;
    --site-gutter-wide: 18px;
  }
}

@media print {
  [data-site-shell-support-strip],
  [data-site-shell-header],
  [data-site-shell-footer] {
    display: none !important;
  }
}


/* src/components/site-shell.module.css */
.frame {
  min-height: 100vh;
}

.supportStrip {
  background: linear-gradient(90deg, #ff0000, #ffffff, #ff0000);
  color: #000;
  position: relative;
  z-index: 40;
}

.supportInner {
  align-items: center;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  min-height: 44px;
  padding: 12px var(--site-gutter);
  text-align: center;
}

.supportFlag {
  flex: 0 0 auto;
  height: 20px;
  width: 26px;
}

.supportText {
  display: inline-block;
  min-width: 29ch;
}

.header {
  background: #fff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 35;
}

.header[data-overlay="true"] {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08));
  box-shadow: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.frame[data-support-strip-visible="true"] .header[data-overlay="true"] {
  top: 44px;
}

.headerInner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 31px var(--site-gutter);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: min(200px, 16vw);
}

.brand img {
  display: block;
  height: auto;
  width: 100%;
}

.mobileMenuButton {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #000;
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.mobileMenuCheckbox {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.mobileMenuCheckbox:focus-visible + .mobileMenuButton {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.mobileMenuButton span {
  background: currentColor;
  display: block;
  height: 1px;
  position: absolute;
  width: 30px;
}

.mobileMenuButton span:nth-child(1) {
  transform: translateY(-8px);
}

.mobileMenuButton span:nth-child(3) {
  transform: translateY(8px);
}

.mobileMenuCheckbox:checked + .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg);
}

.mobileMenuCheckbox:checked + .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mobileMenuCheckbox:checked + .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-end;
}

.navGroup {
  position: relative;
}

.navTrigger,
.navLink,
.navLabel {
  background: transparent;
  border: 0;
  color: #000;
  display: inline-flex;
  font: inherit;
  font-size: 21.184px;
  font-weight: 300;
  justify-content: center;
  line-height: 1.3;
  padding: 0;
  text-decoration: none;
}

.navTrigger {
  list-style: none;
}

.navTrigger::-webkit-details-marker {
  display: none;
}

.header[data-overlay="true"] .navTrigger,
.header[data-overlay="true"] .navLink,
.header[data-overlay="true"] .navLabel,
.header[data-overlay="true"] .mobileMenuButton {
  color: #fff;
}

.navTrigger {
  cursor: pointer;
}

.navLink[data-active="true"],
.navGroup[data-active="true"] .navTrigger,
.navGroup[open] .navTrigger {
  text-decoration: underline;
  text-underline-offset: 12px;
}

.navMenu {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 10px;
  min-width: 280px;
  padding: 18px;
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  z-index: 60;
}

.navMenu .navLink,
.navMenu .navLabel {
  font-size: 18px;
  justify-content: flex-start;
  line-height: 1.45;
  text-align: left;
}

.navMenu .navLink[data-active="true"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.content {
  margin: 0 auto;
  max-width: calc(var(--site-content-max) + (var(--site-gutter) * 2));
  padding: 0 var(--site-gutter) 72px;
  width: 100%;
}

.contentFullBleed {
  padding-bottom: 0;
  width: 100%;
}

.footer {
  background: #fff;
  padding: 36px 0 92px;
  position: relative;
}

.footer[data-wave="true"] {
  padding-top: 96px;
}

.footer[data-wave="true"]::before {
  border-top: 6px solid rgb(168, 166, 161);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  height: 92px;
  left: -5vw;
  pointer-events: none;
  position: absolute;
  right: -5vw;
  top: -38px;
  transform: rotate(-1.5deg);
}

.footerInner {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 260px) minmax(280px, 320px) minmax(240px, 300px) minmax(180px, 220px);
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(var(--site-content-wide-max) + (var(--site-gutter) * 2));
  min-height: 371px;
  padding: 0 var(--site-gutter);
}

.footerBrandColumn {
  display: grid;
  gap: 20px;
}

.footerLogo {
  height: 40px;
  object-fit: contain;
  width: 160px;
}

.socials {
  align-items: center;
  display: flex;
  gap: 18px;
}

.socialLink {
  color: #000;
  display: inline-flex;
  height: 23px;
  width: 23px;
}

.socialLink svg {
  display: block;
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.address {
  font-size: 21.184px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 18ch;
}

.footerUtilityColumn,
.footerColumn {
  align-content: start;
  display: grid;
  gap: 24px;
}

.footerPrimaryLink,
.liveChatLink,
.footerColumn h2 {
  color: #000;
  font-size: 21.184px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  text-decoration: none;
}

.footerLinks a {
  color: #6f6a64;
  font-size: 21.184px;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
  text-decoration: none;
}

.liveChatLink {
  appearance: none;
  background: transparent;
  border: 0;
  color: #000;
  cursor: pointer;
  font-weight: 700;
  justify-self: start;
  padding: 0;
  text-decoration: none;
}

.aribaLink {
  display: inline-flex;
  width: 180px;
}

.aribaLink img {
  display: block;
  height: 55px;
  object-fit: contain;
  width: 100%;
}

.footerLinks {
  display: grid;
  gap: 2px;
}

@media (max-width: 1040px) {
  .headerInner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 200px;
  }

  .nav {
    gap: 20px;
    justify-content: flex-start;
  }

  .navMenu {
    left: 0;
    right: auto;
  }

  .footerInner {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 820px) {
  .headerInner {
    align-items: center;
    flex-direction: row;
    gap: 18px;
    padding: 28px clamp(20px, 5vw, 38px);
    position: relative;
  }

  .brand {
    width: 170px;
  }

  .mobileMenuButton {
    display: inline-flex;
  }

  .nav {
    background: #fff;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
    display: none;
    gap: 16px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    left: 0;
    padding: 20px clamp(20px, 5vw, 38px) 28px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 70;
  }

  .header[data-overlay="true"] .nav {
    background: rgba(0, 0, 0, 0.78);
  }

  .mobileMenuCheckbox:checked ~ .nav {
    display: grid;
  }

  .navGroup {
    display: grid;
    justify-items: start;
  }

  .navTrigger,
  .navLink,
  .navLabel {
    font-size: 21.184px;
    justify-content: flex-start;
  }

  .navMenu {
    box-shadow: none;
    margin-top: 12px;
    min-width: 0;
    padding: 14px 0 0 18px;
    position: static;
  }
}

@media (max-width: 720px) {
  .supportInner {
    font-size: 14px;
    gap: 8px;
    min-height: 40px;
    padding: 10px 14px;
  }

  .header[data-overlay="true"] {
    top: 40px;
  }

  .headerInner {
    gap: 16px;
    padding: 24px 14px 28px;
  }

  .brand {
    width: 112px;
  }

  .navTrigger,
  .navLink,
  .navLabel {
    font-size: 18px;
    line-height: 1.45;
  }

  .content {
    padding: 0 14px 56px;
  }

  .footer {
    padding: 48px 0 40px;
  }

  .footer[data-wave="true"] {
    padding-top: 78px;
  }

  .footerInner {
    gap: 24px;
    grid-template-columns: 1fr;
    padding: 0 14px;
  }

  .address,
  .footerPrimaryLink,
  .liveChatLink,
  .footerLinks a,
  .footerColumn h2 {
    font-size: 18px;
  }
}


/* src/app/page.module.css */
.home {
  background: #fff;
}

.heroSection,
.servicesSection,
.upcomingSection,
.clientsSection,
.promiseSection,
.testimonialsSection,
.newsletterSection {
  position: relative;
}

.heroGrid,
.sectionInner,
.clientsInner,
.promiseGrid,
.newsletterInner {
  margin: 0 auto;
  max-width: 1500px;
  padding-left: clamp(22px, 3vw, 43px);
  padding-right: clamp(22px, 3vw, 43px);
}

.heroGrid {
  column-gap: 11px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  min-height: 570px;
  padding-top: 140px;
  padding-bottom: 72px;
  row-gap: 11px;
}

.heroTitleWrap {
  grid-column: 8 / 25;
  text-align: right;
}

.heroTitleWrap h1 {
  font-size: 47.104px;
  font-weight: 300;
  line-height: 1.299;
}

.heroCtaWrap {
  align-self: center;
  grid-column: 19 / 24;
  grid-row: 4 / 6;
}

.heroCta {
  align-items: center;
  background: #ce171e;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.25;
  min-height: 64px;
  padding: 22.4px 24px;
  text-align: center;
  text-decoration: none;
  width: 234px;
}

.heroMetrics {
  display: grid;
  gap: 34px;
  grid-column: 5 / 19;
  grid-row: 3 / 7;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metricCard {
  background: rgb(240, 240, 240);
  border-radius: 10px;
  min-width: 0;
  padding: 20px 16px;
  text-align: center;
}

.metricCard span {
  display: block;
  font-size: clamp(1.9rem, 2.6vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.metricCard p {
  font-size: clamp(1rem, 1.3vw, 1.324rem);
  hyphens: auto;
  line-height: 1.4;
  margin-top: 10px;
  overflow-wrap: break-word;
}

.servicesSection {
  background: #242424;
  color: #fff;
  overflow: hidden;
  padding-top: 40px;
}

.sectionInner {
  padding-top: 40px;
  padding-bottom: 72px;
}

.servicesSection .sectionInner {
  padding-top: 0;
  padding-bottom: 70px;
}

.sectionTitleLight,
.sectionTitleDark {
  font-size: 47.104px;
  font-weight: 300;
  line-height: 1.6;
}

.sectionTitleLight {
  color: #fff;
}

.sectionTitleDark {
  color: #000;
}

.serviceGrid {
  align-items: stretch;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.serviceCard {
  display: grid;
  gap: 24px;
  grid-template-rows: minmax(0, 1fr) auto;
}

.serviceText {
  display: grid;
  gap: 16px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
}

.serviceText h3 {
  font-size: 25.2px;
  font-weight: 300;
  line-height: 1.4;
}

.serviceText p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.serviceText a {
  align-items: center;
  align-self: end;
  background: #ce171e;
  color: #fff;
  display: inline-flex;
  font-size: 12.8px;
  font-weight: 500;
  justify-content: center;
  min-height: 50px;
  padding: 15px 28px;
  width: fit-content;
}

.serviceImage {
  aspect-ratio: 4 / 3;
  position: relative;
}

.serviceImage img {
  object-fit: cover;
}

.upcomingSection {
  background: #242424;
  color: #fff;
  padding-top: 54px;
  padding-bottom: 0;
}

.upcomingSection .sectionInner {
  padding-bottom: 118px;
}

.upcomingWave,
.promiseWave {
  display: block;
  line-height: 0;
  margin-top: -1px;
  width: 100%;
}

.upcomingWave svg,
.promiseWave svg {
  display: block;
  width: 100%;
}

.upcomingWave svg {
  height: 200px;
}

.promiseWave svg {
  height: 100px;
}

.clientsSection {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 40px;
}

.clientsInner {
  display: grid;
  gap: 16px;
  max-width: 1280px;
}

.clientsInner h3,
.testimonialsTitle,
.newsletterInner h3 {
  font-size: 35.2px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

.clientsImageWrap {
  aspect-ratio: 3798 / 2018;
  position: relative;
}

.clientsImageWrap img {
  object-fit: contain;
}

.promiseSection {
  background: #242424;
  color: #fff;
  overflow: hidden;
  padding-top: 24px;
}

.promiseGrid {
  column-gap: 11px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  padding-top: 8px;
  padding-bottom: 34px;
  row-gap: 11px;
}

.promiseTitleWrap {
  grid-column: 1 / 13;
}

.promiseBodyWrap {
  grid-column: 13 / 24;
  padding-top: 16px;
}

.promiseTitleWrap h2 {
  color: rgb(168, 166, 161);
  font-size: 66px;
  font-weight: 300;
  line-height: 1.33;
}

.promiseBodyWrap p {
  font-size: 21.184px;
  font-weight: 300;
  line-height: 1.6;
}

.testimonialsSection {
  background: #fff;
  padding-top: 52px;
  padding-bottom: 94px;
}

.marqueeStack {
  display: grid;
  gap: 34px;
  margin-top: 40px;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marqueeTrack {
  animation: marquee-left 48s linear infinite;
  display: flex;
  min-width: max-content;
}

.marquee[data-direction="right"] .marqueeTrack {
  animation-name: marquee-right;
}

.marqueeGroup {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.marqueeItem,
.marqueeSeparator {
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.4;
  margin-right: 1em;
}

.newsletterSection {
  background: #fff;
  padding-top: 18px;
  padding-bottom: 0;
}

.newsletterInner {
  display: grid;
  gap: 24px;
  justify-items: center;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1040px) {
  .heroGrid {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .heroTitleWrap {
    grid-column: 1 / -1;
  }

  .heroCtaWrap {
    grid-column: 17 / -1;
    grid-row: auto;
  }

  .heroMetrics {
    gap: 18px;
    grid-column: 3 / 23;
    grid-row: auto;
  }

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

  .serviceCard,
  .serviceText {
    grid-template-rows: auto;
  }

  .promiseTitleWrap,
  .promiseBodyWrap {
    grid-column: 2 / 24;
  }

  .promiseTitleWrap h2 {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .heroGrid,
  .sectionInner,
  .clientsInner,
  .promiseGrid,
  .newsletterInner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .heroGrid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .heroTitleWrap,
  .heroCtaWrap,
  .heroMetrics {
    grid-column: auto;
    grid-row: auto;
  }

  .heroCta {
    width: 100%;
  }

  .heroTitleWrap h1,
  .sectionTitleLight,
  .sectionTitleDark,
  .promiseTitleWrap h2 {
    font-size: 38px;
    line-height: 1.2;
    text-align: left;
  }

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

  .metricCard p,
  .promiseBodyWrap p {
    font-size: 18px;
  }

  .clientsSection {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .clientsInner h3,
  .testimonialsTitle,
  .newsletterInner h3 {
    font-size: 32px;
  }

  .marqueeItem,
  .marqueeSeparator {
    font-size: 20px;
  }
}


/* src/components/upcoming-classes-panel.module.css */
.panel {
  margin-top: 18px;
  position: relative;
}

.filterToggle {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0.5rem;
  padding: 0;
}

.filterToggle svg {
  display: block;
}

.listWrap {
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.courseList {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.course {
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}

.courseBadge {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  width: 56px;
}

.courseBadge img {
  height: auto;
  max-height: 56px;
  object-fit: contain;
  width: 100%;
}

.courseContent {
  min-width: 0;
}

.courseTitle {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: break-word;
  text-decoration: none;
}

.courseDate {
  color: #475569;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.emptyState {
  color: #fff;
  font-size: 0.98rem;
  padding: 16px 0;
}

.panel[data-surface="light"] .filterToggle,
.panel[data-surface="light"] .emptyState {
  color: #1d1917;
}

.backdrop {
  background: rgba(0, 0, 0, 0.45);
  border: 0;
  inset: 0;
  position: fixed;
  z-index: 2147483646;
}

.filterPanel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 1rem;
  left: 50%;
  max-width: 420px;
  padding: 1.25rem;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 420px);
  z-index: 2147483647;
}

.filterPanelHeader {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.filterPanelHeader h3 {
  color: #1f2937;
  font-size: 1.1rem;
  margin: 0;
}

.closeButton {
  align-self: flex-end;
  background: #38bdf8;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  min-height: 44px;
  padding: 0 1.35rem;
}

.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill,
.pillActive {
  background: #e2e8f0;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 40px;
  padding: 0.4rem 0.8rem;
}

.pillActive {
  background: #38bdf8;
  color: #fff;
}

.dateRow {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dateRow label {
  color: #374151;
  display: flex;
  flex: 1 1 140px;
  flex-direction: column;
  font-size: 0.85rem;
  gap: 0.2rem;
}

.dateRow input {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.85rem;
  min-height: 40px;
  padding: 0.25rem 0.5rem;
}

.dateClear {
  background: #e2e8f0;
  border: 0;
  border-radius: 50%;
  color: #374151;
  cursor: pointer;
  font-size: 1.2rem;
  height: 28px;
  line-height: 1;
  padding: 0;
  width: 28px;
}

.badgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  overflow: visible;
}

.badgeButton,
.badgeButtonActive {
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  height: 56px;
  padding: 4px;
  width: 56px;
}

.badgeButton img,
.badgeButtonActive img {
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.badgeButtonActive {
  outline: 3px solid #38bdf8;
}

@media (prefers-color-scheme: dark) {
  .filterPanel {
    background: #1e1e1e;
  }

  .filterPanelHeader h3 {
    color: #f1f5f9;
  }

  .pill {
    background: #475569;
    color: #f1f5f9;
  }

  .pillActive {
    background: #38bdf8;
    color: #fff;
  }

  .course {
    background: #1e1e1e;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }

  .courseTitle {
    color: #f1f5f9;
  }

  .courseDate {
    color: #cbd5e1;
  }
}

@media (max-width: 767px) {
  .filterPanel {
    width: min(92vw, 420px);
  }

  .course {
    align-items: flex-start;
  }
}


/* src/components/newsletter-form.module.css */
.form {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 430px;
}

.form_homepage {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 auto;
  max-width: 332px;
}

.field {
  display: grid;
  gap: 8px;
}

.field_homepage {
  display: grid;
  gap: 18px;
}

.field span {
  color: var(--muted);
  font-size: 0.95rem;
}

.field input {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 18, 18, 0.12);
  border-radius: 0;
  min-height: 52px;
  padding: 0 16px;
}

.field_homepage input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #1d1d1d;
  border-radius: 0;
  color: #1d1d1d;
  font-family: var(--font-display), Georgia, serif;
  font-size: 31px;
  font-weight: 300;
  min-height: 54px;
  padding: 0 0 8px;
}

.field input:focus {
  border-color: rgba(229, 36, 36, 0.45);
  outline: 2px solid rgba(229, 36, 36, 0.16);
  outline-offset: 2px;
}

.field_homepage input:focus {
  border-bottom-color: #1d1d1d;
  outline: none;
}

.homepageLabel {
  color: #1d1d1d;
  display: inline-flex;
  font-family: var(--font-display), Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  gap: 10px;
}

.homepageRequired {
  color: rgb(117, 117, 117);
  font-size: 16px;
}

.button {
  background: linear-gradient(135deg, #8f1119, #e52424);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.12em;
  min-height: 50px;
  padding: 0 18px;
  text-transform: uppercase;
}

.button_homepage {
  background: #cfcac3;
  border: 0;
  color: #1a1a1a;
  cursor: pointer;
  font-family: var(--font-display), Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  min-height: 58px;
  padding: 0 20px;
  width: 100%;
}

.button:disabled {
  cursor: progress;
  opacity: 0.7;
}

.status_info,
.status_error {
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 12px 14px;
}

.status_info {
  background: rgba(12, 35, 75, 0.07);
  border: 1px solid rgba(12, 35, 75, 0.1);
  color: #23324e;
}

.status_error {
  background: rgba(143, 17, 25, 0.08);
  border: 1px solid rgba(143, 17, 25, 0.12);
  color: #6b0e15;
}

.visuallyHidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 767px) {
  .form_homepage {
    max-width: min(332px, 100%);
  }

  .field_homepage input {
    font-size: 26px;
  }
}


/* src/components/cookie-banner.module.css */
.banner {
  background: #000;
  bottom: 20px;
  color: #fff;
  display: grid;
  gap: 18px;
  left: 20px;
  max-width: 360px;
  padding: 20px 18px 20px 20px;
  position: fixed;
  z-index: 80;
}

.banner p {
  font-family: var(--font-display), Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.banner a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button {
  align-items: center;
  background: #b8b4ae;
  border: 0;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  justify-content: center;
  min-height: 37px;
  padding: 0 20px;
  width: 57px;
}

@media (max-width: 767px) {
  .banner {
    bottom: 14px;
    left: 14px;
    max-width: calc(100vw - 28px);
    padding: 18px 16px;
  }
}


/* Static homepage prototype additions. */
.serviceImage img,
.clientsImageWrap img {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.serviceImage img {
  object-fit: cover;
}

.clientsImageWrap img {
  object-fit: contain;
}

.filterPanel[hidden],
.backdrop[hidden],
.banner[hidden] {
  display: none;
}

.filterToggle:focus-visible,
.pill:focus-visible,
.pillActive:focus-visible,
.badgeButton:focus-visible,
.badgeButtonActive:focus-visible,
.closeButton:focus-visible,
.dateClear:focus-visible,
.button_homepage:focus-visible,
.button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
