:root {
  --ink: #11100e;
  --muted: #625c53;
  --paper: #fbfaf6;
  --soft: #f1ece2;
  --red: #a90f1d;
  --gold: #cfa24b;
  --cyan: #0f91a3;
  --line: rgba(17, 16, 14, 0.12);
  --shadow: 0 28px 80px rgba(17, 16, 14, 0.18);
  --thread: rgba(169, 15, 29, 0.18);
  --display: Oswald, Impact, sans-serif;
  --tag: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.site-header.solid {
  position: sticky;
  background: rgba(14, 13, 13, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  line-height: 0.95;
  font-size: 0.83rem;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: white;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-explorer {
  position: relative;
  z-index: 8;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  padding: 5px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(17, 16, 14, 0.06);
  backdrop-filter: blur(14px);
}

.site-header + .site-explorer {
  margin-top: 0;
}

.site-header:not(.solid) + .site-explorer {
  margin-top: 74px;
}

.site-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.site-tabs a {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-tabs a:hover,
.site-tabs a:focus-visible,
.site-tabs a[aria-current="page"] {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.site-search {
  position: relative;
  justify-self: end;
  width: min(100%, 240px);
}

.site-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  padding: 2px;
  border: 1px solid rgba(17, 16, 14, 0.14);
  border-radius: 999px;
  background: white;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 7px 0 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.75rem;
}

.site-search button {
  border: 0;
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--red);
  color: white;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.site-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(420px, 92vw);
  display: grid;
  gap: 6px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.site-search-results a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 7px;
  color: var(--ink);
}

.site-search-results a:hover,
.site-search-results a:focus-visible {
  background: var(--soft);
}

.site-search-results strong {
  font-family: var(--display);
  font-size: 1rem;
}

.site-search-results small {
  width: max-content;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(169, 15, 29, 0.08);
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-search-results span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.header-action,
.button,
.send-options button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 4px;
}

.header-action,
.button.primary,
.send-options button:first-child {
  background:
    linear-gradient(135deg, #ffe08a, var(--gold) 48%, #ff5a3d 140%);
  color: #15110b;
  box-shadow: 0 14px 34px rgba(207, 162, 75, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(207, 162, 75, 0.42);
}

.glow-button {
  border: 1px solid rgba(255, 224, 138, 0.8);
  box-shadow:
    0 0 0 5px rgba(207, 162, 75, 0.12),
    0 18px 46px rgba(207, 162, 75, 0.42);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.button.dark {
  background: var(--ink);
  color: white;
}

.button.ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.keyword-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  padding: 0 0.12em;
  border-radius: 3px;
  background: linear-gradient(180deg, transparent 58%, rgba(207, 162, 75, 0.24) 58%);
  transition: background 180ms ease, color 180ms ease;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.card-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.card-links a:hover,
.card-links a:focus-visible {
  background: var(--ink);
  color: white;
}

.keyword-link:hover,
.keyword-link:focus-visible {
  color: var(--red);
  background: rgba(207, 162, 75, 0.34);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  padding-top: 116px;
  box-sizing: border-box;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.9), rgba(9, 8, 7, 0.38) 58%, rgba(9, 8, 7, 0.56)),
    linear-gradient(0deg, rgba(9, 8, 7, 0.82), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 118px clamp(14px, 4vw, 58px);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--red);
}

.hero .eyebrow {
  color: var(--gold);
}

.hero .eyebrow,
.page-hero .eyebrow,
.price-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--tag);
  font-size: 0.72rem;
  line-height: 1;
}

h1,
h2 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.2rem);
  max-width: 10ch;
}

.hero h1 {
  font-size: clamp(2.9rem, 6.6vw, 6.2rem);
  max-width: 12.5ch;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: clamp(2.05rem, 4.5vw, 4.2rem);
}

h3 {
  margin: 0;
  font-size: 1.22rem;
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 560px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 7vw, 92px);
  right: clamp(18px, 7vw, 92px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
  isolation: isolate;
}

.hero-panel a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 18px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  background: rgba(255, 253, 248, 0.95);
  transition: background 180ms ease, color 180ms ease;
}

.hero-panel a:hover,
.hero-panel a:focus-visible {
  background: var(--ink);
  color: white;
}

.hero-panel a:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  color: var(--red);
  font-size: 1.4rem;
  font-family: var(--display);
  margin-bottom: 4px;
}

.hero-panel a:hover span,
.hero-panel a:focus-visible span {
  color: var(--gold);
}

.section,
.notice-band,
.crew-section,
.local-proof {
  position: relative;
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.subpage {
  background: var(--paper);
}

.page-hero {
  position: relative;
  padding: clamp(82px, 11vw, 146px) 0 clamp(62px, 8vw, 104px);
  background:
    linear-gradient(120deg, rgba(200, 25, 34, 0.16), transparent 34%),
    var(--ink);
  color: white;
}

.page-hero::after,
.hero::after {
  content: "REÇU · TRANSMIS · CONTINUÉ";
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 9.5ch;
}

.section-heading h2,
.final-cta h2,
.price-card h3,
.team-grid h3,
.proof-grid h3,
.community-grid h3 {
  font-family: var(--display);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  text-shadow: 0 2px 0 rgba(242, 184, 75, 0.18);
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  font-size: 1.1rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-captioned-photo img {
  box-shadow: var(--shadow);
}

.page-captioned-photo figcaption {
  color: rgba(255, 255, 255, 0.74);
  border-left-color: var(--gold);
}

.route-line {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  max-width: 520px;
  margin-top: 26px;
}

.route-line span {
  position: relative;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: white;
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.route-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.notice-band {
  background: var(--ink);
  color: white;
}

.notice-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.split-lite {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.forum-section {
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.18), transparent 36%),
    var(--paper);
}

.forum-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  font-weight: 800;
  line-height: 1.55;
}

.forum-card span {
  display: block;
  font-family: var(--display);
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.notice-grid p:last-child,
.section-heading p,
.mission-layout p,
.split-content p,
.visual-grid p,
.teacher-layout p,
.crew-layout p,
.contact-layout > div > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.notice-grid p:last-child,
.notice-grid .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.mission-section {
  position: relative;
  padding: clamp(76px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 184, 75, 0.16), transparent 28%),
    var(--paper);
}

.mission-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.mission-layout img,
.captioned-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.captioned-photo {
  margin: 0;
}

.captioned-photo figcaption {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.mission-pillars,
.crew-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mission-pillars span,
.mission-pillars a,
.crew-tags span {
  padding: 10px 12px;
  border-radius: 4px;
  font-weight: 900;
}

.mission-pillars span,
.mission-pillars a {
  background: var(--soft);
  border: 1px solid var(--line);
}

.mission-pillars span:nth-child(1),
.mission-pillars span:nth-child(4),
.mission-pillars a:nth-child(1),
.mission-pillars a:nth-child(4),
.crew-tags span:nth-child(1),
.crew-tags span:nth-child(4) {
  border-color: rgba(200, 25, 34, 0.28);
  background: rgba(200, 25, 34, 0.08);
}

.mission-pillars a {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.mission-pillars a:hover,
.mission-pillars a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.map-band {
  padding: 22px 0;
  background: #111;
}

.metro-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.map-band .metro-map {
  margin-bottom: 0;
}

.metro-map::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 7%;
  right: 7%;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan), var(--red));
  border-radius: 999px;
}

.metro-map a {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 0 8px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.map-band .metro-map a {
  color: white;
}

.metro-map span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: white;
  border: 5px solid var(--red);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.18rem;
  box-shadow: 0 8px 22px rgba(22, 20, 20, 0.16);
}

.metro-map a:nth-child(2) span,
.metro-map a:nth-child(5) span {
  border-color: var(--gold);
}

.metro-map a:nth-child(3) span {
  border-color: var(--cyan);
}

.metro-map a:nth-child(4) span {
  border-color: #222;
}

.page-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px 16px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
  border-radius: 999px;
}

.page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.page-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.page-card span {
  font-family: var(--display);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.final-cta {
  max-width: 760px;
}

.final-cta p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.pricing-grid,
.schedule-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card,
.schedule-grid article,
blockquote,
.lead-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.07);
}

.price-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  min-height: 300px;
}

.price-card::before,
.team-grid article::before,
.method-points article::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px;
}

.price-card.featured {
  border: 2px solid var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.club-pricing {
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
}

.club-value {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.club-card {
  background:
    linear-gradient(135deg, rgba(169, 15, 29, 0.07), transparent 42%),
    white;
}

.gift-price-card {
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.26), transparent 38%),
    linear-gradient(160deg, rgba(15, 145, 163, 0.08), transparent 62%),
    white;
  border-color: rgba(207, 162, 75, 0.95) !important;
}

.gift-price-card .price-label {
  color: var(--ink);
}

.gift-price-card .price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff8e8;
  color: var(--red);
  box-shadow: 0 16px 36px rgba(207, 162, 75, 0.22);
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.proof-tunnel-heading {
  max-width: 960px;
}

.proof-tunnel-heading h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.3rem);
}

.proof-tunnel {
  display: grid;
  gap: 22px;
}

.proof-lead {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.16), transparent 44%),
    white;
  box-shadow: var(--shadow);
}

.proof-lead img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.proof-lead span,
.proof-cards span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.proof-lead h3,
.proof-access h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.proof-lead p,
.proof-access p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.association-intro {
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.12), transparent 46%),
    var(--paper);
}

.association-heading {
  max-width: 920px;
}

.association-values article {
  min-height: 230px;
}

.proof-cards article {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.07);
}

.proof-cards article:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.24), transparent 52%),
    white;
}

.proof-cards article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(15, 145, 163, 0.14), transparent 52%),
    white;
}

.proof-cards article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(169, 15, 29, 0.11), transparent 52%),
    white;
}

.proof-cards article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(17, 16, 14, 0.08), transparent 52%),
    white;
}

.proof-cards h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.proof-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.proof-cards .card-links {
  margin-top: auto;
  padding-top: 18px;
}

.proof-cinema {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 16, 14, 0.94), rgba(17, 16, 14, 0.86)),
    var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.proof-cinema span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.proof-cinema h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.proof-cinema p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.proof-cinema video,
.proof-cinema .youtube-panel {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.youtube-panel {
  overflow: hidden;
}

.youtube-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.youtube-panel figcaption {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: #050505;
}

.youtube-panel .youtube-button {
  width: 100%;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.home-decision {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.24), transparent 44%),
    white;
  border: 1px solid rgba(207, 162, 75, 0.72);
  box-shadow: var(--shadow);
}

.home-decision h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

.home-decision p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.home-decision-actions {
  display: grid;
  gap: 10px;
  min-width: min(320px, 100%);
}

.light-cinema {
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.18), transparent 45%),
    white;
  color: var(--ink);
}

.light-cinema p {
  color: var(--muted);
}

.light-cinema span {
  color: var(--red);
}

.research-section .proof-cinema + .proof-cinema {
  margin-top: 22px;
}

.proof-access {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.proof-access p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-access .eyebrow {
  color: var(--gold);
}

.proof-access .button {
  white-space: nowrap;
}

.mini-price-grid {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mini-price-grid span {
  display: block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(169, 15, 29, 0.07);
  color: var(--red);
  font-weight: 900;
  font-size: 0.84rem;
}

.price-options span strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.compact-price-reveal {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.helloasso-section { background: #f6f2ea; }
.helloasso-section .section-inner { max-width: 960px; }

.helloasso-direct-card {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(207, 162, 75, 0.72);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.helloasso-direct-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.helloasso-direct-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.official-planning-visual {
  width: min(1600px, calc(100vw - 32px));
  margin: 2rem 50% 0;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(20, 18, 16, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 18, 16, 0.12);
}

.official-planning-visual > img {
  display: block;
  width: 100%;
  height: auto;
}

.home-planning-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #f6f2ea;
}

.home-planning-shell {
  width: min(1800px, 96vw);
  margin-inline: auto;
}

.home-planning-heading {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-planning-heading h2 {
  margin: 0.45rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.home-planning-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-planning-visual {
  width: 100%;
  margin: 2rem 0 0;
  transform: none;
}

.home-planning-actions,
.planning-primary-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.planning-essentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.planning-essentials p {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(20, 18, 16, 0.1);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  line-height: 1.5;
}

.planning-essentials strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.planning-details {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(20, 18, 16, 0.12);
}

.planning-details summary {
  padding: 1.2rem 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.planning-details .schedule-board { margin-top: 0.5rem; }

.planning-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
}

.planning-next-step p { margin: 0; max-width: 48rem; }

@media (max-width: 760px) {
  .planning-essentials { grid-template-columns: 1fr; }
  .home-planning-actions .button,
  .planning-primary-actions .button { width: 100%; }
}

.sales-heading {
  max-width: 920px;
}

.sales-heading h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.journey-bridge {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0 24px;
}

.journey-bridge a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.14), transparent 48%),
    white;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 16, 14, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.journey-bridge a:hover,
.journey-bridge a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(169, 15, 29, 0.34);
  box-shadow: 0 20px 48px rgba(17, 16, 14, 0.12);
}

.journey-bridge span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.difference-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 145, 163, 0.08), transparent 55%),
    white;
  box-shadow: 0 16px 38px rgba(17, 16, 14, 0.06);
}

.difference-grid span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
  font-size: 0.76rem;
}

.difference-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.difference-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.story-map-section {
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.12), transparent 44%),
    var(--paper);
}

.story-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.story-map a {
  min-height: 155px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(17, 16, 14, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.story-map a:hover,
.story-map a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(169, 15, 29, 0.34);
  box-shadow: var(--shadow);
}

.story-map span {
  width: max-content;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  font-size: 0.8rem;
}

.story-map a:last-child {
  background:
    linear-gradient(135deg, rgba(169, 15, 29, 0.12), transparent 46%),
    #fff8e8;
  border-color: rgba(207, 162, 75, 0.9);
}

.story-map a:last-child span {
  background: var(--red);
}

.story-map strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.story-map small {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.86rem;
}

.crew-upsell,
.crew-offer-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.crew-upsell {
  grid-template-columns: minmax(280px, 1fr) auto;
  margin: 22px 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(207, 162, 75, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.2), transparent 44%),
    white;
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.08);
}

.crew-upsell h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.crew-upsell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.crew-upsell-actions {
  display: grid;
  gap: 10px;
  align-content: center;
  min-width: 230px;
}

.crew-upsell-actions strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.crew-offer-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
}

.crew-proof-grid {
  grid-template-columns: repeat(2, 1fr);
}

.sales-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 34px 0 18px;
}

.sales-proof-grid article {
  padding: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  min-height: 270px;
  overflow: hidden;
}

.sales-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.sales-proof-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: -19px 0 18px 22px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.sales-proof-grid h3,
.sales-promise h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.98;
}

.sales-proof-grid h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  padding: 0 22px;
}

.sales-proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 22px;
}

.sales-promise {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin: 22px 0;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.22), transparent 44%),
    linear-gradient(160deg, rgba(21, 167, 189, 0.13), transparent 58%),
    white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.sales-promise h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.emotion-steps {
  display: grid;
  gap: 14px;
  margin: 0;
}

.emotion-steps p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  box-shadow: 0 14px 32px rgba(22, 20, 20, 0.06);
}

.emotion-steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.emotion-steps span {
  color: var(--muted);
}

.scarcity-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid rgba(169, 15, 29, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(169, 15, 29, 0.06), rgba(207, 162, 75, 0.08));
}

.scarcity-strip strong {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.scarcity-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.spark-moment {
  position: relative;
  margin: 28px auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(207, 162, 75, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.98), rgba(255, 255, 255, 0.9)),
    white;
  box-shadow: 0 18px 48px rgba(207, 162, 75, 0.16);
  overflow: hidden;
}

.spark-moment::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--red));
}

.spark-moment span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spark-moment p {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  font-weight: 700;
}

.after-price-spark {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.after-price-spark span,
.after-price-spark p {
  grid-column: 1;
}

.after-price-spark .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  white-space: nowrap;
}

.price-reveal {
  margin-top: 28px;
  align-items: stretch;
}

.full-button {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.value-calc {
  display: grid;
  gap: 14px;
}

.value-calc div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.value-calc span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-calc strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.value-calc p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.value-argument {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.value-argument article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.value-argument h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.value-argument p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.price-label {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.price {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  margin: 18px 0 14px;
}

.price-card p:last-of-type {
  color: var(--muted);
  line-height: 1.6;
}

.price-card strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
}

.offer-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  background: var(--soft);
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  background: #111;
  color: white;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  padding: clamp(40px, 7vw, 92px);
  align-self: center;
}

.split-content p {
  color: rgba(255, 255, 255, 0.76);
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.value-list span {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-weight: 800;
}

.method-section {
  background:
    linear-gradient(180deg, var(--paper), #fbf4ea);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.method-copy > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.method-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.method-points article {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.method-points p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.method-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.method-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(22, 20, 20, 0.12);
}

.method-gallery img:last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 32%;
}

.bandana-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.bandana-proof figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.bandana-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bandana-proof figcaption {
  padding: 12px;
  color: var(--ink);
  font-weight: 900;
  font-size: 0.9rem;
}

.bandana-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bandana-board figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.07);
}

.bandana-board img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bandana-board figcaption {
  padding: 14px;
  color: var(--ink);
  font-weight: 900;
}

.final-action-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.soft {
  background: var(--soft);
}

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

.schedule-board {
  display: grid;
  gap: 12px;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(280px, 1.45fr) minmax(190px, 0.85fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(17, 16, 14, 0.06);
}

.schedule-row > div {
  min-width: 0;
}

.schedule-row .day {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-row strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

.schedule-row h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.schedule-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.schedule-row span:not(.day) {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.schedule-row b {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1;
}

.baby-row {
  border-color: rgba(207, 162, 75, 0.72);
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.18), transparent 50%),
    white;
}

.crew-row {
  background:
    linear-gradient(135deg, rgba(169, 15, 29, 0.25), rgba(17, 16, 14, 0.96)),
    var(--ink);
  color: white;
  border-color: transparent;
}

.crew-row .day {
  background: white;
  color: var(--ink);
}

.crew-row h3,
.crew-row b {
  color: white;
}

.crew-row strong {
  color: var(--gold);
}

.crew-row p,
.crew-row span:not(.day) {
  color: rgba(255, 255, 255, 0.76);
}

.schedule-grid article {
  padding: 24px;
}

.schedule-grid h3 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--ink);
  color: white;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-grid p {
  margin: 10px 0 0;
  color: var(--ink);
  line-height: 1.45;
  font-size: 1.02rem;
}

.schedule-grid strong {
  display: inline-flex;
  min-width: 104px;
  margin-right: 8px;
  color: var(--red);
  font-weight: 900;
}

.schedule-grid span,
.small-note {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.crew-card {
  background: var(--ink) !important;
  color: white;
  border-color: transparent !important;
}

.schedule-grid .crew-card h3 {
  background: white;
  color: var(--ink);
}

.schedule-grid .crew-card p {
  color: white;
}

.schedule-grid .crew-card strong {
  color: var(--gold);
}

.crew-card span {
  color: rgba(255, 255, 255, 0.74);
}

.local-grid,
.mission-layout,
.visual-grid,
.teacher-layout,
.crew-layout,
.contact-layout,
.social-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.local-grid img,
.visual-grid img,
.teacher-layout img,
.crew-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.teacher-layout img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.local-proof {
  background: #f7f8f7;
}

.local-grid img {
  aspect-ratio: 16 / 10;
}

.mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-facts span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-grid h3,
.proof-grid p {
  margin-left: 20px;
  margin-right: 20px;
}

.proof-grid h3 {
  margin-top: 18px;
}

.proof-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.community-section {
  background: var(--paper);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.community-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.community-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.community-grid h3,
.community-grid p {
  margin-left: 20px;
  margin-right: 20px;
}

.community-grid h3 {
  margin-top: 18px;
}

.community-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.student-story {
  position: relative;
  padding: clamp(58px, 8vw, 110px) 0;
  background:
    linear-gradient(135deg, rgba(21, 167, 189, 0.16), transparent 34%),
    var(--ink);
  color: white;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  font-size: 1.03rem;
}

.story-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 12px;
}

.story-steps span {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-weight: 900;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.noa-story .story-layout {
  grid-template-columns: 0.72fr 1.28fr;
}

.edgar-story {
  background:
    linear-gradient(135deg, rgba(207, 162, 75, 0.2), transparent 36%),
    linear-gradient(180deg, #181512, var(--ink));
}

.edgar-story .story-layout {
  grid-template-columns: 0.78fr 1.22fr;
}

.edgar-story .story-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.edgar-story .story-gallery figure:first-child,
.edgar-story .story-gallery figure:last-child {
  grid-column: span 2;
}

.edgar-story .story-gallery figure:first-child img,
.edgar-story .story-gallery figure:last-child img {
  aspect-ratio: 4 / 3;
}

.noa-story .story-gallery {
  grid-template-columns: repeat(6, 1fr);
}

.noa-story .story-gallery figure {
  grid-column: span 2;
}

.noa-story .story-gallery figure:nth-child(4),
.noa-story .story-gallery figure:nth-child(5) {
  grid-column: span 3;
}

.noa-story .story-gallery figure:nth-child(4) img,
.noa-story .story-gallery figure:nth-child(5) img {
  aspect-ratio: 4 / 3;
}

.story-gallery figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.story-gallery figcaption {
  padding: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
}

.heritage-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 420px;
  margin-top: 24px;
}

.heritage-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.social-proof {
  background: var(--soft);
}

.social-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.social-layout p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.social-cards a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(22, 20, 20, 0.88), rgba(22, 20, 20, 0.52)),
    var(--red);
  box-shadow: var(--shadow);
  line-height: 1.5;
  font-weight: 700;
}

.social-cards a:last-child {
  background:
    linear-gradient(135deg, rgba(22, 20, 20, 0.88), rgba(22, 20, 20, 0.52)),
    var(--cyan);
}

.social-cards span {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.crew-section {
  background: var(--ink);
  color: white;
}

.crew-hero h1 {
  font-family: var(--display);
  font-size: clamp(3.8rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.26);
  text-transform: uppercase;
}

.crew-hero h1::after,
.hero h1::after,
.page-hero h1::after {
  content: "";
  display: block;
  width: min(180px, 42vw);
  height: 6px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
  border-radius: 999px;
}

.crew-layout {
  grid-template-columns: 1fr 0.9fr;
}

.crew-intro-section {
  background:
    linear-gradient(135deg, rgba(169, 15, 29, 0.18), transparent 45%),
    var(--ink);
  color: white;
}

.crew-intro-section .crew-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.crew-intro-section .crew-layout img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.crew-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.team-section {
  background: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-grid article {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
}

.team-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.reviews-grid blockquote {
  margin: 0;
  padding: 24px;
}

blockquote p {
  margin: 0 0 18px;
  line-height: 1.65;
}

cite {
  font-style: normal;
  font-weight: 900;
  color: var(--red);
}

.contact-section {
  background: linear-gradient(135deg, var(--paper), #f2f8f9);
}

.contact-layout {
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-cards a,
.contact-cards span {
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.contact-cards a {
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--red);
  outline: 3px solid rgba(169, 15, 29, 0.16);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 12px;
}

.send-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.send-options button {
  background: var(--ink);
  color: white;
  padding: 0 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.send-options button:hover,
.send-options button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 16, 14, 0.18);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #0e0d0d;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.music-toggle {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: white;
  background: rgba(14, 13, 13, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  font: 700 0.82rem Inter, Arial, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.music-toggle:hover,
.music-toggle:focus-visible {
  background: var(--red);
}

.music-toggle.is-playing span:first-child {
  color: var(--gold);
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .site-explorer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px 12px;
  }

  .site-tabs {
    order: 1;
  }

  .site-search {
    order: 2;
    justify-self: stretch;
    width: 100%;
  }

  .hero {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11vw, 4.9rem);
    max-width: 10.8ch;
  }

  .hero-content {
    margin-bottom: 210px;
  }

  .hero-panel,
  .notice-grid,
  .pricing-grid,
  .proof-lead,
  .proof-cards,
  .proof-cinema,
  .proof-access,
  .home-decision,
  .club-value,
  .mission-layout,
  .page-hero-grid,
  .page-card-grid,
  .metro-map,
  .split-section,
  .method-layout,
  .schedule-grid,
  .local-grid,
  .visual-grid,
  .teacher-layout,
  .crew-layout,
  .proof-grid,
  .community-grid,
  .sales-proof-grid,
  .journey-bridge,
  .difference-grid,
  .story-map,
  .crew-upsell,
  .crew-offer-grid,
  .crew-proof-grid,
  .sales-promise,
  .value-argument,
  .story-layout,
  .social-layout,
  .team-grid,
  .reviews-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-decision-actions {
    width: 100%;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-panel {
    gap: 0;
  }

  .hero-panel a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
  }

  .split-lite {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .split-media {
    min-height: 320px;
  }

  .send-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .scarcity-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .after-price-spark {
    grid-template-columns: 1fr;
  }

  .after-price-spark .button {
    grid-column: 1;
    grid-row: auto;
    justify-content: center;
    width: 100%;
  }

  .proof-access .button {
    width: 100%;
    justify-content: center;
  }

  .method-gallery {
    grid-template-columns: 1fr;
  }

  .method-gallery img:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }

  .noa-story .story-layout,
  .edgar-story .story-layout,
  .edgar-story .story-gallery,
  .noa-story .story-gallery {
    grid-template-columns: 1fr;
  }

  .edgar-story .story-gallery figure:first-child,
  .edgar-story .story-gallery figure:last-child,
  .noa-story .story-gallery figure,
  .noa-story .story-gallery figure:nth-child(4),
  .noa-story .story-gallery figure:nth-child(5) {
    grid-column: auto;
  }

  .social-cards {
    grid-template-columns: 1fr;
  }

  .metro-map {
    gap: 8px;
  }

  .metro-map::before {
    top: 0;
    bottom: 0;
    left: 29px;
    right: auto;
    width: 5px;
    height: auto;
    background: linear-gradient(180deg, var(--red), var(--gold), var(--cyan), var(--red));
  }

  .metro-map a {
    grid-template-columns: 58px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
    min-height: 64px;
  }

  .route-line {
    grid-template-columns: 1fr;
  }

  .route-line span:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -12px;
    width: 2px;
    height: 14px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    font-size: 0.74rem;
  }

  .header-action {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-bottom: 280px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
    max-width: 10.5ch;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 32rem;
  }

  .hero-panel {
    left: 14px;
    right: 14px;
    bottom: 18px;
  }

  .hero-panel a {
    padding: 10px 12px;
  }

  .hero-panel span {
    font-size: 1.15rem;
  }

  .form-row,
  .send-options {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .music-toggle {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding: 0 12px;
  }
}
