:root {
  --ink: #0b0d10;
  --ink-soft: #181818;
  --paper: #f4f0e7;
  --paper-dark: #e7e0d3;
  --white: #ffffff;
  --cobalt: #2445f5;
  --cobalt-dark: #1734ce;
  --coral: #ff6a45;
  --line: rgba(11, 13, 16, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow: 0 24px 64px rgba(11, 13, 16, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p, li, summary { text-wrap: pretty; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 700ms var(--ease);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.nav-shell {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  padding: 24px 24px 0;
}

.nav-island {
  width: min(100%, 1180px);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 8px 8px 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(11, 13, 16, 0.72);
  color: var(--white);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-block;
  flex: 0 0 40px;
}

.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }

.brand-name { white-space: nowrap; font-weight: 600; }
.brand-name span { font-weight: 400; }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 700ms var(--ease), transform 700ms var(--ease);
}

.nav-links a:hover { color: var(--white); transform: translateY(-2px); }
.nav-links a:active { transform: scale(0.98); }

.button {
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 700ms var(--ease), background-color 700ms var(--ease), color 700ms var(--ease), box-shadow 700ms var(--ease);
}

.button:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18); }
.button:active { transform: scale(0.98); }
.button-small { min-height: 40px; font-size: 14px; line-height: 20px; padding-inline: 16px; }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--cobalt); }
.button-cobalt { background: var(--cobalt); color: var(--white); }
.button-cobalt:hover { background: var(--cobalt-dark); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 700ms var(--ease), top 700ms var(--ease);
}

.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 13, 16, 0.9);
  backdrop-filter: blur(32px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.mobile-menu[aria-hidden="false"] { opacity: 1; visibility: visible; }

.mobile-menu-inner {
  min-height: 100%;
  padding: 128px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.mobile-menu-inner > a:not(.button) {
  color: var(--white);
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.mobile-menu-inner .button {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease), background-color 700ms var(--ease);
}

.mobile-menu[aria-hidden="false"] a { opacity: 1; transform: translateY(0); }
.mobile-menu[aria-hidden="false"] a:nth-child(1) { transition-delay: 100ms; }
.mobile-menu[aria-hidden="false"] a:nth-child(2) { transition-delay: 150ms; }
.mobile-menu[aria-hidden="false"] a:nth-child(3) { transition-delay: 200ms; }
.mobile-menu[aria-hidden="false"] a:nth-child(4) { transition-delay: 250ms; }
.mobile-menu[aria-hidden="false"] a:nth-child(5) { transition-delay: 300ms; }

.hero {
  min-height: 860px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; filter: saturate(0.82) contrast(1.08); }
.hero-shade { position: absolute; inset: 0; background: rgba(11, 13, 16, 0.64); }

.hero-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 176px 48px 96px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.hero-copy { max-width: 720px; }

.eyebrow {
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-blue { color: var(--cobalt); }

.hero h1 {
  max-width: 680px;
  margin-bottom: 32px;
  background-image: linear-gradient(90deg, #ffffff, #a8adb8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 28px;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-actions .button { min-width: 224px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  transition: color 700ms var(--ease), border-color 700ms var(--ease), transform 700ms var(--ease);
}

.text-link:hover { color: var(--coral); border-color: var(--coral); transform: translateY(-2px); }

.hero-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.04em;
}

.hero-ticket {
  min-height: 456px;
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  position: relative;
}

.hero-ticket::before,
.hero-ticket::after {
  content: "";
  position: absolute;
  left: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
}

.hero-ticket::before { top: 112px; }
.hero-ticket::after { bottom: 96px; }

.ticket-head,
.ticket-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(11, 13, 16, 0.56);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-head { padding-bottom: 24px; border-bottom: 1px dashed var(--line); }
.ticket-main { padding: 48px 0 40px; flex: 1; }
.ticket-label { margin-bottom: 12px; color: var(--cobalt); font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.ticket-title { margin-bottom: 40px; font-size: 30px; line-height: 36px; font-weight: 600; letter-spacing: -0.04em; }
.ticket-main dl { margin: 0; display: grid; gap: 16px; }
.ticket-main dl div { display: flex; justify-content: space-between; gap: 16px; }
.ticket-main dt { color: rgba(11, 13, 16, 0.56); }
.ticket-main dd { margin: 0; text-align: right; font-weight: 600; }
.ticket-foot { padding-top: 24px; border-top: 1px dashed var(--line); align-items: center; }

.ticket-code {
  width: 80px;
  height: 28px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='28' viewBox='0 0 80 28'%3E%3Cg fill='%230b0d10'%3E%3Cpath d='M0 0h2v28H0zM5 0h1v28H5zM9 0h3v28H9zM16 0h2v28h-2zM22 0h1v28h-1zM27 0h4v28h-4zM35 0h2v28h-2zM40 0h1v28h-1zM45 0h3v28h-3zM52 0h1v28h-1zM57 0h4v28h-4zM65 0h2v28h-2zM71 0h1v28h-1zM76 0h4v28h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-index {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.method-strip {
  background: var(--cobalt);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.method-strip > div {
  min-height: 120px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}

.method-strip > div:last-child { border-right: 0; }
.method-strip span { color: rgba(255, 255, 255, 0.56); font-size: 12px; line-height: 16px; }
.method-strip p { margin: 0; font-weight: 600; }

.section { padding: 96px 48px; }

.section-heading {
  width: min(100%, 1184px);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 64px;
  align-items: end;
}

.section-heading h2,
.pro-copy h2,
.brochure-copy h2,
.contact-intro h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.section-side,
.section-intro { color: rgba(11, 13, 16, 0.64); }
.section-side p, .section-intro { margin: 0; }

.rail-controls { margin-top: 24px; display: flex; gap: 8px; }
.rail-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 700ms var(--ease), background-color 700ms var(--ease), color 700ms var(--ease);
}
.rail-controls button:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.rail-controls button:active { transform: scale(0.98); }

.events-section { overflow: hidden; }
.event-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: max(24px, calc((100vw - 1184px) / 2));
  padding: 0 max(24px, calc((100vw - 1184px) / 2)) 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--cobalt) transparent;
}

.event-card {
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  background: var(--ink-soft);
  isolation: isolate;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: rgba(11, 13, 16, 0.72);
  transition: background-color 700ms var(--ease);
}

.event-card:hover img { transform: scale(1.06); filter: saturate(1.08); }
.event-card:hover::after { background: rgba(36, 69, 245, 0.78); }

.event-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 32px;
  color: var(--white);
}

.event-overlay > span { font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.64); }
.event-overlay h3 { margin: 16px 0 8px; font-size: 30px; line-height: 36px; letter-spacing: -0.04em; font-weight: 600; }
.event-overlay p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 20px; }

.pro-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: stretch;
}

.pro-photo { min-height: 720px; border-radius: 24px; overflow: hidden; position: relative; }
.pro-photo img { width: 100%; height: 100%; object-fit: cover; }
.pro-photo::after { content: ""; position: absolute; inset: 58% 0 0; background: rgba(11, 13, 16, 0.58); }
.pro-photo > span { position: absolute; left: 32px; right: 32px; bottom: 32px; z-index: 2; color: var(--white); font-size: 14px; line-height: 20px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.pro-copy { align-self: center; max-width: 600px; padding: 40px 0; }
.pro-copy h2 { margin-bottom: 32px; }
.pro-copy > p:not(.eyebrow) { margin-bottom: 40px; color: rgba(255, 255, 255, 0.68); font-size: 18px; line-height: 28px; }

.check-list { list-style: none; margin: 0 0 40px; padding: 0; display: grid; gap: 24px; }
.check-list li { padding: 24px; border: 1px solid var(--line-light); border-radius: 16px; display: grid; grid-template-columns: 40px 1fr; gap: 16px; }
.check-list li > span { color: var(--coral); font-size: 12px; line-height: 16px; font-weight: 700; }
.check-list strong { display: block; margin-bottom: 8px; }
.check-list p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 14px; line-height: 20px; }

.tagline-section { min-height: 720px; padding: 96px 48px; background: var(--cobalt); color: var(--white); display: grid; place-items: center; }
.tagline { max-width: 1040px; margin: 0; font-size: 60px; line-height: 1; letter-spacing: -0.055em; font-weight: 600; }
.tagline span { color: rgba(255, 255, 255, 0.28); transition: color 900ms var(--ease); }
.tagline span.active { color: var(--white); }

.process-section { background: var(--paper); }
.process-grid { width: min(100%, 1184px); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-card { min-height: 360px; padding: 32px; border: 1px solid var(--line); border-radius: 24px; display: flex; flex-direction: column; transition: transform 700ms var(--ease), background-color 700ms var(--ease), color 700ms var(--ease); }
.process-card:hover { transform: translateY(-8px); background: var(--ink); color: var(--white); }
.process-number { color: var(--cobalt); font-size: 12px; line-height: 16px; font-weight: 700; }
.process-card h3 { margin: auto 0 16px; font-size: 30px; line-height: 36px; letter-spacing: -0.04em; font-weight: 600; }
.process-card p { margin: 0; color: rgba(11, 13, 16, 0.64); }
.process-card:hover p { color: rgba(255, 255, 255, 0.68); }
.duo-note { width: min(100%, 1184px); margin: 32px auto 0; padding: 32px; border-radius: 24px; background: var(--paper-dark); display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.duo-note p { margin: 0; display: grid; gap: 8px; }
.duo-note strong { font-size: 20px; line-height: 28px; }
.duo-note span { color: rgba(11, 13, 16, 0.64); }

.brochure-section { padding: 96px 48px; background: var(--paper-dark); }
.brochure-card { width: min(100%, 1184px); min-height: 560px; margin: 0 auto; padding: 64px; border-radius: 24px; background: var(--coral); display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr); gap: 80px; align-items: center; overflow: hidden; }
.brochure-preview { min-height: 416px; position: relative; }
.preview-page { position: absolute; width: 260px; height: 368px; border-radius: 8px; box-shadow: 0 24px 56px rgba(11, 13, 16, 0.24); }
.preview-back { top: 16px; left: 120px; background: var(--cobalt); transform: rotate(7deg); color: rgba(255, 255, 255, 0.7); padding: 24px; }
.preview-front { top: 0; left: 24px; background: var(--paper); transform: rotate(-5deg); padding: 32px; display: flex; flex-direction: column; align-items: flex-start; }
.preview-front .mini-mark { width: 48px; height: 48px; border-radius: 50%; background: var(--cobalt); color: var(--white); display: grid; place-items: center; font-size: 12px; line-height: 16px; font-weight: 700; }
.preview-front p { margin: auto 0; font-size: 48px; line-height: 1; letter-spacing: -0.05em; font-weight: 600; }
.preview-front small { font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.brochure-copy { max-width: 560px; }
.brochure-copy .eyebrow { color: var(--ink); }
.brochure-copy h2 { margin-bottom: 24px; }
.brochure-copy p:not(.eyebrow) { margin-bottom: 32px; color: rgba(11, 13, 16, 0.68); font-size: 18px; line-height: 28px; }

.faq-section { background: var(--paper); }
.faq-list { width: min(100%, 920px); margin: 0 auto; display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: transparent; overflow: hidden; transition: background-color 700ms var(--ease); }
.faq-list details[open] { background: var(--white); }
.faq-list summary { min-height: 80px; padding: 24px; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; font-size: 18px; line-height: 28px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 24px; height: 24px; flex: 0 0 24px; position: relative; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 11px; left: 3px; width: 18px; height: 2px; border-radius: 2px; background: var(--cobalt); transition: transform 700ms var(--ease); }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details > p { margin: 0; padding: 0 72px 24px 24px; color: rgba(11, 13, 16, 0.64); }

.contact-section { padding: 96px 48px; background: var(--ink); color: var(--white); display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); gap: 80px; align-items: start; }
.contact-intro { position: sticky; top: 112px; max-width: 520px; }
.contact-intro h2 { margin-bottom: 32px; }
.contact-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.68); font-size: 18px; line-height: 28px; }
.contact-direct { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-light); display: grid; gap: 8px; }
.contact-direct span { color: rgba(255, 255, 255, 0.48); font-size: 12px; line-height: 16px; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-direct a { font-weight: 600; overflow-wrap: anywhere; }
.contact-direct a:hover { color: var(--coral); }

.request-form { max-width: 760px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
.request-form fieldset { min-width: 0; }
.hidden-field { display: none; }
.profile-choice { grid-column: 1 / -1; margin: 0; padding: 0; border: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.profile-choice legend { width: 100%; margin-bottom: 8px; color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 20px; }
.profile-choice label { cursor: pointer; }
.profile-choice input { position: absolute; opacity: 0; pointer-events: none; }
.profile-choice span { min-height: 48px; padding: 8px 12px; border: 1px solid var(--line-light); border-radius: 999px; display: grid; place-items: center; font-size: 14px; line-height: 20px; font-weight: 600; transition: background-color 700ms var(--ease), color 700ms var(--ease), border-color 700ms var(--ease); }
.profile-choice input:checked + span { background: var(--white); color: var(--ink); border-color: var(--white); }
.profile-choice input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 4px; }

.field { min-width: 0; }
.field.full, .full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 20px; }
.field input, .field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 16px;
  transition: border-color 700ms var(--ease), background-color 700ms var(--ease), box-shadow 700ms var(--ease);
}
.field input { min-height: 56px; }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.36); }
.field input:hover, .field textarea:hover { background: rgba(255, 255, 255, 0.1); }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 106, 69, 0.18); }
.field-error, .consent-error { display: none; margin-top: 8px; color: #ffb19f; font-size: 12px; line-height: 16px; }
.field.invalid .field-error, .consent-error.visible { display: block; }
.field.invalid input { border-color: #ff8a6e; }

.consent { display: flex; align-items: flex-start; gap: 12px; color: rgba(255, 255, 255, 0.68); font-size: 14px; line-height: 20px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 0; flex: 0 0 20px; accent-color: var(--cobalt); }
.consent-error { margin-top: -16px; }
.form-actions { display: flex; align-items: center; gap: 24px; }
.form-actions p { margin: 0; color: rgba(255, 255, 255, 0.48); font-size: 12px; line-height: 16px; }
.submit-button { min-width: 208px; }
.button-loading { display: none; }
.submit-button[data-loading="true"] { cursor: wait; opacity: 0.72; }
.submit-button[data-loading="true"] .button-label { display: none; }
.submit-button[data-loading="true"] .button-loading { display: inline; }
.form-status { min-height: 0; border-radius: 12px; font-size: 14px; line-height: 20px; }
.form-status.success, .form-status.error { min-height: 56px; padding: 16px; }
.form-status.success { background: rgba(36, 69, 245, 0.24); border: 1px solid rgba(120, 143, 255, 0.64); }
.form-status.error { background: rgba(255, 106, 69, 0.16); border: 1px solid rgba(255, 138, 110, 0.54); }
.form-status a { text-decoration: underline; }

.site-footer { padding: 64px 48px 32px; background: #000000; color: var(--white); }
.footer-top { min-height: 240px; padding-bottom: 48px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 48px; align-items: start; }
.footer-top p { max-width: 440px; margin: 0; color: rgba(255, 255, 255, 0.56); font-size: 24px; line-height: 32px; }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--line-light); display: grid; grid-template-columns: 1fr auto auto; gap: 32px; color: rgba(255, 255, 255, 0.46); font-size: 12px; line-height: 16px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }

.mobile-action { display: none; }

.reveal { opacity: 0; filter: blur(8px); transform: translateY(64px); transition: opacity 900ms var(--ease), filter 900ms var(--ease), transform 900ms var(--ease); }
.reveal.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }
.hero-ticket.reveal.is-visible { transform: rotate(2deg); }

.legal-main { min-height: 100vh; padding: 144px 24px 80px; background: var(--paper); }
.legal-wrap { width: min(100%, 780px); margin: 0 auto; }
.legal-wrap .eyebrow { color: var(--cobalt); }
.legal-wrap h1 { margin-bottom: 40px; font-size: 48px; line-height: 1; letter-spacing: -0.05em; font-weight: 600; }
.legal-wrap h2 { margin: 48px 0 16px; font-size: 24px; line-height: 32px; }
.legal-wrap p, .legal-wrap li { color: rgba(11, 13, 16, 0.7); }
.legal-wrap a { color: var(--cobalt); text-decoration: underline; }
.legal-nav { position: fixed; }
.legal-nav .nav-island { background: rgba(11, 13, 16, 0.9); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .menu-button { display: block; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr); gap: 48px; }
  .hero h1 { font-size: 60px; }
  .section-heading h2, .pro-copy h2, .brochure-copy h2, .contact-intro h2 { font-size: 36px; line-height: 40px; }
  .pro-section { gap: 48px; }
  .pro-photo { min-height: 640px; }
  .brochure-card { gap: 48px; padding: 48px; }
  .contact-section { gap: 48px; }
}

@media (max-width: 820px) {
  .nav-shell { padding: 16px 16px 0; }
  .nav-island { min-height: 56px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-inner { padding: 144px 24px 64px; grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 48px; }
  .hero-lead { font-size: 18px; line-height: 28px; }
  .hero-ticket { max-width: 420px; min-height: 400px; }
  .method-strip { grid-template-columns: repeat(2, 1fr); }
  .method-strip > div:nth-child(2) { border-right: 0; }
  .method-strip > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .section { padding: 80px 24px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .event-rail { grid-auto-columns: minmax(280px, 76vw); }
  .event-card { height: 480px; }
  .pro-section { grid-template-columns: 1fr; }
  .pro-photo { min-height: 520px; }
  .pro-copy { padding: 0; }
  .tagline-section { min-height: 600px; padding: 80px 24px; }
  .tagline { font-size: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 280px; }
  .duo-note { grid-template-columns: 1fr; }
  .brochure-section { padding: 80px 24px; }
  .brochure-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .brochure-preview { min-height: 360px; }
  .contact-section { padding: 80px 24px 112px; grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .footer-top { grid-template-columns: 1fr; min-height: auto; }
  .footer-top .button { justify-self: start; }
  .footer-bottom { grid-template-columns: 1fr; }
  .mobile-action { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80; min-height: 48px; border-radius: 999px; background: var(--cobalt); color: var(--white); display: grid; place-items: center; font-weight: 700; box-shadow: 0 16px 40px rgba(11, 13, 16, 0.28); }
}

@media (max-width: 560px) {
  .brand-name { font-size: 14px; line-height: 20px; }
  .hero h1 { font-size: 36px; line-height: 40px; letter-spacing: -0.045em; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-ticket { min-height: 368px; padding: 24px; }
  .ticket-main { padding: 32px 0; }
  .ticket-title { font-size: 24px; line-height: 32px; }
  .method-strip > div { min-height: 96px; padding: 16px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .section-heading h2, .pro-copy h2, .brochure-copy h2, .contact-intro h2, .legal-wrap h1 { font-size: 36px; line-height: 40px; }
  .rail-controls { display: none; }
  .event-rail { grid-auto-columns: 82vw; }
  .event-card { height: 440px; }
  .event-overlay { padding: 24px; }
  .pro-photo { min-height: 400px; }
  .tagline-section { min-height: 520px; }
  .tagline { font-size: 36px; line-height: 40px; }
  .brochure-card { padding: 32px 24px; }
  .brochure-preview { min-height: 304px; transform: scale(0.82); transform-origin: left top; width: 120%; margin-bottom: -56px; }
  .request-form { grid-template-columns: 1fr; }
  .field.full, .full, .profile-choice { grid-column: 1; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .site-footer { padding: 64px 24px 104px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; filter: none; transform: none; }
  .hero-ticket.reveal { transform: none; }
  .tagline span { color: var(--white); }
}
