/* Ruf Baumaschinen - Industrial Heritage Design
   Anthrazit #14181B + Warmes Orange #E8752C + Cream #F4EFE6 + Bauton #8A6D3B
*/

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

:root {
  --ink: #14181B;
  --ink-soft: #22272B;
  --cream: #F4EFE6;
  --cream-soft: #EBE3D4;
  --orange: #E8752C;
  --orange-dark: #C65E1E;
  --earth: #8A6D3B;
  --steel: #6C7177;
  --line: rgba(20, 24, 27, 0.12);
  --line-light: rgba(244, 239, 230, 0.14);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* === UTILITIES === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 42rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-block { width: 100%; }
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary .arr { transition: transform 0.3s; }
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.35s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--orange);
  color: var(--cream);
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
}
.brand-text {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.3rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--orange); }

/* === HERO (Light Full-Viewport) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2.5rem;
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
}
.hero-light { color: var(--ink); background: var(--cream); }
.hero .hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero .hero-text {
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-visual {
  min-height: 85vh;
  display: flex;
  align-items: center;
  animation: fadeUp 1.1s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.hero-img-blush {
  width: 100%;
  height: 85vh;
  min-height: 600px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 62% 72% at 55% 50%, #000 32%, rgba(0,0,0,0.72) 62%, rgba(0,0,0,0.28) 85%, transparent 100%);
  mask-image: radial-gradient(ellipse 62% 72% at 55% 50%, #000 32%, rgba(0,0,0,0.72) 62%, rgba(0,0,0,0.28) 85%, transparent 100%);
  filter: saturate(0.95) contrast(1.03);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(232, 117, 44, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(138, 109, 59, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 24, 27, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 27, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bgimg { display: none; }

/* === IMAGE BREAK === */
.image-break {
  position: relative;
  height: 65vh;
  min-height: 440px;
  max-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--cream);
  background: var(--ink);
}
.ib-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
  transform: scale(1.02);
  transition: transform 8s linear;
}
.image-break:hover .ib-img { transform: scale(1.08); }
.ib-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 16, 0.85) 0%, rgba(11, 18, 16, 0.35) 65%, transparent 100%);
}
.ib-overlay {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.ib-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.ib-tag::before { content: ''; width: 2rem; height: 1px; background: var(--orange); }
.ib-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.ib-sub {
  font-size: 1.1rem;
  color: rgba(244, 239, 230, 0.85);
  max-width: 34rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .image-break { height: 55vh; min-height: 340px; }
  .ib-overlay { padding: 0 1.25rem; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  background: rgba(232, 117, 44, 0.1);
  border: 1px solid rgba(232, 117, 44, 0.3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 2rem;
  border-radius: 100px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232, 117, 44, 0.3);
  animation: pulse 2.5s infinite;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  color: var(--ink);
  max-width: 14ch;
}
.hero-em {
  color: var(--orange);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.hero .btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-stats strong {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--orange);
}
.hero-stats span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

/* === MARQUEE === */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.75rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cream);
}
.marquee-track span:nth-child(even) { color: var(--orange); opacity: 0.7; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SECTION HEAD === */
.section-head {
  max-width: 1440px;
  margin: 0 auto 5rem;
  padding: 0 2.5rem;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-flex;
}
.section-head .section-sub {
  margin: 0 auto;
  max-width: 42rem;
}

/* === LISTINGS === */
.listings {
  padding: 8rem 0 6rem;
  background: var(--cream);
}
.filter-bar {
  max-width: 1440px;
  margin: 0 auto 3rem;
  padding: 0 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel);
  border: 1px solid var(--line);
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.machine-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.machine-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.machine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(20, 24, 27, 0.08);
  border-color: var(--ink);
}
.machine-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-soft);
  overflow: hidden;
}
.machine-img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4A4F55 0%, #22272B 100%);
  position: relative;
}
.machine-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 117, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 117, 44, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.machine-img-placeholder svg {
  position: relative;
  z-index: 2;
  color: var(--orange);
  opacity: 0.7;
}
.machine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.machine-card:hover .machine-img img { transform: scale(1.06); }

.machine-status {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.7rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.machine-status.reserved {
  background: var(--steel);
}

.machine-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.machine-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.machine-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--ink);
}
.machine-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin: 0.75rem 0 1rem;
  padding: 1rem 0 0;
  border-top: 1px dashed var(--line);
  font-size: 0.85rem;
}
.machine-meta > div { display: flex; flex-direction: column; gap: 0.15rem; }
.machine-meta dt {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}
.machine-meta dd {
  font-weight: 600;
  color: var(--ink);
}
.machine-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.machine-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
}
.machine-price small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}
.machine-cta {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.listings-footer {
  max-width: 1440px;
  margin: 5rem auto 0;
  padding: 0 2.5rem;
  text-align: center;
}

/* === CATEGORIES === */
.cats {
  padding: 8rem 2.5rem;
  background: var(--ink);
  color: var(--cream);
}
.cats .section-head .section-title { color: var(--cream); }
.cat-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.15);
}
.cat-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--ink);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  cursor: pointer;
}
.cat-card:hover {
  background: var(--orange);
  color: #fff;
}
.cat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.cat-card:hover .cat-num { color: #fff; }
.cat-card h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.cat-card:hover h3 { color: #fff; }
.cat-card p {
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.65);
}
.cat-card:hover p { color: rgba(255,255,255,0.85); }
.cat-arr {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s;
  color: rgba(244, 239, 230, 0.5);
  align-self: flex-end;
}
.cat-card:hover .cat-arr {
  transform: translateX(6px);
  color: #fff;
}

/* === RENTAL === */
.rental {
  padding: 10rem 2.5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.rental-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.rental-text p { color: var(--steel); margin-bottom: 1.5rem; }
.rental-bullets {
  list-style: none;
  margin: 2rem 0 3rem;
  display: grid;
  gap: 0.85rem;
}
.rental-bullets li {
  padding: 0.85rem 0 0.85rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.rental-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0.9rem; height: 1px;
  background: var(--orange);
}
.rental-visual {
  aspect-ratio: 1;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.rental-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232,117,44,0.3) 0%, transparent 50%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
}
.rental-visual-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 1;
  color: var(--orange);
  position: relative;
  z-index: 2;
}
.rental-visual-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
}

/* === ANKAUF === */
.ankauf {
  padding: 8rem 2.5rem;
  background: var(--cream-soft);
}
.ankauf-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  padding: 3rem 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: left;
  transition: all 0.4s;
  position: relative;
}
.step:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-4px);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.step h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.step:hover h3 { color: var(--cream); }
.step p { color: var(--steel); line-height: 1.65; }
.step:hover p { color: rgba(244, 239, 230, 0.8); }

/* === STORY === */
.story {
  padding: 10rem 2.5rem;
  background: var(--cream);
}
.story-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-text p {
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.story-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.story-nums strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 2.75rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.story-nums span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}

.story-card {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(232,117,44,0.4) 0%, transparent 70%);
}
.story-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 2rem;
}
.story-card h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.05;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.story-card > p {
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 2rem;
}
.story-card-line {
  height: 1px;
  background: var(--line-light);
  margin: 2rem 0;
}
.story-card .quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.85);
  position: relative;
  padding-left: 1.5rem;
}
.story-card .quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -0.5rem;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
}

/* === CONTACT === */
.contact {
  padding: 8rem 2.5rem;
  background: var(--ink);
  color: var(--cream);
}
.contact .section-title { color: var(--cream); }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.contact-sub {
  color: rgba(244, 239, 230, 0.8);
  margin-bottom: 3rem;
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-light);
}
.contact-list strong {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.contact-list span, .contact-list a {
  color: rgba(244, 239, 230, 0.9);
  transition: color 0.3s;
}
.contact-list a:hover { color: var(--orange); }

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(244, 239, 230, 0.03);
  border: 1px solid var(--line-light);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.85rem 1rem;
  background: rgba(244, 239, 230, 0.05);
  border: 1px solid var(--line-light);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  letter-spacing: 0;
  text-transform: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(244, 239, 230, 0.08);
}
.contact-form textarea { resize: vertical; }
.form-hint {
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.55);
  text-align: center;
  margin-top: 0.5rem;
}

/* === FOOTER === */
.footer { background: var(--ink); color: var(--cream); border-top: 1px solid var(--line-light); }
.foot-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.foot-tagline {
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.65);
  max-width: 24rem;
}
.foot-col { display: grid; gap: 0.9rem; }
.foot-h {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.foot-col a {
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.7);
  transition: color 0.3s;
}
.foot-col a:hover { color: var(--orange); }
.foot-bottom {
  border-top: 1px solid var(--line-light);
  padding: 1.5rem 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(244, 239, 230, 0.5);
}
.foot-bottom a { color: var(--orange); }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 117, 44, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(232, 117, 44, 0.05); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .nav-inner { padding: 0 1.25rem; grid-template-columns: auto 1fr; gap: 1rem; }
  .nav-links, .nav-cta .cta-label { display: none; }
  .hero { padding: 4rem 1.25rem; min-height: auto; }
  .hero .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { min-height: 380px; }
  .hero-img-blush { min-height: 380px; max-height: 480px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; padding-top: 2rem; }
  .hero-stats strong { font-size: 1.75rem; }
  .section-head, .filter-bar, .machine-grid, .listings-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cats, .rental, .ankauf, .story, .contact { padding-left: 1.25rem; padding-right: 1.25rem; }
  .rental, .story { padding-top: 5rem; padding-bottom: 5rem; }
  .rental-inner, .story-grid, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ankauf-steps { grid-template-columns: 1fr; }
  .story-nums { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .story-nums strong { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
  .foot-bottom { flex-direction: column; padding: 1.5rem 1.25rem; text-align: center; }
}
@media (max-width: 540px) {
  .cat-grid { grid-template-columns: 1fr; }
  .machine-grid { grid-template-columns: 1fr; }
  .story-nums { grid-template-columns: 1fr; gap: 1.5rem; }
  .foot-inner { grid-template-columns: 1fr; }
}
