:root {
  --abyss: #071018;
  --deep: #0b1a26;
  --indigo: #1c2154;
  --surface: #12202e;
  --surface-2: #182838;
  --coral: #e86b7a;
  --coral-deep: #c44d5c;
  --coral-bright: #ff8a96;
  --turquoise: #3eebd4;
  --turquoise-dim: #1a8f82;
  --silver: #c9d4e0;
  --foam: #e7f3f0;
  --muted: #8fa3b5;
  --line: rgba(201, 212, 224, 0.16);
  --radius: 1.15rem;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(3, 8, 14, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--silver);
  background:
    radial-gradient(1200px 600px at 8% -10%, rgba(62, 235, 212, 0.08), transparent 55%),
    radial-gradient(900px 500px at 110% 8%, rgba(232, 107, 122, 0.14), transparent 50%),
    radial-gradient(700px 400px at 50% 120%, rgba(28, 33, 84, 0.55), transparent 60%),
    var(--abyss);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(62, 235, 212, 0.07) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(255, 138, 150, 0.08) 0 1px, transparent 1.5px);
  background-size: 140px 140px, 180px 180px;
  z-index: 0;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--turquoise);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--coral);
  color: var(--abyss);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 999px;
}

.skip:focus {
  top: 1rem;
}

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

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

.site-header,
.site-footer,
main,
.cookie-banner {
  position: relative;
  z-index: 1;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

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

.brand-mark {
  color: var(--coral);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(160deg, rgba(62, 235, 212, 0.18), rgba(232, 107, 122, 0.12));
  box-shadow: 0 0 18px rgba(62, 235, 212, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-place {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--surface);
  color: var(--foam);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}

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

.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-family: var(--font-sans);
  font-size: 0.95rem;
}

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

.docket {
  padding: 3.2rem 0 1.2rem;
}

.docket-kicker {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin: 0 0 1rem;
}

.docket-kicker::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--coral);
}

.docket h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.18;
  color: var(--foam);
  margin: 0 0 1.1rem;
  max-width: 18ch;
}

.rule {
  width: 7rem;
  height: 3px;
  border: 0;
  margin: 0 0 1.6rem;
  background: linear-gradient(90deg, var(--coral), var(--turquoise));
  border-radius: 99px;
}

.hero-band {
  margin: 0 0 2rem;
  border-radius: 1.6rem 2.4rem 1.2rem 2.8rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.hero-band img {
  width: 100%;
  height: min(52vw, 420px);
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(7, 16, 24, 0.72);
  color: var(--foam);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.lede {
  font-size: 1.18rem;
  color: var(--foam);
  margin-top: 0;
}

.hero-aside {
  background:
    radial-gradient(120px 80px at 20% 20%, rgba(62, 235, 212, 0.16), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.4rem 2rem 1.6rem 1.1rem;
  padding: 1.4rem;
  box-shadow: inset 0 0 40px rgba(232, 107, 122, 0.06);
}

.hero-aside p {
  margin-top: 0;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  color: var(--abyss);
  background: var(--coral);
  transition: transform 0.25s ease, color 0.25s ease;
}

.btn-glow::before,
.btn-glow::after {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.7s ease;
  pointer-events: none;
}

.btn-glow::before {
  background:
    radial-gradient(circle at 18% 80%, rgba(62, 235, 212, 0.85) 0 12%, transparent 38%),
    radial-gradient(circle at 78% 22%, rgba(255, 180, 170, 0.9) 0 10%, transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(232, 107, 122, 0.5) 0 18%, transparent 48%);
  transform: scale(0.35);
}

.btn-glow::after {
  background:
    linear-gradient(115deg, transparent 40%, rgba(62, 235, 212, 0.35) 42%, transparent 44%),
    linear-gradient(70deg, transparent 55%, rgba(255, 138, 150, 0.4) 57%, transparent 60%);
  transform: scale(0.2) rotate(-12deg);
}

.btn-glow:hover::before,
.btn-glow:hover::after,
.btn-glow:focus-visible::before,
.btn-glow:focus-visible::after {
  opacity: 1;
  transform: scale(1.15) rotate(0deg);
}

.btn-glow:hover,
.btn-glow:focus-visible {
  color: var(--foam);
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  border-color: var(--turquoise);
  color: var(--turquoise);
}

.section {
  padding: 3.2rem 0;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--foam);
  margin: 0 0 0.6rem;
}

.section-intro {
  max-width: 62ch;
  margin-bottom: 2rem;
}

.offer-list {
  display: grid;
  gap: 0;
}

.offer {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.offer:last-child {
  border-bottom: 1px solid var(--line);
}

.offer img {
  width: 7.5rem;
  height: 5.2rem;
  object-fit: cover;
  border-radius: 1.1rem 1.6rem 1rem 1.4rem;
}

.offer h2,
.offer h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--foam);
  margin: 0 0 0.3rem;
}

.offer p {
  margin: 0;
  color: var(--muted);
}

.offer-go {
  font-family: var(--font-sans);
  color: var(--coral-bright);
  white-space: nowrap;
}

.offer:hover h2,
.offer:hover h3 {
  color: var(--turquoise);
}

.evidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.evidence blockquote {
  margin: 0;
  padding: 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.3rem 1.8rem 1.1rem 1.6rem;
  min-height: 100%;
}

.evidence p {
  margin-top: 0;
}

.evidence footer {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.page-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--foam);
  margin: 0 0 0.8rem;
  max-width: 22ch;
}

.prose {
  max-width: 68ch;
}

.prose h2,
.legal h2 {
  font-family: var(--font-sans);
  color: var(--foam);
  margin-top: 2rem;
}

.prose h3 {
  font-family: var(--font-sans);
  color: var(--foam);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.4rem 1.9rem 1.2rem 1.7rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.card-body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.card h2,
.card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--foam);
  margin: 0 0 0.4rem;
}

.card:hover h2,
.card:hover h3 {
  color: var(--turquoise);
}

.meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.person {
  background: var(--surface-2);
  border-radius: 1.5rem 2.2rem 1.3rem 1.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.person img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.person-body {
  padding: 1rem 1.1rem 1.3rem;
}

.person h3 {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foam);
}

.person .role {
  color: var(--coral-bright);
  font-size: 0.9rem;
  margin: 0.2rem 0 0.6rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.t-step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(120deg, rgba(62, 235, 212, 0.06), rgba(232, 107, 122, 0.05));
  border: 1px solid var(--line);
  border-radius: 1.2rem 1.8rem 1.2rem 1.5rem;
}

.t-num {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--coral-bright);
}

.t-step h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--foam);
}

.t-step p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.visit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.5rem 2rem 1.3rem 1.8rem;
  padding: 1.4rem;
}

.visit-card h2 {
  font-family: var(--font-sans);
  color: var(--foam);
  margin-top: 0;
}

address {
  font-style: normal;
}

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

.form label {
  display: grid;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--foam);
}

.form input,
.form textarea,
.form select {
  font: inherit;
  color: var(--foam);
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.7rem 0.85rem;
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-error {
  color: var(--coral-bright);
  font-size: 0.88rem;
  min-height: 1.1em;
}

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

.form-banner[data-state="success"] {
  background: rgba(62, 235, 212, 0.12);
  color: var(--turquoise);
}

.form-banner[data-state="error"] {
  background: rgba(232, 107, 122, 0.12);
  color: var(--coral-bright);
}

.legal {
  padding-bottom: 3.5rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.notes-list {
  display: grid;
  gap: 1.4rem;
}

.note-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.3rem;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.note-row img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 1.1rem 1.5rem 1rem 1.4rem;
}

.note-row h2 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  color: var(--foam);
  margin: 0 0 0.4rem;
}

.note-row:hover h2 {
  color: var(--turquoise);
}

.cover {
  border-radius: 1.5rem 2.2rem 1.2rem 1.8rem;
  overflow: hidden;
  margin: 0 0 1.6rem;
}

.cover img {
  width: 100%;
  height: min(48vw, 380px);
  object-fit: cover;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 14, 22, 0.9);
  padding: 2.4rem 0 1.2rem;
}

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

.footer-brand {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--foam);
  margin: 0 0 0.5rem;
}

.footer-lede {
  margin: 0;
  color: var(--muted);
}

.footer-label {
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--coral-bright);
  margin: 0 0 0.6rem;
}

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

.footer-links a,
.site-footer a {
  color: var(--silver);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--turquoise);
}

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

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

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

.lost h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--foam);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(12, 22, 34, 0.94);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

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

.cookie-inner p {
  margin: 0;
  max-width: 62ch;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1rem;
}

.service-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1.6rem 2.4rem 1.3rem 2rem;
}

@media (max-width: 900px) {
  .hero-split,
  .contact-grid,
  .service-hero,
  .note-row,
  .footer-grid,
  .evidence,
  .card-grid,
  .team {
    grid-template-columns: 1fr;
  }

  .offer {
    grid-template-columns: 5.5rem 1fr;
  }

  .offer-go { display: none; }

  .nav-toggle { display: inline-grid; place-items: center; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 16, 24, 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.4rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-glow::before,
  .btn-glow::after,
  .btn {
    transition: none;
  }
}
