:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --ink: #070707;
  --muted: #5d5d5d;
  --line: #111111;
  --red: #e32d2f;
  --yellow: #ffc400;
  --cream: #fff8dc;
  --shadow: 8px 8px 0 #080808;
  --soft: 0 22px 70px rgba(0, 0, 0, .12);
}

body.dark {
  --bg: #101010;
  --surface: #1b1b1b;
  --ink: #f7f2e8;
  --muted: #c8c1b7;
  --line: #f4ead8;
  --cream: #24211b;
  --shadow: 8px 8px 0 #000000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 196, 0, .16), transparent 22rem),
    radial-gradient(circle at 86% 16%, rgba(227, 45, 47, .10), transparent 20rem),
    linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, .035) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 32px 32px, 32px 32px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 5.7rem;
  padding: .85rem clamp(1rem, 4vw, 4rem);
  border-bottom: 3px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(12.5rem, 18vw, 17rem);
  min-height: 4.45rem;
  padding: .35rem .75rem;
  border: 2px solid #111;
  background: #ffffff;
  box-shadow: 4px 4px 0 #111;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 4.1rem;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.3rem);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  line-height: 1;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: .32rem;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  content: "";
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: .45rem;
}

.lang-button,
.theme-toggle {
  min-width: 2.6rem;
  height: 2.6rem;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.lang-button {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
}

.lang-button.active,
.theme-toggle:hover {
  background: var(--yellow);
  color: #111;
}

.hero,
.section,
.page-hero,
.legal-page {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, .78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 5.7rem);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.slant-label,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 2px solid #111;
  background: var(--yellow);
  color: #111;
  padding: .35rem .85rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: 1.35rem;
  font-size: clamp(4.8rem, 10vw, 8.3rem);
}

h1 span,
h1 mark {
  display: block;
}

h1 mark {
  width: fit-content;
  max-width: 100%;
  margin: .08em 0;
  border: 3px solid #111;
  background: #111;
  color: #fff;
  padding: .02em .18em;
  transform: rotate(-1.2deg);
  transition: opacity .18s ease, transform .18s ease;
}

h1 mark.swap-out {
  opacity: 0;
  transform: rotate(2deg) translateY(10px);
}

.red-word {
  color: var(--red);
}

h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h3 {
  font-size: 2.15rem;
}

.hero-text,
.copy-stack p,
.section-title p:not(.eyebrow),
.page-hero p,
.text-block p,
.legal-page p,
.legal-page li,
.location-info p,
.job-form p {
  max-width: 45rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  padding: .75rem 1.1rem;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.button.primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 4px 4px 0 #111;
}

.button.secondary {
  background: var(--surface);
}

.hero-tags {
  position: relative;
  min-height: 36rem;
}

.deal-card {
  position: absolute;
  border: 3px solid #111;
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 2vw, 1.6rem);
  color: #111;
}

.deal-card span,
.deal-card strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: .95;
  text-transform: uppercase;
}

.deal-card span {
  font-size: 1.15rem;
}

.deal-card strong {
  margin-top: .35rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.deal-card p {
  margin: .9rem 0 0;
  font-size: 1.05rem;
}

.deal-card.yellow {
  top: 4%;
  right: 4%;
  width: min(23rem, 92%);
  background: var(--yellow);
}

.deal-card.red {
  top: 42%;
  left: 3%;
  width: min(24rem, 92%);
  background: var(--red);
  color: #fff;
}

.deal-card.white {
  right: 2%;
  bottom: 3%;
  width: min(22rem, 92%);
  background: #fff;
}

.small-card strong {
  font-size: clamp(2.4rem, 4.4vw, 3.3rem);
}

.tilt-left { transform: rotate(-4deg); }
.tilt-right { transform: rotate(3deg); }

.ticker {
  overflow: hidden;
  border-block: 3px solid #111;
  background: var(--yellow);
  color: #111;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: .65rem 1rem;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  white-space: nowrap;
}

.ticker span::after {
  content: " /";
  color: var(--red);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 22%, transparent);
}

.split-section,
.location-grid,
.career-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.copy-stack {
  border-left: 5px solid var(--red);
  padding-left: clamp(1rem, 3vw, 2rem);
}

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

.flow-item {
  min-height: 15rem;
  border: 3px solid #111;
  padding: 1.35rem;
  box-shadow: 6px 6px 0 #111;
  transform: rotate(var(--angle, -1deg));
}

.flow-item:nth-child(2) { --angle: 1deg; }
.flow-item:nth-child(3) { --angle: -2deg; }

.flow-item span {
  display: block;
  font-weight: 900;
  margin-bottom: 2.5rem;
}

.flow-item strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.4rem;
  line-height: .95;
}

.flow-item p {
  margin-bottom: 0;
}

.red-bg { background: var(--red); color: #fff; }
.yellow-bg { background: var(--yellow); color: #111; }
.black-bg { background: #111; color: #fff; }

.city-strip {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 28rem);
  gap: 2rem;
  align-items: end;
}

.inline-form,
.job-form,
.contact-box {
  border: 3px solid var(--line);
  background: var(--surface);
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: .45rem;
  margin-bottom: .85rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: .8rem .9rem;
  font: inherit;
}

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  border: 2px solid var(--line);
  background: color-mix(in srgb, var(--yellow) 18%, var(--surface));
  padding: .9rem;
  font-size: .95rem;
}

.privacy-consent input {
  margin-top: .25rem;
}

.privacy-consent a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(4.2rem, 9vw, 7.3rem);
}

.text-block {
  border-left: 5px solid var(--yellow);
  padding-left: clamp(1rem, 3vw, 2rem);
}

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

.value-card,
.location-card {
  border: 3px solid var(--line);
  background: var(--surface);
  padding: 1.3rem;
  box-shadow: 6px 6px 0 #111;
}

.location-card.upcoming {
  background:
    linear-gradient(135deg, rgba(255, 196, 0, .18), transparent 48%),
    var(--surface);
}

.location-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .85rem;
  border: 2px solid #111;
  background: var(--yellow);
  color: #111;
  padding: .25rem .6rem;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-status.open {
  background: var(--red);
  color: #fff;
}

.location-hours {
  margin: .6rem 0 1rem;
  font-weight: 900;
}

.location-list {
  display: grid;
  gap: 1rem;
}

.map-panel {
  position: relative;
  min-height: 30rem;
  border: 3px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, .18), transparent 38%),
    linear-gradient(315deg, rgba(227, 45, 47, .14), transparent 40%),
    var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.real-map-panel {
  padding: .75rem;
  background: var(--surface);
}

.nrw-map {
  min-height: 30rem;
  width: 100%;
  border: 2px solid #111;
  filter: saturate(.9) contrast(1.02);
}

.leaflet-container {
  font: inherit;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  border-radius: 0;
  box-shadow: 5px 5px 0 #111;
}

.sfy-map-marker span {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  border: 3px solid #111;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 .55rem rgba(227, 45, 47, .20), 4px 4px 0 #111;
}

.map-popup strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.map-popup span {
  display: inline-flex;
  margin-top: .35rem;
  border: 1px solid #111;
  background: #ffc400;
  padding: .1rem .35rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-popup p {
  margin: .45rem 0 .75rem;
}

.map-fallback {
  margin: 1rem;
  color: var(--muted);
}

.job-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin: .4rem 0 1rem;
}

.job-options label {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  border: 2px solid var(--line);
  padding: .75rem;
}

.job-options input {
  width: auto;
}

.mini-list {
  display: grid;
  gap: .5rem;
  margin-top: 1.5rem;
  border: 3px solid var(--line);
  background: var(--surface);
  padding: 1rem;
  box-shadow: 5px 5px 0 #111;
}

.mini-list strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
}

.mini-list span {
  border-top: 1px solid color-mix(in srgb, var(--line) 22%, transparent);
  padding-top: .45rem;
  color: var(--muted);
}

.legal-page {
  max-width: 850px;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.legal-page h1 {
  font-size: clamp(3.8rem, 8vw, 6rem);
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 2.2rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  border-top: 3px solid var(--line);
  background: #111;
  color: #fff;
}

.site-footer a {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

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

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.16); }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero,
  .split-section,
  .location-grid,
  .career-grid,
  .city-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-tags {
    min-height: 29rem;
  }

  .product-flow,
  .promise-flow,
  .values-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-actions {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 5.6rem);
  }

  .deal-card {
    position: relative;
    inset: auto !important;
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .hero-tags {
    min-height: 0;
  }

  .job-options {
    grid-template-columns: 1fr;
  }
}

.hero-motion {
  position: relative;
  min-height: 36rem;
  border: 3px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,.055) 1px, transparent 1px),
    var(--cream);
  background-size: 30px 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shop-window {
  position: absolute;
  inset: 2rem;
  border: 3px solid #111;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.42)),
    linear-gradient(135deg, rgba(255,196,0,.30), transparent 52%),
    #fff;
  overflow: hidden;
}

.window-sign {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  border: 3px solid #111;
  background: #111;
  color: #fff;
  padding: .7rem 1rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-align: center;
  transform: rotate(-2deg);
}

.shelf {
  position: absolute;
  left: -8%;
  display: flex;
  gap: .9rem;
  width: max-content;
  animation: shelfMove 13s linear infinite;
}

.shelf-one { top: 43%; }
.shelf-two { top: 62%; animation-duration: 17s; animation-direction: reverse; }

.shelf span {
  display: inline-flex;
  min-width: 7.5rem;
  height: 4.6rem;
  align-items: center;
  justify-content: center;
  border: 3px solid #111;
  background: var(--yellow);
  color: #111;
  box-shadow: 4px 4px 0 #111;
  font-weight: 900;
}

.shelf-two span {
  background: var(--red);
  color: #fff;
}

.price-rain i {
  position: absolute;
  display: inline-flex;
  min-width: 4.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  box-shadow: 3px 3px 0 #111;
  font-style: normal;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.55rem;
  animation: tagFloat 4.8s ease-in-out infinite;
}

.price-rain i:nth-child(1) { left: 9%; top: 23%; animation-delay: .1s; transform: rotate(-7deg); }
.price-rain i:nth-child(2) { right: 13%; top: 31%; animation-delay: .7s; background: var(--yellow); }
.price-rain i:nth-child(3) { left: 16%; bottom: 12%; animation-delay: 1.1s; background: var(--red); color: #fff; }
.price-rain i:nth-child(4) { right: 18%; bottom: 18%; animation-delay: 1.6s; }
.price-rain i:nth-child(5) { right: 7%; top: 50%; animation-delay: 2s; background: var(--yellow); }

.motion-ticket {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 1.2rem;
  border: 3px solid #111;
  background: var(--red);
  color: #fff;
  padding: .8rem 1rem;
  box-shadow: 5px 5px 0 #111;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  line-height: 1;
  text-align: center;
  transform: rotate(1.5deg);
}

.form-note {
  margin: -.25rem 0 1rem;
  color: var(--muted);
  font-size: .95rem;
}

@keyframes shelfMove {
  from { transform: translateX(0); }
  to { transform: translateX(-34%); }
}

@keyframes tagFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -13px; }
}

@media (max-width: 900px) {
  .hero-motion { min-height: 31rem; }
}

@media (max-width: 560px) {
  .hero-motion { min-height: 28rem; }
}

.hero-receipt {
  position: relative;
  min-height: 39rem;
  border: 3px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,.055) 1px, transparent 1px),
    var(--cream);
  background-size: 30px 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.receipt-roll {
  position: absolute;
  top: 1.8rem;
  left: 50%;
  width: 17rem;
  height: 3rem;
  border: 3px solid #111;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 5px 5px 0 #111;
}

.receipt-paper {
  position: absolute;
  top: 3rem;
  left: 50%;
  width: min(25rem, calc(100% - 3rem));
  min-height: 32rem;
  padding: 1.2rem 1.25rem 1.5rem;
  border: 3px solid #111;
  background:
    repeating-linear-gradient(0deg, transparent 0 1.55rem, rgba(0,0,0,.055) 1.55rem 1.62rem),
    #fff;
  color: #111;
  box-shadow: 7px 7px 0 #111;
  transform: translateX(-50%) rotate(1.5deg);
  animation: receiptWiggle 4.8s ease-in-out infinite;
}

.receipt-logo {
  display: flex;
  justify-content: center;
  margin-bottom: .8rem;
}

.receipt-logo img {
  width: 9.5rem;
  height: auto;
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-block: 2px dashed #111;
  padding: .65rem 0;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-head strong,
.receipt-total strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.receipt-lines {
  display: grid;
  gap: .7rem;
  margin: 1.1rem 0;
}

.receipt-lines div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: baseline;
  font-size: .98rem;
}

.receipt-lines span {
  font-weight: 900;
}

.receipt-lines em {
  font-style: normal;
  white-space: nowrap;
}

.receipt-lines s {
  color: #777;
  text-decoration-thickness: 2px;
}

.receipt-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 3px solid #111;
  background: #ffc400;
  color: #050505;
  padding: 1rem .95rem;
  box-shadow: 5px 5px 0 #111;
}

.receipt-sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 2px dashed #111;
  padding: .65rem 0 .8rem;
  font-weight: 900;
}

.receipt-total span,
.receipt-sum span {
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-total strong {
  font-size: clamp(3.1rem, 5vw, 4.1rem);
  color: #e32d2f;
  text-shadow: 1px 1px 0 #111;
}

.receipt-sum strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.file-list {
  display: grid;
  gap: .55rem;
  margin: -.25rem 0 1rem;
}

.file-pill {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  border: 2px solid var(--line);
  background: var(--bg);
  padding: .55rem .65rem;
}

.file-pill span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.file-pill button {
  border: 2px solid var(--line);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: .35rem .55rem;
}

@keyframes receiptWiggle {
  0%, 100% { transform: translateX(-50%) rotate(1.5deg); }
  50% { transform: translateX(-50%) rotate(-1deg) translateY(-8px); }
}

@keyframes stickerPop {
  0%, 100% { scale: 1; }
  50% { scale: 1.06; }
}

@media (max-width: 900px) {
  .hero-receipt { min-height: 39rem; }
}

@media (max-width: 560px) {
  .hero-receipt { min-height: 39rem; }
  .receipt-lines div { grid-template-columns: 1fr; gap: .15rem; }
  .receipt-total { align-items: flex-start; flex-direction: column; gap: .25rem; }
}

.form-status { margin-top: 12px; padding: 10px 14px; border-radius: 10px; font-size: 0.92rem; font-weight: 500; line-height: 1.45; display: none; }
.form-status.info, .form-status.success, .form-status.error { display: block; }
.form-status.info { background: rgba(120,120,120,0.12); color: inherit; }
.form-status.success { background: rgba(34,160,90,0.14); color: #146c3a; border: 1px solid rgba(34,160,90,0.35); }
.form-status.error { background: rgba(210,60,60,0.14); color: #a02020; border: 1px solid rgba(210,60,60,0.35); }
body.dark .form-status.success { color: #5ee29a; }
body.dark .form-status.error { color: #ff8a8a; }
