@font-face {
  font-family: "JuniorDisplay";
  src: url("fonts/NeueMetanaNext-SemiBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1c1024;
  --deep: #120915;
  --stage: #230b25;
  --paper: #fff4ea;
  --cream: #ffe9d6;
  --white: #ffffff;
  --orange: #ff7a35;
  --hot: #ff2fa3;
  --pink: #d94d9d;
  --violet: #7d35ff;
  --turquoise: #26e6e6;
  --yellow: #ffd166;
  --workshop-ice: #dff8f7;
  --workshop-cyan: #73dbe4;
  --workshop-lilac: #92779f;
  --workshop-coral: #e98382;
  --text-soft: rgba(28, 16, 36, 0.72);
  --border: rgba(28, 16, 36, 0.14);
  --shadow: 0 24px 70px rgba(28, 16, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff4ea 0%, #f8f4ff 46%, #fff4ea 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  min-height: 86px;
  padding: 18px 56px;
  background: rgba(18, 9, 21, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  width: auto;
  height: 48px;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px 24px;
}

.menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.menu a[aria-current="page"],
.menu a:hover {
  color: var(--turquoise);
}

.hero {
  min-height: calc(100vh - 86px);
  position: relative;
  background: var(--deep);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("images/weekendworkshop-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
  animation: heroFloat 14s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 9, 21, 0.34), rgba(18, 9, 21, 0.20) 40%, rgba(18, 9, 21, 0.82) 78%),
    linear-gradient(0deg, rgba(18, 9, 21, 0.76), transparent 58%),
    radial-gradient(circle at 73% 34%, rgba(255, 122, 53, 0.24), transparent 34%),
    radial-gradient(circle at 24% 48%, rgba(255, 47, 163, 0.16), transparent 30%);
}

.hero-content,
.section-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 92px;
  padding-bottom: 82px;
  color: var(--white);
  display: grid;
  justify-items: start;
  text-align: left;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: auto;
  margin-bottom: 8px;
  position: relative;
  left: 0;
  justify-self: start;
  color: #fff;
  text-align: left;
}

.hero h1 {
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(58px, 8.4vw, 118px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.32;
  font-weight: 700;
  text-align: left;
  text-align-last: left;
}

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

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(255, 122, 53, 0.26);
}

.button-secondary {
  background: rgba(255, 47, 163, 0.16);
  border-color: rgba(38, 230, 230, 0.72);
  color: var(--white);
}

.button-quiet {
  border-color: var(--border);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
}

body.js-scroll-motion .hero-image {
  animation: none;
  transform: scale(var(--hero-scale, 1.01)) translate3d(var(--hero-x, 0px), var(--hero-y, 0px), 0);
  transform-origin: center;
  will-change: transform;
}

body.js-scroll-motion .hero-shade {
  opacity: var(--hero-shade-opacity, 1);
}

body.js-scroll-motion .hero-content > * {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  animation: heroRise 0.95s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

body.js-scroll-motion .hero-content > :nth-child(2) {
  animation-delay: 0.12s;
}

body.js-scroll-motion .hero-content > :nth-child(3) {
  animation-delay: 0.24s;
}

body.js-scroll-motion .hero-content > :nth-child(4) {
  animation-delay: 0.36s;
}

body.js-scroll-motion .scroll-scene {
  position: relative;
}

body.js-scroll-motion .scroll-scene > .section-inner {
  transform: translate3d(0, var(--section-y, 18px), 0);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  will-change: transform, opacity;
}

body.js-scroll-motion .scroll-scene.is-leaving > .section-inner {
  opacity: 0.48;
  transform: translate3d(0, -34px, 0) scale(0.985);
}

body.js-scroll-motion .reveal-item {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(8px);
  transition:
    opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.85s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

body.js-scroll-motion .section-kicker.reveal-item,
body.js-scroll-motion h2.reveal-item {
  transform: translate3d(-30px, 44px, 0);
}

body.js-scroll-motion article.reveal-item,
body.js-scroll-motion .facts div.reveal-item,
body.js-scroll-motion .steps li.reveal-item,
body.js-scroll-motion details.reveal-item,
body.js-scroll-motion .contact-form label.reveal-item {
  transform: translate3d(0, 54px, 0) scale(0.965);
}

body.js-scroll-motion .is-visible .reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body.js-scroll-motion .is-leaving .reveal-item {
  opacity: 0.42;
  transform: translate3d(0, -22px, 0) scale(0.985);
  filter: blur(2px);
  transition-delay: 0s;
}

body.js-scroll-motion .workshop-card {
  opacity: 0;
  transform: translate3d(0, 64px, 0) scale(0.965);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

body.js-scroll-motion .next-workshop.is-visible .workshop-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.js-scroll-motion .workshop-media {
  transform: translate3d(-34px, 0, 0) scale(1.04);
  filter: saturate(0.86);
  transition: transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), filter 0.95s ease;
}

body.js-scroll-motion .next-workshop.is-visible .workshop-media {
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

body.js-scroll-motion .audience-grid article.reveal-item:nth-child(odd),
body.js-scroll-motion .calendar-grid article.reveal-item:nth-child(odd),
body.js-scroll-motion .method-list article.reveal-item:nth-child(odd),
body.js-scroll-motion .collab-grid article.reveal-item:nth-child(odd) {
  transform: translate3d(-38px, 52px, 0) rotate(-1.5deg) scale(0.965);
}

body.js-scroll-motion .audience-grid article.reveal-item:nth-child(even),
body.js-scroll-motion .calendar-grid article.reveal-item:nth-child(even),
body.js-scroll-motion .method-list article.reveal-item:nth-child(even),
body.js-scroll-motion .collab-grid article.reveal-item:nth-child(even) {
  transform: translate3d(38px, 52px, 0) rotate(1.5deg) scale(0.965);
}

body.js-scroll-motion .is-visible .audience-grid article.reveal-item,
body.js-scroll-motion .is-visible .calendar-grid article.reveal-item,
body.js-scroll-motion .is-visible .method-list article.reveal-item,
body.js-scroll-motion .is-visible .collab-grid article.reveal-item {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFloat {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.045) translate3d(-12px, -8px, 0);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-inner {
  padding-top: 88px;
  padding-bottom: 88px;
}

body:not(.js-scroll-motion) .intro-grid,
body:not(.js-scroll-motion) .audience-grid article,
body:not(.js-scroll-motion) .workshop-card,
body:not(.js-scroll-motion) .calendar-grid article,
body:not(.js-scroll-motion) .method-list article,
body:not(.js-scroll-motion) .collab-grid article,
body:not(.js-scroll-motion) .process-grid,
body:not(.js-scroll-motion) .contact-grid,
body:not(.js-scroll-motion) .faq-list details {
  animation: softRise 0.72s ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.intro,
.calendar,
.faq {
  background: var(--white);
}

.audience,
.next-workshop,
.contact {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 47, 163, 0.14), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(38, 230, 230, 0.14), transparent 32%),
    var(--cream);
}

.method {
  background:
    linear-gradient(135deg, rgba(255, 244, 234, 0.92), rgba(248, 244, 255, 0.98)),
    var(--paper);
}

.intro-grid,
.method-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 20px;
  color: var(--text-soft);
  padding-top: 38px;
}

.intro-highlight {
  color: var(--hot);
  font-weight: 800;
}

.sequence {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sequence span {
  padding: 10px 12px;
  background: var(--deep);
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.audience-content {
  min-width: 0;
}

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

.audience-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  align-self: stretch;
  background-image: url("images/cardwrkshop.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.32),
    inset 0 0 0 10px rgba(255, 255, 255, 0.035);
}

.audience-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 9, 21, 0.08), rgba(18, 9, 21, 0.70)),
    radial-gradient(circle at 24% 18%, rgba(255, 209, 102, 0.18), transparent 32%),
    radial-gradient(circle at 82% 74%, rgba(38, 230, 230, 0.18), transparent 34%);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article,
.calendar-grid article,
.method-list article {
  min-height: 0;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 234, 0.84));
  border: 1px solid rgba(255, 47, 163, 0.18);
  box-shadow: 0 18px 46px rgba(28, 16, 36, 0.10);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.audience-grid article:hover,
.calendar-grid article:hover,
.method-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 230, 230, 0.44);
  box-shadow: 0 28px 72px rgba(28, 16, 36, 0.15);
}

.audience-grid span,
.status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 9px;
  background: var(--deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.audience-grid p,
.calendar-grid small,
.method-list p,
.collab-grid p,
.process-grid p {
  margin-top: 16px;
  color: var(--text-soft);
}

.workshop-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 233, 214, 0.94));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  border: 1px solid rgba(255, 47, 163, 0.18);
}

.workshop-media {
  position: relative;
  min-height: 520px;
  background-image: url("images/selftapeprovino.png");
  background-size: cover;
  background-position: left center;
}

.workshop-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(18, 9, 21, 0.78), transparent);
  pointer-events: none;
}

.workshop-content {
  min-width: 0;
  padding: 44px;
}

.workshop-content .section-kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  background: rgba(255, 47, 163, 0.16);
  color: var(--hot);
  border: 1px solid rgba(255, 47, 163, 0.28);
}

.workshop-content h2 {
  max-width: 660px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.workshop-content p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 18px;
  color: var(--text-soft);
}

.facts {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.facts div {
  min-width: 0;
  min-height: 96px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 16, 36, 0.10);
  border-top: 5px solid var(--turquoise);
  display: grid;
  align-content: start;
}

.facts div:last-child {
  grid-column: 1 / -1;
  min-height: 82px;
}

.facts dt {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.32;
  font-weight: 800;
}

.workshop-actions {
  margin-top: 34px;
}

.workshop-media .workshop-actions {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  margin-top: 0;
}

.workshop-media .workshop-actions .button {
  width: 100%;
}

.fallback-note {
  margin-top: 20px;
  padding: 20px 22px;
  background:
    linear-gradient(90deg, var(--deep), #351334);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fallback-note strong {
  font-size: 16px;
  line-height: 1.25;
}

.fallback-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.35;
}

.calendar-grid article {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 233, 214, 0.82));
}

.calendar-grid p {
  margin-top: 16px;
  color: var(--pink);
  font-weight: 900;
}

.calendar-grid small {
  display: block;
  font-size: 15px;
}

.status.open {
  background: var(--yellow);
  color: var(--ink);
}

.status.soon {
  background: var(--turquoise);
  color: var(--ink);
}

.status.limited {
  background: var(--orange);
}

.collab {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 47, 163, 0.18), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(38, 230, 230, 0.16), transparent 28%),
    linear-gradient(135deg, var(--deep), var(--stage));
  color: var(--white);
}

.collab-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.collab-heading p:not(.section-kicker) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

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

.collab-grid article {
  min-width: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(38, 230, 230, 0.22);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.20);
}

.collab-grid p,
.collab-grid li {
  color: rgba(255, 255, 255, 0.76);
}

.collab-grid ul {
  margin: 22px 0 28px;
  padding-left: 20px;
}

.collab-grid li + li {
  margin-top: 9px;
}

.process {
  background:
    radial-gradient(circle at 14% 14%, rgba(115, 219, 228, 0.18), transparent 30%),
    radial-gradient(circle at 88% 26%, rgba(146, 119, 159, 0.22), transparent 30%),
    linear-gradient(135deg, #10152f, #191532 58%, #271b35);
  color: var(--white);
  overflow: hidden;
}

.process .section-kicker {
  color: var(--workshop-cyan);
}

.process-grid {
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.process-grid > div:first-child {
  width: 100%;
  padding: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.process-grid p {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(115, 219, 228, 0.13), rgba(146, 119, 159, 0.13));
  border: 1px solid rgba(115, 219, 228, 0.24);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 28px;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.steps li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--workshop-cyan), var(--workshop-lilac));
}

.steps li::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -52px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(233, 131, 130, 0.16), transparent 68%);
  pointer-events: none;
}

.steps li:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 248, 247, 0.44);
  background:
    linear-gradient(135deg, rgba(115, 219, 228, 0.20), rgba(146, 119, 159, 0.18));
}

.steps span {
  position: relative;
  left: auto;
  top: auto;
  width: fit-content;
  padding-bottom: 10px;
  color: var(--workshop-ice);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  transform: none;
}

.steps span::after {
  content: "";
  position: absolute;
  left: 0;
  right: -28px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--workshop-cyan), var(--workshop-lilac), var(--workshop-coral));
}

.steps strong {
  position: relative;
  z-index: 1;
  max-width: none;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.contact-copy p:not(.section-kicker) {
  margin-top: 20px;
  color: var(--text-soft);
}

.contact-form {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

label {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-prompts {
  padding: 16px;
  background: var(--paper);
  display: grid;
  gap: 8px;
}

.form-prompts p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.4;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--border);
}

summary {
  padding: 20px 22px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
}

details p {
  padding: 0 22px 22px;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
    padding: 16px 24px;
  }

  .menu {
    display: none;
  }

  .logo {
    flex: 0 0 auto;
  }

  .logo img {
    height: 40px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content,
  .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .intro-grid,
  .audience-layout,
  .method-grid,
  .process-grid,
  .contact-grid,
  .workshop-card,
  .collab-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .calendar-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .workshop-media {
    min-height: 330px;
  }

  .audience-visual {
    min-height: 420px;
  }

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

  .workshop-content,
  .contact-form,
  .collab-grid article {
    padding: 24px;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-content {
    justify-items: start;
    text-align: left;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 9, 21, 0.86), rgba(18, 9, 21, 0.56)),
      linear-gradient(0deg, rgba(18, 9, 21, 0.82), transparent 56%);
  }

  .process-grid > div:first-child {
    padding: 24px;
  }

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

  .steps li {
    min-height: auto;
    padding: 24px;
    gap: 18px;
  }

  .steps span {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .workshop-content h2 {
    font-size: 32px;
  }

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

  .fallback-note {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.js-scroll-motion .hero-image,
  body.js-scroll-motion .hero-content > *,
  body.js-scroll-motion .scroll-scene > .section-inner,
  body.js-scroll-motion .reveal-item,
  body.js-scroll-motion .workshop-card,
  body.js-scroll-motion .workshop-media {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* DARK IMMERSIVE THEME */

:root {
  --paper: #0e1328;
  --cream: #21142e;
  --ink: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.76);
  --border: rgba(255, 255, 255, 0.16);
}

body {
  background: var(--paper);
  color: var(--white);
}

main > section:not(.hero) {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 47, 163, 0.18), transparent 34%),
    linear-gradient(145deg, #0e1328 0%, #171033 50%, #090d1e 100%);
  color: var(--white);
}

.site-header {
  background: rgba(14, 19, 40, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.logo,
.menu a {
  color: rgba(255, 255, 255, 0.86);
}

.menu a[aria-current="page"],
.menu a:hover {
  color: var(--hot);
}

.button-primary {
  color: #1c1024;
}

.intro,
.calendar,
.faq {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 47, 163, 0.18), transparent 34%),
    linear-gradient(145deg, #0e1328 0%, #171033 50%, #090d1e 100%);
  color: var(--white);
}

.audience,
.next-workshop,
.contact,
.method,
.collab {
  background:
    radial-gradient(circle at 86% 14%, rgba(38, 230, 230, 0.14), transparent 34%),
    linear-gradient(135deg, #120d24 0%, #0b1631 56%, #21142e 100%);
  color: var(--white);
}

h2,
h3,
.workshop-content,
.collab-heading,
.contact-copy {
  color: var(--white);
}

.intro-copy,
.section-heading p:not(.section-kicker),
.workshop-content p:not(.section-kicker),
.calendar-grid p,
.method-list p,
.collab-grid p,
.contact-copy p,
.faq-list p,
.facts p {
  color: var(--text-soft);
}

.audience-grid article,
.calendar-grid article,
.method-list article,
.collab-grid article,
.workshop-card,
.process-grid > div,
.steps li,
.faq-list details,
.contact-form,
.status,
.fallback-note {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: var(--white);
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

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

.workshop-content h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

h1,
h2,
h3 {
  text-transform: uppercase;
}

h2,
h3 {
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h2,
h3 {
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

/* PROSSIMO WORKSHOP CLEANUP */

.next-workshop .section-inner {
  max-width: 1320px;
}

.workshop-card {
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.workshop-media {
  min-height: 100%;
  background-position: center;
  filter: saturate(0.96) contrast(0.96);
}

.workshop-content {
  padding: 42px;
  display: grid;
  align-content: center;
  gap: 20px;
}

.workshop-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.workshop-content .section-kicker {
  align-self: start;
}

.workshop-content h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 0.98;
}

.workshop-content p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 0;
  font-size: 17px;
  line-height: 1.48;
}

.facts {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.facts div,
.facts div:last-child {
  grid-column: auto;
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--turquoise);
  border-top: 0;
}

.facts dt {
  color: var(--yellow);
  font-size: 10px;
}

.facts dd {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.workshop-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.workshop-actions .button {
  flex: 1 1 220px;
  min-width: 0;
}

.workshop-content > .workshop-actions {
  display: none;
}

.workshop-mobile-actions {
  display: none;
}

.fallback-note {
  margin-top: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 47, 163, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(18, 9, 21, 0.96), rgba(14, 19, 40, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.fallback-note div {
  display: grid;
  gap: 6px;
}

.fallback-note strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1.18;
}

.fallback-note span {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.4;
}

.fallback-link {
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  outline: 4px solid rgba(92, 200, 220, 0.64);
  outline-offset: -9px;
  background: linear-gradient(135deg, var(--yellow), var(--turquoise));
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .workshop-card {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  }

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

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

/* Typography override */
h1,
h2,
h3 {
  font-family: "JuniorDisplay", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

main p:not(.section-kicker),
blockquote,
details p {
  text-align: justify;
  text-align-last: left;
}

.method .method-list article p {
  text-align: left;
  text-align-last: auto;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* Cinearte neon hover */
h2 {
  --cinearte-glow-core: rgba(239, 128, 84, 0.96);
  --cinearte-glow-a: rgba(217, 77, 157, 0.72);
  --cinearte-glow-b: rgba(92, 200, 220, 0.62);
  --cinearte-glow-c: rgba(219, 229, 127, 0.50);
  cursor: default;
}

h2:hover {
  color: var(--white);
  text-shadow:
    0 0 7px var(--cinearte-glow-core),
    0 0 18px var(--cinearte-glow-a),
    0 0 34px var(--cinearte-glow-b),
    0 0 58px var(--cinearte-glow-c),
    0 0 78px rgba(143, 96, 168, 0.42);
}

/* CTA neon treatment */
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.88);
  outline: 4px solid rgba(223, 248, 247, 0.78);
  outline-offset: -10px;
  background:
    linear-gradient(135deg, var(--workshop-cyan), var(--workshop-lilac) 58%, var(--workshop-coral));
  color: var(--ink);
  box-shadow:
    0 0 18px rgba(115, 219, 228, 0.40),
    0 18px 42px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    outline-color 0.3s ease;
}

.button-secondary,
.button-quiet {
  color: var(--white);
}

.button::before {
  content: "";
  position: absolute;
  inset: -65%;
  z-index: auto;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.44) 50%, transparent 66%);
  opacity: 0.6;
  transform: translateX(-24%) rotate(-8deg);
  transition:
    opacity 0.32s ease,
    transform 0.56s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover {
  background:
    linear-gradient(135deg, var(--workshop-cyan), var(--workshop-lilac) 58%, var(--workshop-coral));
  color: var(--ink);
  transform: translateY(-3px) scale(1.035);
  outline-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.34),
    0 0 30px rgba(115, 219, 228, 0.46),
    0 22px 54px rgba(0, 0, 0, 0.30);
}

.button-secondary:hover,
.button-quiet:hover {
  color: var(--white);
}

.button:hover::before {
  opacity: 0.95;
  transform: translateX(18%) rotate(8deg);
}

/* SHARED MOBILE RESPONSIVE */

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }

  .site-header {
    min-height: 84px;
    padding: 0 32px;
    flex-direction: row;
  }

  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(14, 19, 40, 0.94);
    color: var(--white);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    display: block;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    z-index: 40;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    background: rgba(14, 19, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  .site-header.is-menu-open .menu {
    display: grid;
  }

  .menu a {
    min-height: 46px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .menu a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }

  .logo img {
    height: 40px;
  }

  .menu {
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content,
  .section-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 76px);
    line-height: 0.88;
  }

  .hero-actions,
  .workshop-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .contact-form .button {
    width: 100%;
    min-height: 50px;
  }

  .intro-grid,
  .audience-layout,
  .audience-grid,
  .calendar-grid,
  .method-grid,
  .collab-grid,
  .process-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 0.98;
  }

  main p:not(.section-kicker),
  blockquote {
    font-size: 16px;
    line-height: 1.48;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(40px, 16vw, 58px);
  }

  h2 {
    font-size: clamp(27px, 9.5vw, 36px);
  }
}

/* MOBILE HERO TITLE SAFETY */

@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero .eyebrow {
    left: 0;
    justify-self: start;
    text-align: left;
  }

  .hero h1,
  .hero-subtitle,
  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    margin-top: 8px;
    font-size: clamp(33px, 10vw, 46px);
    line-height: 0.92;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.38;
    text-align: left;
    text-align-last: left;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(30px, 9.4vw, 40px);
  }
}

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

  .fallback-link {
    width: 100%;
  }
}

/* MOBILE NEXT WORKSHOP MEDIA FIX */

@media (max-width: 768px) {
  .next-workshop .section-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .workshop-card {
    display: flex;
    flex-direction: column;
  }

  .workshop-media {
    order: 2;
    width: 100%;
    min-height: 0;
    height: clamp(220px, 58vw, 340px);
    background-size: cover;
    background-position: center;
  }

  .workshop-media::after {
    height: 52%;
  }

  .workshop-content {
    order: 1;
    padding: 30px 22px 38px;
  }

  .workshop-media .workshop-actions {
    display: none;
  }

  .workshop-mobile-actions {
    display: flex;
    margin-top: 44px;
  }

  .workshop-mobile-actions .button {
    width: 100%;
    min-height: 52px;
  }

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

@media (max-width: 480px) {
  .workshop-media {
    height: 240px;
  }
}

/* MOBILE COLLAB PROCESS FORM FIX */

@media (max-width: 768px) {
  .process,
  .collab,
  .contact {
    overflow-x: hidden;
  }

  .process .section-inner,
  .collab .section-inner,
  .contact .section-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .process-grid {
    gap: 18px;
  }

  .process-grid > div:first-child {
    width: 100%;
    max-width: calc(100vw - 36px);
    padding: 24px 20px;
  }

  .process-grid h2,
  .collab-heading h2,
  .contact-copy h2 {
    width: 100%;
    max-width: calc(100vw - 36px);
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .process-grid h2 {
    max-width: 100%;
    font-size: clamp(26px, 7.4vw, 34px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .process-grid p,
  .collab-heading p:not(.section-kicker),
  .contact-copy p:not(.section-kicker) {
    max-width: calc(100vw - 36px);
    text-align: left;
    text-align-last: left;
  }

  .steps {
    width: 100%;
    max-width: calc(100vw - 36px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps li {
    min-height: auto;
    padding: 22px 20px 22px 24px;
    gap: 14px;
  }

  .steps span {
    font-size: clamp(34px, 12vw, 48px);
    padding-bottom: 8px;
  }

  .steps strong {
    font-size: clamp(20px, 6.4vw, 26px);
    line-height: 1.08;
  }

  .collab-grid article {
    width: 100%;
    max-width: calc(100vw - 36px);
    padding: 24px 20px;
  }

  .collab-grid h3 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .collab-grid ul {
    padding-left: 18px;
  }

  .contact-form {
    width: 100%;
    max-width: calc(100vw - 36px);
    padding: 22px 18px;
    overflow: hidden;
  }

  label {
    min-width: 0;
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  input,
  select,
  textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 15px;
    line-height: 1.25;
  }

  select {
    min-height: 54px;
    padding-right: 42px;
    white-space: normal;
    text-overflow: ellipsis;
  }
}

@media (max-width: 480px) {
  .process-grid h2,
  .collab-heading h2,
  .contact-copy h2 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .process-grid h2 {
    font-size: clamp(23px, 7vw, 29px);
    line-height: 1.02;
  }

  .collab-grid h3 {
    font-size: clamp(24px, 7.8vw, 32px);
  }
}

/* MOBILE WORKSHOP CTA AND COLLAB TITLE TUNE */

@media (max-width: 768px) {
  .workshop-media .workshop-actions {
    display: none;
  }

  .workshop-mobile-actions {
    margin-top: 44px;
  }

  .workshop-mobile-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 18px;
    font-size: 12px;
    letter-spacing: 1.2px;
    outline-width: 3px;
    outline-offset: -8px;
    box-shadow:
      0 0 14px rgba(255, 209, 102, 0.34),
      0 12px 28px rgba(0, 0, 0, 0.28);
    transform: none;
  }

  .collab-grid h3 {
    max-width: 100%;
    font-size: clamp(22px, 6.6vw, 30px);
    line-height: 1;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .workshop-mobile-actions .button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
  }

  .collab-grid h3 {
    font-size: clamp(20px, 6.2vw, 27px);
  }
}

/* MOBILE NEXT WORKSHOP CTA ONLY */

@media (max-width: 768px) {
  .workshop-media {
    display: none;
  }

  .workshop-mobile-actions {
    display: block;
    margin-top: 46px;
    padding-top: 30px;
    border-top: 1px solid rgba(115, 219, 228, 0.24);
  }

  .facts {
    margin-bottom: 0;
  }

  .facts div:last-child {
    margin-bottom: 0;
  }

  .workshop-mobile-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 1.3px;
    outline-width: 3px;
    outline-offset: -8px;
  }
}

/* WEEKEND INTRO PAYOFF */

.intro .intro-grid {
  display: block;
}

.intro-heading {
  width: 100%;
  text-align: center;
}

.intro .weekend-payoff-title {
  width: min(100%, 1100px);
  max-width: none;
  margin: 0 auto;
  padding: 0 0.06em;
  color: transparent !important;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
  -webkit-text-stroke: clamp(1px, 0.13vw, 2px) rgba(255, 255, 255, 0.88);
  text-stroke: clamp(1px, 0.13vw, 2px) rgba(255, 255, 255, 0.88);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("images/weekendworkshop-hero.jpg");
  background-size: 145% auto;
  background-position: 18% 46%;
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  background-clip: text;
  filter: saturate(1.12) contrast(1.04);
  animation: weekendPayoffDrift 12s linear infinite alternate;
}

.intro .weekend-payoff-title:hover {
  color: transparent !important;
  text-shadow: none !important;
}

.intro .intro-copy {
  max-width: 940px;
  margin: 54px auto 0;
  padding-top: 0;
}

@keyframes weekendPayoffDrift {
  from {
    background-position: 18% 46%;
  }

  to {
    background-position: 82% 54%;
  }
}

@media (max-width: 768px) {
  .intro .weekend-payoff-title {
    width: min(100%, calc(100vw - 36px));
    padding: 0;
    font-size: clamp(34px, 11vw, 54px);
    line-height: 0.92;
  }

  .intro .intro-copy {
    margin-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro .weekend-payoff-title {
    animation: none;
  }
}

/* HERO CTA COLOR SPLIT */

.hero-actions .button-primary,
.hero-actions .button-primary:hover {
  background: linear-gradient(135deg, #c9f9ff 0%, #73dbe4 52%, #5ca8d9 100%);
  color: #10233b;
  outline-color: rgba(210, 252, 255, 0.88);
  box-shadow:
    0 0 22px rgba(115, 219, 228, 0.48),
    0 18px 42px rgba(0, 0, 0, 0.26);
}

.hero-actions .button-secondary,
.hero-actions .button-secondary:hover {
  background: linear-gradient(135deg, #ff9bcc 0%, #d94d9d 54%, #9f3e91 100%);
  color: #fff;
  outline-color: rgba(255, 205, 232, 0.88);
  box-shadow:
    0 0 22px rgba(217, 77, 157, 0.48),
    0 18px 42px rgba(0, 0, 0, 0.26);
}

/* Text-only yellow harmonization */
.section-kicker,
.workshop-content .section-kicker,
.process .section-kicker,
.intro-highlight {
  color: #DBE57F !important;
}
