:root {
  --black: #050505;
  --coal: #0a0b0d;
  --graphite: #15171a;
  --white: #ffffff;
  --off-white: #f6f5f2;
  --yellow: #ffd000;
  --yellow-deep: #eebc00;
  --red: #ed1c24;
  --muted: #b9b9b9;
  --text: #101010;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", sans-serif;
  --body: Inter, Arial, Helvetica, sans-serif;
  --shell: 1120px;
  --header-height: 92px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.shell {
  margin-inline: auto;
  max-width: calc(var(--shell) + 48px);
  padding-inline: 24px;
  width: 100%;
}

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

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

.skip-link {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  z-index: 9999;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-height);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 100;
}

.site-header.is-sticky {
  animation: header-drop 220ms ease both;
  background: rgba(3, 3, 3, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  position: fixed;
}

@keyframes header-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.site-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.site-brand {
  align-self: flex-start;
  flex: 0 0 auto;
  margin-top: 14px;
  position: relative;
  width: 114px;
  z-index: 2;
}

.site-header.is-sticky .site-brand {
  margin-top: 7px;
  width: 76px;
}

.site-brand img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42));
  width: 100%;
}

.main-nav ul {
  align-items: center;
  display: flex;
  gap: clamp(20px, 3.2vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--white);
  display: block;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 1.2px;
  padding: 12px 0 9px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  background: var(--red);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  gap: 12px;
  padding: 10px;
}

.menu-toggle__label {
  font-family: var(--display);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-toggle__bars {
  display: grid;
  gap: 5px;
  width: 26px;
}

.menu-toggle__bars i {
  background: var(--yellow);
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle__bars i:first-child { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle__bars i:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle__bars i:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero {
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  padding: 158px 0 112px;
  position: relative;
}

.hero::before,
.final-cta::before {
  background:
    radial-gradient(circle at 72% 46%, rgba(255, 208, 0, 0.19), transparent 29%),
    repeating-radial-gradient(circle at 70% 50%, rgba(255, 208, 0, 0.14) 0 1px, transparent 1px 6px);
  content: "";
  inset: 0;
  opacity: 0.65;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero__texture,
.methodology__texture {
  background:
    linear-gradient(118deg, transparent 0 49%, rgba(255, 255, 255, 0.025) 49% 51%, transparent 51% 100%),
    radial-gradient(circle at 92% 35%, rgba(255, 255, 255, 0.07), transparent 24%);
  inset: 0;
  position: absolute;
  z-index: -3;
}

.hero__inner {
  align-items: center;
  column-gap: clamp(28px, 3vw, 46px);
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(420px, 1fr) minmax(110px, 0.27fr);
  max-width: 1320px;
  min-height: 468px;
  position: relative;
}

.hero__copy {
  max-width: 520px;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.eyebrow {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.eyebrow::after,
.section-number::after,
.red-rule {
  background: var(--red);
  content: "";
  display: block;
  height: 3px;
  margin-top: 10px;
  width: 34px;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.team__intro h2,
.testimonials__heading h2,
.products__heading h2,
.final-cta h2 {
  font-family: var(--display);
  font-stretch: condensed;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(54px, 4.35vw, 62px);
  letter-spacing: 0;
  white-space: nowrap;
}

.hero h1 em,
.section-copy h2 em,
.section-heading h2 em,
.team__intro h2 em,
.testimonials__heading h2 em,
.products__heading h2 em,
.final-cta h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero__copy > p:not(.eyebrow) {
  color: #e1e1e1;
  font-size: 15px;
  margin: 12px 0;
  max-width: 440px;
}

.hero__copy .hero__lead {
  font-weight: 700;
  margin-top: 20px;
}

.brush-button,
.angular-button,
.solid-button {
  align-items: center;
  color: var(--black);
  display: inline-flex;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.45px;
  line-height: 1.25;
  min-height: 54px;
  padding: 13px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.brush-button {
  background: var(--yellow);
  box-shadow: -10px 0 0 -6px var(--yellow), 10px 0 0 -6px var(--yellow);
  clip-path: polygon(2% 7%, 96% 0, 100% 19%, 97% 45%, 100% 80%, 94% 100%, 4% 95%, 0 73%, 3% 48%, 0 17%);
  margin-top: 22px;
  min-width: 310px;
}

.brush-button:hover,
.angular-button:hover,
.solid-button:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.hero__visual {
  align-self: end;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero__visual img,
.final-cta__photo img {
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.45));
  position: relative;
  width: min(100%, 590px);
  z-index: 2;
}

.paint-splash {
  background:
    radial-gradient(circle, rgba(255, 208, 0, 0.75) 0 1px, transparent 2px) 0 0 / 9px 9px,
    linear-gradient(110deg, transparent 8%, rgba(255, 208, 0, 0.62) 8% 69%, transparent 70%);
  filter: blur(0.2px);
  inset: 13% -10% 4% 12%;
  opacity: 0.7;
  position: absolute;
  transform: rotate(-8deg);
}

.hero__values {
  align-self: center;
  display: grid;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 4;
}

.hero__values li {
  border-left: 3px solid var(--red);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.4px;
  padding: 6px 0 6px 12px;
  text-transform: uppercase;
}

.hero__edge,
.final-cta__edge {
  background: var(--off-white);
  bottom: -1px;
  clip-path: polygon(0 68%, 6% 49%, 14% 64%, 26% 41%, 39% 63%, 51% 45%, 65% 70%, 77% 47%, 90% 63%, 100% 40%, 100% 100%, 0 100%);
  height: 108px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 5;
}

.hero__edge::before,
.final-cta__edge::before {
  background: var(--yellow);
  clip-path: polygon(0 62%, 11% 71%, 23% 55%, 42% 72%, 58% 57%, 75% 76%, 88% 59%, 100% 70%, 100% 82%, 86% 72%, 74% 88%, 58% 69%, 41% 83%, 24% 68%, 9% 82%, 0 75%);
  content: "";
  inset: -22px 0 0;
  position: absolute;
}

.split-layout {
  align-items: center;
  display: grid;
  gap: clamp(48px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.split-layout--reverse .section-copy { order: 1; }
.split-layout--reverse .brush-photo { order: 2; }

.why {
  min-height: 670px;
  overflow: hidden;
  padding: 82px 0 36px;
}

.academy {
  min-height: 650px;
  overflow: hidden;
  padding: 50px 0 70px;
  position: relative;
}

.academy::after,
.modalities::after,
.history::after {
  background: radial-gradient(circle, rgba(255, 197, 0, 0.7) 0 1px, transparent 1.5px) 0 0 / 14px 14px;
  content: "";
  height: 160px;
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 16px;
  width: 190px;
}

.section-copy {
  min-width: 0;
  position: relative;
  z-index: 3;
}

.why .section-copy,
.academy .section-copy {
  max-width: 430px;
}

.section-copy p {
  font-size: 15px;
  margin: 15px 0;
}

.section-copy strong {
  font-weight: 700;
}

.section-number {
  display: inline-block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;
}

.section-number--yellow {
  color: var(--yellow);
}

.section-copy h2 {
  font-size: clamp(47px, 5.2vw, 70px);
  margin-bottom: 22px;
}

.section-callout {
  font-size: 18px !important;
  font-weight: 700;
  margin-top: 26px !important;
}

.section-callout::before {
  background: var(--red);
  content: "";
  display: block;
  height: 2px;
  margin-bottom: 16px;
  width: 36px;
}

.section-callout--bar {
  border-left: 3px solid var(--red);
  font-family: var(--body);
  font-size: 17px !important;
  font-weight: 600;
  letter-spacing: 0.15px;
  line-height: 1.55;
  padding-left: 12px;
  text-transform: uppercase;
}

.section-callout--bar::before { display: none; }

.brush-photo {
  min-height: 520px;
  min-width: 0;
  position: relative;
}

.brush-photo::after {
  background: var(--black);
  clip-path: polygon(0 26%, 9% 10%, 24% 17%, 39% 3%, 55% 15%, 70% 7%, 86% 19%, 100% 2%, 100% 100%, 0 100%);
  content: "";
  inset: 8% -10% 0 -13%;
  opacity: 0.96;
  position: absolute;
}

.brush-photo--yellow::after {
  background: linear-gradient(170deg, transparent 0 64%, rgba(255, 208, 0, 0.82) 64% 73%, transparent 73%), var(--white);
  clip-path: polygon(3% 9%, 96% 0, 100% 89%, 87% 94%, 69% 88%, 54% 99%, 36% 92%, 18% 100%, 0 90%);
  inset: 5% -10% 3% -10%;
}

.brush-photo img {
  clip-path: polygon(7% 5%, 96% 0, 100% 91%, 88% 97%, 67% 93%, 48% 100%, 30% 94%, 9% 100%, 0 88%, 2% 21%);
  height: 520px;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}

.brush-photo--black img {
  mix-blend-mode: normal;
}

.watermark {
  color: rgba(0, 0, 0, 0.035);
  font-family: var(--display);
  font-size: 164px;
  font-weight: 900;
  left: -70px;
  line-height: 0.72;
  position: absolute;
  top: -10px;
  transform: skew(-8deg);
  z-index: 1;
}

.methodology {
  isolation: isolate;
  min-height: 650px;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  z-index: 4;
}

.methodology::after,
.private-classes::after,
.team::after,
.testimonials::after {
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 208, 0, 0.55), transparent 24%),
    repeating-radial-gradient(circle at 56% 52%, rgba(255, 208, 0, 0.22) 0 1px, transparent 1px 7px);
  content: "";
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.methodology__inner {
  column-gap: clamp(42px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 650px;
  position: relative;
}

.section-copy--light {
  align-self: center;
  color: var(--white);
  max-width: 500px;
  padding-block: 70px 95px;
}

.section-copy--light p {
  color: #dedede;
}

.methodology__words {
  color: rgba(255, 255, 255, 0.06) !important;
  font-family: var(--display);
  font-size: 54px !important;
  font-style: italic;
  font-weight: 900;
  line-height: 0.93;
  margin-top: 34px !important;
  text-transform: uppercase;
}

.methodology .section-copy h2 {
  font-size: clamp(44px, 4vw, 52px);
  letter-spacing: 0;
  white-space: nowrap;
}

.methodology__photo {
  align-self: end;
  bottom: -92px;
  justify-self: stretch;
  position: absolute;
  right: 0;
  width: min(58%, 680px);
  z-index: 5;
}

.methodology__photo img {
  clip-path: polygon(4% 5%, 95% 0, 100% 93%, 80% 98%, 63% 94%, 42% 100%, 25% 96%, 0 100%, 3% 65%, 0 31%);
  filter: contrast(1.05) saturate(0.92) drop-shadow(0 25px 32px rgba(0, 0, 0, 0.54));
  height: 620px;
  object-fit: cover;
  object-position: 50% 44%;
  position: relative;
  width: 100%;
  z-index: 2;
}

.methodology__splash {
  background: linear-gradient(158deg, transparent 2%, rgba(255, 208, 0, 0.94) 5% 71%, transparent 74%);
  clip-path: polygon(3% 15%, 100% 0, 92% 81%, 68% 72%, 45% 93%, 24% 78%, 0 100%, 8% 55%);
  inset: 15% -5% -5% 9%;
  position: absolute;
}

.modalities {
  min-height: 560px;
  padding: 138px 0 70px;
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  font-size: clamp(34px, 4.1vw, 50px);
}

.section-heading p {
  margin: 7px 0 25px;
}

.modality-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.modality-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.modality-card:hover {
  box-shadow: 0 17px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
}

.modality-card > img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  width: 100%;
}

.modality-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 14px 16px;
}

.red-rule--small {
  height: 2px;
  margin: 0 0 8px;
  width: 22px;
}

.modality-card h3,
.product-card h3 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.modality-card p {
  font-size: 12px;
  line-height: 1.45;
  margin: 7px 0 14px;
}

.modality-card a {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  margin-top: auto;
  text-decoration: none;
}

.modality-card a b {
  color: var(--yellow-deep);
  font-size: 22px;
  line-height: 0.5;
}

.private-classes {
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.private-classes::after {
  background:
    linear-gradient(122deg, transparent 0 51%, rgba(255, 208, 0, 0.72) 51% 72%, transparent 72%),
    radial-gradient(circle at 70% 55%, rgba(255, 208, 0, 0.42), transparent 29%);
  opacity: 0.76;
}

.private-classes .split-layout {
  gap: clamp(48px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 520px;
}

.private-classes .section-copy {
  max-width: 470px;
}

.private-classes .section-copy h2 {
  font-family: var(--display);
  font-size: clamp(40px, 3.55vw, 50px);
  text-transform: none;
  white-space: normal;
}

.private-classes .section-copy h2::after {
  background: var(--red);
  content: "";
  display: block;
  height: 3px;
  margin-top: 16px;
  width: 36px;
}

.private-classes .section-copy strong {
  color: var(--yellow);
}

.angular-button {
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  gap: 16px;
  margin-top: 20px;
  min-width: 280px;
}

.private-classes__photo {
  align-self: end;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.private-classes__photo img {
  clip-path: polygon(7% 5%, 100% 0, 93% 95%, 68% 91%, 49% 100%, 27% 91%, 0 100%, 4% 48%);
  filter: saturate(0.88) contrast(1.08);
  height: 500px;
  object-fit: cover;
  object-position: center 34%;
  width: 100%;
}

.history {
  min-height: 620px;
  overflow: hidden;
  padding: 65px 0 0;
  position: relative;
}

.history__inner {
  align-items: end;
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.12fr) minmax(130px, 0.38fr);
  min-height: 555px;
}

.history .section-copy {
  align-self: center;
  max-width: 370px;
  padding-bottom: 45px;
}

.history .section-copy h2 {
  font-size: clamp(44px, 4.2vw, 60px);
  text-transform: none;
}

.history .section-copy strong {
  color: #d09f00;
}

.history__photo {
  align-self: end;
  min-width: 0;
  overflow: hidden;
}

.history__photo img {
  height: 560px;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.history__values {
  align-self: center;
  border-left: 1px solid var(--yellow-deep);
  display: grid;
  font-family: var(--display);
  gap: 11px;
  min-width: 0;
  padding-left: 20px;
  text-align: center;
  text-transform: uppercase;
}

.history__values strong {
  font-size: 30px;
}

.history__values > span {
  background: var(--red);
  height: 2px;
  justify-self: center;
  width: 22px;
}

.history__values small {
  font-family: var(--body);
  font-size: 11px;
  margin-top: 28px;
  text-transform: none;
}

.history__values small b {
  color: var(--red);
  font-size: 18px;
}

.team {
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
  padding: 56px 0 70px;
  position: relative;
}

.team::after {
  background:
    linear-gradient(155deg, transparent 0 60%, rgba(255, 208, 0, 0.8) 60% 68%, transparent 68%),
    radial-gradient(circle at 72% 48%, rgba(255, 208, 0, 0.24), transparent 31%);
}

.team__inner {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.78fr 1.72fr;
  position: relative;
  z-index: 2;
}

.team__intro {
  align-self: center;
}

.belt-accent {
  background: linear-gradient(90deg, #a60000 0 68%, transparent 68% 72%, #a60000 72% 77%, transparent 77% 81%, #a60000 81% 86%, transparent 86% 90%, #a60000 90%);
  display: block;
  height: 10px;
  margin-bottom: 24px;
  transform: skew(-18deg);
  width: 146px;
}

.team__intro h2,
.testimonials__heading h2 {
  font-size: clamp(48px, 5.7vw, 72px);
  font-style: italic;
}

.team__intro h2 {
  font-size: clamp(44px, 3.65vw, 52px);
  white-space: nowrap;
}

.team__intro p {
  color: #dedede;
  font-size: 14px;
  margin-top: 28px;
  max-width: 230px;
}

.teacher-grid {
  align-items: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.teacher-card {
  min-width: 0;
  position: relative;
}

.teacher-card img {
  aspect-ratio: 0.88 / 1;
  filter: contrast(1.07) saturate(0.84);
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.teacher-card__content {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.96) 30%);
  margin-top: -80px;
  min-height: 205px;
  padding: 55px 14px 15px;
  position: relative;
  z-index: 2;
}

.teacher-card__content > span {
  color: var(--yellow);
  display: block;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.teacher-card h3 {
  font-family: var(--display);
  font-size: clamp(25px, 2.45vw, 36px);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.teacher-card__content i {
  background: var(--red);
  display: block;
  height: 3px;
  margin: 10px 0;
  width: 62px;
}

.teacher-card p {
  color: #d1d1d1;
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.testimonials {
  isolation: isolate;
  min-height: 670px;
  overflow: hidden;
  padding: 72px 0 64px;
  position: relative;
}

.testimonials::after {
  background:
    radial-gradient(circle at 76% 31%, rgba(255, 208, 0, 0.22), transparent 28%),
    linear-gradient(164deg, transparent 0 61%, rgba(255, 208, 0, 0.48) 61% 68%, transparent 68%);
}

.testimonials__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.testimonials__heading p {
  color: #dedede;
  line-height: 1.35;
  margin: 20px 0 0;
  max-width: 360px;
}

.testimonials__heading .google-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.google-label b {
  color: var(--red);
  font-size: 26px;
  margin-right: 8px;
}

.google-label strong {
  color: var(--yellow);
}

.testimonials__logo {
  margin-right: 110px;
  width: 245px;
}

.carousel-shell {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  margin-top: 32px;
  position: relative;
  z-index: 3;
}

.testimonial-track {
  contain: inline-size paint;
  display: flex;
  gap: 16px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  background: linear-gradient(145deg, #151515, #0c0c0c);
  border: 1px solid #464646;
  border-radius: 10px;
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 240px;
  padding: 18px;
  scroll-snap-align: start;
}

.testimonial-card header {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 44px 1fr auto;
}

.avatar {
  align-items: center;
  background: linear-gradient(135deg, #805be4, #341d73);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: inline-flex;
  font-size: 22px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.avatar--2 { background: linear-gradient(135deg, #71ad49, #356720); }
.avatar--3 { background: linear-gradient(135deg, #7895a5, #405464); }
.avatar--4 { background: linear-gradient(135deg, #ba7651, #5c3524); }

.testimonial-card header strong,
.testimonial-card header small {
  display: block;
}

.testimonial-card header strong { font-size: 14px; }
.testimonial-card header small { color: #aaa; font-size: 12px; }

.google-g {
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 22px;
}

.stars {
  color: var(--yellow);
  letter-spacing: 1px;
  margin: 12px 0 8px !important;
}

.stars span {
  background: #2f80ed;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0;
  padding: 2px 4px;
}

.testimonial-card > p:not(.stars) {
  color: #f0f0f0;
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.52;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.testimonial-card.is-expanded > p:not(.stars) {
  display: block;
}

.testimonial-more {
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--yellow);
  color: #bcbcbc;
  cursor: pointer;
  font-size: 12px;
  margin-top: 13px;
  padding: 0 0 4px;
}

.carousel-arrow {
  align-items: center;
  background: #050505;
  border: 2px solid #333;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 32px;
  height: 42px;
  justify-content: center;
  padding: 0 0 4px;
  transition: border-color 180ms ease, color 180ms ease;
  width: 42px;
}

.carousel-arrow:hover { border-color: var(--yellow); color: var(--yellow); }

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.38;
}

.carousel-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  min-height: 7px;
  position: relative;
  z-index: 3;
}

.carousel-dot {
  background: #494949;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 5px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 30px;
}

.carousel-dot.is-active { background: var(--yellow); width: 42px; }

.products {
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(255, 208, 0, 0.15) 54% 67%, transparent 67%),
    repeating-linear-gradient(120deg, transparent 0 52px, rgba(255, 255, 255, 0.035) 52px 54px),
    #0a0b0d;
  padding: 58px 0 72px;
  position: relative;
}

.products__heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}

.products__heading h2 {
  font-family: var(--body);
  font-size: clamp(39px, 5vw, 58px);
  letter-spacing: -1.5px;
  line-height: 0.96;
}

.products__heading p {
  font-size: 19px;
  font-weight: 700;
  margin: 10px 0 0;
}

.solid-button {
  background: var(--yellow);
  border-radius: 7px;
  min-width: 195px;
}

.product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  border: 1px solid rgba(255, 208, 0, 0.72);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 18px 40px rgba(255, 208, 0, 0.09);
  transform: translateY(-6px);
}

.product-card img {
  aspect-ratio: 1.75 / 1;
  object-fit: contain;
  padding: 8px 20px 0;
  width: 100%;
}

.product-card > div {
  border-top: 1px solid #555;
  margin: 0 18px;
  padding: 14px 0 16px;
}

.product-card h3 {
  color: var(--yellow);
  font-size: 22px;
  text-transform: uppercase;
}

.product-card p {
  color: #e2e2e2;
  font-size: 12px;
  margin: 6px 0 0;
}

.final-cta {
  isolation: isolate;
  min-height: 570px;
  overflow: hidden;
  padding: 80px 0 110px;
  position: relative;
}

.final-cta::before {
  background:
    radial-gradient(circle at 70% 43%, rgba(255, 208, 0, 0.18), transparent 25%),
    repeating-linear-gradient(135deg, transparent 0 55px, rgba(255, 255, 255, 0.022) 55px 58px);
}

.final-cta__inner {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  min-height: 405px;
}

.final-cta__copy { position: relative; z-index: 3; }

.final-cta h2 {
  font-size: clamp(44px, 4vw, 56px);
  white-space: nowrap;
}

.final-cta__copy > p {
  font-size: 18px;
  margin: 20px 0 0;
}

.final-cta__photo {
  align-self: end;
  margin-left: -80px;
  position: relative;
}

.final-cta__photo img {
  width: 100%;
}

.final-cta__edge {
  background: #090a0c;
  height: 95px;
}

.contact-footer {
  background:
    radial-gradient(circle at 93% 50%, rgba(255, 208, 0, 0.1), transparent 24%),
    linear-gradient(145deg, #0b0d0f, #111315);
  padding: 84px 0 0;
  position: relative;
}

.contact-footer__brush {
  background: linear-gradient(165deg, transparent 0 41%, var(--yellow) 42% 52%, transparent 53%);
  clip-path: polygon(0 34%, 74% 0, 100% 13%, 100% 60%, 61% 29%, 0 58%);
  height: 70px;
  left: 0;
  opacity: 0.95;
  position: absolute;
  right: 0;
  top: 0;
}

.contact-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.25fr 1fr;
  padding-bottom: 58px;
}

.contact-panel h2 {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: 0.5px;
  margin: 12px 0 23px;
  text-transform: uppercase;
}

.schedule-row {
  align-items: center;
  border-bottom: 1px solid #424242;
  display: grid;
  font-size: 15px;
  gap: 8px;
  grid-template-columns: 1fr auto 1.05fr;
  min-height: 53px;
}

.schedule-row time { text-align: right; }

.map-frame {
  background: #0b0c0e;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  height: 355px;
  overflow: hidden;
  padding: 4px;
  position: relative;
}

.map-fallback {
  height: calc(100% - 8px);
  inset: 4px;
  object-fit: cover;
  position: absolute;
  width: calc(100% - 8px);
  z-index: 1;
}

.map-frame iframe {
  background: transparent;
  border: 0;
  border-radius: 8px;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 2;
}

.contact-intro {
  color: #bdbdbd;
  font-size: 13px;
  margin: -12px 0 18px;
}

.contact-links address {
  display: grid;
  font-style: normal;
  gap: 14px;
}

.contact-links address p {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 26px 1fr;
  margin: 0;
}

.contact-links a {
  text-decoration: none;
}

.contact-links a:hover { color: var(--yellow); }

.contact-icon {
  font-size: 24px;
  line-height: 1;
}

.footer-logo {
  margin: 28px auto 0;
  width: 170px;
}

.footer-bottom {
  border-top: 2px solid var(--red);
  color: #8e8e8e;
  font-size: 12px;
  min-height: 72px;
  padding: 25px 24px 18px;
  position: relative;
  text-align: center;
}

.footer-bottom p { margin: 0; }

.developer-credit {
  color: #777;
  font-size: 11px;
  margin-top: 6px !important;
}

.developer-credit a {
  color: #a3a3a3;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
  color: #d0d0d0;
  text-decoration-color: var(--yellow);
}

.belt-mark {
  background: #171717;
  display: block;
  height: 14px;
  left: 50%;
  position: absolute;
  top: -8px;
  transform: translateX(-50%) rotate(-8deg);
  width: 105px;
}

.belt-mark i {
  background: var(--red);
  display: block;
  height: 14px;
  margin-left: 22px;
  width: 31px;
}

.fallback-content {
  background: var(--white);
  min-height: 60vh;
  padding-block: 150px 80px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  :root { --header-height: 80px; }

  .site-brand { width: 90px; }
  .main-nav ul { gap: 20px; }
  .main-nav a { font-size: 13px; }

  .hero { min-height: 670px; padding-top: 135px; }
  .hero__inner { column-gap: 30px; grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr); }
  .hero__values { display: none; }
  .hero h1 { font-size: clamp(46px, 5.2vw, 54px); }

  .split-layout,
  .split-layout--reverse { gap: 40px; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); }
  .section-copy h2 { font-size: clamp(43px, 5.3vw, 58px); }

  .methodology .section-copy { max-width: 390px; }
  .methodology__photo { right: 0; width: 59%; }
  .methodology__photo img { height: 570px; }

  .modality-grid { gap: 15px; }
  .modality-card h3 { font-size: 14px; }

  .history__inner { gap: 20px; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(120px, 0.42fr); }
  .history__values { padding-left: 12px; }
  .history__values strong { font-size: 22px; }

  .team__inner { grid-template-columns: 0.7fr 1.65fr; }
  .team__intro h2 { font-size: 45px; }

  .testimonial-card { flex-basis: calc((100% - 16px) / 2); }
  .testimonials__logo { margin-right: 80px; }

  .contact-grid { gap: 28px; grid-template-columns: 0.85fr 1.2fr 0.95fr; }
}

@media (max-width: 820px) {
  .menu-toggle { display: flex; }

  .main-nav {
    background: rgba(3, 3, 3, 0.985);
    inset: var(--header-height) 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    transition: max-height 260ms ease, opacity 180ms ease;
    visibility: hidden;
  }

  .menu-open .main-nav {
    max-height: calc(100vh - var(--header-height));
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    align-items: stretch;
    display: grid;
    gap: 0;
    padding: 18px 24px 30px;
  }

  .main-nav a {
    border-bottom: 1px solid #292929;
    font-size: 20px;
    padding: 14px 4px;
  }

  .hero {
    min-height: 850px;
    padding: 135px 0 105px;
  }

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

  .hero__copy { max-width: 620px; }
  .hero h1 { font-size: clamp(53px, 10vw, 74px); }
  .hero__visual { justify-self: end; margin: 18px -5% 0 0; max-width: 590px; width: 80%; }

  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .section-copy,
  .split-layout--reverse .brush-photo { order: initial; }

  .why,
  .academy { padding-block: 70px; }

  .brush-photo { min-height: 430px; }
  .brush-photo img { height: 430px; }

  .methodology { min-height: 1150px; }
  .methodology__inner { grid-template-columns: 1fr; min-height: 1150px; }
  .methodology .section-copy { align-self: start; max-width: 610px; padding: 75px 0 0; }
  .methodology .section-copy h2 { white-space: normal; }
  .methodology__photo { bottom: -72px; margin: 0; right: -5%; width: 95%; }
  .methodology__photo img { height: 580px; }

  .modalities { padding-top: 140px; }
  .modality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .private-classes { padding-top: 45px; }
  .private-classes .split-layout { grid-template-columns: 1fr; min-height: 750px; }
  .private-classes .section-copy { max-width: 620px; padding: 35px 0 0; }
  .private-classes .section-copy h2 { white-space: normal; }
  .private-classes__photo { justify-self: end; margin-top: 24px; max-width: 600px; width: 78%; }

  .history { padding-top: 80px; }
  .history__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .history .section-copy { grid-column: 1 / -1; max-width: 630px; }
  .history__photo { margin-left: 0; }

  .team__inner { grid-template-columns: 1fr; }
  .team__intro p { max-width: 600px; }

  .products__heading { gap: 24px; }
  .product-grid { gap: 16px; }

  .final-cta { min-height: 760px; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__photo { justify-self: end; margin: -50px -5% 0 0; width: 70%; }
  .final-cta h2 { white-space: normal; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-links { grid-column: 1 / -1; }
  .contact-links address { grid-template-columns: 1fr 1fr; }
  .footer-logo { margin-left: 0; }
}

@media (max-width: 600px) {
  :root { --header-height: 72px; }

  .shell { padding-inline: 18px; }
  .site-brand { margin-top: 8px; width: 68px; }
  .site-header.is-sticky .site-brand { width: 62px; }

  .hero {
    min-height: 790px;
    padding: 112px 0 85px;
  }

  .eyebrow { font-size: 14px; margin-bottom: 24px; }
  .hero h1 { font-size: clamp(42px, 12vw, 54px); white-space: normal; }
  .hero__copy > p:not(.eyebrow) { font-size: 14px; }
  .brush-button,
  .angular-button,
  .solid-button { font-size: 15px; min-height: 54px; padding-inline: 18px; width: 100%; }
  .brush-button { min-width: 0; }
  .hero__visual { margin: 18px -18% 0 0; width: 100%; }
  .hero__edge { height: 70px; }

  .section-copy h2 { font-size: clamp(42px, 13vw, 58px); }
  .section-copy p { font-size: 14px; }
  .section-number { margin-bottom: 16px; }

  .why,
  .academy { padding-block: 58px; }

  .brush-photo { min-height: 340px; }
  .brush-photo img { height: 340px; }
  .watermark { font-size: 95px; left: 0; }

  .methodology { min-height: 855px; }
  .methodology__inner { min-height: 855px; }
  .methodology .section-copy { padding-top: 62px; }
  .methodology .section-copy h2 { font-size: 43px; }
  .methodology__words { display: none; }
  .methodology__photo { bottom: -58px; right: -14%; width: 122%; }
  .methodology__photo img { height: 500px; object-position: center; }

  .modalities { padding: 115px 0 58px; }
  .section-heading h2 { font-size: 37px; }
  .modality-grid { grid-template-columns: 1fr; }
  .modality-card { border-radius: 10px; }
  .modality-card > img { aspect-ratio: 1.6 / 1; }
  .modality-card h3 { font-size: 17px; }
  .modality-card p { font-size: 13px; }

  .private-classes { padding-top: 30px; }
  .private-classes .split-layout { min-height: 720px; }
  .private-classes .section-copy h2 { font-size: 43px; }
  .private-classes__photo { margin: -25px -12% 0 0; width: 112%; }
  .private-classes__photo img { height: 420px; }

  .history { padding-top: 60px; }
  .history__inner { grid-template-columns: 1fr; }
  .history .section-copy { grid-column: auto; padding-bottom: 15px; }
  .history__photo img { height: auto; max-height: 520px; object-position: center top; }
  .history__values { border-left: 0; border-top: 1px solid var(--yellow-deep); grid-template-columns: repeat(5, auto); padding: 25px 0; }
  .history__values strong { font-size: 21px; }
  .history__values small { grid-column: 1 / -1; margin-top: 8px; }

  .team { padding: 50px 0 60px; }
  .team__intro h2,
  .testimonials__heading h2 { font-size: 49px; }
  .team__intro h2 { white-space: normal; }
  .teacher-grid { gap: 22px; grid-template-columns: 1fr; }
  .teacher-card img { aspect-ratio: 1 / 0.86; object-position: center 11%; }
  .teacher-card__content { margin-top: -74px; min-height: 0; }
  .teacher-card h3 { font-size: 34px; }
  .teacher-card p { font-size: 13px; }

  .testimonials { padding: 60px 0 55px; }
  .testimonials__top { align-items: flex-start; }
  .testimonials__logo { display: none; }
  .carousel-shell { gap: 8px; grid-template-columns: 30px minmax(0, 1fr) 30px; margin-top: 26px; padding-inline: 6px; }
  .carousel-arrow { border-width: 1px; font-size: 26px; height: 30px; width: 30px; }
  .testimonial-card { flex-basis: 100%; min-height: 280px; }

  .products { padding: 50px 0 60px; }
  .products__heading { align-items: stretch; flex-direction: column; }
  .products__heading h2 { font-size: 38px; }
  .products__heading p { font-size: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card img { aspect-ratio: 1.7 / 1; }

  .final-cta { min-height: 700px; padding: 70px 0 100px; }
  .final-cta h2 { font-size: clamp(42px, 12.5vw, 58px); }
  .final-cta__copy > p { font-size: 15px; }
  .final-cta__photo { margin: -5px -20% 0 0; width: 110%; }
  .final-cta__edge { height: 62px; }

  .contact-footer { padding-top: 75px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-links { grid-column: auto; }
  .contact-links address { grid-template-columns: 1fr; }
  .map-frame { height: 320px; }
  .footer-logo { margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
