:root {
  --abyss: #07121c;
  --abyss-2: #0a1824;
  --ink: #0c1f2c;
  --surface: #102a3a;
  --surface-2: #16384c;
  --indigo: #2a335c;
  --coral: #e07a6a;
  --coral-deep: #c45d52;
  --coral-glow: #ff9a8a;
  --turquoise: #3ecfc0;
  --turquoise-dim: #1c8f86;
  --silver: #c5d0d8;
  --foam: #e8f1f4;
  --muted: #8aa0ad;
  --line: rgba(197, 208, 216, 0.14);
  --radius: 1.6rem;
  --font-display: "Quicksand", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--foam);
  background:
    radial-gradient(900px 520px at 92% -8%, rgba(224, 122, 106, 0.18), transparent 52%),
    radial-gradient(800px 480px at -6% 40%, rgba(62, 207, 192, 0.1), transparent 50%),
    radial-gradient(600px 380px at 50% 110%, rgba(42, 51, 92, 0.5), transparent 58%),
    var(--abyss);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(62, 207, 192, 0.2) 0 1px, transparent 1.7px),
    radial-gradient(circle at 72% 18%, rgba(224, 122, 106, 0.18) 0 1px, transparent 1.8px),
    radial-gradient(circle at 48% 78%, rgba(197, 208, 216, 0.1) 0 1px, transparent 1.5px);
  background-size: 160px 160px, 210px 210px, 130px 130px;
}

body > * { position: relative; z-index: 1; }

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

a {
  color: var(--turquoise);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover { color: var(--coral-glow); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--foam);
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--coral);
  color: var(--abyss);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus { top: 0.8rem; }

.shell {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow { width: min(740px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  backdrop-filter: blur(16px);
  background: rgba(7, 18, 28, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--foam);
}

.wordmark-mark {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 1rem 0.55rem 1rem 0.7rem;
  background:
    radial-gradient(circle at 72% 28%, var(--coral-glow), transparent 44%),
    radial-gradient(circle at 28% 78%, var(--turquoise), transparent 46%),
    var(--surface);
  box-shadow: 0 0 16px rgba(224, 122, 106, 0.32);
}

.wordmark-text { display: flex; flex-direction: column; }
.wordmark-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
}
.wordmark-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
}

.site-nav ul {
  display: flex;
  gap: 1.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.94rem;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--foam);
  border-radius: 99px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.5s ease, color 0.2s ease;
}

.btn-coral {
  color: var(--abyss);
  background: linear-gradient(180deg, var(--coral-glow), var(--coral-deep));
}

.btn-coral::before,
.btn-coral::after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.7s ease;
}

.btn-coral::before {
  inset: -10px -18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 50%, rgba(224, 122, 106, 0.75) 0 7px, transparent 8px),
    radial-gradient(circle at 92% 40%, rgba(62, 207, 192, 0.6) 0 6px, transparent 7px);
}

.btn-coral::after {
  inset: -18px -28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 110%, rgba(224, 122, 106, 0.45) 0 8px, transparent 9px),
    radial-gradient(circle at 80% -10%, rgba(62, 207, 192, 0.4) 0 7px, transparent 8px),
    radial-gradient(circle at 110% 70%, rgba(255, 154, 138, 0.4) 0 6px, transparent 7px);
}

.btn-coral:hover,
.btn-coral:focus-visible {
  transform: translateY(-1px);
  color: var(--abyss);
  box-shadow:
    18px -12px 0 -7px rgba(224, 122, 106, 0.42),
    -20px 10px 0 -8px rgba(62, 207, 192, 0.35),
    24px 16px 0 -9px rgba(224, 122, 106, 0.26),
    -14px -18px 0 -8px rgba(62, 207, 192, 0.22),
    0 0 30px rgba(224, 122, 106, 0.42);
}

.btn-coral:hover::before,
.btn-coral:focus-visible::before {
  opacity: 1;
  transform: scale(1.15);
}

.btn-coral:hover::after,
.btn-coral:focus-visible::after {
  opacity: 1;
  transform: scale(1.25) rotate(8deg);
}

.btn-ghost {
  color: var(--foam);
  background: transparent;
  border: 1px solid var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--foam);
  border-color: var(--turquoise);
  box-shadow: 0 0 18px rgba(62, 207, 192, 0.2);
}

.text-cta {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral-glow);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 122, 106, 0.45);
}

.text-cta:hover { color: var(--turquoise); border-color: var(--turquoise); }

.panel {
  background:
    linear-gradient(165deg, rgba(22, 56, 76, 0.7), rgba(16, 42, 58, 0.9)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(62, 207, 192, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.28);
}

.panel-pad { padding: 1.35rem 1.45rem; }

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.5rem;
}

.muted { color: var(--muted); }
.lede { font-size: 1.14rem; color: var(--silver); }

.dock {
  width: min(1140px, calc(100% - 2rem));
  margin: 2rem auto 0;
}

.dock-meta {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.7rem;
}

.dock h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.45rem);
  max-width: 18ch;
  margin: 0;
}

.aisle {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) 1.28fr;
  gap: 1.1rem;
  width: min(1140px, calc(100% - 2rem));
  margin: 1.6rem auto 0;
  align-items: stretch;
}

.tickets {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.ticket {
  padding: 1rem 1.15rem;
  border-radius: 1.15rem;
  border: 1px dashed rgba(62, 207, 192, 0.28);
  background: rgba(16, 42, 58, 0.65);
}

.ticket-code {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-glow);
  margin: 0 0 0.2rem;
}

.ticket h2 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

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

.aisle-photo {
  margin: 0;
  border-radius: 1.7rem 0.7rem 1.7rem 0.9rem;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}

.aisle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.aisle-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 18, 28, 0.55)),
    linear-gradient(90deg, rgba(7, 18, 28, 0.2), transparent 40%);
}

.section { padding: 4rem 0 1rem; }

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
  align-items: end;
}

.primary-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}

.primary-block img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.bin-list { display: grid; gap: 0.85rem; }

.bin-row {
  display: grid;
  grid-template-columns: 4.2rem 140px 1fr auto;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.bin-row .code {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--turquoise);
  padding-left: 1.1rem;
}

.bin-row img {
  width: 140px;
  height: 96px;
  object-fit: cover;
}

.bin-row h3 { margin: 0 0 0.2rem; font-size: 1.12rem; }
.bin-row p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.bin-row .fee {
  color: var(--coral-glow);
  font-family: var(--font-display);
  font-weight: 700;
  padding-right: 1.15rem;
  white-space: nowrap;
}

.evidence {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  overflow: hidden;
}

.evidence img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.9);
}

.pull {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
  line-height: 1.38;
  color: var(--foam);
}

.people-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.5rem 0.7rem 1.5rem 0.9rem;
  margin-bottom: 0.75rem;
  filter: saturate(0.92);
}

.person h3 { font-size: 1.05rem; margin-bottom: 0.12rem; }
.person .role { color: var(--turquoise); font-size: 0.88rem; margin-bottom: 0.4rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.card {
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

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

.card-body { padding: 1.15rem 1.2rem 1.35rem; }
.card h3 { margin-bottom: 0.3rem; }
.card p { color: var(--muted); margin: 0; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.35rem 0 1rem;
}

.prose h2 { margin-top: 1.55rem; }
.prose ul, .prose ol { padding-left: 1.2rem; color: var(--silver); }
.prose li { margin-bottom: 0.4rem; }

.steps {
  counter-reset: bay;
  display: grid;
  gap: 0.9rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  counter-increment: bay;
  content: counter(bay, decimal-leading-zero);
  font-family: var(--font-display);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: var(--abyss);
  background: linear-gradient(180deg, var(--turquoise), #1a8a80);
  font-weight: 700;
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
}

.split img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.form { display: grid; gap: 0.9rem; }

label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.92rem;
  color: var(--silver);
}

input, textarea, select {
  font: inherit;
  color: var(--foam);
  background: rgba(7, 18, 28, 0.55);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 0.75rem 0.9rem;
}

input:focus, textarea:focus {
  outline: 2px solid var(--turquoise);
  outline-offset: 1px;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] { border-color: var(--coral); }

.field-error {
  color: var(--coral-glow);
  font-size: 0.85rem;
}

.form-banner {
  margin: 0.35rem 0 0;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
}

.form-banner.is-error {
  background: rgba(224, 122, 106, 0.12);
  color: var(--coral-glow);
}

.form-banner.is-success {
  background: rgba(62, 207, 192, 0.12);
  color: var(--turquoise);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  background: rgba(10, 28, 40, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 1.15rem;
}

.cookie-inner p { margin: 0; max-width: 62ch; color: var(--silver); }
.cookie-actions { display: flex; gap: 0.6rem; }

.island-error {
  position: fixed;
  right: 1rem;
  bottom: 6.5rem;
  z-index: 13;
  max-width: 22rem;
  background: rgba(224, 122, 106, 0.15);
  border: 1px solid var(--coral);
  color: var(--foam);
  padding: 0.8rem 1rem;
  border-radius: 1rem;
}

.site-footer {
  margin-top: 4.2rem;
  padding: 2.4rem 0 1.4rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(16, 42, 58, 0.5));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.4rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.footer-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--turquoise);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a, .site-footer a { color: var(--silver); text-decoration: none; }
.footer-links a:hover, .site-footer a:hover { color: var(--foam); }

address { font-style: normal; color: var(--silver); }

.footer-base {
  margin-top: 1.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero { padding: 2.6rem 0 0.5rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  max-width: 18ch;
}

.hero-figure {
  margin: 1.15rem auto 0;
  width: min(1140px, calc(100% - 1.5rem));
}

.hero-figure img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1.5rem 0.7rem 1.5rem 0.9rem;
}

.legal { padding-bottom: 3rem; }

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 { font-size: clamp(2.2rem, 5.5vw, 4.1rem); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(8, 21, 31, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0.55rem; }
  .aisle,
  .section-head,
  .primary-block,
  .evidence,
  .split,
  .footer-grid,
  .card-grid,
  .people-strip {
    grid-template-columns: 1fr;
  }
  .bin-row { grid-template-columns: 1fr; }
  .bin-row .code { padding: 0.9rem 1.1rem 0; }
  .bin-row img {
    width: 100%;
    height: 170px;
  }
  .bin-row .fee { padding: 0 1.15rem 1rem; }
  .people-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .people-strip { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
}
