/* TONI BIKES — index cover */

:root {
  --paper: #fdf3db;
  --ink: #090909;
  --red: #e50922;
  --paper-dark: #eadcbb;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 255, 255, 0.42),
      transparent 34rem
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(170, 130, 60, 0.07),
      transparent 30rem
    ),
    var(--paper);
  font-family: "Courier New", Courier, monospace;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.cover {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 64px);
  overflow: hidden;
}

.cover__inner {
  width: min(1180px, 100%);
  min-height: min(880px, calc(100svh - 48px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sticker {
  width: min(100%, 1040px);
  margin: -5% 0 clamp(24px, 3vw, 42px);
  transform: translateX(-1.5%) rotate(-0.55deg);
}

.sticker img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.03);
}

.statement {
  width: min(720px, 92%);
  position: relative;
  z-index: 2;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.52;
  font-weight: 700;
  letter-spacing: 0.012em;
}

.statement p {
  margin: 0;
}

.statement p + p {
  margin-top: 0.8rem;
}

.cover-nav {
  width: min(640px, 94%);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.cover-link {
  min-height: 76px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 4px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: 0.035em;
  transform: skewX(-5deg);
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.cover-link > span {
  transform: skewX(5deg);
}

.cover-link--secondary {
  background: transparent;
  color: var(--ink);
}

.cover-link:hover,
.cover-link:focus-visible {
  background: var(--red);
  color: var(--paper);
  transform: skewX(-5deg) translateY(-3px);
  outline: none;
}

.cover-link:focus-visible {
  box-shadow:
    0 0 0 5px var(--paper),
    0 0 0 9px var(--red);
}

.place {
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 3px solid var(--ink);
  padding-top: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .cover {
    display: block;
    min-height: 100svh;
    padding: 48px 18px 32px;
    overflow: visible;
  }

  .cover__inner {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .sticker {
    width: 100%;
    margin: 0 0 30px;
    transform: rotate(-0.4deg);
  }

  .sticker img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .statement {
    width: 100%;
    margin: 0 0 28px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .cover-nav {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cover-link {
    min-height: 64px;
    font-size: 2.25rem;
  }

  .place {
    position: static;
    align-self: flex-end;
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-link {
    transition: none;
  }
}/* BIKES PAGE */

.bikes-page {
  min-height: 100%;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.4),
      transparent 32rem
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(170, 130, 60, 0.07),
      transparent 30rem
    ),
    var(--paper);
}

/* BIKES HEADER */

.bikes-header {
  width: 100%;
  padding: 22px clamp(20px, 4vw, 64px);
}

.bikes-header__logo {
  display: block;
  width: clamp(132px, 12.1vw, 198px);
  padding: 0;
  border: 0;
  text-decoration: none;
  margin-left: auto;
}

.bikes-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .bikes-header {
    padding: 18px;
  }

  .bikes-header__logo {
    width: 125px;
  }
}

.bike-archive {
  width: min(1340px, 100%);
  margin: 0 auto;
  padding:
    clamp(24px, 4vw, 64px)
    clamp(20px, 4vw, 64px)
    100px;
}

.bike-archive__intro {
  margin-bottom: clamp(40px, 7vw, 90px);
}

.archive-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: var(--red);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  transform: rotate(-1deg);
}

.bike-archive__intro h1 {
  margin: 0;
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;
  font-size: clamp(6rem, 19vw, 17rem);
  line-height: 0.72;
  letter-spacing: -0.035em;
  transform: skewX(-5deg);
}

.bike-entry {
  width: min(1100px, 92%);
  margin-left: auto;
  position: relative;
}

.bike-entry__image {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  transform: rotate(0.4deg);
}

.bike-entry__image::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -18px;
  width: 42%;
  height: 14px;
  background: var(--red);
  z-index: 1;
  transform: skewX(-18deg);
}

.bike-entry__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid var(--ink);
  pointer-events: none;
}

.bike-entry__image img {
  display: block;
  width: 100%;
  height: auto;
}

.bike-entry__bottom {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.bike-entry__title h2 {
  margin: 0;
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.85;
  letter-spacing: 0.015em;
}

.bike-entry__title p {
  margin: 10px 0 0;
  font-weight: 700;
}

.bike-entry__open {
  min-width: 180px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 4px solid var(--ink);
  color: var(--ink);
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transform: skewX(-5deg);
}

.bike-entry__open span {
  transform: skewX(5deg);
}

.bike-entry__open:hover,
.bike-entry__open:focus-visible {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
  outline: none;
}

@media (max-width: 760px) {
  .bikes-header {
    padding: 20px 18px;
  }

  .bike-archive {
    padding: 38px 18px 70px;
  }

  .bike-archive__intro {
    margin-bottom: 55px;
  }

  .bike-archive__intro h1 {
    font-size: clamp(6rem, 34vw, 10rem);
  }

  .bike-entry {
    width: 100%;
    margin: 0;
  }

  .bike-entry__image::before {
    top: -9px;
    left: -5px;
    height: 9px;
  }

  .bike-entry__image::after {
    border-width: 3px;
  }

  .bike-entry__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .bike-entry__title h2 {
    font-size: 4.5rem;
  }

  .bike-entry__open {
    width: 100%;
    min-height: 64px;
    font-size: 2.25rem;
  }
}/* LARGE DESKTOP */

@media (min-width: 1500px) {
  .bike-archive {
    width: min(1180px, 100%);
    padding-top: 24px;
    padding-bottom: 70px;
  }

  .bike-archive__intro {
    margin-bottom: 48px;
  }

  .bike-archive__intro h1 {
    font-size: 11rem;
  }

  .bike-entry {
    width: min(900px, 82%);
  }

  .bike-entry__title h2 {
    font-size: 5rem;
  }

  .bike-entry__open {
    min-width: 160px;
    font-size: 1.7rem;
  }
}.bike-entry + .bike-entry {
  margin-top: clamp(100px, 14vw, 190px);
}

.bike-entry--left {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 760px) {
  .bike-entry + .bike-entry {
    margin-top: 90px;
  }
}

/* LARGE DESKTOP */

@media (min-width: 1500px) {
  .site-footer__frame {
    width: min(1180px, 100%);
  }

  .site-footer__content {
    width: min(900px, 82%);
    margin-left: 0;
    margin-right: auto;
  }
}

/* MOBILE */

@media (max-width: 760px) {
  .site-footer__frame {
    width: 100%;
    padding: 42px 28px 52px;
  }

  .site-footer__content {
    width: 100%;
    margin: 0;
  }

  .site-footer__name {
    font-size: 3.3rem;
  }

  .site-footer__nav {
    margin-top: 28px;
    gap: 34px;
  }
}/* SUNSET RIDERS PAGE */

.sunset-page {
  min-height: 100%;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.4),
      transparent 32rem
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(170, 130, 60, 0.07),
      transparent 30rem
    ),
    var(--paper);
}

.sunset-main {
  width: min(1340px, 100%);
  margin: 0 auto;
  padding:
    clamp(20px, 3vw, 48px)
    clamp(20px, 4vw, 64px)
    120px;
}


/* INTRO */

.sunset-intro {
  min-height: 68svh;

  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.sunset-intro__sticker {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;

  transform: rotate(-1deg);
  
}

.sunset-intro__text {
  max-width: 520px;

  padding-left: 28px;
  border-left: 8px solid var(--red);

  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.52;
  font-weight: 700;
}

.sunset-intro__text p {
  margin: 0;
}

.sunset-intro__text p + p {
  margin-top: 1.2rem;
}


/* RIDES */

.sunset-rides {
  margin-top: clamp(90px, 12vw, 170px);
}

.sunset-rides h1 {
  margin: 18px 0 0;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(6rem, 19vw, 17rem);
  line-height: 0.72;
  letter-spacing: -0.035em;

  transform: skewX(-5deg);
}

.sunset-rides__empty {
  width: min(620px, 100%);
  margin: clamp(55px, 8vw, 100px) 0 0 auto;

  padding: 24px 28px;
  border: 4px solid var(--ink);

  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;

  transform: rotate(0.4deg);
}


/* LARGE DESKTOP */

@media (min-width: 1500px) {
  .sunset-main {
    width: min(1180px, 100%);
    padding-top: 12px;
  }

  .sunset-intro {
    min-height: 620px;
  }

  .sunset-intro__sticker {
    max-width: 620px;
  }

  .sunset-rides h1 {
    font-size: 11rem;
  }
}


/* MOBILE */

@media (max-width: 760px) {
  .sunset-main {
    width: 100%;
    padding: 30px 18px 80px;
  }

  .sunset-intro {
    min-height: auto;

    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sunset-intro__sticker {
    width: 100%;
    max-width: none;
    margin: 0 auto;

    transform: rotate(-0.7deg);
  }

  .sunset-intro__text {
    max-width: none;

    padding-left: 18px;
    border-left-width: 6px;

    font-size: 0.98rem;
  }

  .sunset-rides {
    margin-top: 100px;
  }

  .sunset-rides h1 {
    font-size: clamp(6rem, 34vw, 10rem);
  }

  .sunset-rides__empty {
    width: 100%;
    margin-top: 58px;
    padding: 20px;
  }
}/* TONI PAGE */

.toni-page {
  min-height: 100%;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.4),
      transparent 32rem
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(170, 130, 60, 0.07),
      transparent 30rem
    ),
    var(--paper);
}

.toni-main {
  width: min(1340px, 100%);
  margin: 0 auto;
  padding:
    clamp(24px, 4vw, 64px)
    clamp(20px, 4vw, 64px)
    130px;
}


/* TITLE */

.toni-intro {
  margin-bottom: clamp(70px, 10vw, 130px);
}

.toni-intro h1 {
  margin: 18px 0 0;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(7rem, 22vw, 18rem);
  line-height: 0.72;
  letter-spacing: -0.035em;

  transform: skewX(-5deg);
}


/* TEXT AREA */

.toni-content {
  width: min(1100px, 92%);
  margin-left: auto;

  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(280px, 0.85fr);

  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.toni-copy {
  max-width: 650px;

  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.58;
  font-weight: 700;
}

.toni-copy p {
  margin: 0;
}

.toni-copy p + p {
  margin-top: 1.5rem;
}

.toni-copy__lead {
  font-size: clamp(1.4rem, 2.3vw, 2.15rem);
  line-height: 1.32;
}


/* CONTACT BLOCK */

.toni-contact {
  padding: 28px;
  border: 5px solid var(--ink);
  transform: rotate(0.5deg);
}

.toni-contact__label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 11px;

  background: var(--red);
  color: var(--paper);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;

  transform: rotate(-1deg);
}

.toni-contact p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
}

.toni-contact__mail {
  margin-top: 28px;
  padding-top: 16px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 4px solid var(--ink);

  color: var(--ink);
  text-decoration: none;

  font-weight: 700;
  overflow-wrap: anywhere;
}

.toni-contact__mail:hover,
.toni-contact__mail:focus-visible {
  color: var(--red);
  outline: none;
}


/* LARGE DESKTOP */

@media (min-width: 1500px) {
  .toni-main {
    width: min(1180px, 100%);
  }

  .toni-intro h1 {
    font-size: 12rem;
  }

  .toni-content {
    width: min(900px, 82%);
    margin-left: 0;
    margin-right: auto;
  }
}


/* MOBILE */

@media (max-width: 760px) {
  .toni-main {
    width: 100%;
    padding: 38px 18px 90px;
  }

  .toni-intro {
    margin-bottom: 70px;
  }

  .toni-intro h1 {
    font-size: clamp(7rem, 38vw, 11rem);
  }

  .toni-content {
    width: 100%;
    margin: 0;

    grid-template-columns: 1fr;
    gap: 58px;
  }

  .toni-copy {
    font-size: 1rem;
  }

  .toni-copy__lead {
    font-size: 1.35rem;
  }

  .toni-contact {
    padding: 22px;
    border-width: 4px;
  }

  .toni-contact__mail {
    font-size: 0.92rem;
  }
}/* FOOTER AUF KURZEN SEITEN UNTEN HALTEN */

.toni-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.toni-main {
  flex: 1;
}

.toni-page .site-footer {
  margin-top: auto;
}.bike-entry__image {
  position: relative;
  z-index: 20;
}

.bike-entry__image img {
  filter: none;
  mix-blend-mode: normal;
}/* KONTAKT & IMPRESSUM */

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.4),
      transparent 32rem
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(170, 130, 60, 0.07),
      transparent 30rem
    ),
    var(--paper);
}

.legal-main {
  width: min(1340px, 100%);
  margin: 0 auto;
  padding:
    clamp(24px, 4vw, 64px)
    clamp(20px, 4vw, 64px)
    130px;
}


/* TITEL */

.legal-intro {
  margin-bottom: clamp(70px, 10vw, 130px);
}

.legal-intro h1 {
  margin: 18px 0 0;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.76;
  letter-spacing: -0.035em;

  transform: skewX(-5deg);
}

.legal-intro h1 span {
  color: var(--red);
}


/* INHALT */

.legal-content {
  width: min(1100px, 92%);
  margin-left: auto;

  display: grid;
  grid-template-columns:
    minmax(260px, 0.8fr)
    minmax(0, 1.2fr);

  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.legal-content h2 {
  margin: 0 0 28px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;

  transform: skewX(-5deg);
}

.legal-content h3 {
  margin: 38px 0 12px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.legal-content p {
  margin: 0;
  line-height: 1.6;
  font-weight: 700;
}

.legal-content a {
  color: var(--ink);
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}


/* KONTAKT */

.legal-contact {
  padding: 28px;
  border: 5px solid var(--ink);
  transform: rotate(-0.4deg);
}

.legal-mail {
  margin-top: 30px;
  padding-top: 16px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 4px solid var(--ink);

  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-mail:hover,
.legal-mail:focus-visible {
  color: var(--red);
  outline: none;
}


/* IMPRESSUM */

.legal-imprint {
  max-width: 620px;
}

.legal-imprint address {
  margin-top: 24px;

  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}


/* GROSSE BILDSCHIRME */

@media (min-width: 1500px) {
  .legal-main {
    width: min(1180px, 100%);
  }

  .legal-intro h1 {
    font-size: 9rem;
  }

  .legal-content {
    width: min(900px, 82%);
    margin-left: 0;
    margin-right: auto;
  }
}


/* MOBIL */

@media (max-width: 760px) {
  .legal-main {
    width: 100%;
    padding: 38px 18px 90px;
  }

  .legal-intro {
    margin-bottom: 70px;
  }

  .legal-intro h1 {
    font-size: clamp(4.3rem, 21vw, 7rem);
    line-height: 0.8;
  }

  .legal-content {
    width: 100%;
    margin: 0;

    grid-template-columns: 1fr;
    gap: 70px;
  }

  .legal-contact {
    padding: 22px;
    border-width: 4px;
  }

  .legal-mail {
    font-size: 0.92rem;
  }
}/* KONTAKT & IMPRESSUM — FEINSCHLIFF */

.legal-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding-bottom: 100px;
}

.legal-intro {
  margin-bottom: clamp(55px, 7vw, 90px);
}

.legal-content {
  width: min(1000px, 88%);
  margin-left: 0;
  margin-right: auto;
  gap: clamp(50px, 7vw, 90px);
}

@media (min-width: 1500px) {
  .legal-content {
    width: min(900px, 100%);
  }
}

@media (max-width: 760px) {
  .legal-main {
    padding-bottom: 80px;
  }

  .legal-intro {
    margin-bottom: 62px;
  }

  .legal-content {
    width: 100%;
    margin: 0;
  }
}/* KONTAKT & IMPRESSUM — RESPONSIVE KORREKTUR */

.legal-page {
  overflow-x: hidden;
}

.legal-intro h1 {
  transform-origin: left center;
}


/* SEHR GROSSE BILDSCHIRME */

@media (min-width: 1800px) {
  .legal-main {
    width: min(1420px, 100%);
  }

  .legal-intro h1 {
    font-size: 12rem;
  }

  .legal-content {
    width: min(1120px, 100%);
    grid-template-columns:
      minmax(330px, 0.85fr)
      minmax(0, 1.15fr);
    gap: 110px;
  }

  .legal-content h2 {
    font-size: 5.2rem;
  }

  .legal-contact {
    padding: 34px;
  }
}


/* MOBIL */

@media (max-width: 760px) {
  .legal-intro h1 {
    max-width: 100%;
    font-size: clamp(4rem, 19vw, 6.4rem);
  }
}/* UNIFIED SITE FOOTER */

.site-footer {
  margin-top: auto;
  background: var(--red);
  color: var(--paper);
}

.site-footer__frame {
  width: min(1340px, 100%);
  margin: 0 auto;

  padding:
    46px
    clamp(20px, 4vw, 64px)
    58px;
}

.site-footer__content {
  width: min(1100px, 92%);
  margin-left: 0;
  margin-right: auto;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__name {
  display: inline-block;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;

  transform: skewX(-5deg);
}

.site-footer__nav {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;

  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-footer__nav a {
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  border-color: var(--paper);
  outline: none;
}


/* FOOTER AUF KURZEN SEITEN UNTEN HALTEN */

.index-page,
.bikes-page,
.sunset-page,
.toni-page,
.legal-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.bike-archive,
.sunset-main,
.toni-main,
.legal-main {
  flex: 1;
}


/* LARGE DESKTOP */

@media (min-width: 1500px) {
  .site-footer__frame {
    width: min(1180px, 100%);
  }

  .site-footer__content {
    width: min(900px, 82%);
  }
}


/* MOBILE */

@media (max-width: 760px) {
  .site-footer__frame {
    width: 100%;
    padding: 42px 28px 50px;
  }

  .site-footer__content {
    width: 100%;
  }

  .site-footer__name {
    font-size: 3.3rem;
  }

  .site-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-top: 28px;
  }

  .site-footer__nav a:last-child {
    grid-column: 1 / -1;
  }
}