:root {
  --abyss: #061018;
  --abyss-2: #08151f;
  --ink: #0a1c28;
  --surface: #0e2433;
  --surface-2: #143044;
  --indigo: #243056;
  --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.35rem;
  --font-display: "Outfit", "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(1200px 600px at 8% -10%, rgba(62, 207, 192, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 8%, rgba(224, 122, 106, 0.16), transparent 50%),
    radial-gradient(700px 400px at 70% 100%, rgba(36, 48, 86, 0.55), transparent 60%),
    var(--abyss);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(62, 207, 192, 0.18) 0 1px, transparent 1.6px),
    radial-gradient(circle at 78% 36%, rgba(224, 122, 106, 0.16) 0 1px, transparent 1.8px),
    radial-gradient(circle at 40% 70%, rgba(197, 208, 216, 0.1) 0 1px, transparent 1.5px);
  background-size: 180px 180px, 220px 220px, 140px 140px;
}

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.15;
  letter-spacing: -0.03em;
  font-weight: 650;
  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(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  backdrop-filter: blur(16px);
  background: rgba(6, 16, 24, 0.78);
  border-bottom: 1px solid var(--line);
}

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

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

.wordmark-mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 70% 30%, var(--turquoise), transparent 42%),
    radial-gradient(circle at 30% 80%, var(--coral), transparent 45%),
    var(--surface);
  box-shadow: 0 0 18px rgba(62, 207, 192, 0.28);
}

.wordmark-text { display: flex; flex-direction: column; }
.wordmark-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
}
.wordmark-name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
}

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

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

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

/* Buttons — coral branches on hover */
.btn {
  --branch: 0px;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.45s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-coral::before,
.btn-coral::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 999px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.55s ease;
  background:
    radial-gradient(circle at 0% 50%, rgba(224, 122, 106, 0.7) 0 6px, transparent 7px),
    radial-gradient(circle at 100% 40%, rgba(62, 207, 192, 0.65) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 120%, rgba(224, 122, 106, 0.5) 0 7px, transparent 8px);
}

.btn-coral:hover,
.btn-coral:focus-visible {
  transform: translateY(-1px);
  color: var(--abyss);
  box-shadow:
    16px -10px 0 -6px rgba(224, 122, 106, 0.45),
    -18px 8px 0 -7px rgba(62, 207, 192, 0.38),
    22px 14px 0 -8px rgba(224, 122, 106, 0.28),
    -12px -16px 0 -7px rgba(62, 207, 192, 0.25),
    0 0 28px rgba(224, 122, 106, 0.45);
}

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

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

.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: 650;
  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); }

/* Surfaces */
.panel {
  background:
    linear-gradient(180deg, rgba(20, 48, 68, 0.72), rgba(14, 36, 51, 0.88)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(62, 207, 192, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.panel-pad { padding: 1.4rem 1.5rem; }

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

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

/* Home — magazine overlap hero */
.hero-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  width: min(1240px, calc(100% - 1.5rem));
  margin: 1.25rem auto 0;
  min-height: 72vh;
}

.hero-photo {
  position: relative;
  border-radius: 1.8rem 0 0 1.8rem;
  overflow: hidden;
  min-height: 520px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 30%, rgba(6, 16, 24, 0.55) 100%),
    linear-gradient(180deg, rgba(6, 16, 24, 0.15), rgba(6, 16, 24, 0.55));
}

.hero-copy {
  background:
    radial-gradient(500px 280px at 80% 0%, rgba(224, 122, 106, 0.18), transparent 60%),
    linear-gradient(180deg, #102838, #0b1c28);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 1.8rem 1.8rem 0;
  padding: 2.4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 14ch;
  margin: 0;
}

.cover-sheet {
  font-size: 0.92rem;
  color: var(--silver);
}

.cover-sheet dl {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.35rem 0.7rem;
  margin: 0.8rem 0 0;
}

.cover-sheet dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-sheet dd { margin: 0; }

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

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: end;
}

.offer-list {
  display: grid;
  gap: 1rem;
}

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

.offer-row img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 1rem 0 0 1rem;
}

.offer-row h3 { margin: 0 0 0.25rem; font-size: 1.2rem; }
.offer-row p { margin: 0; color: var(--muted); }
.offer-row .fee { color: var(--coral-glow); font-family: var(--font-display); font-weight: 650; padding-right: 1.2rem; white-space: nowrap; }

.evidence {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

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

.pull {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--foam);
}

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

.person {
  text-align: left;
}

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

.person h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.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.2rem;
}

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

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

.card-body { padding: 1.2rem 1.25rem 1.4rem; }
.card h3 { margin-bottom: 0.35rem; }
.card p { color: var(--muted); margin: 0; }

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

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

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

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

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

/* Forms */
.form {
  display: grid;
  gap: 0.95rem;
}

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

input, textarea, select {
  font: inherit;
  color: var(--foam);
  background: rgba(6, 16, 24, 0.55);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  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.4rem 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 */
.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;
}

/* Footer */
.site-footer {
  margin-top: 4.5rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(14, 36, 51, 0.55));
}

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

.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.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 2.8rem 0 0.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  max-width: 18ch;
}

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

.hero-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1.6rem;
}

.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.4rem, 6vw, 4.5rem); }

@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; }
  .hero-stage,
  .section-head,
  .evidence,
  .split,
  .footer-grid,
  .card-grid,
  .people-strip {
    grid-template-columns: 1fr;
  }
  .hero-photo,
  .hero-copy { border-radius: 1.4rem; }
  .hero-copy { border-left: 1px solid var(--line); }
  .offer-row { grid-template-columns: 1fr; }
  .offer-row img {
    width: 100%;
    height: 180px;
    border-radius: 1rem 1rem 0 0;
  }
  .offer-row .fee { padding: 0 1.2rem 1.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; }
}
