/* =========================================================
   Werbungmacher.de – Terminbuchung Landingpage
   Self-hosted, DSGVO-konform, keine externen Ressourcen
   ========================================================= */

/* ---------- Fonts (self-hosted, DSGVO) ---------- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Inter Tight (Headlines) + Playfair Display (Zitate) — variable, self-hosted */
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-variable-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --c-primary: #2055a0;
  --c-primary-600: #1b478a;
  --c-primary-050: #eef3fb;
  --c-accent: #233dff;
  --c-black: #0a0e1a;
  --c-signal: #ff0000;

  /* Neutrals */
  --c-ink: #0a0e1a;
  --c-ink-soft: #3a4152;
  --c-muted: #6b7280;
  --c-line: #e6e9f0;
  --c-bg: #ffffff;
  --c-bg-alt: #f5f7fb;
  --c-white: #ffffff;

  /* Typo */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.05), 0 2px 8px rgba(10, 14, 26, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 14, 26, 0.08), 0 2px 6px rgba(10, 14, 26, 0.04);
  --shadow-lg: 0 30px 60px -20px rgba(16, 42, 90, 0.35);
  --shadow-brand: 0 24px 60px -18px rgba(32, 85, 160, 0.5);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, .hero__inner h1, .section-head h2 {
  font-family: var(--font-display);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}
.section--alt {
  background: var(--c-bg-alt);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--c-accent);
  display: inline-block;
}
.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 1rem 0 0.9rem;
}
.section-head p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--c-ink-soft);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--c-primary);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 0;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  will-change: transform;
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
  transition: transform 0.25s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 130%);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px -18px rgba(35, 61, 255, 0.55);
}
.btn--primary:hover svg {
  transform: translateY(3px);
}
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-line);
}
.btn--ghost:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: var(--c-primary);
  box-shadow: var(--shadow-md);
}
.btn--light:hover {
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  height: 30px;
  width: auto;
}
.site-header__meta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.site-header__meta svg {
  width: 1.05em;
  height: 1.05em;
  color: var(--c-primary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-black);
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 15% 0%, rgba(35, 61, 255, 0.5) 0%, transparent 60%),
    radial-gradient(55% 60% at 100% 25%, rgba(32, 85, 160, 0.55) 0%, transparent 65%),
    radial-gradient(80% 80% at 60% 110%, rgba(32, 85, 160, 0.35) 0%, transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 80%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(4rem, 10vw, 7rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem 0.5rem 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e7ecf6;
  backdrop-filter: blur(6px);
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d17a;
  box-shadow: 0 0 0 0 rgba(52, 209, 122, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 209, 122, 0.6);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(52, 209, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 209, 122, 0);
  }
}
.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 1.4rem 0 1.25rem;
  max-width: 15ch;
}
.hero h1 .accent {
  color: transparent;
  background: linear-gradient(100deg, #6f8cff 0%, #ffffff 60%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  color: #c3cbdc;
  max-width: 34rem;
  margin: 0 0 2rem;
}
.hero__content {
  max-width: 46rem;
}
/* Mani (Eule) im Hero */
.hero__figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
}
.hero__figure::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: 0;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(111, 140, 255, 0.4),
    transparent 62%
  );
  filter: blur(4px);
}
.hero__mani {
  position: relative;
  z-index: 1;
  width: 150px;
  max-width: 45vw;
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(10, 14, 26, 0.5));
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.hero__meta li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  font-size: 0.92rem;
  color: #dbe1ee;
  background: rgba(255, 255, 255, 0.04);
}
.hero__meta svg {
  width: 1.1em;
  height: 1.1em;
  color: #8aa0ff;
  flex: none;
}
/* Buchungs-Karte direkt im Hero */
.hero__booking {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  scroll-margin-top: 84px;
}
.hero__booking::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  z-index: 2;
}

@media (min-width: 900px) {
  .site-header__meta {
    display: inline-flex;
  }
  .hero__content {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
  }
  .hero__text {
    max-width: 46rem;
  }
  .hero__figure {
    margin-top: 0;
  }
  .hero__mani {
    width: clamp(180px, 18vw, 250px);
    max-width: none;
  }
}

/* ---------- Trust strip ---------- */
.trust {
  border-bottom: 1px solid var(--c-line);
  background: #fff;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  padding-block: 2.25rem;
}
.stat .num {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-primary);
  line-height: 1;
}
.stat .lbl {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--c-muted);
}
@media (min-width: 720px) {
  .trust__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Booking ---------- */
.booking__bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.booking__dots {
  display: inline-flex;
  gap: 0.4rem;
}
.booking__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d3d9e6;
}
.booking__dots i:first-child {
  background: #ff5f57;
}
.booking__dots i:nth-child(2) {
  background: #febc2e;
}
.booking__dots i:nth-child(3) {
  background: #28c840;
}
.booking__bar span {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.booking__bar .secure {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--c-muted);
}
.booking__bar .secure svg {
  width: 1em;
  height: 1em;
  color: #28a35a;
}
.booking-embed {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  background: #fff;
}

/* ---------- Ablauf / Steps ---------- */
.steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.75rem 1.6rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cfd9ec;
}
.step__ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff;
  margin-bottom: 1.15rem;
}
.step__ico svg {
  width: 24px;
  height: 24px;
}
.step::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.35rem;
  right: 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #dbe2ef;
  letter-spacing: 0.04em;
}
.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  color: var(--c-ink-soft);
  font-size: 0.98rem;
}
@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Quote ---------- */
.quote {
  background: var(--c-black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(60% 100% at 20% 0%, rgba(32, 85, 160, 0.4), transparent 60%),
    radial-gradient(50% 90% at 90% 100%, rgba(35, 61, 255, 0.35), transparent 60%);
}
.quote__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  text-align: center;
  margin-inline: auto;
}
.quote__mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: #6f8cff;
  display: block;
  margin-bottom: 1rem;
}
.quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  line-height: 1.32;
  font-style: italic;
  margin: 0 0 1.6rem;
  letter-spacing: -0.01em;
}
.quote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.95rem;
  color: #aeb8cc;
  letter-spacing: 0.02em;
}

/* ---------- Referenzen ---------- */
.refs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.ref {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ref:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ref img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.ref:hover img {
  transform: scale(1.06);
}
.ref span {
  display: none;
}
@media (min-width: 560px) {
  .refs__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 820px) {
  .refs__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .refs__grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* ---------- Download / Guideline ---------- */
.download {
  position: relative;
}
.download__card {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c-primary) 0%, #16326a 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-brand);
}
.download__card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 61, 255, 0.55), transparent 70%);
}
.download__card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.7rem;
  line-height: 1.1;
}
.download__card p {
  margin: 0 0 1.6rem;
  color: #d5deef;
  max-width: 42ch;
}
.download__card .eyebrow {
  color: #a9beea;
}
.download__card .eyebrow::before {
  background: #6f8cff;
}
.download__meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #b9c6e2;
  margin-top: 1rem;
}
.download__body {
  position: relative;
  z-index: 1;
}
.download__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mani-cheer {
  width: 130px;
  max-width: 40vw;
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.4));
}
@media (min-width: 800px) {
  .download__card {
    grid-template-columns: 1.4fr auto;
  }
}

/* ---------- Social ---------- */
.social__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.social-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cfd9ec;
}
.social-link__ico {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--c-black);
  color: #fff;
  transition: background 0.3s var(--ease);
}
.social-link:hover .social-link__ico {
  background: var(--c-primary);
}
.social-link__ico svg {
  width: 22px;
  height: 22px;
}
.social-link > span {
  min-width: 0;
}
.social-link .n {
  font-weight: 600;
  font-size: 1rem;
}
.social-link .h {
  font-size: 0.85rem;
  color: var(--c-muted);
  overflow-wrap: anywhere;
}
@media (min-width: 720px) {
  .social__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-black);
  color: #c7cede;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand img {
  height: 30px;
  margin-bottom: 1rem;
}
.footer__brand p {
  margin: 0;
  font-size: 0.94rem;
  color: #9aa4bc;
  max-width: 30ch;
}
.footer__col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c88a4;
  margin: 0 0 1rem;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer__col a,
.footer__col address {
  font-size: 0.94rem;
  color: #c7cede;
  font-style: normal;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover {
  color: #fff;
}
.footer__col address {
  line-height: 1.7;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.85rem;
  color: #7c88a4;
}
.footer__legal {
  display: inline-flex;
  gap: 1.25rem;
}
.footer__legal a:hover {
  color: #fff;
}
@media (min-width: 720px) {
  .footer__top {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

/* skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  z-index: 100;
  background: #fff;
  color: var(--c-primary);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.skip-link:focus {
  left: 0.75rem;
}
