:root {
  --navy-950: #031633;
  --navy-900: #071f49;
  --navy-800: #0c2e64;
  --blue-700: #174d99;
  --red-700: #c5002d;
  --red-600: #df123c;
  --cream: #f5f2ec;
  --white: #ffffff;
  --ink: #10213b;
  --muted: #5f6b7c;
  --line: #dfe3e8;
  --shadow: 0 24px 60px rgba(3, 22, 51, 0.12);
  --max-width: 1180px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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;
}

:focus-visible {
  outline: 3px solid #58a6ff;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

h3 {
  font-size: 1.5rem;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--red-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #ff7893;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 3px;
  font: inherit;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red-700);
}

.button-primary:hover {
  background: var(--red-600);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-outline {
  color: var(--navy-900);
  border-color: var(--navy-900);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy-900);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  border-color: var(--red-700);
  background: var(--red-700);
}

.button-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--red-700);
  font-weight: 800;
}

.text-link span {
  font-size: 1.3em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link-dark {
  color: var(--navy-900);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(3, 22, 51, 0.1);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 82px;
  height: 76px;
  overflow: hidden;
}

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

.site-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 12px 20px;
  color: var(--white);
  background: var(--navy-900);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: var(--red-700);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Home hero */
.hero,
.page-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=2000&q=84");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 22, 51, 0.96) 0%, rgba(3, 22, 51, 0.78) 48%, rgba(3, 22, 51, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 22, 51, 0.7), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding-top: 90px;
  padding-bottom: 100px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.hero h1,
.page-hero h1,
.contact-hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  color: var(--white);
}

.hero h1 span,
.page-hero h1 span,
.contact-hero h1 span {
  color: #ff5c7d;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 380px;
  padding: 24px 42px;
  color: var(--navy-900);
  background: var(--white);
  flex-direction: column;
}

.hero-note span {
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notice-bar {
  color: var(--white);
  background: var(--red-700);
}

.notice-inner {
  display: flex;
  min-height: 64px;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.notice-inner strong {
  text-transform: uppercase;
}

.notice-inner p {
  margin: 0;
}

/* Shared section structures */
.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.centered-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: 42px 34px 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--red-700);
  content: "";
}

.service-card.featured-card {
  color: rgba(255, 255, 255, 0.78);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.featured-card h3,
.featured-card .text-link {
  color: var(--white);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #a9b1bc;
  font-size: 0.75rem;
  font-weight: 800;
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 58px;
  color: var(--red-700);
  background: #f8e9ed;
  place-items: center;
}

.icon-box svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.featured-card .icon-box {
  color: var(--white);
  background: var(--red-700);
}

.service-card p {
  color: var(--muted);
}

.featured-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card .text-link {
  position: absolute;
  bottom: 34px;
}

.section-action {
  margin-top: 44px;
  text-align: center;
}

/* Story and event types */
.story-section {
  background: var(--cream);
}

.story-grid,
.principles-grid {
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.story-image,
.principles-image {
  position: relative;
}

.story-image img,
.principles-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-image::before {
  position: absolute;
  z-index: 1;
  top: -20px;
  left: -20px;
  width: 95px;
  height: 95px;
  border-top: 9px solid var(--red-700);
  border-left: 9px solid var(--red-700);
  content: "";
}

.image-badge {
  position: absolute;
  right: -24px;
  bottom: -28px;
  display: flex;
  width: 160px;
  height: 150px;
  padding: 24px;
  color: var(--white);
  background: var(--navy-900);
  flex-direction: column;
  justify-content: center;
}

.image-badge strong {
  font-size: 1.15rem;
}

.image-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.story-content .lead,
.prose .lead {
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 700;
}

.story-content > p:not(.eyebrow),
.prose p {
  color: var(--muted);
}

.story-content .text-link {
  margin-top: 18px;
}

.event-types {
  padding: 105px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(3, 22, 51, 0.86), rgba(3, 22, 51, 0.92)),
    url("https://images.unsplash.com/photo-1522158637959-30385a09e0da?auto=format&fit=crop&w=2000&q=80") center/cover;
}

.event-types h2 {
  color: var(--white);
}

.event-list {
  display: flex;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
}

.event-list span {
  padding: 22px 30px;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
}

.cta-section {
  background: var(--white);
}

.cta-panel {
  display: flex;
  min-height: 300px;
  padding: 58px clamp(36px, 7vw, 84px);
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(100deg, var(--navy-950) 0%, var(--navy-900) 65%, #133d7b 100%);
}

.cta-panel h2 {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-panel .button {
  margin-left: 40px;
  flex: 0 0 auto;
}

/* Page heroes */
.page-hero {
  min-height: 560px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  padding-top: 70px;
  padding-bottom: 70px;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6vw, 5.5rem);
}

.page-hero-content > p:last-child {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.about-hero .page-hero-media {
  background-image: url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=2000&q=84");
  background-position: center 58%;
}

.services-hero .page-hero-media {
  background-image: url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=2000&q=84");
}

.events-hero .page-hero-media {
  background-image: url("https://images.unsplash.com/photo-1470229722913-7c0e2dbb8d24?auto=format&fit=crop&w=2000&q=84");
}

.event-hero {
  min-height: 620px;
}

.event-hero .page-hero-content {
  min-height: 620px;
  justify-content: flex-end;
  padding-bottom: 56px;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.event-filters button {
  padding: 10px 18px;
  border: 1px solid var(--line);
  color: var(--navy-900);
  background: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-filters button:hover,
.event-filters button.is-active {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

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

.event-card {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  flex-direction: column;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.event-card[hidden],
.event-context-field[hidden] {
  display: none;
}

.event-card-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.event-card-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.event-card-body {
  display: flex;
  padding: 28px 26px 30px;
  flex-direction: column;
  flex: 1;
}

.event-category {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.event-meta {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-card .text-link {
  margin-top: auto;
}

.upcoming-events {
  background: var(--cream);
}

.event-detail-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
  align-items: start;
}

.event-detail-copy {
  display: grid;
  gap: 36px;
}

.event-detail-copy .lead {
  color: var(--ink);
  font-size: 1.18rem;
}

.event-info-block h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.event-info-block p {
  color: var(--muted);
}

.event-info-block .lead {
  margin-bottom: 12px;
}

.event-venue-line {
  margin-bottom: 12px;
  color: var(--navy-900) !important;
  font-weight: 700;
}

.event-venue-line span {
  font-weight: 600;
  color: var(--muted);
}

.event-hotel-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.event-hotel-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

.event-hotel-list li:last-child {
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.event-hotel-list strong {
  color: var(--navy-900);
  font-weight: 700;
}

.event-availability-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-request-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.event-request-panel h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.event-request-panel p {
  color: var(--muted);
}

.event-request-panel .button {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.event-facts {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.event-facts div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.event-facts dt {
  margin: 0 0 4px;
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 700;
}

.ticket-steps {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.ticket-steps article {
  padding: 28px 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.ticket-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--red-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.ticket-steps h3 {
  margin-bottom: 8px;
}

.ticket-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-field input[readonly] {
  color: var(--navy-900);
  background: var(--cream);
}

body.modal-open {
  overflow: hidden;
}

.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.ticket-modal[hidden] {
  display: none;
}

.ticket-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 73, 0.62);
}

.ticket-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.ticket-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.ticket-modal-close:hover,
.ticket-modal-close:focus-visible {
  color: var(--red-700);
}

.ticket-modal-close:focus-visible {
  outline: 3px solid rgba(23, 77, 153, 0.22);
  outline-offset: 2px;
}

.ticket-modal-dialog .form-kicker {
  margin-bottom: 10px;
  padding-right: 36px;
}

.ticket-modal-dialog h2 {
  margin-bottom: 8px;
  padding-right: 36px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.ticket-modal-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ticket-request-form {
  margin-top: 22px;
  gap: 18px;
}

/* Legal pages */
.legal-hero {
  min-height: 390px;
  background:
    radial-gradient(circle at 85% 20%, rgba(23, 77, 153, 0.72), transparent 35%),
    var(--navy-950);
}

.legal-hero .page-hero-content {
  min-height: 390px;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-content {
  background: var(--cream);
}

.legal-layout {
  display: grid;
  gap: clamp(45px, 8vw, 110px);
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 26px;
  border-top: 4px solid var(--red-700);
  background: var(--white);
}

.legal-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.legal-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-copy {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
}

.legal-copy section + section {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

.legal-copy h3 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-copy ul {
  padding-left: 22px;
}

.legal-copy a {
  color: var(--red-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* About */
.intro-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.prose p {
  margin-bottom: 22px;
}

.values-section {
  background: var(--cream);
}

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

.value-card {
  min-height: 330px;
  padding: 36px;
  border-top: 5px solid var(--red-700);
  background: var(--white);
}

.value-card > span {
  display: block;
  margin-bottom: 65px;
  color: var(--red-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.value-card p {
  color: var(--muted);
}

.value-card-dark {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-900);
}

.value-card-dark h3 {
  color: var(--white);
}

.value-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.principles-section {
  background: var(--white);
}

.principles-image img {
  aspect-ratio: 5 / 6;
}

.principle-list {
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
}

.principle-list strong {
  color: var(--navy-900);
}

.principle-list span {
  color: var(--muted);
}

.why-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.why-grid article {
  min-height: 270px;
  padding: 32px 26px;
  background: var(--white);
}

.why-grid strong {
  display: block;
  margin-bottom: 60px;
  color: var(--red-700);
  font-size: 0.75rem;
}

.why-grid h3 {
  font-size: 1.25rem;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Services */
.service-detail-grid {
  display: grid;
  gap: 34px;
}

.service-detail-card {
  display: grid;
  min-height: 440px;
  background: var(--cream);
  grid-template-columns: 0.9fr 1.1fr;
}

.reverse-card {
  grid-template-columns: 1.1fr 0.9fr;
}

.reverse-card .detail-visual {
  grid-column: 2;
  grid-row: 1;
}

.reverse-card .detail-copy {
  grid-column: 1;
  grid-row: 1;
}

.detail-visual {
  position: relative;
  min-height: 390px;
  background-position: center;
  background-size: cover;
}

.detail-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 22, 51, 0.7), transparent 65%);
  content: "";
}

.detail-visual span {
  position: absolute;
  z-index: 1;
  bottom: 25px;
  left: 28px;
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
}

.detail-visual-one {
  background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1000&q=82");
}

.detail-visual-two {
  background-image: url("https://images.unsplash.com/photo-1509824227185-9c5a01ceba0d?auto=format&fit=crop&w=1000&q=82");
}

.detail-visual-three {
  background-image: url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1000&q=82");
}

.detail-copy {
  display: flex;
  padding: clamp(36px, 6vw, 72px);
  flex-direction: column;
  justify-content: center;
}

.detail-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  padding: 0;
  margin: 20px 0 0;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--red-700);
  content: "✓";
}

.process-section {
  color: var(--white);
  background: var(--navy-900);
}

.process-section h2 {
  color: var(--white);
}

.process-list {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list li {
  min-height: 270px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list > li > span {
  display: block;
  margin-bottom: 70px;
  color: #ff7893;
  font-size: 0.75rem;
  font-weight: 800;
}

.process-list h3 {
  color: var(--white);
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
}

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

.industry-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.industry-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 22, 51, 0.88), rgba(3, 22, 51, 0.08));
  content: "";
}

.industry-card > div {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 24px;
  left: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.industry-card span {
  color: #ff7893;
  font-size: 0.75rem;
  font-weight: 800;
}

.industry-card h3 {
  max-width: 300px;
  margin: 0;
  color: var(--white);
  text-align: right;
}

.industry-concerts { background-image: url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=1000&q=80"); }
.industry-sports { background-image: url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=1000&q=80"); }
.industry-theater { background-image: url("https://images.unsplash.com/photo-1503095396549-807759245b35?auto=format&fit=crop&w=1000&q=80"); }
.industry-corporate { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1000&q=80"); }

.direct-sales-section {
  padding-top: 0;
}

.direct-sales-panel {
  display: grid;
  gap: 35px;
  padding: 50px 60px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-900);
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.direct-sales-panel h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.direct-sales-panel p {
  max-width: 690px;
  margin-bottom: 0;
}

.direct-sales-panel .eyebrow {
  margin-bottom: 12px;
}

.info-mark {
  display: grid;
  width: 60px;
  height: 60px;
  color: var(--white);
  border: 2px solid #ff7893;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  place-items: center;
}

/* Contact */
.contact-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(29, 82, 155, 0.7), transparent 30%),
    var(--navy-950);
}

.contact-hero::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 570px;
  height: 570px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.02);
  content: "";
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  gap: clamp(50px, 7vw, 100px);
  padding-top: 90px;
  padding-bottom: 90px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.contact-intro h1 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

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

.contact-details > a,
.contact-details > div {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: #ff7893;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.contact-details span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-form-panel {
  padding: clamp(34px, 5vw, 58px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.contact-form-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.contact-form-panel > p:not(.form-kicker) {
  color: var(--muted);
}

.form-kicker {
  margin-bottom: 14px;
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  margin-top: 32px;
  gap: 22px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-field label > span {
  color: var(--red-700);
}

.form-field label small {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd1d9;
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 128px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 77, 153, 0.14);
}

.form-field [aria-invalid="true"] {
  border-color: var(--red-700);
}

.field-error {
  min-height: 18px;
  margin-top: 4px;
  color: var(--red-700);
  font-size: 0.76rem;
  line-height: 1.3;
}

.sms-consent {
  display: grid;
  align-items: start;
  gap: 12px;
  grid-template-columns: 18px 1fr;
}

.sms-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border-radius: 3px;
  accent-color: var(--red-700);
}

.sms-consent input:focus-visible {
  outline: 3px solid rgba(23, 77, 153, 0.22);
  outline-offset: 2px;
}

.sms-consent label {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.55;
}

.sms-consent a {
  color: var(--red-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  display: none;
  padding: 12px 14px;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #145c34;
  background: #e8f5ed;
}

.form-status.is-error {
  color: #8b1230;
  background: #fbe9ee;
}

.form-privacy {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  text-align: center;
}

.form-privacy a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.next-steps-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.next-steps-grid article {
  padding: 32px;
  border-left: 4px solid var(--red-700);
  background: var(--cream);
}

.next-steps-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.next-steps-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-note {
  padding: 72px 0;
  color: var(--white);
  background: var(--red-700);
}

.contact-note-inner {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-note h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.contact-note .eyebrow {
  color: var(--white);
}

.contact-note-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

/* Footer */
.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 60px;
  padding-bottom: 60px;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
}

.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: var(--white);
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.footer-heading {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer > .footer-grid > div:last-child p {
  font-size: 0.88rem;
}

.footer-contact-link {
  color: #ff7893;
}

.footer-bottom {
  display: flex;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}

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

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 85px 0;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 40px 24px;
    align-items: stretch;
    background: var(--white);
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    padding: 16px 20px;
    text-align: center;
  }

  .brand {
    width: 72px;
    height: 68px;
  }

  .hero-note {
    display: none;
  }

  .split-heading,
  .intro-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .card-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

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

  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .event-request-panel {
    position: static;
  }

  .service-card {
    min-height: 350px;
  }

  .story-grid,
  .principles-grid {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .story-content,
  .principles-content {
    max-width: 690px;
  }

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

  .service-detail-card,
  .reverse-card {
    grid-template-columns: 1fr;
  }

  .reverse-card .detail-visual,
  .reverse-card .detail-copy {
    grid-column: 1;
  }

  .reverse-card .detail-visual {
    grid-row: 1;
  }

  .reverse-card .detail-copy {
    grid-row: 2;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .direct-sales-panel {
    grid-template-columns: auto 1fr;
  }

  .direct-sales-panel .button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-hero-grid {
    padding-top: 75px;
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 720px;
  }

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

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

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .section {
    padding: 70px 0;
  }

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

  .hero h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .button-group {
    width: 100%;
  }

  .button-group .button {
    width: 100%;
  }

  .notice-inner {
    padding: 17px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .notice-inner p {
    font-size: 0.88rem;
  }

  .image-badge {
    right: -5px;
  }

  .event-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .event-list span {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.88rem;
  }

  .cta-panel {
    min-height: 360px;
    padding: 42px 28px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .cta-panel .button {
    width: 100%;
    margin: 34px 0 0;
  }

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

  .why-grid,
  .industry-grid,
  .next-steps-grid,
  .event-grid,
  .ticket-steps {
    grid-template-columns: 1fr;
  }

  .principle-list li {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .detail-visual {
    min-height: 290px;
  }

  .detail-copy {
    padding: 36px 25px;
  }

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

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

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-list > li > span {
    margin-bottom: 40px;
  }

  .industry-card > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-card h3 {
    text-align: left;
  }

  .direct-sales-panel {
    padding: 40px 28px;
    grid-template-columns: 1fr;
  }

  .direct-sales-panel .button {
    width: 100%;
    grid-column: 1;
  }

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

  .contact-form-panel {
    margin-right: -5px;
    margin-left: -5px;
  }

  .contact-note-inner {
    gap: 30px;
    grid-template-columns: 1fr;
  }

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

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

  .footer-legal {
    gap: 12px;
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
