:root {
  --ink: #111814;
  --ink-soft: #28332d;
  --paper: #f7f5ef;
  --paper-strong: #fffdfa;
  --line: #ded8cc;
  --green: #1f6f52;
  --lime: #b5d86b;
  --orange: #e96f35;
  --blue: #2f6f9f;
  --shadow: 0 24px 70px rgba(17, 24, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(247, 241, 226, 0.92), rgba(247, 241, 226, 0));
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(247, 241, 226, 0.94);
  box-shadow: 0 12px 40px rgba(27, 29, 25, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  grid-template-columns: auto;
  gap: 0;
  align-items: center;
  min-width: 260px;
}

.brand-mark,
.brand-mark-image {
  width: 42px;
  height: 42px;
}

.brand-mark {
  display: grid;
  place-items: center;
  border: 1px solid rgba(40, 43, 37, 0.18);
  background: rgba(255, 251, 244, 0.7);
  font-weight: 900;
}

.brand-mark-image {
  display: block;
  object-fit: contain;
}

.brand-lockup {
  display: block;
}

.brand-wordmark-image {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(58, 61, 53, 0.76);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(23, 25, 23, 0.88);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #000000;
}

.header-cta,
.primary-action,
.secondary-action,
.filter {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--paper-strong);
  isolation: isolate;
}

.hero-media,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroFade 18s infinite;
}

.slide-a {
  background-image: url("https://assets.r-m.de/cms/media/filer_public/cf/05/cf0554d2-65da-406d-bb21-bb803c5249e7/2024-0116_d_my-2025_bilder-website_neue-baureihen-header_2024-08-07_001_nevo4_web.jpg");
}

.slide-b {
  background-image: url("https://www.velo-de-ville.com/media/bb/be/8e/1758111510/vdv_website_header_kategorie_allround_3000x2000.webp?ts=1758113633");
  animation-delay: 6s;
}

.slide-c {
  background-image: url("https://www.ktm-bikes.at/fileadmin/products/1260098511_macina_aera_872_lfc_abs_us_51__machine-grey__silver_black_4800.webp");
  animation-delay: 12s;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 24, 20, 0.88), rgba(17, 24, 20, 0.36) 58%, rgba(17, 24, 20, 0.7)),
    linear-gradient(180deg, rgba(17, 24, 20, 0.2), rgba(17, 24, 20, 0.62));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: auto auto 14vh clamp(18px, 7vw, 88px);
  padding-top: 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.premium-eyebrow {
  color: #b7892a;
}

.catalog-teaser .premium-eyebrow {
  color: #b7892a !important;
}

.hero h1,
.intro-section h2,
.section-heading h2,
.workshop-copy h2,
.contact-section h2 {
  margin: 0;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 7.4rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 253, 250, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  min-width: 190px;
  padding: 0 22px;
}

.primary-action {
  color: var(--ink);
  background: var(--lime);
}

.secondary-action {
  color: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 42px;
  width: min(310px, calc(100% - 36px));
  padding: 22px;
  border-left: 5px solid var(--orange);
  color: var(--ink);
  background: rgba(255, 253, 250, 0.88);
  box-shadow: var(--shadow);
}

.hero-panel strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
}

.brand-ribbon {
  display: flex;
  gap: 38px;
  overflow: hidden;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper-strong);
  background: var(--ink);
  white-space: nowrap;
}

.brand-ribbon span {
  font-size: clamp(1.1rem, 2.3vw, 2rem);
  font-weight: 950;
  animation: ribbonMove 18s linear infinite;
}

.intro-section,
.catalog-teaser,
.catalog-section,
.brands-section,
.workshop-section,
.contact-section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
  background: var(--paper-strong);
}

.intro-section h2,
.section-heading h2,
.workshop-copy h2,
.contact-section h2 {
  font-size: clamp(2.3rem, 5.5vw, 5.6rem);
}

.intro-section p:last-child,
.section-heading p,
.workshop-copy p,
.contact-section p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.motion-gallery {
  overflow: hidden;
  padding: 22px 0;
  background: #202a34;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: galleryMove 32s linear infinite;
}

.gallery-track img {
  width: min(520px, 78vw);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.catalog-section {
  background: #eef1ea;
}

.catalog-teaser {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  min-height: clamp(320px, 42vw, 460px);
  padding-bottom: clamp(256px, 22.2vw, 338px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 28%, rgba(255, 255, 255, 0.52) 58%, rgba(255, 255, 255, 0.14) 100%),
    url("https://www.velo-de-ville.com/media/bb/be/8e/1758111510/vdv_website_header_kategorie_allround_3000x2000.webp?ts=1758113633")
      center 42%/cover;
}

.catalog-teaser-action {
  align-self: start;
  justify-self: start;
  position: relative;
  z-index: 1;
}

.catalog-teaser .section-heading {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 720px;
  margin-bottom: 0;
}

.model-ribbon {
  overflow: hidden;
  margin-top: -108px;
  margin-bottom: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(84, 73, 53, 0.1);
  border-bottom: 1px solid rgba(84, 73, 53, 0.1);
}

.model-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  animation: galleryMove 38s linear infinite;
}

.model-ribbon-track img {
  width: min(540px, 76vw);
  height: clamp(250px, 31vw, 350px);
  padding: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.model-ribbon-track img.ribbon-bike-tinker {
  width: min(620px, 86vw);
  height: clamp(280px, 35vw, 390px);
  transform: translateY(-18px);
}

.model-ribbon-track img.ribbon-bike-vdv {
  width: min(630px, 86vw);
  height: clamp(290px, 36vw, 410px);
}

.model-ribbon-track img.ribbon-bike-rm {
  width: min(615px, 85vw);
  height: clamp(292px, 36vw, 410px);
}

.model-ribbon-track img.ribbon-bike-pfautec-green {
  width: min(620px, 86vw);
  height: clamp(295px, 36vw, 415px);
}

.rm-landscape-teaser {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: end;
  gap: 18px;
  align-items: end;
  margin-top: 18px;
  min-height: clamp(260px, 34vw, 340px);
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 56px) clamp(170px, 14vw, 226px);
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 28%, rgba(255, 255, 255, 0.54) 58%, rgba(255, 255, 255, 0.12) 100%),
    url("assets/hero/rm-nevo-rider.jpg?v=20260518-1")
      196% 34%/cover;
}

.rm-landscape-teaser::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(120px, 18vw, 260px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 34%, rgba(255, 255, 255, 0.86) 72%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

.rm-landscape-teaser .section-heading {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 720px;
  margin-bottom: 0;
  text-align: left;
}

.rm-landscape-teaser .catalog-teaser-action {
  align-self: start;
  justify-self: end;
  position: relative;
  z-index: 1;
}

.catalog-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: 160px clamp(18px, 4vw, 56px) clamp(56px, 8vw, 96px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(247, 241, 226, 0.96) 0%, rgba(247, 241, 226, 0.84) 28%, rgba(247, 241, 226, 0.48) 58%, rgba(247, 241, 226, 0.12) 100%),
    url("https://www.velo-de-ville.com/media/bb/be/8e/1758111510/vdv_website_header_kategorie_allround_3000x2000.webp?ts=1758113633") center/cover;
}

.catalog-page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.catalog-page-hero p:last-child {
  margin: 0;
  color: rgba(48, 52, 46, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.catalog-page-section {
  padding-top: clamp(54px, 7vw, 86px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}

.filter {
  min-width: 112px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.filter.is-active {
  color: var(--paper-strong);
  background: var(--green);
  border-color: var(--green);
}

.catalog-search {
  flex: 1 1 280px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-strong);
  font: inherit;
  font-weight: 800;
}

.brand-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.brand-chip {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-strong);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.brand-chip.is-active {
  color: var(--paper-strong);
  background: var(--orange);
  border-color: var(--orange);
}

.brand-filter-bar.is-hidden {
  display: none;
}

.catalog-status {
  margin: -4px 0 24px;
  color: var(--ink-soft);
  font-weight: 800;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 560px;
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: 0 12px 36px rgba(17, 24, 20, 0.1);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 275px;
  padding: 12px;
  object-fit: contain;
  background: #ffffff;
}

.product-image-fallback {
  display: grid;
  height: 275px;
  place-items: center;
  padding: 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, #f8f2e7, #e8efe3);
  text-align: center;
}

.product-image-fallback strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

.product-image-fallback span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-weight: 800;
}

.product-card.is-featured {
  grid-column: span 2;
}

.product-card.is-featured img,
.product-card.is-featured .product-image-fallback {
  height: 330px;
}

.product-content {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
}

.product-type {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3,
.brand-grid h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.product-card p,
.brand-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.product-card strong {
  color: var(--green);
  font-size: 0.93rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-price,
.product-brand {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: #edf3df;
  font-size: 0.82rem;
  font-weight: 950;
}

.spec-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 14px;
}

.spec-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "•";
  font-weight: 950;
}

.source-link {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  margin-top: 2px;
  padding: 0 12px;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.brands-section {
  background: var(--paper-strong);
}

.brands-intro {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 110px 0 112px;
  margin-top: 10px;
  justify-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 254, 252, 0.9) 0%, rgba(255, 254, 251, 0.94) 100%),
    linear-gradient(90deg, rgba(254, 251, 246, 0.98) 0%, rgba(251, 246, 238, 0.8) 50%, rgba(254, 251, 246, 0.98) 100%);
}

.brands-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("https://bdxzfonmrkxnitywscrc.supabase.co/storage/v1/object/public/content-images/mallorca/sights/serra-de-tramuntana/serra-de-tramuntana-mallorca.jpg") center 0%/cover;
  filter: grayscale(0.88) sepia(0.42) saturate(0.7) brightness(1.02);
  opacity: 0.2;
  pointer-events: none;
}

.brands-intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(84, 73, 53, 0.1);
  pointer-events: none;
}

.brands-intro h2 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-grid article {
  display: grid;
  align-content: start;
  min-height: 220px;
  background: var(--paper-strong);
}

.brand-card-link {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 26px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.brand-card-link:hover,
.brand-card-link:focus-visible {
  background: rgba(183, 137, 42, 0.05);
  transform: translateY(-2px);
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-smartgyro {
  max-width: 190px;
}

.brand-wordmark {
  display: flex;
  align-items: center;
  height: 54px;
  color: var(--ink);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.brand-wordmark-rm {
  max-width: 220px;
  font-size: 1.45rem;
}

.brand-wordmark-lapierre {
  font-size: 1.65rem;
}

.brand-wordmark-monty {
  font-size: 1.75rem;
}

.workshop-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(26px, 5vw, 70px);
  color: var(--paper-strong);
  background:
    linear-gradient(rgba(17, 24, 20, 0.84), rgba(17, 24, 20, 0.84)),
    url("https://assets.r-m.de/cms/media/bikes/F01165/85_39_detail.jpg.695x464_q85_upscale.jpg") center/cover;
}

.workshop-copy p {
  color: rgba(255, 253, 250, 0.78);
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 16px 0 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
}

.service-list li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--lime);
  font-weight: 950;
}

.workshop-visual {
  display: grid;
  align-content: end;
  gap: 14px;
}

.metric {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.metric strong {
  color: var(--lime);
  font-size: 4rem;
  line-height: 0.9;
}

.metric span {
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: center;
  background: var(--green);
  color: var(--paper-strong);
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-section p {
  margin: 0;
  color: rgba(255, 253, 250, 0.82);
}

.contact-section .contact-actions {
  justify-content: flex-start;
}

.contact-map-frame {
  min-height: 320px;
  border: 1px solid rgba(255, 253, 250, 0.2);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-section .secondary-action {
  border-color: rgba(255, 253, 250, 0.6);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 253, 250, 0.76);
  background: var(--ink);
}

.site-footer strong {
  color: var(--paper-strong);
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.06);
  }

  8%,
  33% {
    opacity: 1;
    transform: scale(1);
  }

  42% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes ribbonMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-120px);
  }
}

@keyframes galleryMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-width: 44px;
    max-width: 148px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: auto 14px 250px;
  }

  .hero-panel {
    right: 14px;
    bottom: 26px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .intro-section,
  .catalog-teaser,
  .catalog-page-hero,
  .section-heading,
  .workshop-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .product-card.is-featured {
    grid-column: auto;
  }

  .product-card,
  .brand-grid article {
    min-height: auto;
  }

  .product-card img,
  .product-card.is-featured img,
  .product-card.is-featured .product-image-fallback,
  .product-image-fallback {
    height: 245px;
  }

  .contact-section .contact-actions {
    justify-content: stretch;
  }
}

.landing-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.99) 100%),
    url("https://assets.r-m.de/cms/media/filer_public_thumbnails/filer_public/51/10/5110a587-d9d8-4905-93dc-64915475e383/26_f01604_nevo5_vario_46_iceblue_0594_rgb_1860x1240.jpg__1000x1000_q90_subsampling-2.jpg")
      right 5% bottom 18% / min(56vw, 760px) auto no-repeat;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 22%, rgba(151, 175, 63, 0.1), rgba(151, 175, 63, 0) 28%),
    radial-gradient(circle at 78% 64%, rgba(151, 175, 63, 0.08), rgba(151, 175, 63, 0) 22%);
  pointer-events: none;
}

.landing-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 72%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  padding: 20px clamp(18px, 4vw, 44px) 10px;
}

.landing-header-block {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 176px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(84, 73, 53, 0.1);
}

.landing-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.landing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}

.landing-nav a,
.landing-meta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
}

.landing-brand-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 100%;
  padding: 0 0 4px;
}

.landing-brand-anchor {
  grid-column: 2;
  display: grid;
  justify-items: center;
  transform: translateY(-10px);
}

.landing-brand-spacer {
  min-height: 1px;
}

.landing-brand-stage img {
  width: min(100%, 470px);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(12, 16, 14, 0.16));
}

.rm-feature {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #e8ece4;
}

.rm-feature-media,
.rm-feature-overlay {
  position: absolute;
  inset: 0;
}

.rm-feature-media {
  background:
    url("https://assets.r-m.de/cms/media/filer_public_thumbnails/filer_public/5a/f9/5af96c8b-73d9-4554-898c-7d3c337067d8/26_f01604_nevo5_vario_46_iceblue_0594_rgb_1860x1240_zuschnitt.jpg__1400x1400_q90_subsampling-2.jpg")
      center/cover no-repeat;
  transform: scale(1.02);
  animation: heroFloat 18s ease-in-out infinite alternate;
}

.rm-feature-overlay {
  background:
    linear-gradient(90deg, rgba(244, 245, 240, 0.9) 0%, rgba(244, 245, 240, 0.58) 38%, rgba(244, 245, 240, 0.18) 62%, rgba(244, 245, 240, 0.08) 100%);
}

.rm-feature-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 72vh;
  width: min(100%, 640px);
  padding: 56px clamp(18px, 4vw, 44px);
}

.rm-feature-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.rm-feature-content p:last-child {
  max-width: 480px;
  color: #4d5751;
  font-size: 1rem;
}

@keyframes heroFloat {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.06) translateY(-10px);
  }
}

.landing-nav a:hover {
  color: #000000;
}

@media (max-width: 920px) {
  .landing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.99) 100%),
      url("https://assets.r-m.de/cms/media/filer_public_thumbnails/filer_public/51/10/5110a587-d9d8-4905-93dc-64915475e383/26_f01604_nevo5_vario_46_iceblue_0594_rgb_1860x1240.jpg__1000x1000_q90_subsampling-2.jpg")
        center bottom 18% / min(82vw, 540px) auto no-repeat;
  }

  .landing-header-block {
    min-height: 172px;
  }

  .landing-brand-stage {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .landing-brand-anchor {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .landing-hero-inner {
    padding: 14px 14px 10px;
  }

  .landing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 1) 100%),
      url("https://assets.r-m.de/cms/media/filer_public_thumbnails/filer_public/51/10/5110a587-d9d8-4905-93dc-64915475e383/26_f01604_nevo5_vario_46_iceblue_0594_rgb_1860x1240.jpg__1000x1000_q90_subsampling-2.jpg")
        center bottom 22% / min(92vw, 430px) auto no-repeat;
  }

  .landing-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-nav {
    max-width: none;
  }

  .landing-nav a,
  .landing-meta {
    font-size: 0.84rem;
  }

  .landing-brand-stage img {
    width: min(100%, 330px);
  }

  .rm-feature,
  .rm-feature-content {
    min-height: 58vh;
  }

  .rm-feature-content {
    width: 100%;
    padding: 34px 14px;
  }

  .rm-feature-content h2 {
    font-size: clamp(1.9rem, 10vw, 3.2rem);
  }
}

.catalog-cover {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 247, 242, 0.985) 0%, rgba(243, 245, 239, 0.975) 100%),
    url("https://assets.r-m.de/cms/media/filer_public_thumbnails/filer_public/51/10/5110a587-d9d8-4905-93dc-64915475e383/26_f01604_nevo5_vario_46_iceblue_0594_rgb_1860x1240.jpg__1000x1000_q90_subsampling-2.jpg")
      right 4% center / min(58vw, 820px) auto no-repeat;
}

.catalog-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 247, 242, 0.84) 0%, rgba(248, 247, 242, 0.64) 28%, rgba(248, 247, 242, 0.2) 62%, rgba(248, 247, 242, 0.08) 100%),
    radial-gradient(circle at 38% 22%, rgba(151, 175, 63, 0.08), rgba(151, 175, 63, 0) 28%);
  pointer-events: none;
}

.catalog-cover-inner {
  position: relative;
  z-index: 1;
  padding: 24px clamp(18px, 4vw, 44px) 28px;
}

.catalog-cover-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  min-height: 176px;
}

.catalog-cover-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.catalog-cover-brand img {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(12, 16, 14, 0.08));
}

.catalog-cover-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  max-width: 560px;
}

.catalog-cover-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.catalog-cover-nav a:hover {
  color: #000000;
}

.catalog-cover-copy {
  width: min(100%, 560px);
  padding-bottom: 18px;
}

.catalog-cover-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.94;
}

.catalog-cover-copy span {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  color: #5f6761;
  font-size: 0.98rem;
  line-height: 1.58;
}

@media (max-width: 920px) {
  .catalog-cover {
    background:
      linear-gradient(180deg, rgba(248, 247, 242, 0.97) 0%, rgba(239, 242, 233, 0.99) 100%),
      url("https://assets.r-m.de/cms/media/filer_public_thumbnails/filer_public/51/10/5110a587-d9d8-4905-93dc-64915475e383/26_f01604_nevo5_vario_46_iceblue_0594_rgb_1860x1240.jpg__1000x1000_q90_subsampling-2.jpg")
        right center / min(78vw, 620px) auto no-repeat;
  }

  .catalog-cover-topbar {
    min-height: 150px;
  }
}

@media (max-width: 680px) {
  .catalog-cover-inner {
    padding: 16px 14px 18px;
  }

  .catalog-cover {
    background:
      linear-gradient(180deg, rgba(248, 247, 242, 0.98) 0%, rgba(239, 242, 233, 1) 100%),
      url("https://assets.r-m.de/cms/media/filer_public_thumbnails/filer_public/51/10/5110a587-d9d8-4905-93dc-64915475e383/26_f01604_nevo5_vario_46_iceblue_0594_rgb_1860x1240.jpg__1000x1000_q90_subsampling-2.jpg")
        right bottom / min(92vw, 460px) auto no-repeat;
  }

  .catalog-cover-topbar {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .catalog-cover-nav {
    max-width: none;
    justify-content: flex-start;
  }

  .catalog-cover-nav a {
    font-size: 0.84rem;
  }

  .catalog-cover-brand img {
    width: min(100%, 290px);
  }

  .catalog-cover-copy h1 {
    font-size: clamp(1.9rem, 10vw, 3.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
