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

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: #FFE600;
}

/* Mat color matches each section surface; black offset shadow is shared */
:root {
  --image-backdrop: #ffe600;
  --image-backdrop-shadow: 6px 6px 0 #000;
  --page-gutter: clamp(16px, 4vw, 28px);
  --page-max: 1260px;
  /* Fixed header: ~1 row desktop / ~2 rows mobile — used for anchor scroll & hero offset */
  --header-scroll-margin: clamp(3.85rem, 14vw, 6rem);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Centered content column — matches FAQ shell & pricing grid width */
.page-shell {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(env(safe-area-inset-left, 0px), var(--page-gutter));
  padding-right: max(env(safe-area-inset-right, 0px), var(--page-gutter));
  width: 100%;
  box-sizing: border-box;
}

/* Anchor targets clear the fixed nav on all viewports */
section[id] {
  scroll-margin-top: calc(var(--header-scroll-margin) + env(safe-area-inset-top, 0px));
}

/* Global grain — below header (z-index 1) so nav stays crisp */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

/* Screen-reader-only heading — hero is visual-first; text states inclusive brand story */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Site header — desktop: logo | nav | CTA; mobile: logo | CTA + hamburger + slide-in panel */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Vertical breathing room + notches; horizontal safe-area */
  padding-top: max(env(safe-area-inset-top, 0px), clamp(0.35rem, 1.35vw, 0.62rem));
  padding-bottom: clamp(0.35rem, 1.35vw, 0.62rem);
  padding-left: max(env(safe-area-inset-left, 0px), 0px);
  padding-right: max(env(safe-area-inset-right, 0px), 0px);
  /* Blur lives on ::before so the header element stays free of backdrop-filter
     (which would trap position:fixed nav in Chrome). */
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem 0.85rem;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
  justify-self: start;
  min-width: 0;
  max-width: min(48vw, 11.25rem);
}

@media (min-width: 720px) {
  .site-header__logo {
    max-width: min(36vw, 12rem);
  }
}

@media (min-width: 1100px) {
  .site-header__logo {
    max-width: 12rem;
  }
}

.site-header__logo:hover {
  opacity: 0.9;
}

.site-header__logo:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

/*
 * Text-only brand lockup (no icon). Kicker + “Esosa” on a gold gradient slab
 * tuned for dark chrome (header/footer): cream line, yellow blend, comic depth.
 */
.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  line-height: 1;
  padding: 0 6px 7px 0;
  box-sizing: border-box;
}

.brand-wordmark__kicker {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(0.52rem, 1.35vw, 0.64rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(255, 244, 214, 0.96);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.brand-wordmark__kicker::after {
  content: '';
  display: block;
  height: 1px;
  margin-top: 0.22rem;
  width: 100%;
  max-width: 11rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 230, 0, 0.35) 25%,
    #ffe600 50%,
    rgba(255, 230, 0, 0.35) 75%,
    transparent 100%
  );
  opacity: 0.9;
}

.brand-wordmark__name {
  position: relative;
  display: inline-block;
  font-family: 'Anton', 'Montserrat', sans-serif;
  font-size: clamp(0.78rem, 2.35vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0c0c0c;
  padding: 0.2rem 0.55rem 0.24rem;
  border: 2px solid #000;
  border-radius: 6px;
  background: linear-gradient(168deg, #fffffc 0%, #fff3a0 15%, #ffe600 48%, #b88600 100%);
  box-shadow:
    1px 1px 0 #000,
    2px 2px 0 #151515,
    3px 3px 0 #000,
    4px 4px 0 #000,
    5px 5px 0 rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Glossy top edge — reads like stamped plastic on dark backgrounds */
.brand-wordmark__name::before {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  top: 4px;
  height: 44%;
  border-radius: 3px 3px 50% 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.12) 42%, transparent 100%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.site-header__logo:hover .brand-wordmark__name,
.site-footer__brand:hover .brand-wordmark__name {
  transform: translate(-1px, -1px);
}

.site-footer__brand:hover .brand-wordmark__name {
  box-shadow:
    2px 2px 0 #000,
    3px 3px 0 #151515,
    4px 4px 0 #000,
    5px 5px 0 #000,
    6px 6px 0 rgba(0, 0, 0, 0.22);
}

.brand-wordmark--footer .brand-wordmark__kicker {
  font-size: clamp(0.48rem, 1.05vw, 0.58rem);
  letter-spacing: 0.24em;
  color: rgba(255, 236, 175, 0.98);
}

.brand-wordmark--footer .brand-wordmark__name {
  font-size: clamp(0.7rem, 1.75vw, 0.9rem);
}

@media (prefers-reduced-motion: reduce) {
  .site-header__logo:hover .brand-wordmark__name,
  .site-footer__brand:hover .brand-wordmark__name {
    transform: none;
  }

  .brand-wordmark__name {
    transition: none;
  }
}

/* Navbar: compact wordmark (footer uses .brand-wordmark--footer for its own scale) */
.site-header__logo .brand-wordmark {
  gap: 0.06rem;
  padding: 0 3px 3px 0;
}

.site-header__logo .brand-wordmark__kicker {
  font-size: clamp(0.42rem, 0.95vw, 0.5rem);
  letter-spacing: 0.18em;
}

.site-header__logo .brand-wordmark__kicker::after {
  margin-top: 0.08rem;
}

.site-header__logo .brand-wordmark__name {
  font-size: clamp(0.54rem, 1.55vw, 0.68rem);
  padding: 0.06rem 0.3rem 0.1rem;
  border-width: 1.5px;
  border-radius: 3px;
  box-shadow:
    1px 1px 0 #000,
    2px 2px 0 #151515,
    3px 3px 0 rgba(0, 0, 0, 0.28);
}

.site-header__logo .brand-wordmark__name::before {
  left: 2px;
  right: 2px;
  top: 2px;
  height: 38%;
}

.site-header__logo:hover .brand-wordmark__name {
  box-shadow:
    2px 2px 0 #000,
    3px 3px 0 #151515,
    4px 4px 0 rgba(0, 0, 0, 0.22);
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  justify-self: center;
  min-width: 0;
}

.site-header__nav a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-header__nav a:hover {
  color: #ffe600;
}

.site-header__nav a:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

.site-header__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  justify-self: end;
  flex-shrink: 0;
}

.site-header__cta {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  background: #ffe600;
  text-decoration: none;
  padding: 0.42rem 0.78rem;
  border-radius: 4px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.site-header__cta:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #000;
}

.site-header__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Hamburger — hidden on desktop */
.site-header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header__menu-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header__menu-btn:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

.site-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  pointer-events: none;
}

.site-header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header--open .site-header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--open .site-header__burger span:nth-child(2) {
  opacity: 0;
}

.site-header--open .site-header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Backdrop + drawer — mobile only */
.site-header__backdrop {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.site-header--open .site-header__backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.site-nav-open {
  overflow: hidden;
  touch-action: none;
}

/* Tablet + phone: hamburger + full-height drawer (breakpoint matches JS) */
@media (max-width: 1023px) {
  .site-header__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .site-header__menu-btn {
    display: inline-flex;
  }

  .site-header__nav {
    position: fixed;
    top: var(--header-h, 52px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    justify-self: auto;
    gap: 0;
    padding: 0.5rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
    margin: 0;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .site-header--open .site-header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-header__nav a {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.06em;
    padding: 1.05rem max(var(--page-gutter), env(safe-area-inset-right, 0px)) 1.05rem max(var(--page-gutter), env(safe-area-inset-left, 0px));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .site-header__nav a:active {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-header__backdrop {
    display: block;
    top: var(--header-h, 52px);
  }

  .site-header__cta {
    font-size: 0.64rem;
    padding: 0.42rem 0.65rem;
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 380px) {
  .site-header__cta {
    font-size: 0.58rem;
    padding: 0.38rem 0.5rem;
    max-width: 7.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__cta,
  .site-header__menu-btn,
  .site-header__burger span,
  .site-header__nav,
  .site-header__backdrop {
    transition: none;
  }
}

/* Hero — full-viewport background video; sources skew teacher + multicultural class, then vocal clips; local hero-video.mp4 + poster for exact cast */
.hero {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0c0c0c;
  overflow: hidden;
}

/* Hero-only grain: full-bleed layer above video (inset 0 on .hero) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.14;
  pointer-events: none;
}

/* Full-width bottom shade (was wrongly limited by max-width on the same box as copy) */
.hero__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
  z-index: 3;
  padding: 0;
  box-sizing: border-box;
  pointer-events: none;
}

.hero__overlay-shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: min(78vh, 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.hero__overlay-inner {
  position: relative;
  z-index: 1;
  padding: 2rem max(env(safe-area-inset-right, 0px), var(--page-gutter)) calc(2.75rem + env(safe-area-inset-bottom, 0px)) max(env(safe-area-inset-left, 0px), var(--page-gutter));
  box-sizing: border-box;
}

.hero__tagline {
  font-family: 'Montserrat', 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.2rem, 4.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1rem;
  max-width: min(22ch, 100%);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  pointer-events: auto;
}

.hero__cta {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.15rem;
  border-radius: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero__cta--primary {
  color: #000;
  background: #ffe600;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
}

.hero__cta--primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

.hero__cta--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.hero__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero__cta:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta--primary:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

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

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__video-wrap {
    background: #1a1a1a url('assets/hero-bg.jpg') center / cover no-repeat;
  }
}

/* Why Choose Me Section */
.why-choose {
  background: #fff;
  --image-backdrop: #fff;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.25rem, 8vw, 5.5rem);
  box-sizing: border-box;
}

.why-choose__title {
  font-family: 'Montserrat', 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto clamp(2rem, 5vw, 3.25rem);
  line-height: 1.35;
  max-width: min(42rem, 100%);
  box-sizing: border-box;
}

.why-choose__cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  width: 100%;
}

.why-card {
  width: clamp(140px, 22vw, 335px);
  height: clamp(186px, 29vw, 447px);
  border-radius: 16px;
  border: 2px solid #000;
  box-shadow: var(--image-backdrop-shadow);
  position: relative;
  flex-shrink: 0;
  margin-left: -48px;
  transition: transform 0.2s, box-shadow 0.2s;
  perspective: 1000px;
  cursor: pointer;
}

.why-card:first-child {
  margin-left: 0;
}

.why-card--yellow:hover { transform: rotate(-12deg) translateY(-4px); }
.why-card--blue:hover { transform: rotate(-6deg) translateY(-4px); }
.why-card--orange:hover { transform: translateY(-4px); }
.why-card--magenta:hover { transform: rotate(6deg) translateY(-4px); }
.why-card--lavender:hover { transform: rotate(12deg) translateY(-4px); }

.why-card--yellow {
  background: #FFE600;
  transform: rotate(-12deg);
  z-index: 1;
}

.why-card--blue {
  background: #B8C5E0;
  transform: rotate(-6deg);
  z-index: 2;
}

.why-card--orange {
  background: #FF8C42;
  transform: rotate(0deg);
  z-index: 3;
  height: clamp(220px, 34vw, 520px);
}

.why-card--magenta {
  background: #8B3A62;
  transform: rotate(6deg);
  z-index: 2;
}

.why-card--lavender {
  background: #E8D5E8;
  transform: rotate(12deg);
  z-index: 1;
}

.why-card:hover {
  z-index: 5;
  box-shadow: 8px 8px 0 #000;
}

.why-card:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px;
}

.why-card__flip {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .why-card {
    transition: transform 0.2s;
  }

  .why-card:hover {
    box-shadow: var(--image-backdrop-shadow);
  }

  .why-card__flip {
    transition-duration: 0.2s;
  }
}

.why-card--flipped .why-card__flip {
  transform: rotateY(180deg);
}

.why-card__front,
.why-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
}

.why-card__front {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 0.5rem 0.65rem 0.7rem;
  box-sizing: border-box;
}

.why-card__front-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.why-card__hint {
  flex-shrink: 0;
  display: block;
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.5);
  padding-top: 0.2rem;
}

.why-card--magenta .why-card__hint {
  color: rgba(255, 255, 255, 0.75);
}

.why-card--blue .why-card__hint {
  color: rgba(0, 0, 0, 0.45);
}

.why-card--yellow .why-card__front,
.why-card--yellow .why-card__back { background: #FFE600; }
.why-card--blue .why-card__front,
.why-card--blue .why-card__back { background: #B8C5E0; }
.why-card--orange .why-card__front,
.why-card--orange .why-card__back { background: #FF8C42; }
.why-card--magenta .why-card__front,
.why-card--magenta .why-card__back { background: #8B3A62; }
.why-card--lavender .why-card__front,
.why-card--lavender .why-card__back { background: #E8D5E8; }

.why-card__back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.1rem 0.65rem;
  box-sizing: border-box;
}

.why-card__back-text {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.4;
  flex: 1;
  display: flex;
  align-items: center;
}

.why-card__back-hint {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 0.65rem;
  flex-shrink: 0;
}

.why-card--magenta .why-card__back-text,
.why-card--blue .why-card__back-text {
  color: #fff;
}

.why-card--magenta .why-card__back-hint,
.why-card--blue .why-card__back-hint {
  color: rgba(255, 255, 255, 0.55);
}

.why-card__number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.why-card--magenta .why-card__number,
.why-card--blue .why-card__number {
  color: #fff;
}

@media (max-width: 768px) {
  .why-choose__cards {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.15rem;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .why-card {
    margin-left: 0;
    transform: none !important;
    flex: none;
    width: 100%;
    max-width: min(100%, 420px);
    min-width: 0;
    height: 268px;
  }

  .why-card--orange {
    height: 292px;
  }

  .why-card__back {
    padding: 1.35rem 1.25rem 0.75rem;
  }

  .why-card__back-text {
    font-size: clamp(0.88rem, 2.8vw, 1.05rem);
    line-height: 1.42;
  }

  .why-card__number {
    font-size: clamp(3rem, 12vw, 4.25rem);
  }

  .why-card__hint,
  .why-card__back-hint {
    font-size: 0.68rem;
  }

  .pricing {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .why-choose__cards {
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .why-card {
    max-width: min(100%, 420px);
    height: 260px;
  }

  .why-card--orange {
    height: 284px;
  }
}

/* How it works — black panel, header row + ruled list (number | title | thumb) */
.how-it-works {
  background: #000;
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  box-sizing: border-box;
  scroll-margin-top: 1rem;
}

.how-it-works__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid #fff;
}

.how-it-works__intro {
  max-width: 20rem;
}

.how-it-works__eyebrow {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.65rem;
}

.how-it-works__intro-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(0.875rem, 2.8vw, 0.95rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.how-it-works__title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.05rem, 3.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  max-width: 38rem;
}

.how-it-works__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-it-works__row {
  display: grid;
  grid-template-columns: minmax(3.5rem, 7vw) minmax(0, 1fr) minmax(7rem, 11rem);
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(0.65rem, 2vw, 1rem);
  border-bottom: 1px solid #fff;
  margin: 0;
  border-radius: 8px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.how-it-works__row:hover {
  background-color: #ffe600;
  border-bottom-color: rgba(0, 0, 0, 0.2);
}

.how-it-works__row:hover .how-it-works__num,
.how-it-works__row:hover .how-it-works__step {
  color: #000;
}

.how-it-works__row:hover .how-it-works__thumb {
  border-color: rgba(0, 0, 0, 0.35);
}

.how-it-works__num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.2s ease;
}

.how-it-works__step {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-align: center;
  justify-self: center;
  width: 100%;
  transition: color 0.2s ease;
}

.how-it-works__thumb {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 11rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0a0a0a;
  transition: border-color 0.2s ease;
}

/* Pull photo into the black section: darken + slight desat */
.how-it-works__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 45%,
    rgba(0, 0, 0, 0.48) 100%
  );
  pointer-events: none;
}

/* Heavy film grain (above vignette) */
.how-it-works__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 110px 110px;
  opacity: 0.62;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .how-it-works__row,
  .how-it-works__num,
  .how-it-works__step,
  .how-it-works__thumb {
    transition: none;
  }

  .how-it-works__thumb::after {
    opacity: 0.38;
    mix-blend-mode: normal;
    background-size: 140px 140px;
  }

  .how-it-works__thumb--illo::after {
    opacity: 0.32;
  }
}

.how-it-works__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68) contrast(1.14) saturate(0.82);
}

/* Lo-fi illustration art: less aggressive crush + grain so line art and colour stay clear */
.how-it-works__thumb--illo img {
  filter: brightness(0.8) contrast(1.06) saturate(0.94);
}

.how-it-works__thumb--illo::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0.34) 100%
  );
}

.how-it-works__thumb--illo::after {
  opacity: 0.52;
  background-size: 96px 96px;
}

@media (max-width: 900px) {
  .how-it-works__header {
    grid-template-columns: 1fr;
  }

  .how-it-works__title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .how-it-works__row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .how-it-works__num {
    grid-column: 1;
    grid-row: 1;
  }

  .how-it-works__step {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    justify-self: start;
  }

  .how-it-works__thumb {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    max-width: none;
  }
}

/* Payment plans */
.pricing {
  background: #fff6e5;
  --image-backdrop: #fff6e5;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.25rem, 8vw, 5.5rem);
  box-sizing: border-box;
  min-height: min(90vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing__lead {
  font-family: 'Montserrat', 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.15rem, 3.8vw, 2rem);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.35;
  max-width: 38rem;
  margin: 0 auto 3.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid #000;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 #000;
  z-index: 1;
}

.pricing-card--featured {
  background: #ffe600;
  box-shadow: var(--image-backdrop-shadow);
}

.pricing-card--featured:hover {
  box-shadow: 10px 10px 0 #000;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.pricing-card--featured .pricing-card__name {
  margin-top: 0.5rem;
}

.pricing-card__name {
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.75rem;
}

.pricing-card__price {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: #000;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pricing-card__currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 1.25rem;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.95rem;
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

.pricing-card__cta {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}

.pricing-card__cta:hover {
  background: #222;
}

.pricing-card--featured .pricing-card__cta {
  background: #000;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .pricing-card:hover,
  .pricing-card--featured:hover {
    transition: none;
    transform: none;
  }

  .pricing-card:hover {
    box-shadow: 8px 8px 0 #000;
  }

  .pricing-card--featured:hover {
    box-shadow: var(--image-backdrop-shadow);
  }
}

@media (max-width: 900px) {
  .pricing {
    min-height: auto;
    justify-content: flex-start;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 420px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing__lead {
    margin-bottom: clamp(1.75rem, 5vw, 3.5rem);
  }
}

/* FAQ — split masthead + staggered accordion */
.faq {
  background: #ffe600;
  --image-backdrop: #ffe600;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.25rem, 8vw, 5.5rem);
  box-sizing: border-box;
  overflow-x: hidden;
}

.faq__shell {
  display: grid;
  grid-template-columns: minmax(0, min(28rem, 42%)) minmax(0, 1fr);
  gap: 2rem clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.faq__masthead {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  position: sticky;
  top: 1.5rem;
  min-width: 0;
  max-width: 100%;
}

.faq__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.75rem 0.5rem 0.85rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: var(--image-backdrop-shadow);
  flex-shrink: 0;
}

.faq__wordmark-letter {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 0.85;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: block;
}

.faq__wordmark-letter:nth-child(2) {
  margin-left: 0.15em;
}

.faq__wordmark-letter:nth-child(3) {
  margin-left: -0.05em;
}

.faq__intro {
  min-width: 0;
  padding-top: 0.25rem;
}

.faq__eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  margin: 0 0 0.5rem;
}

.faq__title {
  font-family: 'Montserrat', 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  max-width: 18ch;
}

.faq__lead {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(0.95rem, 2.6vw, 1.08rem);
  font-weight: 400;
  color: #222;
  line-height: 1.5;
  margin: 0 0 1rem;
  max-width: min(32ch, 100%);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.35rem;
  min-width: 0;
  width: 100%;
  /* Lighter stagger so accordion reads wider */
  --faq-shift: clamp(0px, 1.5vw, 18px);
}

.faq__item {
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: var(--image-backdrop-shadow);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  transition: transform 0.2s;
}

.faq__item:nth-child(odd) {
  transform: rotate(-0.5deg);
  width: calc(100% - var(--faq-shift));
  max-width: calc(100% - var(--faq-shift));
  margin-left: auto;
  margin-right: 0;
}

.faq__item:nth-child(even) {
  transform: rotate(0.5deg);
  width: calc(100% - var(--faq-shift));
  max-width: calc(100% - var(--faq-shift));
  margin-left: 0;
  margin-right: auto;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 600;
  color: #000;
  line-height: 1.38;
  text-align: left;
  transition: background 0.15s;
}

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

.faq__question::marker {
  content: '';
}

.faq__question:hover {
  background: #fffef5;
}

.faq__item[open] .faq__question {
  background: #fffef5;
  border-bottom: 2px solid #000;
}

.faq__num {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  background: #ffe600;
  border: 2px solid #000;
  padding: 0.35rem 0.45rem;
  border-radius: 4px;
  box-shadow: 2px 2px 0 #000;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.faq__question-text {
  flex: 1;
  min-width: 0;
}

.faq__toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 2px solid #000;
  border-radius: 6px;
  background: #ffe600;
  box-shadow: 3px 3px 0 #000;
  position: relative;
  align-self: flex-start;
  margin-top: 2px;
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  transition: opacity 0.2s, transform 0.2s;
}

.faq__toggle::before {
  width: 12px;
  height: 2px;
}

.faq__toggle::after {
  width: 2px;
  height: 12px;
}

.faq__item[open] .faq__toggle::after {
  opacity: 0;
}

.faq__answer {
  padding: 0 1.35rem 1.35rem;
}

.faq__answer p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  color: #333;
  line-height: 1.62;
  margin: 0;
}

.faq__answer p + p {
  margin-top: 0.75rem;
}

.faq__inline-link {
  font-weight: 600;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq__inline-link:hover {
  color: #444;
}

.faq__inline-link:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .faq {
    padding: 3rem 0 4rem;
  }

  .faq__shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq__masthead {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq__wordmark {
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
  }

  .faq__wordmark-letter {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1;
  }

  .faq__wordmark-letter:nth-child(2),
  .faq__wordmark-letter:nth-child(3) {
    margin-left: 0;
  }

  .faq__title {
    max-width: none;
  }

  .faq__lead {
    max-width: 100%;
  }

  .faq__item:nth-child(odd),
  .faq__item:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .faq {
    padding: 3rem 0 4rem;
  }

  .faq__question {
    padding: 1rem 1rem;
    align-items: flex-start;
  }

  .faq__toggle {
    margin-top: 0;
  }

  .faq__num {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__item:nth-child(odd),
  .faq__item:nth-child(even) {
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .faq__toggle::before,
  .faq__toggle::after {
    transition: none;
  }
}

/* Testimonials — full cream section, dashed rules, hidden scrollbar on rail */
.testimonials {
  background: #fff6e5;
  --image-backdrop: #fff6e5;
  padding: clamp(3rem, 8vw, 5rem) 0 2.5rem;
  border-top: 2px dashed #000;
  border-bottom: 2px dashed #000;
  box-sizing: border-box;
}

.testimonials__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1rem;
}

.testimonials__eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  margin: 0 0 0.5rem;
}

.testimonials__title {
  font-family: 'Montserrat', 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.testimonials__lead {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  color: #222;
  line-height: 1.5;
  margin: 0;
}

.testimonials__hint {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #333;
  opacity: 0.55;
  margin: 0 0 0.5rem;
  text-align: center;
}

.testimonials__rail {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
  scroll-padding-right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
  padding: 0.75rem 0 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testimonials__rail::-webkit-scrollbar {
  display: none;
}

.testimonials__rail:focus-visible {
  outline: 3px solid #000;
  outline-offset: 6px;
}

.testimonials__track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 0;
  margin: 0 auto;
  transform-style: preserve-3d;
}

.testimonial-card {
  margin: 0;
  flex: 0 0 min(78vw, 320px);
  scroll-snap-align: center;
  padding: 1.45rem 1.3rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: var(--image-backdrop-shadow);
  display: flex;
  flex-direction: column;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  transition: box-shadow 0.2s;
}

.testimonials__rail--flat .testimonial-card {
  transform: none !important;
  opacity: 1 !important;
  z-index: auto !important;
  will-change: auto;
}

.testimonial-card--featured {
  flex-basis: min(85vw, 380px);
  background: #ffe600;
  border-width: 2px;
}

.testimonial-card--featured .testimonial-card__quote {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.testimonial-card:hover {
  box-shadow: 8px 8px 0 #000;
}

.testimonial-card__quote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 400;
  color: #222;
  line-height: 1.55;
  margin: 0 0 1.15rem;
  flex: 1;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.25rem;
  border-top: 2px solid #000;
}

.testimonial-card__name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
}

.testimonial-card__role {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #444;
}

@media (max-width: 900px) {
  .testimonials__track {
    margin: 0;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .testimonial-card {
    flex-basis: min(88vw, 340px);
  }

  .testimonial-card--featured {
    flex-basis: min(92vw, 400px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__rail {
    mask-image: none;
    -webkit-mask-image: none;
    perspective: none;
  }

  .testimonial-card:hover {
    box-shadow: var(--image-backdrop-shadow);
  }
}

/* Contact */
.contact {
  background: #fff6e5;
  --image-backdrop: #fff6e5;
  padding: clamp(3rem, 8vw, 5rem) 0 calc(5.5rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.contact__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact__eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  margin: 0 0 0.5rem;
}

.contact__title {
  font-family: 'Montserrat', 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.contact__lead {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(0.9rem, 2.8vw, 1.05rem);
  font-weight: 400;
  color: #222;
  line-height: 1.5;
  max-width: min(36rem, 100%);
  margin: 0 auto;
  box-sizing: border-box;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  }
}

.contact__form-panel {
  min-width: 0;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: var(--image-backdrop-shadow);
}

.contact__field {
  display: flex;
  flex-direction: column;
}

.contact__field--full {
  grid-column: 1 / -1;
}

.contact__label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin-bottom: 0.4rem;
}

.contact__input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  color: #000;
  border: 2px solid #000;
  border-radius: 6px;
  background: #fff;
}

.contact__input::placeholder {
  color: #888;
}

.contact__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffe600;
}

.contact__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}

.contact__submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.25rem;
  padding: 12px 1.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 4px 4px 0 #ffe600;
  transition: transform 0.15s, box-shadow 0.15s;
}

.contact__submit:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #ffe600;
}

.contact__submit:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

.contact__submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.contact__form-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  background: #ffe600;
  border: 2px solid #000;
  border-radius: 6px;
}

.contact__form-error[hidden] {
  display: none !important;
}

/* Compact success toast — sits inside the form card, auto-dismisses via JS */
.contact__toast {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem 0.65rem;
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0 0.65rem;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 transparent;
  pointer-events: none;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.32s ease,
    margin 0.32s ease,
    padding 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.contact__toast--show {
  max-height: 6rem;
  opacity: 1;
  margin-bottom: 0.45rem;
  padding: 0.45rem 0.6rem;
  border-color: #000;
  box-shadow: 3px 3px 0 #ffe600;
}

.contact__toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  background: #ffe600;
  border: 2px solid #000;
  border-radius: 4px;
}

.contact__toast-text {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #000;
}

.contact__aside {
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: var(--image-backdrop-shadow);
}

.contact__aside-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.5rem;
}

.contact__link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  word-break: break-word;
}

.contact__book {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.5rem 0.9rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  background: #ffe600;
  border: 2px solid #000;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  transition: opacity 0.2s, transform 0.15s;
}

.contact__book:hover {
  opacity: 0.95;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #000;
}

.contact__book:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

@media (max-width: 550px) {
  .contact__form {
    grid-template-columns: 1fr;
  }

  .contact__input {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 3rem 0 4rem;
  }

  .testimonials {
    padding: 3rem 0 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__toast {
    transition-duration: 0.01ms;
  }

  .contact__submit,
  .contact__book {
    transition: none;
  }
}

/* Footer — single calm row + copyright (no mega type) */
.site-footer {
  background: #000;
  color: #fff;
  padding: 2.75rem 0 calc(2.25rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand-block {
  min-width: min(100%, 12rem);
}

.site-footer__brand {
  font-family: 'Montserrat', 'IBM Plex Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  transition: opacity 0.2s ease;
}

.site-footer__brand:hover {
  opacity: 0.88;
}

.site-footer__brand:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.site-footer__tagline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.35rem 0 0;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  flex: 1;
  min-width: 0;
}

.site-footer__nav a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover {
  color: #ffe600;
}

.site-footer__nav a:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-shrink: 0;
}

.site-footer__billing {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.site-footer__billing:hover {
  color: #ffe600;
}

.site-footer__billing:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social li {
  margin: 0;
  padding: 0;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.site-footer__social-link:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

.site-footer__to-top {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer__to-top:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.site-footer__to-top:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
}

.site-footer__copy {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer__row {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer__actions {
    justify-content: space-between;
    padding-top: 0.25rem;
  }

  .site-footer__copy {
    text-align: left;
  }
}
