:root {
  --blue: #2680f1;
  --black: #000000;
  --white: #ffffff;
  --surface: #090909;
  --surface-2: #111111;
  --line: #282828;
  --muted: #b8b8b8;
  --paper: #f7f8fa;
  --paper-line: #d9dde2;
  --paper-muted: #4f5863;
  --ink: #090b0e;
  --danger: #ff556b;
  --success: #70d99c;
  --wrap: 1240px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 760;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid #8fc2ff;
  outline-offset: 4px;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 88px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 31px);
}

p {
  color: var(--muted);
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 56px;
  height: 3px;
  content: "";
  background: var(--blue);
}

.lead {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  background: rgba(0, 0, 0, 0.96);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid #202020;
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--wrap), calc(100% - 48px));
  min-height: 85px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.header-slogan {
  justify-self: start;
  color: #aeb5be;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand {
  justify-self: center;
}

.brand img {
  width: 270px;
  max-width: 40vw;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-self: end;
  display: grid;
  place-content: center;
  gap: 6px;
  color: var(--white);
  background: transparent;
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  z-index: 45;
  inset: 88px 0 0;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.985);
}

.site-menu[hidden] {
  display: none;
}

.menu-inner {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 58px;
}

.menu-inner a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.menu-inner a:hover,
.menu-inner a.is-active {
  color: var(--blue);
}

.menu-inner span {
  color: #72b4ff;
  font-size: 13px;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: -2;
  background: url("festival-confetti-hero.webp") center 56% / cover no-repeat;
  animation: visual-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.53) 49%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(0deg, #000 0%, transparent 42%);
}

.hero-content {
  width: min(690px, 70%);
  padding: 96px 0 116px;
}

.hero h1 {
  margin-bottom: 14px;
}

.hero-tagline {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(25px, 2.7vw, 38px);
  font-weight: 680;
}

.hero .lead {
  max-width: 650px;
  color: #f0f0f0;
}

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

.button {
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #0f2d52;
  transform: translateY(-2px);
}

.button.primary {
  background: var(--blue);
}

.button.primary:hover {
  background: #176fdc;
}

.button.light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.effect-strip {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.effect-strip::after {
  width: 24%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: -24%;
  content: "";
  background: var(--blue);
  animation: strip-scan 8s linear infinite;
}

.effect-strip span {
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line);
}

.effect-strip span:last-child {
  border-right: 0;
}

.section {
  padding: 120px 0;
}

.section.compact {
  padding: 88px 0;
}

.section.dark-soft {
  background: var(--surface);
}

.light-editorial {
  color: var(--white);
  background: #050608;
  border-top: 1px solid #17191d;
  border-bottom: 1px solid #17191d;
}

.light-editorial h1,
.light-editorial h2,
.light-editorial h3,
.light-editorial strong {
  color: var(--white);
}

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

.light-editorial .eyebrow {
  color: var(--white);
}

.light-editorial .choice {
  border-left-color: var(--blue);
}

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

.light-editorial .process,
.light-editorial .process-step {
  border-color: var(--line);
}

.light-editorial .equipment-categories a {
  color: var(--white);
  border-color: var(--line);
}

.light-editorial .equipment-categories a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.light-editorial .service-split {
  background: var(--surface-2);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.light-editorial .service-copy h2,
.light-editorial .service-copy h3,
.light-editorial .service-copy strong,
.light-editorial .service-copy .eyebrow {
  color: var(--white);
}

.light-editorial .service-copy p,
.light-editorial .service-copy li {
  color: #c6c9ce;
}

.light-editorial .service-copy li {
  border-color: #2b2d31;
}

.section-head {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 96px;
  align-items: end;
}

.section-head > div:first-child {
  max-width: 800px;
}

.section-head p {
  margin-bottom: 0;
}

.service-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 560px;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 8px;
}

.service-photo {
  min-height: 520px;
  background:
    linear-gradient(90deg, transparent 72%, rgba(17, 17, 17, 0.5) 100%),
    url("gouden-confetti-podium.jpg") center / cover no-repeat;
}

.service-copy {
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-copy ul,
.check-list {
  margin: 10px 0 26px;
  padding: 0;
  list-style: none;
}

.service-copy li,
.check-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.service-copy li::before,
.check-list li::before {
  margin-right: 10px;
  content: "•";
  color: var(--blue);
}

.choice-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
}

.choice {
  padding-left: 30px;
  border-left: 4px solid var(--blue);
}

.choice p:last-child {
  margin-bottom: 0;
}

.choice .actions {
  margin-top: 24px;
}

.account-access {
  margin-top: 54px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  border-top: 1px solid #2c3948;
  border-bottom: 1px solid #2c3948;
}

.account-access span {
  display: block;
  margin-bottom: 7px;
  color: #8fc2ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-access strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.account-access p {
  max-width: 760px;
  margin: 8px 0 0;
}

.account-access .actions {
  margin: 0;
  flex-wrap: nowrap;
}

.compact-access {
  margin: 30px 0;
  padding: 24px 0;
  grid-template-columns: 1fr;
  gap: 20px;
}

.compact-access .actions {
  flex-wrap: wrap;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: #4f5963;
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 14px;
  object-fit: contain;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: transform 500ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card-body {
  min-height: 210px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
}

.product-card-body p {
  margin-bottom: 22px;
}

.product-card-body h3 {
  font-size: 26px;
}

.product-card-body .button {
  width: 100%;
  margin-top: auto;
}

.service-split-text {
  min-height: 500px;
}

.spark-visual {
  min-height: 500px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 32% 42%, rgba(38, 128, 241, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.8) 0 1px, transparent 3px),
    #050505;
  background-size: auto, 44px 62px, 58px 74px, 73px 46px, auto;
}

.spark-visual::before,
.spark-visual::after {
  width: 4px;
  height: 78%;
  position: absolute;
  bottom: -10%;
  content: "";
  background: linear-gradient(0deg, #fff, #2680f1 55%, transparent);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.76);
  transform: rotate(-16deg);
}

.spark-visual::before {
  left: 32%;
}

.spark-visual::after {
  right: 30%;
  transform: rotate(18deg);
}

.spark-visual span,
.spark-visual strong {
  z-index: 1;
  position: relative;
}

.spark-visual span {
  margin-bottom: 12px;
  color: #8fc2ff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.spark-visual strong {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
}

.brand-row {
  margin-top: 46px;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.brand-row strong {
  color: var(--white);
}

.image-band {
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 54%, rgba(0, 0, 0, 0.08) 100%),
    url("gouden-confetti-podium.jpg") center / cover no-repeat;
}

.image-band-copy {
  width: min(650px, 65%);
}

.image-band p {
  color: #f2f2f2;
}

.wide-photo-section {
  min-height: 680px;
  background: url("festival-confetti-hero.webp") center 58% / cover no-repeat;
}

.wide-photo-overlay {
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.25) 62%, rgba(0, 0, 0, 0.08) 100%);
}

.wide-photo-copy {
  max-width: 750px;
  padding: 90px 0;
}

.process {
  border-top: 1px solid var(--line);
}

.process-step {
  min-height: 112px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--blue);
  font-weight: 700;
}

.process-step h3,
.process-step p {
  margin-bottom: 4px;
}

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

.audience-block {
  min-height: 190px;
  padding: 26px 18px 0 0;
  border-top: 3px solid var(--blue);
}

.audience-block h3 {
  font-size: 28px;
}

.planner-collaboration {
  background: #050608;
}

.planner-collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 110px;
  align-items: start;
}

.partnership-list {
  border-top: 1px solid var(--line);
}

.partnership-list > div {
  min-height: 142px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 54px minmax(150px, 0.62fr) 1fr;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.partnership-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.partnership-list h3,
.partnership-list p {
  margin: 0;
}

.partnership-list h3 {
  font-size: 23px;
}

.planner-briefing {
  border-top: 1px solid var(--line);
}

.briefing-row {
  min-height: 126px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.briefing-row > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.briefing-row h3,
.briefing-row p {
  margin: 0;
}

.planner-effect-guide {
  background: #050608;
}

.effect-guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.effect-guide-list article {
  min-height: 320px;
  padding: 38px 36px 34px 0;
  border-right: 1px solid var(--line);
}

.effect-guide-list article + article {
  padding-left: 36px;
}

.effect-guide-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.effect-guide-list span {
  color: #78b8ff;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.effect-guide-list h3 {
  margin: 24px 0 18px;
  font-size: 30px;
}

.effect-guide-list p {
  margin: 0;
}

.planner-cta {
  padding: 80px 0;
  background: var(--blue);
}

.planner-cta .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 96px;
  align-items: center;
}

.planner-cta h2,
.planner-cta p,
.planner-cta .eyebrow {
  color: var(--white);
}

.planner-cta h2,
.planner-cta p {
  margin-bottom: 0;
}

.planner-cta .actions {
  margin-top: 28px;
}

.planner-cta .button.primary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.planner-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
}

.contact-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(540px, 1.28fr);
  gap: 76px;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 122px;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-details a {
  color: var(--white);
  font-weight: 700;
}

.contact-details p {
  margin: 0;
}

.form-surface {
  padding: 34px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-surface > .selected-equipment {
  margin-bottom: 26px;
}

.selected-equipment {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
  background: #07182d;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
}

.selected-equipment span {
  grid-column: 1 / -1;
  color: #8fc2ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.selected-equipment a {
  color: #8fc2ff;
  font-size: 13px;
}

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

.field {
  min-width: 0;
}

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

.field label,
.field legend {
  margin-bottom: 8px;
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.optional {
  color: #8e8e8e;
  font-weight: 400;
}

.fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--white);
  background: #050505;
  border: 1px solid #3b3b3b;
  border-radius: 6px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

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

.check {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--blue);
}

.check label {
  margin: 0;
  font-weight: 400;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  margin-bottom: 24px;
  padding: 18px 20px;
  color: var(--white);
  background: #10281a;
  border-left: 4px solid var(--success);
  border-radius: 6px;
}

.notice.error {
  background: #2a1117;
  border-left-color: var(--danger);
}

.text-link {
  color: #8fc2ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  z-index: -2;
  background: url("festival-confetti-hero.webp") center 56% / cover no-repeat;
  animation: visual-drift 20s ease-in-out infinite alternate;
  will-change: transform;
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, #000, transparent 68%);
}

.page-hero.gold::before {
  background-image: url("gouden-confetti-podium.jpg");
  background-position: center;
}

.page-hero-content {
  width: min(760px, 75%);
  padding: 104px 0 82px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.equipment-categories {
  margin-bottom: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment-categories a {
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.equipment-categories a:hover {
  border-color: var(--blue);
}

.equipment-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.equipment-section:first-of-type {
  border-top: 0;
}

.equipment-section-head {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.equipment-section-head p {
  margin-bottom: 0;
}

.map {
  width: 100%;
  min-height: 390px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

.map-section {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.planner-photo {
  min-height: 520px;
  background:
    linear-gradient(90deg, transparent 65%, #111 100%),
    url("festival-confetti-hero.webp") 59% center / cover no-repeat;
}

.company-data {
  border-top: 1px solid var(--line);
}

.company-data > div {
  min-height: 88px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.company-data span {
  color: #72b4ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.company-data a {
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 44px;
  font-size: 30px;
}

.legal-hero .page-hero-content {
  width: min(840px, 82%);
}

.legal-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: end;
}

.legal-intro h2,
.legal-intro p {
  margin-bottom: 0;
}

.terms-summary {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-summary span {
  min-height: 76px;
  padding: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line);
}

.terms-summary span:last-child {
  border-right: 0;
}

.terms-document {
  background: #020203;
}

.terms-heading {
  max-width: 850px;
  margin-bottom: 70px;
}

.terms-heading p:last-child {
  max-width: 680px;
}

.terms-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
}

.terms-toc {
  padding: 24px 0 0;
  position: sticky;
  top: 112px;
  border-top: 2px solid var(--blue);
}

.terms-toc nav {
  max-height: calc(100vh - 270px);
  margin: 16px 0 24px;
  overflow-y: auto;
  scrollbar-color: var(--blue) #17191d;
  scrollbar-width: thin;
}

.terms-toc nav a {
  padding: 9px 4px;
  display: block;
  color: #a8a8ad;
  font-size: 13px;
  line-height: 1.35;
  border-bottom: 1px solid #17191d;
}

.terms-toc nav a:hover {
  color: var(--white);
}

.terms-download {
  width: 100%;
}

.legal-article {
  min-width: 0;
}

.legal-article > .legal-version {
  margin-bottom: 12px;
  color: #72b4ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-article > h2 {
  margin: 74px 0 26px;
  padding-top: 30px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.15;
  border-top: 1px solid var(--line);
  scroll-margin-top: 112px;
}

.legal-article > h2:first-of-type {
  margin-top: 48px;
}

.legal-article > p {
  max-width: 900px;
  margin-bottom: 17px;
  color: #b9b9bd;
  line-height: 1.75;
}

.legal-table-wrap {
  margin: 28px 0 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  color: #c8c8cb;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  color: var(--white);
  background: #111318;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-identity-note,
.form-legal {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.legal-identity-note {
  max-width: 860px;
  margin: 28px 0 0;
}

.form-legal {
  margin: 14px 0 0;
}

.form-legal a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.45)),
    url("gouden-confetti-podium.jpg") center / cover no-repeat;
}

.not-found-copy {
  max-width: 690px;
}

.not-found-code {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(70px, 13vw, 150px);
  font-weight: 700;
  line-height: 0.9;
}

.seo-landing-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, #000 0%, transparent 64%);
}

.seo-intro-copy p:last-child {
  margin-bottom: 0;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-feature-grid article {
  min-height: 250px;
  padding: 34px 34px 34px 0;
  border-right: 1px solid var(--line);
}

.seo-feature-grid article + article {
  padding-left: 34px;
}

.seo-feature-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.seo-feature-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.seo-feature-grid h3 {
  margin-top: 34px;
}

.seo-feature-grid p {
  margin-bottom: 0;
}

.seo-service-list .process-step {
  min-height: 128px;
}

.seo-related-section {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.69)),
    url("festival-confetti-hero.webp") center 62% / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.seo-link-card {
  min-height: 88px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.seo-link-card:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.seo-link-card:nth-child(even) {
  padding-left: 30px;
}

.seo-link-card:hover span,
.seo-link-card:hover strong {
  color: #8fc2ff;
}

.seo-link-card span {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
}

.seo-link-card strong {
  color: var(--blue);
  font-size: 28px;
}

.seo-faq-list {
  border-top: 1px solid var(--line);
}

.seo-faq-list article {
  min-height: 128px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.seo-faq-list h3,
.seo-faq-list p {
  margin: 0;
}

.site-footer {
  background: #030303;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  mix-blend-mode: screen;
}

.motion-ready .reveal {
  opacity: 1;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal-delay-1 {
  transition-delay: 90ms;
}

.motion-ready .reveal-delay-2 {
  transition-delay: 180ms;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes visual-drift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(0, -0.8%, 0);
  }
}

@keyframes strip-scan {
  to {
    left: 100%;
  }
}

.footer-main {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 0.82fr));
  gap: 42px;
}

.footer-brand img {
  width: 240px;
  margin-bottom: 20px;
}

.footer-main p {
  margin-bottom: 9px;
}

.footer-main a {
  margin-bottom: 8px;
  display: block;
  color: var(--white);
  overflow-wrap: anywhere;
}

.footer-label {
  color: #72b4ff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 70px;
  padding: 20px max(24px, calc((100% - var(--wrap)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8d8d8d;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.route-directory-hero::before {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 54%, rgba(0, 0, 0, 0.22) 100%),
    url("festival-confetti-hero.webp");
  background-position: center 58%;
}

.route-directory-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr) minmax(260px, 1fr);
  gap: 58px;
}

.route-directory-group {
  padding-top: 24px;
  border-top: 3px solid var(--blue);
}

.route-directory-group h3 {
  margin-bottom: 28px;
  font-size: 24px;
}

.route-directory-list {
  border-top: 1px solid var(--line);
}

.route-directory-list a {
  min-height: 64px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  color: #e7e9ec;
  font-weight: 650;
  transition: color 180ms ease, padding-left 180ms ease;
}

.route-directory-list a:hover,
.route-directory-list a:focus-visible {
  padding-left: 8px;
  color: #8fc2ff;
}

.route-directory-list strong {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 22px;
}

.route-directory-cta .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 100px;
  align-items: end;
}

.route-directory-cta p {
  color: var(--muted);
}

.route-directory-cta .button {
  margin-top: 16px;
}

.partner-home {
  background:
    linear-gradient(90deg, rgba(3, 10, 19, 0.97), rgba(0, 0, 0, 0.94)),
    url("festival-confetti-hero.webp") center 64% / cover no-repeat;
  border-top: 1px solid #17304f;
  border-bottom: 1px solid #17304f;
}

.partner-home-grid,
.partner-intro-grid,
.partner-rules-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 110px;
  align-items: start;
}

.partner-home-copy .button {
  margin-top: 18px;
}

.partner-home-points,
.partner-rules {
  border-top: 1px solid var(--line);
}

.partner-home-points > div,
.partner-rules > div {
  min-height: 122px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.partner-home-points span,
.partner-rules span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.partner-home-points p,
.partner-rules p {
  margin: 0;
}

.partner-home-points strong,
.partner-rules strong {
  color: var(--white);
  font-size: 20px;
}

.fx-partner-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.48) 55%, rgba(0, 0, 0, 0.12) 100%),
    url("festival-confetti-hero.webp") center 59% / cover no-repeat;
}

.fx-partner-hero .page-hero-content {
  width: min(790px, 72%);
}

.partner-intro-grid {
  align-items: end;
}

.partner-intro-grid p:last-child {
  margin-bottom: 0;
}

.partner-admission {
  background:
    linear-gradient(90deg, rgba(3, 11, 22, 0.98), rgba(0, 0, 0, 0.96)),
    url("gouden-confetti-podium.jpg") center 54% / cover no-repeat;
  border-top: 1px solid #17304f;
  border-bottom: 1px solid #17304f;
}

.partner-admission-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: 100px;
  align-items: end;
}

.partner-admission-head .lead {
  margin-bottom: 0;
}

.partner-admission-steps {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-admission-steps article {
  min-height: 270px;
  padding: 34px 32px 32px;
  border-right: 1px solid var(--line);
}

.partner-admission-steps article:first-child {
  padding-left: 0;
}

.partner-admission-steps article:last-child {
  padding-right: 0;
  border-right: 0;
}

.partner-admission-steps span {
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.partner-admission-steps h3 {
  margin-bottom: 12px;
}

.partner-admission-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.partner-admission-notice {
  margin-top: 36px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
  border-left: 4px solid var(--blue);
  background: rgba(38, 128, 241, 0.09);
}

.partner-admission-notice strong {
  color: var(--white);
  font-size: 20px;
}

.partner-admission-notice p {
  margin: 0;
  color: #d1d7df;
}

.partner-model-list {
  border-top: 1px solid var(--line);
}

.partner-model-list article {
  min-height: 156px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 120px;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.partner-model-list article > span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.partner-model-list h3,
.partner-model-list p {
  margin-bottom: 7px;
}

.partner-model-list article > strong {
  justify-self: end;
  color: #8fc2ff;
  font-size: 13px;
  text-transform: uppercase;
}

.partner-photo-band {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.08) 70%),
    url("festival-confetti-hero.webp") center 64% / cover no-repeat;
}

.partner-photo-content {
  padding-bottom: 72px;
}

.partner-photo-content h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.partner-rules-grid {
  align-items: start;
}

.partner-fit {
  background: #050608;
  border-top: 1px solid #17191d;
  border-bottom: 1px solid #17191d;
}

.partner-fit-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-fit-line span {
  min-height: 96px;
  padding: 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-right: 1px solid var(--line);
  font-weight: 700;
  text-align: center;
}

.partner-fit-line span:last-child {
  border-right: 0;
}

.organizer-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0.12) 100%),
    url("festival-confetti-hero.webp") center 57% / cover no-repeat;
}

.organizer-hero .page-hero-content {
  width: min(870px, 76%);
}

.organizer-intro-grid,
.organizer-production-grid,
.organizer-calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 110px;
  align-items: start;
}

.organizer-intro-grid {
  align-items: end;
}

.organizer-intro-grid p:last-child,
.organizer-calendar-grid p:last-of-type {
  margin-bottom: 0;
}

.organizer-format-list {
  border-top: 1px solid var(--line);
}

.organizer-format-list article {
  min-height: 154px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 130px;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.organizer-format-list article > span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.organizer-format-list h3,
.organizer-format-list p {
  margin-bottom: 7px;
}

.organizer-format-list article > strong {
  justify-self: end;
  color: #8fc2ff;
  font-size: 13px;
  text-transform: uppercase;
}

.organizer-options {
  background: #050608;
  border-top: 1px solid #17191d;
  border-bottom: 1px solid #17191d;
}

.organizer-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.organizer-option-grid article {
  min-height: 285px;
  padding: 34px 32px;
  border-right: 1px solid var(--line);
}

.organizer-option-grid article:first-child {
  padding-left: 0;
}

.organizer-option-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.organizer-option-grid h3 {
  margin: 34px 0 14px;
}

.organizer-photo-band {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.06) 72%),
    url("festival-confetti-hero.webp") center 60% / cover no-repeat;
}

.organizer-photo-copy {
  padding-bottom: 72px;
}

.organizer-photo-copy h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.organizer-checklist {
  border-top: 1px solid var(--line);
}

.organizer-checklist > div {
  min-height: 126px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.organizer-checklist span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.organizer-checklist p {
  margin: 0;
}

.organizer-checklist strong {
  color: var(--white);
  font-size: 20px;
}

.organizer-process .process-step {
  min-height: 150px;
}

.organizer-calendar {
  background:
    linear-gradient(90deg, rgba(1, 8, 17, 0.98), rgba(0, 0, 0, 0.95)),
    url("gouden-confetti-podium.jpg") center 48% / cover no-repeat;
  border-top: 1px solid #17304f;
  border-bottom: 1px solid #17304f;
}

.organizer-calendar .button {
  margin-top: 18px;
}

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

  .seo-feature-grid {
    grid-template-columns: 1fr;
  }

  .seo-feature-grid article,
  .seo-feature-grid article + article {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .seo-feature-grid article:last-child {
    border-bottom: 0;
  }

  .seo-feature-grid h3 {
    margin-top: 16px;
  }

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

  .route-directory-group:last-child {
    grid-column: 1 / -1;
  }

  .route-directory-cta .wrap {
    gap: 54px;
  }

  .partner-home-grid,
  .partner-intro-grid,
  .partner-rules-grid,
  .partner-admission-head,
  .organizer-intro-grid,
  .organizer-production-grid,
  .organizer-calendar-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .section-head,
  .service-split,
  .contact-layout,
  .equipment-section-head,
  .quote-layout,
  .legal-intro,
  .terms-layout,
  .planner-collaboration-grid,
  .planner-cta .wrap {
    grid-template-columns: 1fr;
  }

  .terms-layout {
    gap: 48px;
  }

  .account-access {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .account-access .actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .account-access .button {
    width: 100%;
  }

  .terms-toc {
    position: static;
  }

  .terms-toc nav {
    max-height: 310px;
  }

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

  .terms-summary span:nth-child(2) {
    border-right: 0;
  }

  .terms-summary span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-head,
  .contact-layout {
    gap: 32px;
  }

  .service-photo {
    min-height: 420px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 65% 100%, 0 95%);
    background:
      linear-gradient(0deg, #111 0%, transparent 28%),
      url("gouden-confetti-podium.jpg") center / cover no-repeat;
  }

  .planner-photo {
    min-height: 440px;
    background:
      linear-gradient(0deg, #111 0%, transparent 28%),
      url("festival-confetti-hero.webp") 59% center / cover no-repeat;
  }

  .service-copy {
    padding: 44px;
  }

  .quote-layout {
    gap: 42px;
  }

  .quote-intro {
    position: static;
  }

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

  .planner-collaboration-grid,
  .planner-cta .wrap {
    gap: 52px;
  }

  .effect-guide-list {
    grid-template-columns: 1fr;
  }

  .effect-guide-list article,
  .effect-guide-list article + article {
    min-height: 0;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .effect-guide-list article:last-child {
    border-bottom: 0;
  }

  .partner-admission-steps,
  .organizer-option-grid {
    grid-template-columns: 1fr;
  }

  .partner-admission-steps article,
  .partner-admission-steps article:first-child,
  .partner-admission-steps article:last-child,
  .organizer-option-grid article,
  .organizer-option-grid article:first-child,
  .organizer-option-grid article:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partner-admission-steps article:last-child,
  .organizer-option-grid article:last-child {
    border-bottom: 0;
  }

  .partner-admission-steps span {
    margin-bottom: 22px;
  }
}

@media (max-width: 620px) {
  .route-directory-grid,
  .route-directory-cta .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .route-directory-group:last-child {
    grid-column: auto;
  }

  .route-directory-list a {
    min-height: 58px;
    font-size: 15px;
  }

  .fx-partner-hero .page-hero-content {
    width: 100%;
  }

  .organizer-hero .page-hero-content {
    width: 100%;
  }

  .partner-admission-notice {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .partner-home-points > div,
  .partner-rules > div {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .partner-model-list article {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 10px 14px;
  }

  .partner-model-list article > strong {
    grid-column: 2;
    justify-self: start;
  }

  .partner-photo-band {
    min-height: 440px;
    background-position: 51% center;
  }

  .partner-photo-content {
    padding-bottom: 48px;
  }

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

  .partner-fit-line span {
    min-height: 82px;
  }

  .partner-fit-line span:nth-child(2) {
    border-right: 0;
  }

  .partner-fit-line span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .organizer-format-list article {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 10px 14px;
  }

  .organizer-format-list article > strong {
    grid-column: 2;
    justify-self: start;
  }

  .organizer-photo-band {
    min-height: 460px;
    background-position: 51% center;
  }

  .organizer-photo-copy {
    padding-bottom: 48px;
  }

  .organizer-checklist > div {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .wrap,
  .header-inner,
  .footer-main {
    width: min(100% - 36px, var(--wrap));
  }

  .site-header {
    min-height: 72px;
  }

  .header-inner {
    min-height: 69px;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .header-slogan {
    width: 44px;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
  }

  .brand img {
    width: 212px;
    max-width: 58vw;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-menu {
    inset: 72px 0 0;
  }

  .menu-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    padding: 18px 0 40px;
  }

  .menu-inner a {
    min-height: 54px;
    grid-template-columns: 38px 1fr;
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
  }

  .hero::before {
    background-position: 52% 44%;
    animation: none;
  }

  .hero::after {
    background:
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.86) 44%, rgba(0, 0, 0, 0.18) 82%, rgba(0, 0, 0, 0.06) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 76%);
  }

  .hero-content {
    width: 100%;
    padding: 210px 0 48px;
  }

  h1 {
    font-size: 43px;
    line-height: 1.02;
  }

  h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  h3 {
    font-size: 22px;
  }

  .hero-tagline {
    font-size: 25px;
  }

  .lead {
    font-size: 18px;
  }

  .actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .effect-strip {
    min-height: 68px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .effect-strip::-webkit-scrollbar {
    display: none;
  }

  .effect-strip span {
    min-width: 48%;
    min-height: 68px;
    padding: 0 16px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section.compact {
    padding: 50px 0;
  }

  .section-head {
    margin-bottom: 30px;
    gap: 16px;
  }

  .service-copy {
    padding: 28px 22px 32px;
  }

  .service-photo,
  .planner-photo {
    min-height: 330px;
    clip-path: none;
    background-position: 54% center;
  }

  .service-split {
    min-height: 0;
  }

  .spark-visual {
    min-height: 340px;
    padding: 28px 22px;
  }

  .choice-grid,
  .product-grid,
  .form-grid,
  .checks {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    margin-top: 46px;
    gap: 28px;
  }

  .choice {
    padding-left: 20px;
  }

  .partnership-list > div {
    grid-template-columns: 38px 1fr;
    gap: 10px 16px;
  }

  .partnership-list p {
    grid-column: 2;
  }

  .briefing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .planner-cta {
    padding: 58px 0;
  }

  .image-band {
    min-height: 560px;
    align-items: flex-end;
    background:
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.76) 58%, rgba(0, 0, 0, 0.08) 100%),
      url("festival-confetti-hero.webp") 52% center / cover no-repeat;
  }

  .image-band-copy,
  .legal-hero .page-hero-content,
  .page-hero-content {
    width: 100%;
  }

  .image-band-copy {
    padding-bottom: 62px;
  }

  .wide-photo-section {
    min-height: 560px;
    background-position: 52% center;
  }

  .wide-photo-copy {
    padding: 58px 0;
  }

  .company-data > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .selected-equipment {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero-content {
    padding: 126px 0 46px;
  }

  .page-hero::before {
    background-position: 52% 44%;
    animation: none;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero .actions {
    margin-top: 26px;
  }

  .form-surface {
    padding: 22px 18px;
  }

  .legal-actions {
    display: grid;
  }

  .terms-summary {
    grid-template-columns: 1fr;
  }

  .terms-summary span,
  .terms-summary span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .terms-summary span:last-child {
    border-bottom: 0;
  }

  .terms-heading {
    margin-bottom: 48px;
  }

  .legal-article > h2 {
    margin-top: 58px;
    padding-top: 24px;
  }

  .legal-article > h2:first-of-type {
    margin-top: 36px;
  }

  .product-card-body {
    min-height: 0;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
  }

  .product-card img {
    height: 100%;
    min-height: 210px;
    padding: 10px;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-card-body {
    padding: 20px 16px 16px;
  }

  .product-card-body h3 {
    font-size: 21px;
  }

  .product-card-body p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.48;
  }

  .product-card-body .button {
    min-height: 44px;
    font-size: 14px;
  }

  .equipment-categories {
    margin: 0 -18px 38px;
    padding: 0 18px 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .equipment-categories::-webkit-scrollbar {
    display: none;
  }

  .equipment-categories a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .equipment-section {
    padding: 66px 0;
    scroll-margin-top: 72px;
  }

  .equipment-section-head {
    gap: 12px;
  }

  .seo-landing-hero {
    min-height: 560px;
  }

  .seo-landing-hero .page-hero-content {
    padding-top: 156px;
  }

  .seo-feature-grid article,
  .seo-feature-grid article + article {
    padding: 26px 0;
  }

  .seo-service-list .process-step {
    min-height: 0;
  }

  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-link-card,
  .seo-link-card:nth-child(odd),
  .seo-link-card:nth-child(even) {
    min-height: 72px;
    padding: 16px 0;
    border-right: 0;
  }

  .seo-link-card span {
    font-size: 17px;
  }

  .seo-faq-list article {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
    padding: 56px 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-main p,
  .footer-main a {
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

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