/* Proglanz — design tokens & base */
:root {
  --color-bg: #f4f6fa;
  --color-bg-alt: #e8ecf4;
  --color-surface: #ffffff;
  --color-surface-elevated: rgba(255, 255, 255, 0.72);
  --color-ink: #0b1220;
  --color-ink-soft: #334155;
  --color-muted: #64748b;
  --color-line: rgba(15, 23, 42, 0.1);
  --color-accent: #0d9488;
  --color-accent-2: #6366f1;
  --color-accent-hover: #0f766e;
  --color-accent-soft: rgba(13, 148, 136, 0.14);
  --color-accent-glow: rgba(99, 102, 241, 0.15);
  --color-dark: #070b12;
  --color-dark-elevated: #121a2b;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 22px 55px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 36px 90px rgba(15, 23, 42, 0.13);
  --shadow-ring: 0 0 0 1px rgba(15, 23, 42, 0.06);
  --space-shell: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 4.35rem;
}

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

html {
  scroll-behavior: smooth;
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn__progress {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(1200px 600px at 12% -10%, rgba(99, 102, 241, 0.09), transparent 55%),
    radial-gradient(900px 480px at 92% 8%, rgba(13, 148, 136, 0.11), transparent 50%),
    linear-gradient(180deg, #eef2f9 0%, var(--color-bg) 28%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-accent-hover);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  padding: 0.75rem 1rem;
  background: var(--color-dark);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  left: var(--space-shell);
  top: var(--space-shell);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 50;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  text-decoration: none;
}

.logo:hover {
  color: var(--color-ink);
}

.logo__mark {
  color: var(--color-accent);
  font-size: 1rem;
  translate: 0 1px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav__list a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
  text-decoration: none;
}

.nav__list a:hover {
  color: var(--color-ink);
}

.nav__cta {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent), #0ea5a4);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.28);
}

.nav__cta:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), #0d9488);
  color: #fff !important;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: var(--space-shell);
    right: var(--space-shell);
    top: calc(var(--header-h) + 0.5rem);
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__list li + li {
    border-top: 1px solid var(--color-line);
  }

  .nav__list a {
    display: block;
    padding: 0.85rem 0.25rem;
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  padding-top: calc(var(--header-h) + clamp(3rem, 12vw, 7rem));
  padding-bottom: clamp(3rem, 10vw, 5rem);
  display: flex;
  align-items: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=85");
  background-size: cover;
  background-position: center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(7, 11, 18, 0.94) 0%, rgba(7, 11, 18, 0.55) 48%, rgba(79, 70, 229, 0.28) 100%),
    linear-gradient(to top, rgba(7, 11, 18, 0.92), transparent 58%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #e8eaf0;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 234, 240, 0.72);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.8vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  max-width: 15ch;
  color: #fff;
}

.hero__title em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(120deg, #99f6e4, #c7d2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(232, 234, 240, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #14b8a6);
  color: #fff;
  box-shadow: 0 14px 36px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), #0d9488);
  color: #fff;
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.4);
}

.btn--lg {
  padding: 1rem 1.55rem;
  font-size: 1rem;
}

.btn[disabled],
.btn.is-loading {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}

.btn__progress {
  display: none;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.btn.is-loading .btn__text {
  opacity: 0;
}

.btn.is-loading .btn__progress {
  display: block !important;
  position: absolute;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 36rem;
}

.hero__stats dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 234, 240, 0.55);
  margin: 0 0 0.35rem;
}

.hero__stats dd {
  margin: 0;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding-block: clamp(4rem, 12vw, 7rem);
}

.section--alt {
  background: linear-gradient(180deg, rgba(232, 236, 244, 0.95) 0%, transparent 52%);
}

.section__header {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.section__eyebrow--on-dark {
  color: #7dd4c8;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  margin: 0 0 1rem;
}

.section__subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-muted);
}

/* Intro */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.intro__copy .section__title {
  margin-bottom: 1.25rem;
}

.intro__copy p {
  font-size: 1.125rem;
  line-height: 1.78;
}

.intro__bullets {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.intro__bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.72rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.intro__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.intro__figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.intro__figure figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
}

@media (max-width: 900px) {
  .intro__grid {
    grid-template-columns: 1fr;
  }

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

/* Services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(13, 148, 136, 0.12);
}

.service-card__visual {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.service-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  margin: 0;
  padding: 1.15rem 1.25rem 0;
  color: var(--color-ink);
}

.service-card__text {
  margin: 0;
  padding: 0.65rem 1.25rem 1.35rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-muted);
}

/* Process */
.process__layout {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  padding: 1.35rem 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow-sm);
}

.steps > li:last-child {
  margin-bottom: 0;
}

.steps__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--color-accent-2), var(--color-accent));
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.22);
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--color-ink);
}

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

@media (max-width: 800px) {
  .process__layout {
    grid-template-columns: 1fr;
  }
}

/* Split dark */
.section--dark {
  background: var(--color-dark);
  color: rgba(228, 231, 238, 0.88);
}

.section--dark .section__title {
  color: #fff;
}

.split__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__copy p {
  margin: 0 0 1rem;
}

.pullquote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-dark-elevated);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pullquote p {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: normal;
  color: #fff;
}

.pullquote cite {
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(228, 231, 238, 0.55);
}

@media (max-width: 900px) {
  .split__grid {
    grid-template-columns: 1fr;
  }
}

/* Contact & form */
.section--contact {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.contact__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.contact__intro {
  max-width: 46rem;
}

.contact__lead {
  font-size: 1.0625rem;
  margin: 0 0 1.5rem;
  color: var(--color-muted);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  max-width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-chip:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.contact-chip__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-chip__value {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-accent);
  word-break: break-word;
}

.contact__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact__panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: start;
}

.contact-panel--form {
  background: var(--color-surface-elevated);
  backdrop-filter: blur(14px) saturate(160%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.form-status {
  min-height: 0;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: var(--color-accent-hover);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.28);
}

.form-status.is-error {
  color: #b91c1c;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.contact-form {
  margin: 0;
}

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

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink);
}

.field__req {
  color: var(--color-accent);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--color-ink);
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(15, 23, 42, 0.18);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: rgba(13, 148, 136, 0.65);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.18);
  background: #fff;
}

.field input:user-invalid:not(:focus):not(:placeholder-shown),
.field textarea:user-invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.55);
}

.field--checkbox {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.field--checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.field--checkbox label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.field--checkbox a {
  font-weight: 600;
}

.form__actions {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form__fineprint {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aside-box {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
}

.aside-box--glass {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.aside-box--accent {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.14), rgba(13, 148, 136, 0.14));
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.aside-box h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-ink);
}

.aside-box ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.aside-box ul li + li {
  margin-top: 0.35rem;
}

.aside-box--accent p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

@media (max-width: 900px) {
  .contact__panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}

/* Legal strip */
.legal-strip {
  padding-block: clamp(2.5rem, 7vw, 3.5rem);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), transparent);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-strip__inner {
  max-width: 52rem;
}

.legal-strip__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.legal-strip p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.legal-strip p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #e8ecf5 0%, #dfe6f3 100%);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ink);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.site-footer__meta a {
  font-weight: 600;
}

.site-footer__legal {
  margin: 0;
  max-width: 52rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.08s;
}

.reveal--delay-2 {
  transition-delay: 0.16s;
}

.reveal--delay-3 {
  transition-delay: 0.24s;
}

.reveal--delay-4 {
  transition-delay: 0.32s;
}
