/* printwerktrier.de - light page, dark hero, one teal accent.
   Every colour is a token; no literal hex outside :root. */

:root {
  /* Taken from the artwork: near black disc, one orange (#ffa321 in the logo). */
  --ink: #f2f0ee;
  --ink-soft: #a5a29d;
  --paper: #121313;
  --paper-alt: #0b0c0c;
  --line: #262827;

  --accent: #ff9d21;
  --accent-deep: #ffb457;
  --accent-soft: #241a0e;
  --on-accent: #17120a;

  --dark: #0b0c0c;
  --dark-soft: #151717;
  --dark-line: #262827;
  --on-dark: #f2f0ee;
  --on-dark-soft: #a5a29d;
  --accent-on-dark: #ff9d21;

  --todo: #ffb457;
  --todo-soft: #2a1d0c;

  --wrap: 1140px;
  --radius: 14px;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.55);

  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.7rem 1.1rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--accent-on-dark);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1.02rem;
}
.btn-accent {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--on-dark-soft);
  color: var(--on-dark);
}
.btn-ghost:hover {
  border-color: var(--on-dark);
  background: rgba(255, 255, 255, 0.07);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--dark);
  color: var(--on-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--dark-line);
  box-shadow: 0 10px 30px rgba(16, 20, 24, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
}
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.brand-city {
  color: var(--accent);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
  transition: color 0.16s ease;
}
.nav a:hover {
  color: var(--on-dark);
}
.nav .nav-cta {
  color: var(--on-accent);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.25rem;
}
.lang {
  display: inline-flex;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.62rem;
  background: transparent;
  color: var(--on-dark-soft);
  border: 0;
  cursor: pointer;
}
.lang-btn[aria-pressed="true"] {
  background: var(--accent);
  color: var(--on-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--dark-line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  background: var(--dark);
  color: var(--on-dark);
  padding: 0 0 clamp(3rem, 7vw, 4.5rem);
}
/* The banner carries the wordmark, so it is the picture AND the headline area.
   Its own background is near black, so it sits on the page with no seam. */
.hero-banner {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
}
.hero-inner {
  max-width: 760px;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}
.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  margin: 0;
}
.hero-sub {
  color: var(--on-dark-soft);
  font-size: clamp(1rem, 1.8vw, 1.13rem);
  margin-top: 0.9rem;
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.hero-badges li {
  font-size: 0.85rem;
  color: var(--on-dark-soft);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  padding: 0.34rem 0.85rem;
}

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section-alt {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark {
  background: var(--dark);
  color: var(--on-dark);
}
.section-head {
  max-width: 62ch;
  margin-bottom: 2.6rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-top: 0.5rem;
}
.section-lead {
  color: var(--ink-soft);
  margin-top: 0.9rem;
}
.section-dark .section-lead {
  color: var(--on-dark-soft);
}

/* ---------- Service cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.1rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.16rem;
}
.card p {
  color: var(--ink-soft);
  margin-top: 0.55rem;
  font-size: 0.97rem;
}

/* ---------- Process ---------- */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}
.steps li {
  border-top: 2px solid var(--accent);
  padding-top: 1.1rem;
}
.step-no {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.steps h3 {
  font-size: 1.15rem;
  margin-top: 0.35rem;
}
.steps p {
  color: var(--ink-soft);
  margin-top: 0.5rem;
  font-size: 0.96rem;
}

/* ---------- Products ---------- */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.3rem;
}
.product {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
/* Placeholder tile until real product photos land in assets/products/. */
.product-ph {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--accent);
  background:
    linear-gradient(180deg, var(--accent-soft), var(--paper-alt)),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px);
  border-bottom: 1px solid var(--line);
}
.product h3 {
  font-size: 1.1rem;
  padding: 1.1rem 1.2rem 0;
}
.product p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem 1.1rem;
  flex: 1;
}
.price,
.product-link {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  padding: 0 1.2rem 1.25rem;
}
.product-link {
  text-decoration: none;
}
.product-link:hover {
  text-decoration: underline;
}
.product-open {
  border-style: dashed;
}

/* ---------- Specs ---------- */

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.specs > div {
  background: var(--paper);
  padding: 1.15rem 1.3rem;
}
.specs dt {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.specs dd {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0.35rem 0 0;
}

/* ---------- Contact ---------- */

.contact-card {
  display: grid;
  gap: 0.2rem;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-ico {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

/* ---------- Contact form ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.6rem;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label,
.consent label {
  font-size: 0.88rem;
  font-weight: 500;
}
.field .optional {
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 0.35rem;
}
.field input,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  width: 100%;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea {
  resize: vertical;
  min-height: 7rem;
}
.field input:hover,
.field textarea:hover {
  border-color: var(--ink-soft);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* The spam trap. Hidden from people, left in the accessibility tree's way as
   little as possible; bots fill it and we drop the message. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
}
.consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.25rem;
  accent-color: var(--accent);
}
.consent a {
  color: var(--accent);
}
.contact-form .btn {
  justify-self: start;
}
.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: progress;
}
.form-status {
  font-size: 0.92rem;
  min-height: 1.4em;
  color: var(--ink-soft);
}
.form-status.is-ok {
  color: var(--accent);
  font-weight: 500;
}
.form-status.is-error {
  color: var(--todo);
  font-weight: 500;
}

.contact-side {
  display: grid;
  gap: 1rem;
}
.contact-sub {
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.contact-note .contact-value {
  font-weight: 500;
  font-size: 0.98rem;
}

/* Placeholders that must be replaced before the site goes live. */
.todo {
  color: var(--todo);
  background: var(--todo-soft);
  border: 1px dashed var(--todo);
  border-radius: 7px;
  padding: 0.1rem 0.45rem;
  font-size: 0.92rem;
  display: inline-block;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: 3rem 0 1.6rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--dark-line);
}
.footer-brand p,
.footer-contact p:not(.todo) {
  color: var(--on-dark-soft);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}
.footer-contact a {
  color: var(--on-dark);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.footer-links a {
  color: var(--on-dark-soft);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--on-dark);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.3rem;
  font-size: 0.85rem;
  color: var(--on-dark-soft);
}
.footer-bottom a {
  text-decoration: none;
}

/* ---------- Legal pages ---------- */

.legal {
  padding: clamp(3rem, 7vw, 5rem) 0;
  max-width: 72ch;
}
.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}
.legal h2 {
  font-size: 1.25rem;
  margin-top: 2.2rem;
}
.legal p {
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .card,
  .product,
  .contact-card {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .header-tools {
    margin-left: 0;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--dark-line);
    padding: 0.5rem 1.25rem 1.2rem;
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--dark-line);
  }
  .nav .nav-cta {
    margin-top: 0.9rem;
    border-bottom: 0;
    align-self: flex-start;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Brand, shop and custom block ---------- */

.shop-cta {
  margin-top: 2rem;
}
.custom > * {
  max-width: 62ch;
}
.custom h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin-top: 0.5rem;
}
.custom .btn {
  margin-top: 1.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: start;
}
.footer-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
}
.footer-contact a {
  color: var(--on-dark);
}
.footer-contact .shop-link {
  color: var(--accent);
  font-weight: 600;
}

/* Product tiles read as one family with the logo: a hairline that warms up. */
.product:hover,
.contact-card:hover {
  border-color: var(--accent);
}

/* ---------- Coming soon ---------- */

/* The page that is live until the shop has something in it. Same tokens and
   same banner as the real site, so the switch is not a change of brand. */
.soon-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--dark);
}
.soon-lang {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.25rem 0;
}
.soon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  padding: 2rem 1.25rem 3rem;
}
.soon-banner {
  width: min(100%, 780px);
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 2.2rem;
}
.soon h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin-top: 0.6rem;
}
.soon-lead {
  color: var(--on-dark-soft);
  max-width: 52ch;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}
.soon-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
}
.soon-facts li {
  font-size: 0.85rem;
  color: var(--on-dark-soft);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  padding: 0.34rem 0.85rem;
}
.soon-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--dark-line);
  font-size: 0.85rem;
  color: var(--on-dark-soft);
}
.soon-footer a {
  text-decoration: none;
}
.soon-footer a:hover {
  color: var(--on-dark);
}

/* ---------- Coming soon: the entrance ---------- */

/* One idea, played once: the page arrives the way a print does, bottom to top,
   and the words settle after it. Everything is opacity, transform and
   clip-path, so it stays on the compositor. Nothing loops except the glow, and
   that breathes slowly enough to read as light rather than motion. */

@keyframes soon-print {
  from { clip-path: inset(100% 0 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
/* `bottom` in percent is measured against the WRAPPER, which is what the line
   has to travel. A transform percentage would be measured against the line's
   own 2px height, i.e. it would move 2px. It is one absolutely positioned
   element, so animating a layout property here reflows nothing else. */
@keyframes soon-head {
  from { bottom: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { bottom: 100%; opacity: 0; }
}
@keyframes soon-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes soon-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes soon-glow {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.22; }
}

.soon-banner-wrap {
  position: relative;
  width: min(100%, 780px);
  margin-bottom: 2.2rem;
  isolation: isolate;
}
/* The warm pool the banner sits in. Very faint: it should be noticed only if
   you look for it. */
.soon-banner-wrap::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  z-index: -1;
  background: radial-gradient(60% 60% at 50% 55%, var(--accent), transparent 70%);
  filter: blur(46px);
  opacity: 0.1;
  animation: soon-glow 9s ease-in-out 1.6s infinite;
}
/* The print head: a hot line that rides up the edge of the reveal, once. */
.soon-banner-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px 2px var(--accent);
  opacity: 0;
  animation: soon-head 1.15s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s both;
}
.soon-banner {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  animation:
    soon-print 1.15s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s both,
    soon-fade 0.5s ease-out 0.15s both;
}

/* The words settle after the picture, 90 ms apart. Fill mode both, so they are
   invisible until their turn rather than flashing at load. */
.soon .eyebrow { animation: soon-rise 0.7s ease-out 1.05s both; }
.soon h1 { animation: soon-rise 0.7s ease-out 1.15s both; }
.soon-lead { animation: soon-rise 0.7s ease-out 1.25s both; }
.soon-facts li { animation: soon-rise 0.6s ease-out both; }
.soon-facts li:nth-child(1) { animation-delay: 1.4s; }
.soon-facts li:nth-child(2) { animation-delay: 1.49s; }
.soon-facts li:nth-child(3) { animation-delay: 1.58s; }
.soon-footer { animation: soon-fade 0.9s ease-out 1.75s both; }
.soon-lang { animation: soon-fade 0.9s ease-out 1.2s both; }

/* A fact chip lifts a hair on hover. Nothing else on this page reacts, so it
   is the one sign the page is alive rather than a picture. */
.soon-facts li {
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.soon-facts li:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--on-dark);
}

@media (prefers-reduced-motion: reduce) {
  .soon-banner,
  .soon-banner-wrap::before,
  .soon-banner-wrap::after,
  .soon .eyebrow,
  .soon h1,
  .soon-lead,
  .soon-facts li,
  .soon-footer,
  .soon-lang {
    animation: none;
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }
  .soon-banner-wrap::after { display: none; }
}
