/*
 * Szenen-Layout, Maschinen-Rigs und sämtliche Keyframes.
 * Die Innereien der Maschinen bleiben als Inline-Styles in den Partials —
 * es sind einmalige, absolut positionierte Illustrationsteile.
 */

/* ========================================================================== */
/* Keyframes                                                                  */
/* ========================================================================== */

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

@keyframes drift {
  from { transform: translateX(-12vw); }
  to   { transform: translateX(112vw); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

@keyframes fall {
  from { transform: translateY(-8vh) translateX(0); }
  to   { transform: translateY(108vh) translateX(4vw); }
}

@keyframes ride {
  0%, 100% { transform: translateY(0) rotate(0.25deg); }
  50%      { transform: translateY(-3px) rotate(-0.25deg); }
}

@keyframes puff {
  0%   { transform: translate(0, 0) scale(0.35); opacity: 0.85; }
  100% { transform: translate(14px, -36px) scale(1.6); opacity: 0; }
}

@keyframes ram {
  0%, 13%   { transform: translateY(-100px); animation-timing-function: cubic-bezier(0.6, 0, 0.9, 0.35); }
  23%, 58%  { transform: translateY(0); animation-timing-function: cubic-bezier(0.3, 0, 0.35, 1); }
  78%, 100% { transform: translateY(-100px); }
}

@keyframes halfl {
  0%, 22%   { transform: translateX(0) rotate(0deg); opacity: 1; animation-timing-function: cubic-bezier(0.2, 1.1, 0.35, 1.25); }
  36%, 62%  { transform: translateX(-34px) rotate(-64deg); opacity: 1; }
  68%, 86%  { transform: translateX(-34px) rotate(-64deg); opacity: 0; }
  87%, 90%  { transform: translateX(0) rotate(0deg); opacity: 0; }
  96%, 100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

@keyframes halfr {
  0%, 22%   { transform: translateX(0) rotate(0deg); opacity: 1; animation-timing-function: cubic-bezier(0.2, 1.1, 0.35, 1.25); }
  36%, 62%  { transform: translateX(34px) rotate(64deg); opacity: 1; }
  68%, 86%  { transform: translateX(34px) rotate(64deg); opacity: 0; }
  87%, 90%  { transform: translateX(0) rotate(0deg); opacity: 0; }
  96%, 100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

@keyframes chipa {
  0%, 22% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  25%     { opacity: 1; }
  50%     { transform: translate(-86px, -72px) rotate(-170deg); opacity: 0; }
  100%    { opacity: 0; }
}

@keyframes chipb {
  0%, 22% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  25%     { opacity: 1; }
  54%     { transform: translate(72px, -94px) rotate(210deg); opacity: 0; }
  100%    { opacity: 0; }
}

@keyframes chipc {
  0%, 22% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  25%     { opacity: 1; }
  56%     { transform: translate(-122px, 6px) rotate(-250deg); opacity: 0; }
  100%    { opacity: 0; }
}

@keyframes chipd {
  0%, 22% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  25%     { opacity: 1; }
  52%     { transform: translate(112px, -26px) rotate(300deg); opacity: 0; }
  100%    { opacity: 0; }
}

@keyframes slamshake {
  0%, 22.5%, 30%, 100% { transform: translate(0, 0); }
  23.5% { transform: translate(-4px, 3px); }
  25%   { transform: translate(4px, -2px); }
  26.5% { transform: translate(-3px, 2px); }
  28.5% { transform: translate(2px, -1px); }
}

@keyframes grassfly {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0.95; }
  100% { transform: translate(-58px, -36px) rotate(160deg); opacity: 0; }
}

@keyframes snowspray {
  0%   { transform: translate(0, 0) scale(0.5); opacity: 0.95; }
  100% { transform: translate(30px, -46px) scale(1.4); opacity: 0; }
}

/* ========================================================================== */
/* Seitengerüst                                                               */
/* ========================================================================== */

.page {
  background: linear-gradient(var(--sky) 0%, var(--paper) 26%, var(--paper) 100%);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}

.scene {
  position: relative;
}

.scene__inner {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin: 0 auto;
}

/* ========================================================================== */
/* Header                                                                     */
/* ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 26px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.site-header__mark {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 0 #0c1a1133;
  overflow: hidden;
}

.site-header__star {
  width: 17px;
  height: 17px;
  background: var(--white);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.site-header__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header__name {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-header__tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: 3px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  user-select: none;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  box-shadow: 0 2px 0 var(--ink-deep);
  transition: background 0.2s, color 0.2s;
}

.burger:hover {
  background: var(--green);
  color: var(--ink-deep);
}

.burger__bars {
  display: grid;
  gap: 4px;
}

.burger__bars span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.burger__bars span:nth-child(2) {
  width: 12px;
}

.burger__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 560px) {
  .site-header__text,
  .site-header__phone {
    display: none;
  }
}

/* ========================================================================== */
/* Hero                                                                       */
/* ========================================================================== */

.hero {
  min-height: 128vh;
  overflow: hidden;
}

.hero__sun {
  position: absolute;
  top: 9vh;
  right: 10vw;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 80px 30px #f7d15433;
}

.cloud {
  position: absolute;
  left: -12vw;
  animation: drift linear infinite;
  opacity: 0.9;
}

.cloud__body {
  position: relative;
  height: 30px;
}

.cloud__body > div {
  position: absolute;
  background: var(--white);
}

.cloud__base   { inset: 0; border-radius: var(--radius-pill); }
.cloud__puff-a { left: 22%; top: -16px; width: 44px; height: 44px; border-radius: 50%; }
.cloud__puff-b { left: 48%; top: -10px; width: 32px; height: 32px; border-radius: 50%; }

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  /* Das Padding unten hält die Fahrspur frei von der Textspalte. */
  padding: 18vh clamp(24px, 6vw, 80px) 34vh;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(42px, 7.4vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__title em {
  font-style: normal;
  color: var(--green-price);
}

.hero__lead {
  margin: 28px auto 0;
  max-width: 54ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__hill-back {
  position: absolute;
  bottom: -6vh;
  left: -10vw;
  right: -10vw;
  height: 44vh;
  background: var(--green-scene-light);
  border-radius: 50% 50% 0 0 / 90% 90% 0 0;
}

.hero__hill-front {
  position: absolute;
  bottom: -10vh;
  left: 30vw;
  right: -20vw;
  height: 38vh;
  background: var(--green-scene-mid);
  border-radius: 50% 50% 0 0 / 90% 90% 0 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--white);
  animation: bob 2s ease-in-out infinite;
}

/* Bäume ------------------------------------------------------------------- */

.tree {
  position: absolute;
  z-index: 3;
}

.tree__crown {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.tree__trunk {
  width: 8px;
  height: 14px;
  background: var(--wood-darkest);
  margin: 0 auto;
}

/* ========================================================================== */
/* Maschinen-Rigs                                                             */
/* ========================================================================== */

.rig {
  position: absolute;
  z-index: 4;
  will-change: transform;
}

.rig__body {
  position: relative;
  animation: ride 0.8s ease-in-out infinite;
  transform-origin: 50% 100%;
}

.rig__shadow {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -9px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #0c1a1140, transparent 68%);
}

.rig__part {
  position: absolute;
}

/* Rad --------------------------------------------------------------------- */

.wheel {
  position: absolute;
}

.wheel__tire {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(#0b0d0e 0deg 9deg, #23272b 9deg 18deg);
  box-shadow: inset 0 0 0 3px #0b0d0e;
  animation: spin linear infinite;
}

.wheel__rim {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--yellow-border);
}

.wheel__spokes {
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--yellow) 0deg 30deg, var(--yellow-spoke) 30deg 60deg);
}

.wheel__hub {
  position: absolute;
  inset: 41%;
  border-radius: 50%;
  background: var(--ink-machine);
  box-shadow: inset 0 0 0 3px var(--yellow-hub);
}

/* Auspuffwolken ------------------------------------------------------------ */

.puff {
  position: absolute;
  border-radius: 50%;
  animation: puff 1.6s ease-out infinite;
}

.puff--1 { width: 13px; height: 13px; background: #a7adb0cc; }
.puff--2 { width: 11px; height: 11px; background: #b7bdc0bb; animation-delay: -0.55s; }
.puff--3 { width: 12px; height: 12px; background: #9aa0a3bb; animation-delay: -1.1s; }

/* ========================================================================== */
/* Station 01 — Holzspalter                                                   */
/* ========================================================================== */

.station {
  position: relative;
  overflow: hidden;
  padding: 12vh clamp(24px, 6vw, 80px) 14vh;
}

.station--split {
  background: var(--green-scene-mid);
}

.station__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.station__title {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.station__title--light {
  color: var(--white);
}

.station__text {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 46ch;
}

.station__text--light {
  color: #eaf5ee;
}

.splitter {
  position: relative;
  height: 380px;
}

.splitter__rig {
  position: absolute;
  inset: 0;
  animation: slamshake 3.6s linear infinite;
}

/* ========================================================================== */
/* Produkte                                                                   */
/* ========================================================================== */

.products {
  position: relative;
  background: var(--paper);
  padding: 14vh clamp(24px, 6vw, 80px) 12vh;
}

.products__head {
  text-align: center;
  margin-bottom: 60px;
}

.products__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 84px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.products__more {
  text-align: center;
  margin-top: 48px;
}

.product-card {
  display: block;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  padding: 18px;
  box-shadow: var(--shadow-hard);
  transition: transform 0.25s;
  color: var(--ink);
}

.product-card:hover {
  transform: rotate(0deg) translateY(-6px);
  color: var(--ink);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: visible;
}

.product-card__media .placeholder,
.product-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: -12px;
  right: -10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  transform: rotate(6deg);
  box-shadow: 0 2px 0 #0c1a1155;
}

.product-card__badge--sale {
  background: var(--ink);
  color: var(--white);
}

.product-card__badge--neu {
  background: var(--green);
  color: var(--ink-deep);
}

.product-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-3);
  margin-top: 16px;
}

.product-card__name {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 8px;
  min-height: 74px;
  color: var(--ink);
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 2px dashed #e2ded2;
  padding-top: 12px;
}

.product-card__old-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #a2a49b;
  text-decoration: line-through;
}

.product-card__price {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.product-card__price--sale {
  color: var(--green-price);
}

/* ========================================================================== */
/* Station 02 — Mulcher                                                       */
/* ========================================================================== */

.mow {
  position: relative;
  min-height: 70vh;
  background: var(--green-scene-light);
  overflow: hidden;
  padding: 12vh clamp(24px, 6vw, 80px) 300px;
}

.mow__inner {
  text-align: center;
}

.mow__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 76px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
}

.mow__text {
  margin: 22px auto 0;
  max-width: 50ch;
  font-size: 17px;
  line-height: 1.6;
  color: #eaf5ee;
}

.mow__grass {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: repeating-linear-gradient(90deg,
    var(--green-stripe) 0px, var(--green-stripe) 7px,
    oklch(0.55 0.14 148) 7px, oklch(0.55 0.14 148) 14px);
}

.mow__cut {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 120px;
  width: 0;
  background: repeating-linear-gradient(90deg,
    oklch(0.68 0.1 120) 0px, oklch(0.68 0.1 120) 10px,
    oklch(0.72 0.1 120) 10px, oklch(0.72 0.1 120) 20px);
  will-change: width;
}

.grass-clip {
  position: absolute;
  border-radius: 2px;
  animation: grassfly 0.55s linear infinite;
}

/* ========================================================================== */
/* Station 03 — Winter                                                        */
/* ========================================================================== */

.winter {
  position: relative;
  background: var(--winter-bg);
  overflow: hidden;
  padding: 12vh clamp(24px, 6vw, 80px) 14vh;
}

.winter__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.winter__title {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 70px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.92;
}

.winter__text {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.winter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.winter__stage {
  position: relative;
  height: 300px;
}

.winter__ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background: var(--white);
  border-radius: 8px;
}

.flake {
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 4px var(--white);
  animation: fall linear infinite;
  opacity: 0.9;
}

.snow-spray {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  animation: snowspray 0.7s linear infinite;
}

/* ========================================================================== */
/* Inhaber                                                                    */
/* ========================================================================== */

.owner {
  position: relative;
  background: var(--paper);
  padding: 14vh clamp(24px, 6vw, 80px);
}

.owner__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.polaroid {
  position: relative;
}

.polaroid__frame {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 14px 14px 50px;
  transform: rotate(-2.5deg);
  box-shadow: 0 5px 0 var(--ink);
}

.polaroid__image {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
}

.polaroid__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  text-align: center;
  margin-top: 16px;
}

.polaroid__badge {
  position: absolute;
  top: -18px;
  right: 8%;
  transform: rotate(4deg);
}

.owner__title {
  margin: 0 0 20px;
  font-weight: 900;
  font-size: clamp(38px, 4.6vw, 68px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.92;
}

.owner__text {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
}

/* ========================================================================== */
/* Kontakt & Footer                                                           */
/* ========================================================================== */

.contact {
  position: relative;
  background: var(--green-scene-mid);
  overflow: hidden;
  padding: 14vh clamp(24px, 6vw, 80px) 0;
}

.contact__head {
  text-align: center;
  margin-bottom: 56px;
}

.contact__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  transform: rotate(-1deg);
}

.contact__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.contact__status--closed .contact__status-dot {
  background: var(--plow-red);
}

.contact__title {
  margin: 18px 0 0;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.045em;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding-bottom: 20vh;
}

.contact-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.contact-card__phone {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-card__note {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-card__address {
  font-weight: 800;
  font-size: 21px;
  line-height: 1.35;
}

.contact-card__hours {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 2;
  color: var(--muted);
}

.contact-card__mail {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  word-break: break-all;
}

.contact__hill {
  position: absolute;
  bottom: -4vh;
  left: -10vw;
  right: 40vw;
  height: 22vh;
  background: var(--green-stripe);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.site-footer {
  background: var(--ink);
  color: #cdd4cd;
  padding: 30px clamp(24px, 6vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.site-footer__links {
  display: flex;
  gap: 22px;
}

.site-footer a {
  color: #cdd4cd;
}

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

/* ========================================================================== */
/* Scroll-Reveal                                                              */
/* ========================================================================== */

[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
}

/* ========================================================================== */
/* Bewegungsreduktion                                                         */
/* ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
  }
}

/* ========================================================================== */
/* Rechtliche Seiten                                                          */
/* ========================================================================== */

.legal {
  background: var(--paper);
  padding: 18vh clamp(24px, 6vw, 80px) 12vh;
}

.legal__inner {
  max-width: 72ch;
  margin: 0 auto;
}

.legal__title {
  margin: 0 0 32px;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 76px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.92;
}

.legal h2 {
  margin: 36px 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.legal p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.legal__note {
  margin-top: 40px;
  padding: 18px;
  border: 2px dashed #cfccc0;
  border-radius: 12px;
  font-size: 15px;
}

.legal__todo {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted-3);
}
