:root {
  --abyss: #061018;
  --deep: #0a1524;
  --surface: #121c2e;
  --polished: #182338;
  --silver: #e4ecf4;
  --silver-dim: #93a3b5;
  --coral: #ff7a8a;
  --coral-deep: #d4566a;
  --coral-hot: #ff9aa6;
  --turquoise: #3eebd4;
  --indigo: #3a3478;
  --line: rgba(228, 236, 244, 0.12);
  --radius: 1.35rem;
  --font: "Nunito", system-ui, sans-serif;
  --display: "Lexend", "Nunito", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--silver);
  background-color: var(--abyss);
  background-image:
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(62, 235, 212, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 12%, rgba(255, 122, 138, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 50% at 70% 100%, rgba(58, 52, 120, 0.45), transparent 60%);
  min-height: 100vh;
}

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

h1,
h2,
h3,
.brand__name,
.btn {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

h1,
h2,
h3 {
  line-height: 1.2;
  color: #f6f8fb;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
}

p {
  margin: 0 0 1rem;
}

address {
  font-style: normal;
}

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

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

.skip:focus {
  top: 0.6rem;
}

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

.js-error {
  margin: 0.75rem auto;
  width: min(1120px, calc(100% - 2.4rem));
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: rgba(212, 86, 106, 0.18);
  border: 1px solid rgba(255, 122, 138, 0.4);
  color: var(--silver);
}

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

.site-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(--silver);
  text-decoration: none;
}

.brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 42% 58% 50% 50% / 48% 42% 58% 52%;
  background:
    radial-gradient(circle at 70% 30%, var(--turquoise), transparent 42%),
    radial-gradient(circle at 35% 70%, var(--coral), #6b2a48 70%);
  box-shadow: 0 0 16px rgba(255, 122, 138, 0.35);
}

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

.brand__name {
  font-size: 0.95rem;
}

.brand__place {
  font-size: 0.75rem;
  color: var(--silver-dim);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
}

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

.site-nav a:hover {
  color: var(--turquoise);
}

.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(--silver);
  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;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral-hot);
  margin-bottom: 0.55rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--silver-dim);
  max-width: 42rem;
}

.hero {
  padding: 2.5rem 0 1rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: auto 1.15fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero__rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin: 0;
  border-right: 1px solid var(--line);
  padding-right: 0.9rem;
}

.hero__figure {
  margin: 0;
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 46% 54% 48% 52% / 52% 42% 58% 48%;
  box-shadow:
    0 0 0 1px rgba(255, 154, 166, 0.2),
    0 0 40px rgba(255, 122, 138, 0.18),
    0 0 80px rgba(62, 235, 212, 0.1);
}

.hero__figure figcaption,
.page-hero__figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: var(--silver-dim);
}

.section {
  padding: 3.2rem 0;
}

.section--inset {
  background: linear-gradient(180deg, rgba(18, 28, 46, 0.55), rgba(10, 21, 36, 0.2));
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.media-frame img,
.offer__media img,
.card__media img,
.brief-row__media img,
.person img,
.contact-card__media img {
  width: 100%;
  object-fit: cover;
}

.media-frame--wide {
  margin: 0 auto 2rem;
}

.media-frame--wide img {
  aspect-ratio: 16 / 8;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--silver-dim);
  font-size: 0.92rem;
}

.meta-line span + span::before {
  content: "·";
  margin-right: 1.25rem;
  color: var(--coral);
}

.intro {
  max-width: 40rem;
  color: var(--silver-dim);
}

.card-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.card,
.person,
.offer,
.contact-card,
.form,
.notes blockquote {
  background:
    linear-gradient(165deg, rgba(255, 122, 138, 0.07), transparent 42%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(62, 235, 212, 0.08);
}

.card__media img {
  aspect-ratio: 16 / 10;
}

.card__body,
.person,
.offer__body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.card h3 a,
.offer h2 a,
.brief-row h2 a,
.brief-row h3 a {
  color: #f6f8fb;
  text-decoration: none;
}

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

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

.notes blockquote {
  margin: 0;
  padding: 1.3rem 1.4rem;
}

.notes p {
  margin-bottom: 0.6rem;
}

.notes cite {
  color: var(--coral-hot);
  font-style: normal;
  font-size: 0.88rem;
}

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

.person img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius) var(--radius) 0 0;
}

.person__role {
  color: var(--turquoise);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.after-grid {
  margin-top: 1.4rem;
}

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

.brief-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.3rem;
  align-items: center;
}

.brief-row__media {
  border-radius: 1.1rem;
  overflow: hidden;
}

.brief-row__media img {
  aspect-ratio: 4 / 3;
}

.date {
  color: var(--silver-dim);
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

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

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.page-hero__figure {
  margin: 0;
}

.page-hero__figure img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 1.6rem 2.6rem 1.4rem 2.2rem;
  box-shadow: 0 0 36px rgba(62, 235, 212, 0.12);
}

.stack-offers {
  display: grid;
  gap: 1.5rem;
}

.offer {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
}

.offer__media img {
  height: 100%;
  min-height: 220px;
  aspect-ratio: 5 / 4;
}

.article-head {
  margin-bottom: 1.5rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul {
  padding-left: 1.15rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 1.7rem;
  border-radius: calc(var(--radius) + 0.3rem);
  background:
    radial-gradient(circle at 90% 20%, rgba(62, 235, 212, 0.16), transparent 40%),
    var(--polished);
  border: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: start;
}

.form,
.contact-card {
  padding: 1.4rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

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

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

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--coral);
}

.form__error {
  min-height: 1.1em;
  margin: 0.3rem 0 0;
  color: var(--coral-hot);
  font-size: 0.88rem;
}

.form__status {
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  margin-bottom: 1rem;
}

.form__status.is-success {
  background: rgba(62, 235, 212, 0.12);
  border: 1px solid rgba(62, 235, 212, 0.4);
}

.form__status.is-error {
  background: rgba(212, 86, 106, 0.16);
  border: 1px solid rgba(255, 122, 138, 0.45);
}

.contact-card__media {
  margin-top: 1rem;
  border-radius: 1.1rem;
  overflow: hidden;
}

.contact-card__media img {
  aspect-ratio: 16 / 10;
}

.missing {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}

.btn {
  --branch: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(165deg, #ff8a98 0%, #d4566a 48%, #8e3a62 100%);
  color: #fff8f6;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 180, 190, 0.28);
  overflow: visible;
}

.btn__label {
  position: relative;
  z-index: 1;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: transform var(--branch), opacity var(--branch), border-color var(--branch);
}

.btn::before {
  width: 2.4rem;
  height: 2.4rem;
  top: -0.85rem;
  right: -0.35rem;
  border-radius: 60% 40% 70% 30%;
  border: 1.5px solid transparent;
  transform: scale(0.25) rotate(-25deg);
}

.btn::after {
  width: 2.1rem;
  height: 2.1rem;
  bottom: -0.8rem;
  left: -0.25rem;
  border-radius: 40% 60% 30% 70%;
  border: 1.5px solid transparent;
  transform: scale(0.25) rotate(30deg);
}

.btn:hover,
.btn:focus-visible {
  color: #fff8f6;
  box-shadow:
    0 0 22px rgba(255, 122, 138, 0.45),
    10px -12px 18px rgba(62, 235, 212, 0.22),
    -12px 10px 18px rgba(255, 122, 138, 0.28);
}

.btn:hover::before,
.btn:focus-visible::before,
.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
  border-color: rgba(62, 235, 212, 0.7);
  transform: scale(1) rotate(0deg);
  box-shadow: 0 0 16px rgba(62, 235, 212, 0.35);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn--ghost {
  background: transparent;
  color: var(--silver);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--silver);
  box-shadow:
    inset 0 0 0 1px rgba(62, 235, 212, 0.45),
    0 0 18px rgba(62, 235, 212, 0.18);
}

.text-link {
  font-weight: 700;
  color: var(--coral-hot);
}

.site-footer {
  margin-top: 2rem;
  padding: 2.6rem 0 1.4rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 14, 24, 0.7);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.8fr;
  gap: 1.6rem;
}

.site-footer__name {
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.site-footer__blurb,
.site-footer p,
.site-footer address {
  color: var(--silver-dim);
}

.site-footer__label {
  color: var(--coral-hot);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.site-footer__links a:hover {
  color: var(--turquoise);
}

.site-footer__base {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--silver-dim);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 12;
}

.cookie-banner__inner {
  width: min(720px, 100%);
  margin-left: auto;
  padding: 1rem 1.1rem;
  border-radius: 1.3rem;
  background:
    linear-gradient(165deg, rgba(255, 122, 138, 0.12), transparent 50%),
    var(--polished);
  border: 1px solid rgba(255, 154, 166, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(62, 235, 212, 0.08);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero__grid,
  .split,
  .page-hero__grid,
  .offer,
  .contact-grid,
  .site-footer__grid,
  .brief-row {
    grid-template-columns: 1fr;
  }

  .hero__rail {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 0.6rem;
  }

  .hero__figure img {
    aspect-ratio: 16 / 11;
    border-radius: 1.8rem 2.4rem 1.5rem 2.2rem;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 4.4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 21, 36, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.2rem 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.55rem 0;
  }

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

@media (max-width: 600px) {
  .site-header__inner {
    min-height: 4rem;
  }
}
