/* Universal box-sizing — padding and border count toward declared width.
   Prevents form/input overflow at narrow viewports and is best-practice
   default. See feedback-mobile-overflow-check in agent memory. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] { display: none !important; }

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Self-hosted Inter — see https://rsms.me/inter/, license at OFL */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/InterVariable.woff2') format('woff2');
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
}

:root {
  --black: #010101;
  --white: #f8f8f8;
  --text-color: #000;
  --banner-height: 3rem;
  --nav-height: 4.5rem;

  /* Semantic color tokens (dark mode default) */
  --bg: #010101;
  --bg-elevated: #111;
  --fg: #f8f8f8;
  --fg-secondary: rgba(248, 248, 248, 0.7);
  --fg-muted: rgba(248, 248, 248, 0.55);
  --fg-faint: rgba(248, 248, 248, 0.55);
  --border: rgba(255, 255, 255, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.2);
  --border-hover: rgba(255, 255, 255, 0.4);
  --icon-filter: brightness(0) invert(1);
  --card-bg: rgba(255, 255, 255, 0.04);
  --input-bg: rgba(255, 255, 255, 0.08);
  --sold-out-bg: rgba(0, 0, 0, 0.7);
  --hero-edge: 0, 0, 0;
  color-scheme: dark;

  /* ─── Type roles (websites/specs/design-system-v1.md §"Type roles") ───
     Each role bundles size/line-height/weight/letter-spacing so component
     CSS references the role, not the raw values. Sizes are clamp-based for
     fluid scaling between mobile and desktop without per-breakpoint redefs. */
  --type-display-size:   clamp(2.5rem, 6vw, 5rem);
  --type-display-lh:     1.05;
  --type-display-weight: 700;
  --type-display-track:  -0.02em;

  --type-h1-size:   clamp(2rem, 4vw, 3rem);
  --type-h1-lh:     1.1;
  --type-h1-weight: 700;
  --type-h1-track:  -0.01em;

  --type-h2-size:   clamp(1.5rem, 3vw, 2rem);
  --type-h2-lh:     1.2;
  --type-h2-weight: 600;
  --type-h2-track:  -0.01em;

  --type-h3-size:   1.25rem;
  --type-h3-lh:     1.3;
  --type-h3-weight: 600;
  --type-h3-track:  0;

  --type-eyebrow-size:   0.875rem;
  --type-eyebrow-lh:     1.2;
  --type-eyebrow-weight: 500;
  --type-eyebrow-track:  0.08em;

  --type-body-size:   1rem;
  --type-body-lh:     1.55;
  --type-body-weight: 400;
  --type-body-track:  0;

  --type-lede-size:   1.125rem;
  --type-lede-lh:     1.5;
  --type-lede-weight: 400;
  --type-lede-track:  0;

  --type-small-size:   0.875rem;
  --type-small-lh:     1.4;
  --type-small-weight: 400;
  --type-small-track:  0;

  --type-button-size:   0.95rem;
  --type-button-lh:     1;
  --type-button-weight: 600;
  --type-button-track:  0.02em;

  --type-nav-size:   1rem;
  --type-nav-lh:     1;
  --type-nav-weight: 600;
  --type-nav-track:  0.02em;

  /* Copy widths — keep paragraphs from over-extending in wide columns.
     45ch reads comfortably; 65ch is the upper edge for body text. */
  --copy-w-paragraph: min(45ch, 100%);
  --copy-w-body:      min(65ch, 100%);

  /* ─── Spacing scale ─── single ladder, used for margin/padding/gap.
     0.25 0.5 0.75 1 1.25 1.5 2 2.5 3 4 6 8 10 12 rem */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-7:  2rem;
  --space-8:  2.5rem;
  --space-9:  3rem;
  --space-10: 4rem;
  --space-11: 6rem;
  --space-12: 8rem;
  --space-13: 10rem;
  --space-14: 12rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f8f8f8;
    --bg-elevated: #e8e8e8;
    --fg: #010101;
    --fg-secondary: rgba(0, 0, 0, 0.7);
    --fg-muted: rgba(0, 0, 0, 0.6);
    --fg-faint: rgba(0, 0, 0, 0.55);
    --border: rgba(0, 0, 0, 0.1);
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.15);
    --border-strong: rgba(0, 0, 0, 0.2);
    --border-hover: rgba(0, 0, 0, 0.4);
    --icon-filter: none;
    --card-bg: rgba(0, 0, 0, 0.03);
    --input-bg: rgba(0, 0, 0, 0.05);
    --sold-out-bg: rgba(0, 0, 0, 0.6);
    --hero-edge: 248, 248, 248;
    color-scheme: light;
  }

  /* Homepage exception: keep nav and hero overlay dark in light mode */
  .homepage .nav {
    background: #010101;
  }

  .homepage .nav-logo,
  .homepage .nav-menu li a {
    color: #f8f8f8;
  }

  .homepage .nav-social-link {
    border-color: rgba(255, 255, 255, 0.15);
  }

  .homepage .nav-social-link:hover {
    border-color: rgba(255, 255, 255, 0.4);
  }

  .homepage .nav-social-link img {
    filter: brightness(0) invert(1);
  }

  .homepage .nav-social-link:hover img {
    filter: none;
  }

  .homepage .nav-hamburger .hamburger-line {
    background: #f8f8f8;
  }

  .homepage .hero-background {
    background-color: #000;
  }

  .homepage .hero-overlay {
    background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%
    );
    animation: hero-overlay-fade-in-black 1.8s ease-out forwards;
  }

  @keyframes hero-overlay-fade-in-black {
    0% {
      background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%
      );
    }
    100% {
      background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%
      );
    }
  }
}

.hidden {
  display: none !important;
}

/* ─── Accessibility ─── */
.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--fg);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}

*:focus-visible {
  outline: 0.125rem solid #1ed760;
  outline-offset: 0.125rem;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Type roles ─── See websites/specs/design-system-v1.md.
   Component CSS should reference the role variables, not raw rem values.
   Global text-wrap rules ensure headings balance and paragraphs avoid orphans. */

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* Utility classes — apply a role anywhere without copying its property bag */
.t-display, .role-display {
  font-size: var(--type-display-size);
  line-height: var(--type-display-lh);
  font-weight: var(--type-display-weight);
  letter-spacing: var(--type-display-track);
}

.t-h1, .role-h1 {
  font-size: var(--type-h1-size);
  line-height: var(--type-h1-lh);
  font-weight: var(--type-h1-weight);
  letter-spacing: var(--type-h1-track);
}

.t-h2, .role-h2 {
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-lh);
  font-weight: var(--type-h2-weight);
  letter-spacing: var(--type-h2-track);
}

.t-h3, .role-h3 {
  font-size: var(--type-h3-size);
  line-height: var(--type-h3-lh);
  font-weight: var(--type-h3-weight);
  letter-spacing: var(--type-h3-track);
}

.t-eyebrow, .role-eyebrow {
  font-size: var(--type-eyebrow-size);
  line-height: var(--type-eyebrow-lh);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-track);
  text-transform: uppercase;
}

.t-body, .role-body {
  font-size: var(--type-body-size);
  line-height: var(--type-body-lh);
  font-weight: var(--type-body-weight);
  max-width: var(--copy-w-body);
}

.t-lede, .role-lede {
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-lh);
  font-weight: var(--type-lede-weight);
  max-width: var(--copy-w-paragraph);
}

.t-small, .role-small {
  font-size: var(--type-small-size);
  line-height: var(--type-small-lh);
  font-weight: var(--type-small-weight);
}

/* ─── Nav ─── */
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: var(--space-6);
  align-items: center;
  padding: var(--space-6) 5%;
  position: relative;
  z-index: 100;
  background: var(--bg);
  height: var(--nav-height);
  flex-shrink: 0;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1;
  color: var(--fg);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Tablet: tighten inter-item gap so 4 menu items breathe at narrower widths */
@media (min-width: 43.75rem) and (max-width: 63.99rem) {
  .nav-menu { gap: var(--space-5); }
  .nav { padding-left: var(--space-6); padding-right: var(--space-6); }
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--border-medium);
  opacity: 0.8;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.nav-social-link:hover {
  opacity: 1;
  border-color: var(--border-hover);
}

.nav-social-link img {
  width: 1.5rem;
  height: 1.5rem;
  filter: var(--icon-filter);
  transition: filter 0.2s ease;
}

.nav-social-link:hover img {
  filter: none;
}

.nav-menu li a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  color: var(--fg);
  text-decoration: none;
}

.nav-menu li a:hover {
  text-decoration: underline;
}

/* ─── Hamburger button (hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  flex-direction: column;
  gap: 0.3125rem;
}

.hamburger-line {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: var(--fg);
  border-radius: 0.0625rem;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

/* ─── Hero Section — New Single ─── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--nav-height) - var(--banner-height));
  flex-shrink: 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-color: #000;
}

.hero-background picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-fade-in 1.8s ease-out forwards;
}

@keyframes hero-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--hero-edge), 0) 0%,
    rgba(var(--hero-edge), 1) 100%
  );
  animation: hero-overlay-fade-in 1.8s ease-out forwards;
}

@keyframes hero-overlay-fade-in {
  0% {
    background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 100%
    );
    opacity: 1;
  }
  100% {
    background: radial-gradient(
      ellipse at center,
      rgba(var(--hero-edge), 0) 0%,
      rgba(var(--hero-edge), 1) 100%
    );
    opacity: 1;
  }
}

.hero-foreground {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  margin-top: 2rem;
}

.hero-title {
  font-size: var(--type-display-size);
  line-height: var(--type-display-lh);
  font-weight: var(--type-display-weight);
  letter-spacing: var(--type-display-track);
  margin-top: var(--space-10);
  margin-bottom: var(--space-5);
  white-space: nowrap;
  color: var(--white);
}

.hero-subtitle {
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-lh);
  font-weight: var(--type-lede-weight);
  margin: var(--space-4) auto 0;
  max-width: var(--copy-w-paragraph);
  text-align: center;
  color: var(--white);
  text-wrap: balance;
}

/* Hero button group — positions both CTAs in a row at the hero bottom, with
   matching button metrics so primary (Listen now, green) and secondary (Tour,
   overlay outline) read as a unit. Wraps on narrow viewports. */
.hero-button-group {
  position: absolute;
  bottom: 7.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  max-width: calc(100% - var(--space-7));
}

/* Shared button metrics inside the hero group — middle ground between the
   previous .pre-save-btn (large) and .hero-tour-cta (small) sizes. */
.hero-button-group .pre-save-btn,
.hero-button-group .hero-tour-cta {
  padding: 0.875rem 1.75rem;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

.pre-save-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #1ed760;
  color: #000;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pre-save-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0.25rem 1.5rem rgba(30, 215, 96, 0.3);
}

.pre-save-btn img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.hero-signature {
  position: absolute;
  bottom: 1rem;
  left: 3.125rem;
  transform: rotate(-7deg);
  opacity: 0.75;
}

.hero-signature img {
  width: 10rem;
  height: auto;
  aspect-ratio: 2224 / 1668;
  display: block;
}

/* ─── Accolades Banner ─── */
.accolades-banner {
  height: var(--banner-height);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
  padding: 0 0;
  border-top: 0.0625rem solid var(--border-light);
  border-bottom: 0.0625rem solid var(--border-light);
}

.accolades-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: accolade-scroll 120s linear infinite;
}

.accolades-track span {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.accolade-sep {
  opacity: 1;
  font-size: 0.5rem;
  user-select: none;
  color: var(--fg);
}

.accolade-sep::before {
  content: "♡";
}

@keyframes accolade-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.global_padding {
  padding-left: 5%;
  padding-right: 5%;
}

.container-large {
  max-width: 80rem;
}

/* ─── Lessons Section ─── */
.hero_section {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  background-color: var(--bg);
  height: 60vh;
  min-height: 30rem;
}

.content_container {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.section_title {
  color: var(--fg);
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  margin-bottom: 0rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-block-start: 0;
}

.section_text {
  color: var(--fg);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-wrap: balance;
}

.text-size-large {
  font-size: 1.25rem;
}

.bold {
  font-weight: 700;
}

/* ─── Credential Strip ─── */
.credential-strip {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.credential-text {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-secondary);
  margin: 0;
  line-height: 1.4;
}

.credential-name {
  color: var(--fg);
  font-weight: 600;
}

.credential-sep {
  margin: 0 0.25rem;
  opacity: 0.3;
}

.form_component {
  margin-top: 0rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  max-width: 30rem;
}

.form_input {
  display: flex;
  width: 100%;
  padding: 1rem;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.75rem;
  background: var(--input-bg);
  color: var(--fg);
  border: 0.0625rem solid var(--border-strong);
}

.form_input::placeholder {
  color: var(--fg-secondary);
}

.form_button {
  display: flex;
  border: none;
  padding: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.75rem;
  background: var(--fg);
  color: var(--bg);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.form_button:hover {
  opacity: 0.85;
}

/* Image wrapper */
.image-wrapper {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  position: relative;
  transform: rotate(0deg);
}

.section_image {
  position: absolute;
  overflow: hidden;
  top: 3rem;
  left: 0;
  border-radius: 0.75rem;
  object-fit: cover;
  width: 25rem;
  height: 32rem;
  z-index: 1;
}

.section_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.image_signature {
  position: absolute;
  bottom: 0rem;
  right: -2rem;
  width: 10rem;
  height: auto;
  aspect-ratio: 2224 / 1668;
  transform: rotate(-7deg);
  z-index: 2;
}

.embed_section {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.embed_section iframe {
  border: none;
}

.bg_white {
  background-color: var(--bg);
}

#lessons {
  scroll-margin-top: 4rem;
}

.lessons-section {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  background-color: var(--bg);
  height: auto;
  min-height: unset;
  padding: 5rem 0;
}

#lessons .section_title,
#lessons .section_text {
  color: var(--fg);
}

#lessons .form_input {
  background: var(--input-bg);
  color: var(--fg);
  border-color: var(--border-strong);
}

#lessons .form_input::placeholder {
  color: var(--fg-secondary);
}

#lessons .form_button {
  background: var(--fg);
  color: var(--bg);
}

#lessons .form_button:hover {
  opacity: 0.85;
}

.bg_black {
  background-color: var(--bg);
}

/* ─── Footer ─── */
.footer_component {
  position: relative;
  padding: 0;
  background-color: var(--bg);
}

.easter-egg {
  background-color: var(--bg);
  text-align: center;
  padding: 5rem 0 4rem;
}

.footer-border {
  height: 0.0625rem;
  background: var(--border);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-social-mobile {
  display: none;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--border-medium);
  opacity: 0.8;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.footer-social-link:hover {
  opacity: 1;
  border-color: var(--border-hover);
  transform: translateY(-0.125rem);
}

.footer-social-link img {
  width: 1rem;
  height: 1rem;
  filter: var(--icon-filter);
  transition: filter 0.2s ease;
}

.footer-social-link:hover img {
  filter: none;
}

.footer-emoji {
  font-size: 1rem;
  color: var(--fg-faint);
  margin: 0;
  letter-spacing: 0.05em;
  transition:
    color 0.4s ease,
    transform 0.4s ease;
  cursor: default;
}

.footer-emoji:hover {
  color: var(--fg-secondary);
  animation: wiggle 0.6s ease;
  cursor: pointer;
}

@keyframes wiggle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-0.25rem) rotate(-3deg) scale(1.1);
  }
  40% {
    transform: translateY(-0.125rem) rotate(3deg) scale(1.1);
  }
  60% {
    transform: translateY(-0.25rem) rotate(-2deg) scale(1.05);
  }
  80% {
    transform: translateY(-0.125rem) rotate(2deg);
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 80rem;
  margin: 0 auto;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--fg-secondary);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--fg-secondary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--fg);
}

body:has(.success-page) {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.success-page {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 37.5rem;
  padding: 3rem 2rem;
  border-radius: 1rem;
}

.success-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.success-message {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  opacity: 0.9;
}

.success-link {
  display: flex;
  border: none;
  padding: 1rem 2rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.75rem;
  background: var(--fg);
  color: var(--bg);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: opacity 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.success-link:hover {
  opacity: 0.85;
}

/* ─── Shop Page ─── */
.shop-header {
  text-align: left;
  padding: 4rem 5% 2rem;
  background: var(--bg);
}

.shop-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--fg);
  margin: 0;
  line-height: 1;
}

.shop-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--fg-secondary);
  margin: 0.75rem 0 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 5% 6rem;
  max-width: 80rem;
  margin: 0 auto;
  background: var(--bg);
}

.product-card {
  display: block;
  text-decoration: none;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card-bg);
  border: 0.0625rem solid var(--border-light);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-0.25rem);
  border-color: var(--border-strong);
}

.product-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--card-bg);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-info {
  padding: 1rem;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: #1ed760;
}

.product-compare {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.shop-section-cta {
  text-align: center;
  padding: 0 5% 4rem;
  background: var(--bg);
}

.shop-cta-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bg);
  background: var(--fg);
  border-radius: 2rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.shop-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0.25rem 1rem var(--border-strong);
}

@media (max-width: 59.375rem) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .shop-title {
    font-size: 3rem;
  }
}

@media (max-width: 43.75rem) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.5rem 5% 4rem;
  }
  .shop-header {
    padding: 3rem 5% 1.5rem;
  }
  .shop-title {
    font-size: 2rem;
  }
  .shop-subtitle {
    font-size: 0.875rem;
  }
  .product-info {
    padding: 0.75rem;
  }
  .product-name {
    font-size: 0.8125rem;
  }
  .product-price {
    font-size: 0.875rem;
  }
}

/* ─── Entrance Animations ─── */
.animate-on-scroll {
  opacity: 1;
  transform: none;
}

/* ─── Parallax ─── */
.hero-bg-image.parallax {
  will-change: transform;
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-bg-image {
    animation: none;
  }
  .hero-bg-image.parallax {
    will-change: auto;
    transform: none;
  }
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 59.375rem) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
    padding: 0 1.25rem;
  }
  .pre-save-btn {
    font-size: 1.25rem;
    padding: 0.875rem 1.75rem;
  }
  .hero_section {
    flex-direction: column;
    height: auto;
    background-color: var(--bg);
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .lessons-section {
    flex-direction: column;
  }
  .content_container {
    width: 100%;
    max-width: 40rem;
    padding: 2rem 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  .section_title {
    margin-top: 2.5rem;
  }
  .form_component {
    margin-top: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    width: 100%;
    max-width: none;
  }
  .form_input {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    border-radius: 0.75rem;
    border: 0.0625rem solid var(--border-strong);
  }
  .image-wrapper {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw;
    border-radius: 0.75rem;
    position: relative;
    transform: rotate(0deg);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section_image {
    top: 0rem;
    left: 0rem;
    position: relative;
    width: 100%;
    height: auto;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 43.75rem) {
  :root {
    --nav-height: 3.5rem;
  }
  .nav {
    padding: 1rem 5%;
    grid-template-columns: 1fr auto;
  }
  .nav-logo {
    font-size: 1.125rem;
  }
  .nav-menu {
    display: none;
  }
  .nav-social {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-cart-btn {
    width: 2rem;
    height: 2rem;
  }
  .nav-cart-btn svg {
    width: 14px;
    height: 14px;
  }
  .footer-social-mobile {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .hero {
    /* Height calculated to fill remaining viewport */
  }
  .hero-content {
    margin-top: 2.5rem;
  }
  .hero-title {
    font-size: 2rem;
    white-space: normal;
    text-wrap: balance;
    padding: 0 1rem;
  }
  .hero-subtitle {
    font-size: 0.875rem;
    padding: 0 1.25rem;
    line-height: 1.4;
  }
  .pre-save-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    gap: 0.75rem;
    bottom: 5rem;
  }
  .pre-save-btn img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .hero-signature {
    left: 1rem;
    bottom: 0.5rem;
  }
  .hero-signature img {
    width: 6.25rem;
    height: auto;
  }
  .content_container {
    width: auto;
    padding: 0rem;
    margin-left: 0vw;
    margin-right: 0vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .image-wrapper {
    width: auto;
    margin: 0rem;
    padding: 0rem;
    border-radius: 0rem;
    background-color: var(--bg);
  }
  .embed_section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section_image {
    border-radius: 0rem;
  }
  .section_title {
    font-size: 2rem;
  }
  .section_text {
    font-size: 0.875rem;
  }
  .form_component {
    margin-bottom: 2rem;
  }
  .form_input {
    font-size: 0.875rem;
    padding: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .form_button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem 5%;
  }
  .footer-legal {
    gap: 1.5rem;
  }
  .credential-strip {
    text-align: center;
  }
  .credential-text {
    font-size: 0.75rem;
  }
  .contact-section {
    padding: 3rem 1.5rem 4rem;
  }
  .contact-section .content_container {
    width: 100%;
    max-width: 36rem;
    padding: 0;
    margin: 0 auto;
  }
}

/* ─── Nav Cart Button ─── */
.nav-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--border-medium);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  opacity: 0.8;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.nav-cart-btn:hover {
  opacity: 1;
  border-color: var(--border-hover);
}

.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: #1ed760;
  color: #000;
  font-size: 0.625rem;
  font-weight: 700;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ─── Cart Drawer ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 24rem;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-elevated);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 0.0625rem solid var(--border);
}

.cart-drawer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.cart-drawer-close:hover {
  opacity: 1;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.0625rem solid var(--border-subtle);
}

.cart-item-image {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  object-fit: cover;
  background: var(--card-bg);
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 0.25rem;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--fg-secondary);
  margin: 0 0 0.5rem;
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1ed760;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-item-qty button {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--border-strong);
  background: transparent;
  color: var(--fg);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.cart-item-qty button:hover {
  border-color: var(--border-hover);
}

.cart-item-qty span {
  font-size: 0.875rem;
  color: var(--fg);
  min-width: 1rem;
  text-align: center;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 0.0625rem solid var(--border);
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: #1ed760;
  color: #000;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cart-checkout-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0.25rem 1rem rgba(30, 215, 96, 0.3);
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--fg-muted);
  font-size: 0.875rem;
}

/* ─── Variant Picker ─── */
.variant-picker {
  margin-top: 0.5rem;
}

.variant-select {
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: var(--input-bg);
  border: 0.0625rem solid var(--border-medium);
  border-radius: 0.5rem;
  color: var(--fg);
  font-size: 0.8125rem;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
}

.variant-select option {
  background: var(--bg-elevated);
  color: var(--fg);
}

.variant-select option:disabled {
  color: var(--fg-muted);
}

/* ─── Add to Cart Button ─── */
.add-to-cart-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.625rem;
  background: #1ed760;
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.add-to-cart-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0.125rem 0.5rem rgba(30, 215, 96, 0.25);
}

.add-to-cart-btn:active {
  transform: scale(0.98);
}

.add-to-cart-btn.added {
  background: var(--fg);
  color: var(--bg);
}

.add-to-cart-btn:disabled {
  cursor: wait;
}

/* ─── Sold Out ─── */
.product-image-wrap {
  position: relative;
}

.product-image-wrap.sold-out img {
  opacity: 0.4;
}

.sold-out-badge,
.sale-badge {
  position: absolute;
  top: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.sold-out-badge {
  left: 0.75rem;
  background: var(--sold-out-bg);
  color: #fff;
  z-index: 1;
}

.sale-badge {
  right: 0.75rem;
  background: #1ed760;
  color: #000;
  z-index: 1;
}

/* ─── Product Detail Drawer ─── */
.product-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.product-overlay.open {
  opacity: 1;
  visibility: visible;
}

.product-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 32rem;
  max-width: 95vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-elevated);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.product-drawer.open {
  transform: translateX(0);
}

.product-drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 2;
}

.product-drawer-close {
  background: var(--input-bg);
  border: none;
  color: var(--fg);
  font-size: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-drawer-close:hover {
  background: var(--border-medium);
}

.product-drawer-body {
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-drawer-gallery {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card-bg);
}

.product-drawer-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.pd-sold-out-badge,
.pd-sale-badge {
  position: absolute;
  top: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.625rem;
  border-radius: 0.25rem;
}

.pd-sold-out-badge {
  left: 0.75rem;
  background: var(--sold-out-bg);
  color: #fff;
}

.pd-sale-badge {
  right: 0.75rem;
  background: #1ed760;
  color: #000;
}

.product-drawer-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pd-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  margin: 0;
  line-height: 1.2;
}

.pd-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}

.pd-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1ed760;
}

.pd-compare {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.pd-description {
  font-size: 0.875rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin: 0.25rem 0 0;
}

.pd-variant-picker {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pd-variant-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pd-variant-select {
  font-size: 0.875rem;
  padding: 0.625rem 2.25rem 0.625rem 0.875rem;
}

.pd-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pd-add-to-cart,
.pd-buy-now {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s ease;
}

.pd-add-to-cart {
  background: var(--input-bg);
  color: var(--fg);
  border: 0.0625rem solid var(--border-strong);
}

.pd-add-to-cart:hover {
  background: var(--border-medium);
  border-color: var(--border-hover);
}

.pd-add-to-cart.added {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.pd-buy-now {
  background: #1ed760;
  color: #000;
}

.pd-buy-now:hover {
  transform: scale(1.02);
  box-shadow: 0 0.25rem 1rem rgba(30, 215, 96, 0.3);
}

.pd-add-to-cart:active,
.pd-buy-now:active {
  transform: scale(0.97);
}

.pd-add-to-cart:disabled,
.pd-buy-now:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 43.75rem) {
  .product-drawer {
    width: 100vw;
    max-width: 100vw;
  }
  .pd-title {
    font-size: 1.25rem;
  }
  .pd-actions {
    flex-direction: column;
  }
}

/* ─── About page ─── */
.about-page {
  min-height: 60vh;
  padding: 3rem 5% 4rem;
}

.about-content {
  max-width: 80rem;
  margin: 0 auto;
  color: var(--fg);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

.about-bio {
  flex: 1;
  min-width: 0;
}

.about-playlist {
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .about-playlist {
    flex-shrink: 0;
    width: 100%;
    max-width: 28rem;
  }
}

.about-playlist {
  position: relative;
}

.about-playlist iframe {
  width: 100%;
  border: none;
  position: relative;
  z-index: 1;
}

/* ─── Playlist Skeleton Loader ─── */
.playlist-skeleton {
  position: absolute;
  inset: 0;
  background: #121212;
  border-radius: 0.75rem;
  padding: 1.25rem;
  overflow: hidden;
  z-index: 0;
}

.skeleton-header {
  width: 60%;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-tracks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skeleton-thumb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.skeleton-line {
  height: 0.625rem;
  width: 80%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.25rem;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-line.short {
  width: 50%;
}

@keyframes skeleton-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.about-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 1.5rem;
  color: var(--fg);
}

.about-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  opacity: 0.9;
}

.about-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s ease;
}

.about-link:hover {
  opacity: 0.85;
}

/* ─── Onboarding ─── */
.onboarding-container {
  max-width: 36rem;
  margin: 0 auto;
  padding: 3rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.onboarding-progress {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.progress-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--border-medium);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.progress-dot.active {
  background: #1ed760;
  transform: scale(1.3);
}

.progress-dot.completed {
  background: var(--fg-secondary);
}

.onboarding-step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(1.5rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.onboarding-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.onboarding-step.exit-left {
  display: block;
  opacity: 0;
  transform: translateX(-1.5rem);
  position: absolute;
  width: calc(100% - 10%);
  pointer-events: none;
}

.onboarding-step.exit-right {
  display: block;
  opacity: 0;
  transform: translateX(1.5rem);
  position: absolute;
  width: calc(100% - 10%);
  pointer-events: none;
}

.onboarding-step.enter-right {
  transform: translateX(1.5rem);
  opacity: 0;
}

.onboarding-step.enter-left {
  transform: translateX(-1.5rem);
  opacity: 0;
}

.onboarding-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fg);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.onboarding-subtitle {
  font-size: 1.125rem;
  color: var(--fg-secondary);
  margin: 0 0 2rem;
}

.onboarding-field {
  margin-bottom: 1.5rem;
}

.onboarding-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.onboarding-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.6;
}

.onboarding-textarea {
  resize: vertical;
  min-height: 4.5rem;
  line-height: 1.5;
}

/* Card Selectors */
.card-select-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.card-select-group.multi {
  grid-template-columns: repeat(2, 1fr);
}

.card-select {
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--card-bg);
  border: 0.0625rem solid var(--border);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.card-select:hover {
  border-color: var(--border-hover);
  background: var(--input-bg);
}

.card-select.selected {
  border-color: #1ed760;
  background: rgba(30, 215, 96, 0.08);
}

.card-select:active {
  transform: scale(0.97);
}

/* Confirmation */
.confirm-card {
  background: var(--card-bg);
  border: 0.0625rem solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 0.5rem;
}

.confirm-section {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid var(--border-subtle);
}

.confirm-section:first-child {
  padding-top: 0;
}

.confirm-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.confirm-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin: 0 0 0.75rem;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  gap: 1rem;
}

.confirm-label {
  color: var(--fg-secondary);
  flex-shrink: 0;
}

.confirm-value {
  color: var(--fg);
  font-weight: 600;
  text-align: right;
}

/* Success (inside onboarding) */
.onboarding-success .success-container {
  text-align: center;
  padding: 3rem 0;
}

/* Navigation */
.onboarding-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.onboarding-back {
  background: transparent;
  color: var(--fg-secondary);
  border: 0.0625rem solid var(--border-medium);
}

.onboarding-back:hover {
  color: var(--fg);
  border-color: var(--border-hover);
  opacity: 1;
}

.onboarding-next {
  margin-left: auto;
}

.onboarding-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  .onboarding-step {
    transition: none;
  }
  .progress-dot {
    transition: none;
  }
}

@media (max-width: 43.75rem) {
  .onboarding-container {
    padding: 2rem 5% 3rem;
  }
  .onboarding-title {
    font-size: 2rem;
  }
  .onboarding-subtitle {
    font-size: 1rem;
  }
  .card-select-group {
    grid-template-columns: 1fr;
  }
  .card-select-group.multi {
    grid-template-columns: 1fr;
  }
  .confirm-item {
    flex-direction: column;
    gap: 0.125rem;
  }
  .confirm-value {
    text-align: left;
  }
}

/* ─────────────────────────────────────────────────────────
   Tour
   ───────────────────────────────────────────────────────── */

.tour-home {
  padding: 5rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.tour-home-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.tour-home-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tour-eyebrow {
  font-size: var(--type-eyebrow-size);
  line-height: var(--type-eyebrow-lh);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-track);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 var(--space-3);
}

.tour-home-lede,
.tour-lede {
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-lh);
  font-weight: var(--type-lede-weight);
  color: var(--fg-secondary);
  max-width: var(--copy-w-paragraph);
  margin: var(--space-4) auto 0;
  text-wrap: balance;
}

.tour-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.tour-row {
  display: grid;
  grid-template-columns: minmax(4.25rem, auto) 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.18s ease, padding 0.18s ease;
  text-decoration: none;
  color: var(--fg);
  cursor: pointer;
}

.tour-row:hover {
  background: var(--card-bg);
  padding-left: 1rem;
  padding-right: 1rem;
}

.tour-row:focus-visible {
  background: var(--card-bg);
  outline: 2px solid var(--fg);
  outline-offset: -2px;
}

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.tour-month {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.tour-day {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
}

.tour-where {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.tour-city {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.tour-region {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.tour-status {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  border: 1px solid var(--border-medium);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tour-tickets {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  border: 1px solid var(--border-medium);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tour-list > li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-home-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Primitive: text link with underline. */
.link-underline,
.tour-cta-link {
  display: inline-block;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: var(--space-1);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.link-underline:hover,
.link-underline:focus-visible,
.tour-cta-link:hover,
.tour-cta-link:focus-visible {
  border-color: var(--fg);
  color: var(--fg);
}

/* Tour page (dedicated route) */
.tour-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: var(--space-7) var(--space-6) var(--space-11);
}

/* Tour hero — desktop default (>=64rem / 1024px). Tablet stack is below in the
   max-width media query; mobile stack is in the <43.75rem rule. */
.tour-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-9);
  align-items: center;
  padding: var(--space-7) 0 var(--space-9);
  text-align: left;
}

.tour-hero .tour-eyebrow,
.tour-hero .tour-lede,
.tour-hero .tour-note {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.tour-hero .tour-title {
  text-align: left;
}

.tour-poster {
  margin: 0;
  max-width: 100%;
}

.tour-poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  /* Don't clip below the fold on tall posters — cap height to the viewport
     minus nav and hero padding, but only when it would otherwise overflow. */
  max-height: calc(100svh - var(--nav-height) - var(--space-12));
  object-fit: contain;
  object-position: center;
}

/* Tablet (700–1024px): 5fr/7fr is too cramped — stack columns. */
@media (min-width: 43.75rem) and (max-width: 63.99rem) {
  .tour-hero {
    grid-template-columns: 1fr;
    gap: var(--space-7);
    padding: var(--space-6) 0 var(--space-8);
    text-align: center;
  }
  .tour-hero .tour-eyebrow,
  .tour-hero .tour-lede,
  .tour-hero .tour-note,
  .tour-hero .tour-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .tour-poster {
    max-width: 32rem;
    margin: 0 auto;
  }
}

.tour-title {
  font-size: var(--type-display-size);
  line-height: var(--type-display-lh);
  font-weight: var(--type-display-weight);
  letter-spacing: var(--type-display-track);
  margin: var(--space-2) 0 0;
  color: var(--fg);
  text-wrap: balance;
}

.tour-note {
  font-size: var(--type-small-size);
  line-height: var(--type-small-lh);
  font-weight: var(--type-small-weight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: var(--space-4);
  max-width: var(--copy-w-paragraph);
  text-wrap: pretty;
}

/* Primitive: primary CTA — dark pill on light background.
   Used for every primary action (Get tickets, Follow on Instagram, Submit). */
.btn-primary,
.tour-tickets-cta,
.tour-follow-btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: var(--fg);
  color: var(--bg);
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--type-button-size);
  line-height: var(--type-button-lh);
  font-weight: var(--type-button-weight);
  letter-spacing: var(--type-button-track);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.tour-tickets-cta:hover,
.tour-tickets-cta:focus-visible,
.tour-follow-btn:hover,
.tour-follow-btn:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Position-only overrides for legacy usages */
.tour-tickets-cta { margin-top: var(--space-6); }

.tour-section {
  margin-top: 1rem;
  scroll-margin-top: 1.5rem;
}

.tour-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tour-cta p {
  margin: 0;
  color: var(--fg-secondary);
}

/* .tour-follow-btn is now an alias for .btn-primary — see primitive above. */

/* Breadcrumb */
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--fg-faint);
}

.breadcrumb a {
  color: var(--fg-secondary);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--fg);
}

@media (max-width: 43.75rem) {
  .tour-row {
    grid-template-columns: minmax(3rem, auto) 1fr auto;
    gap: 0.75rem;
    padding: 1rem 0.25rem;
  }
  /* .tour-tickets stays inline — grid-column intentionally not overridden */
  .tour-tickets {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.625rem;
    white-space: nowrap;
  }
  .tour-where { min-width: 0; }
  .tour-city, .tour-venue { font-size: 0.95rem; }
  .tour-venue {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .tour-day { font-size: 1.5rem; }
  .tour-month { font-size: 0.6875rem; }
  .tour-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0 3rem;
    text-align: center;
  }
  .tour-hero .tour-eyebrow,
  .tour-hero .tour-lede,
  .tour-hero .tour-note,
  .tour-hero .tour-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .tour-poster {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ─────────────────────────────────────────────────────────
   Accessibility — global focus + motion
   ───────────────────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .tour-row,
  .tour-cta-link,
  .tour-follow-btn {
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────────────────
   FAQ (lessons page)
   ───────────────────────────────────────────────────────── */

.lessons-faq {
  max-width: 56rem;
  margin: 4rem auto 6rem;
  padding: 0 1.5rem;
}

.lessons-faq-heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  color: var(--fg);
}

.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item dt {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}

.faq-item dd {
  margin: 0;
  color: var(--fg-secondary);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Breadcrumb when used inside a non-tour page */
.about-page .breadcrumb,
main > .breadcrumb {
  max-width: 64rem;
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
}

/* ─────────────────────────────────────────────────────────
   Lessons form (hidden until env vars + sitekey are set)
   ───────────────────────────────────────────────────────── */

.lessons-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  max-width: 32rem;
}

.lessons-form .form_input,
.lessons-form .form_textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-medium);
  border-radius: 0.625rem;
  background: var(--input-bg);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.lessons-form .form_textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.5;
}

.lessons-form .form_input:focus-visible,
.lessons-form .form_textarea:focus-visible {
  outline: none;
  border-color: var(--fg);
  background: var(--card-bg);
}

.lessons-form .form_button {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--fg);
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lessons-form .form_button:hover:not(:disabled),
.lessons-form .form_button:focus-visible:not(:disabled) {
  opacity: 0.85;
  transform: translateY(-1px);
}

.lessons-form .form_button:disabled {
  opacity: 0.6;
  cursor: progress;
}

.lessons-form .form_status {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  min-height: 1.25rem;
}

.lessons-form .form_status[data-kind="success"] {
  color: var(--fg);
}

.lessons-form .form_status[data-kind="error"] {
  color: #ff6b6b;
}

.lessons-form .form_status[data-kind="pending"] {
  color: var(--fg-muted);
}

.lessons-form .cf-turnstile {
  margin: 0.25rem 0 0.25rem;
}

/* ─────────────────────────────────────────────────────────
   Business contact form (/contact/)
   ───────────────────────────────────────────────────────── */

.contact-section {
  padding: 3rem 5%;
}

.contact-fans-note {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.75;
}

.business-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.25rem;
  max-width: 32rem;
}

.business-form label {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  color: var(--fg-secondary);
}

.business-form input[type="text"],
.business-form input[type="email"],
.business-form .form_textarea,
.business-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-medium);
  border-radius: 0.625rem;
  background: var(--input-bg);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.18s ease, background-color 0.18s ease;
  box-sizing: border-box;
}

.business-form textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.5;
}

.business-form input[type="text"]:focus-visible,
.business-form input[type="email"]:focus-visible,
.business-form textarea:focus-visible {
  outline: none;
  border-color: var(--fg);
  background: var(--card-bg);
}

.business-form .form_button {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--fg);
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.business-form .form_button:hover:not(:disabled),
.business-form .form_button:focus-visible:not(:disabled) {
  opacity: 0.85;
  transform: translateY(-1px);
}

.business-form .form_button:disabled {
  opacity: 0.6;
  cursor: progress;
}

.business-form .form_note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--fg-secondary);
  opacity: 0.8;
}

.business-form .form_status {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  min-height: 1.25rem;
}

.business-form .form_status[data-kind="success"] {
  color: var(--fg);
}

.business-form .form_status[data-kind="error"] {
  color: #ff6b6b;
}

.business-form .form_status[data-kind="pending"] {
  color: var(--fg-muted);
}

/* Contact page — single-column, centered form. Overrides the inherited
   .content_container width:60% which is meant for two-column lessons. */
.contact-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.contact-section .content_container {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding: 0;
}

/* Tour poster — Mine and Yours Fall 2026 */
.tour-poster { max-width: 640px; margin: 1.5rem auto 2rem; }
.tour-poster img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* Tour venue line */
.tour-venue {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-secondary);
  margin-top: 0.15rem;
}

/* Tour ticket button — visual affordance driven by parent row hover */
.tour-row:hover .tour-tickets {
  opacity: 0.75;
  text-decoration: underline;
}

/* On-sale note in tour CTA aside */
.tour-onsale-note {
  margin-top: 0;
  font-size: 0.85rem;
  color: var(--fg-secondary);
}

/* Primitive: overlay CTA — white-border pill on dark hero / overlay surface. */
.btn-overlay,
.hero-tour-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #f8f8f8;
  text-decoration: none;
  font-size: var(--type-button-size);
  line-height: var(--type-button-lh);
  font-weight: var(--type-button-weight);
  letter-spacing: var(--type-button-track);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.btn-overlay:hover,
.btn-overlay:focus-visible,
.hero-tour-cta:hover,
.hero-tour-cta:focus-visible {
  border-color: #f8f8f8;
  background: rgba(255, 255, 255, 0.08);
}

/* Affordance arrow used inside overlay buttons */
.btn-overlay-arrow,
.hero-tour-cta-arrow {
  transition: transform 0.18s ease;
}
.btn-overlay:hover .btn-overlay-arrow,
.hero-tour-cta:hover .hero-tour-cta-arrow {
  transform: translateX(3px);
}

/* Position-only override for legacy usage */
.hero-tour-cta { margin-top: var(--space-4); }

/* /lessons/ — tour banner above the fragment */
.lessons-tour-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 80rem;
  margin: 1rem auto 0;
  padding: 0.875rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.18s ease;
}
.lessons-tour-banner:hover,
.lessons-tour-banner:focus-visible {
  background: var(--card-bg);
}
.lessons-tour-banner-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--fg-secondary);
}
.lessons-tour-banner-cta {
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
@media (max-width: 43.75rem) {
  .lessons-tour-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
