/* ==========================================================================
   editorial.css – aesthetic upgrade layer (loads AFTER styles.css)
   New token system, hairline cards, marquee, reveal, parallax hero.
   ========================================================================== */

:root {
  /* New editorial tokens — override the old palette */
  --ink-deep: #0F0A05;
  --ink-strong: #2A1F12;
  --paper: #F5EFE6;
  --paper-elevated: #FAF7F2;
  --rule: #C8B8A0;
  --accent: #C4923B;
  --accent-hover: #A87A2A;
  --accent-soft: #F4E6D5;
  --counter: #1E3A4C;

  /* Re-bind the legacy variables to the new system so the rest of the
     stylesheet inherits the new look without page-level edits. */
  --color-bg-dark: var(--ink-deep);
  --color-bg-surface: var(--paper);
  --color-bg-elevated: var(--paper-elevated);
  --color-accent: var(--accent);
  --color-accent-hover: var(--accent-hover);
  --color-accent-soft: var(--accent-soft);
  --color-text-primary: var(--ink-deep);
  --color-text-secondary: #5C4A36;
  --color-text-on-dark: #F4ECE0;
  --color-text-muted-dark: #8C7B66;
  --color-border: var(--rule);
  --color-border-dark: #3A2E20;

  /* Was JetBrains Mono — replaced globally with Inter for warmer feel.
     The "mono" name is kept as a CSS variable so all existing rules work,
     but it now resolves to a proportional sans with stronger weight. */
  --font-mono: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Body uses paper, with a hint of warmth */
body { background: var(--paper); color: var(--ink-deep); }

/* ==========================================================================
   Type scale – mutiger
   ========================================================================== */
h1 {
  font-size: clamp(44px, 7.4vw, 112px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.025em !important;
  font-weight: 500;
}
h2 {
  font-size: clamp(30px, 4.5vw, 64px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.02em !important;
  font-weight: 500;
}
h3 {
  font-size: clamp(20px, 1.6vw, 28px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em !important;
}
.body-l { font-size: clamp(17px, 1.3vw, 19px); line-height: 1.55; }

/* Eyebrows: numeric variant with hairline */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--counter);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--counter);
  opacity: 0.5;
}
.section--dark .eyebrow { color: var(--accent); }
.section--dark .eyebrow::after { background: var(--accent); opacity: 0.5; }

/* ==========================================================================
   Hero – Bleed + parallax + drift deco + grain
   ========================================================================== */
.hero { position: relative; isolation: isolate; overflow: hidden; }

/* Suppress old 2-col hero markup we don't touch by repurposing the grid */
.hero .grid--6-6 { display: block !important; }
.hero .hero__media { display: none !important; }

.hero--tall {
  background: var(--ink-deep);
  color: var(--color-text-on-dark);
  min-height: clamp(640px, 90vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(48px, 8vh, 96px);
}
.hero--tall .container { position: relative; z-index: 3; max-width: 1320px; }
.hero--tall h1 { color: var(--color-text-on-dark); max-width: 14ch; }
.hero--tall .body-l { color: var(--color-text-on-dark); opacity: 0.78; max-width: 50ch; margin-top: 28px; }
.hero--tall .eyebrow { color: var(--accent); }
.hero--tall .eyebrow::after { background: var(--accent); }

.hero__photo {
  position: absolute;
  inset: -8% -4% -4% -4%;
  z-index: 0;
  background-image: url('../assets/hero-cafe.jpg');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,10,5,0.92) 0%, rgba(15,10,5,0.62) 45%, rgba(15,10,5,0.30) 100%),
    linear-gradient(180deg, rgba(15,10,5,0.55) 0%, rgba(15,10,5,0.10) 30%, rgba(15,10,5,0.85) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Drift deco — visible, animated, masked */
.hero__bg-deco {
  position: absolute !important;
  width: clamp(420px, 65vw, 840px) !important;
  height: clamp(420px, 65vw, 840px) !important;
  top: -14% !important; right: -10% !important; left: auto !important;
  opacity: 0.22 !important;
  background-image: radial-gradient(circle, rgba(244,230,213,0.95) 1px, transparent 1.5px) !important;
  background-size: 28px 28px !important;
  -webkit-mask-image: radial-gradient(closest-side, black 30%, transparent 100%);
          mask-image: radial-gradient(closest-side, black 30%, transparent 100%);
  animation: drift 60s linear infinite;
  z-index: 1;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-24px, -42px); }
}

/* Word-stagger animation */
.word-stagger > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.2,0.8,0.2,1), transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.word-stagger.is-in > span { opacity: 1; transform: translateY(0); }

.hero--tall .body-l,
.hero--tall .cta-row,
.hero--tall .eyebrow {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}
.hero--tall.is-in .body-l { transition-delay: 0.65s; opacity: 0.78; transform: translateY(0); }
.hero--tall.is-in .cta-row { transition-delay: 0.78s; opacity: 1; transform: translateY(0); }
.hero--tall.is-in .eyebrow { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }

/* Centered hero variants — kept simple, paper-toned, no photo */
.hero--medium, .hero--xs {
  background: var(--paper);
  color: var(--ink-deep);
  position: relative;
  padding: clamp(120px, 18vh, 200px) 0 clamp(64px, 10vh, 96px);
}
.hero--medium .eyebrow,
.hero--xs .eyebrow { color: var(--counter); }
.hero--medium h1, .hero--xs h1 { color: var(--ink-deep); margin-top: 24px; max-width: 18ch; margin-left:auto; margin-right:auto; }
.hero--medium .body-l { color: #5C4A36; }
.hero--medium::after,
.hero--xs::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--rule); opacity: 0.6;
}

/* ==========================================================================
   Trust strip — marquee with rich captions
   Header (eyebrow + italic pitch) on top, marquee with brand cells below.
   Each cell carries a logo + caption strong (brand) + caption sub (relation).
   ========================================================================== */
.trust-strip {
  background: var(--paper-elevated);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
  overflow: hidden;
}
.trust-strip .container { max-width: none; padding: 0; }
.trust-strip .logo-row { display: none; } /* legacy markup, hide */

.trust-strip__head{
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px clamp(24px, 5vw, 64px) 18px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap; gap: 12px;
}
.trust-strip__head .eyebrow{ display: inline-flex; }
.trust-strip__pitch{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-style: italic;
  font-size: 18px; color: #5C4A36; margin: 0;
}

.marquee-wrap{
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}
.marquee {
  display: flex; gap: 0; width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee__cell{
  display: flex; align-items: center; gap: 22px;
  padding: 28px 56px;
  border-right: 1px solid var(--rule);
  flex-shrink: 0;
  height: 90px; /* lock cell height */
  box-sizing: border-box;
}
.trust-strip .marquee .marquee__cell > img{
  height: 34px !important;
  max-height: 34px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  filter: brightness(0) saturate(0%) opacity(0.85);
  transition: filter .3s ease;
  display: block;
}
.marquee__cell:hover img{ filter: brightness(0) saturate(0%) opacity(1); }
.marquee__caption{
  display: flex; flex-direction: column; gap: 2px; min-width: 140px;
}
.marquee__caption strong{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; font-weight: 500; color: var(--ink-deep);
  letter-spacing: -.005em; line-height: 1.1;
}
.marquee__caption span{
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--counter); opacity: .85;
  white-space: nowrap;
}

@media (max-width: 860px){
  .trust-strip__head{ padding: 18px 16px 14px; }
  .trust-strip__pitch{ font-size: 15px; }
  .marquee__cell{ padding: 22px 32px; gap: 16px; height: 76px; }
  .trust-strip .marquee .marquee__cell > img{ height: 28px !important; max-height: 28px !important; max-width: 130px !important; }
  .marquee__caption strong{ font-size: 15px; }
  .marquee__caption span{ font-size: 9px; }
}

/* ==========================================================================
   Editorial cards – hairline, no boxes
   ========================================================================== */
.section--surface { background: var(--paper); }
.section--elevated { background: var(--paper-elevated); }
.section--dark { background: var(--ink-deep); }
.section { padding-top: clamp(80px, 12vh, 160px); padding-bottom: clamp(80px, 12vh, 160px); }
.section + .section { padding-top: clamp(64px, 9vh, 120px); }

.section-header {
  text-align: left !important;
  margin: 0 0 clamp(48px, 7vw, 88px) !important;
  max-width: none !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  position: relative;
}
.section-header .eyebrow { grid-column: 1; }
.section-header h2 { grid-column: 1; max-width: 22ch; }
.section-header p { grid-column: 1; max-width: 56ch; color: #5C4A36; font-size: 17px; line-height: 1.5; margin-top: 8px; }
@media (min-width: 1024px) {
  .section-header { grid-template-columns: 5fr 7fr; column-gap: 64px; align-items: end; }
  .section-header .eyebrow { grid-column: 1; }
  .section-header h2 { grid-column: 1; }
  .section-header p { grid-column: 2; margin-top: 0; align-self: end; }
}
.section--dark .section-header { border-color: rgba(244,236,224,0.18); }
.section--dark .section-header p { color: var(--color-text-muted-dark); }

/* Cards become magazine columns */
.card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 32px 0 0 !important;
  box-shadow: none !important;
  position: relative;
  display: flex; flex-direction: column;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rule);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), background 0.4s ease;
}
.card:hover::before {
  background: var(--ink-strong);
  transform: scaleY(2.5);
}
.section--dark .card::before { background: rgba(244,236,224,0.2); }
.section--dark .card:hover::before { background: var(--accent); transform: scaleY(2.5); }

.card .card__media {
  border-radius: 0 !important;
  margin-bottom: 24px !important;
  overflow: hidden;
  background: var(--paper-elevated);
  aspect-ratio: 5/7 !important;
  position: relative;
}
.card .card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.card:hover .card__media img { transform: scale(1.04); }

.card .card__media--square { aspect-ratio: 4/5 !important; }
.product-media {
  background: var(--paper) !important;
  aspect-ratio: 5/7 !important;
  padding: 0 !important;
  display: block !important;
}
.product-media img {
  position: absolute; inset: 12% 18% 8%;
  width: auto !important; height: auto !important;
  max-height: 80% !important; max-width: 64% !important;
  margin: auto !important;
  filter: drop-shadow(0 32px 48px rgba(15,10,5,0.32));
}

.card h3 { margin-bottom: 12px; }
.card p { color: #5C4A36; font-size: 16px; line-height: 1.55; }
.section--dark .card p { color: rgba(244,236,224,0.72); }

.card .btn--ghost,
.card .btn--primary,
.card .btn--secondary {
  align-self: flex-start;
  margin-top: auto;
}

/* Pills inside cards */
.pills { margin: 16px 0 24px; }
.pill {
  background: transparent !important;
  border: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  color: var(--ink-strong);
  border-radius: 999px;
}
.pill--dark { background: rgba(196,146,59,0.12) !important; border-color: rgba(196,146,59,0.4); color: var(--accent); }
.pill--outline { border-color: rgba(244,236,224,0.4); color: var(--color-text-on-dark); }

/* ==========================================================================
   Buttons – fill from left
   ========================================================================== */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 !important;
  padding: 16px 28px !important;
  font-family: var(--font-mono);
  font-size: 13px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.4s ease;
}
.btn--primary {
  background: var(--accent) !important;
  color: var(--ink-deep) !important;
  border: 1px solid var(--accent);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: -1;
}
.btn--primary:hover { color: var(--accent) !important; }
.btn--primary:hover::before { transform: scaleX(1); }

.btn--secondary {
  background: transparent !important;
  color: var(--ink-deep) !important;
  border: 1px solid var(--ink-deep) !important;
}
.btn--secondary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: -1;
}
.btn--secondary:hover { color: var(--paper) !important; }
.btn--secondary:hover::before { transform: scaleX(1); }

.btn--secondary-light {
  border-color: var(--color-text-on-dark) !important;
  color: var(--color-text-on-dark) !important;
}
.btn--secondary-light::before { background: var(--color-text-on-dark); }
.btn--secondary-light:hover { color: var(--ink-deep) !important; }

.btn--ghost {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-deep);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-deep);
  display: inline-block;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn--ghost::after { content: " →"; transition: transform 0.3s ease; display: inline-block; }
.btn--ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn--ghost:hover::after { transform: translateX(4px); }
.section--dark .btn--ghost { color: var(--color-text-on-dark); border-color: var(--color-text-on-dark); }
.section--dark .btn--ghost:hover { color: var(--accent); border-color: var(--accent); }

/* ==========================================================================
   Header – cleaner
   ========================================================================== */
.site-header {
  background: transparent !important;
  border-bottom: 1px solid transparent;
}
.site-header.on-dark { color: var(--color-text-on-dark); }
.site-header.is-scrolled {
  background: rgba(245,239,230,0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink-deep) !important;
  border-bottom-color: var(--rule);
}
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .header-phone { color: var(--ink-deep); }
.site-header.is-scrolled .btn--primary { color: var(--ink-deep); }

.nav-link {
  font-family: var(--font-mono);
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.nav-link::after {
  content: ""; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ==========================================================================
   Statement section (full-bleed quote)
   ========================================================================== */
.statement {
  background: var(--ink-deep);
  color: var(--color-text-on-dark);
  padding: clamp(120px, 20vh, 220px) 0;
  border-top: 1px solid rgba(244,236,224,0.12);
  border-bottom: 1px solid rgba(244,236,224,0.12);
  position: relative;
  overflow: hidden;
}
.statement__inner { max-width: 1320px; padding: 0 clamp(24px, 5vw, 64px); margin: 0 auto; }
.statement__num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.statement__text {
  font-family: var(--font-display, 'Fraunces', serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.statement__text em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

/* ==========================================================================
   Final CTA – differentiated, not boxed
   ========================================================================== */
.final-cta { text-align: left !important; max-width: 1100px; }
.final-cta h2 { margin: 16px 0 24px !important; max-width: 18ch !important; }
.final-cta p { margin: 0 !important; max-width: 50ch; }
.final-cta .cta-row { justify-content: flex-start !important; }
.cta-row--center { justify-content: flex-start !important; }

.leistungen-final-cta .final-cta {
  display: grid;
  justify-items: center;
  max-width: min(100%, 900px);
  margin-inline: auto;
  text-align: center !important;
}

.leistungen-final-cta .final-cta .eyebrow {
  justify-content: center;
}

.leistungen-final-cta .final-cta h2 {
  max-width: min(100%, 820px) !important;
  margin: clamp(16px, 2vw, 22px) auto 0 !important;
  text-align: center;
  text-wrap: balance;
}

.leistungen-final-cta .final-cta p {
  max-width: min(100%, 560px);
  margin: clamp(18px, 2vw, 24px) auto 0 !important;
  text-align: center;
}

.leistungen-final-cta .final-cta .cta-row,
.leistungen-final-cta .final-cta .cta-row--center {
  justify-content: center !important;
  margin-top: clamp(28px, 3.2vw, 38px) !important;
}

@media (max-width: 640px) {
  .leistungen-final-cta .final-cta .cta-row {
    width: 100%;
  }

  .leistungen-final-cta .final-cta .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   Section dark
   ========================================================================== */
.section--dark { color: var(--color-text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-text-on-dark); }
.section--dark p { color: rgba(244,236,224,0.78); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink-deep) !important;
  border-top: 1px solid rgba(244,236,224,0.1);
  color: var(--color-text-on-dark);
}
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================================================
   Forms – editorial
   ========================================================================== */
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 0 !important;
  border-bottom: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 14px 0 !important;
  font-size: 17px !important;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ink-deep) !important;
  box-shadow: none !important;
}
.contact-form .form-field span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--counter);
}

/* Contact aside */
.contact-aside {
  background: transparent !important;
  border: 0 !important;
  border-left: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  padding: 0 0 0 clamp(24px, 4vw, 56px) !important;
}
.contact-aside__phone {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(28px, 3.2vw, 40px) !important;
  letter-spacing: -0.02em !important;
}
.contact-aside__block--accent {
  background: var(--ink-deep) !important;
  color: var(--color-text-on-dark) !important;
  padding: 24px !important;
}
.contact-aside__block--accent strong,
.contact-aside__block--accent p { color: var(--color-text-on-dark) !important; }

/* ==========================================================================
   Reveal animation (managed by JS)
   ========================================================================== */
:root {
  --motion-reveal-duration: 760ms;
  --motion-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-reveal-distance: 24px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, var(--motion-reveal-distance), 0);
  transition:
    opacity var(--motion-reveal-duration) var(--motion-reveal-ease) var(--reveal-delay, 0ms),
    transform var(--motion-reveal-duration) var(--motion-reveal-ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--soft {
  --motion-reveal-distance: 20px;
  --motion-reveal-duration: 700ms;
}

.reveal--visual {
  --motion-reveal-distance: 24px;
  transform: translate3d(0, var(--motion-reveal-distance), 0) scale(0.985);
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reveal--visual.is-in {
  transform: translate3d(0, 0, 0) scale(1);
}

/* ==========================================================================
   Mobile sticky bar – backdrop blur
   ========================================================================== */
.mobile-bar {
  background: rgba(245,239,230,0.86) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-top: 1px solid var(--rule) !important;
}

/* ==========================================================================
   Icon polish — consistent thin stroke + accent hover
   Affects: header phone icon, mobile-bar icons.
   WhatsApp logo (filled, brand-recognized) keeps its style.
   ========================================================================== */
.header-phone{
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s ease;
}
.header-phone svg{
  width: 16px; height: 16px;
  stroke-width: 1.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: stroke .25s ease, transform .25s ease;
}
.header-phone:hover{ color: var(--accent); }
.header-phone:hover svg{ stroke: var(--accent) !important; transform: rotate(-8deg); }

.mobile-bar a svg{
  width: 22px; height: 22px;
  stroke-width: 1.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: stroke .25s ease, fill .25s ease, transform .25s ease;
}
.mobile-bar a:hover svg,
.mobile-bar a:active svg{
  stroke: var(--accent) !important;
  transform: translateY(-2px);
}
.mobile-bar a:hover svg[fill="currentColor"],
.mobile-bar a:active svg[fill="currentColor"]{
  fill: var(--accent) !important;
}

/* ==========================================================================
   Touch device hover suppression
   ========================================================================== */
@media (hover: none) {
  .card:hover::before { transform: scaleY(1); background: var(--rule); }
  .card:hover .card__media img { transform: scale(1); }
  .btn--primary:hover::before { transform: scaleX(0); }
  .btn--secondary:hover::before { transform: scaleX(0); }
  .btn--primary:active { background: var(--ink-deep) !important; color: var(--accent) !important; }
  .btn--secondary:active { background: var(--ink-deep) !important; color: var(--paper) !important; }
}

/* ==========================================================================
   Container alignment tweaks
   ========================================================================== */
.container { max-width: 1320px; }

/* ==========================================================================
   Map card — editorial location block (Kontakt page)
   Replaces the boxed map+info card with a richer composition:
   wider map with topographic SVG, info column with route steps.
   ========================================================================== */
.map-card{
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--paper-elevated) !important;
  overflow: visible !important;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid !important;
  grid-template-columns: 1fr !important;
}
@media (min-width: 1024px){
  .map-card{ grid-template-columns: 8fr 4fr !important; }
}
.map-card__map{
  background: var(--paper-elevated) !important;
  min-height: 420px !important;
  position: relative;
}
.map-card__map svg{ width: 100% !important; height: 100% !important; display: block; }

.map-card__info{
  padding: 40px clamp(28px, 3vw, 48px) !important;
  display: flex !important; flex-direction: column !important;
  gap: 0 !important; align-items: stretch !important; justify-content: flex-start !important;
  background: var(--paper);
  border-left: 1px solid var(--rule);
}
.map-card__address{
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important; font-size: 26px !important; line-height: 1.15 !important;
  letter-spacing: -.01em; color: var(--ink-deep);
  margin: 0 0 4px !important;
}
.map-card__address-sub{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--counter); margin: 0 0 24px;
}
.map-card__steps{
  list-style: none; padding: 0; margin: 0 0 24px;
  border-top: 1px solid var(--rule);
}
.map-card__steps li{
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: baseline;
}
.map-card__steps li .num{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 20px; color: var(--accent); line-height: 1;
  letter-spacing: -.01em;
}
.map-card__steps li .text{
  font-size: 14px; line-height: 1.55; color: #5C4A36;
}
.map-card__steps li .text strong{ color: var(--ink-deep); font-weight: 500; }

.map-card__hours{
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  border-top: 1px solid var(--rule);
  padding: 16px 0 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--counter);
}
.map-card__hours strong{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 18px; color: var(--ink-deep); letter-spacing: -.005em;
  text-transform: none;
}

.map-card__cta{
  display: flex; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 860px){
  .map-card__info{ border-left: 0; border-top: 1px solid var(--rule); padding: 28px 20px !important; }
  .map-card__map{ min-height: 280px !important; }
  .map-card__address{ font-size: 22px !important; }
}

/* ==========================================================================
   Maschinen page — Featured product block + Editorial listing
   Used on: maschinen.html (Vollautomaten-Sektion has Featured at top,
   all sections use the editorial listing for product cards)
   ========================================================================== */
.featured-product{
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 56px;
  background: var(--paper-elevated);
  padding: clamp(32px, 4vw, 56px);
  border-top: 4px solid var(--accent);
  margin-bottom: 64px;
}
.featured-product__photo{
  background: var(--paper);
  aspect-ratio: 4/5;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.featured-product__photo img{
  max-width: 75% !important;
  max-height: 80% !important;
  width: auto !important;
  height: auto !important;
  filter: drop-shadow(0 32px 48px rgba(15,10,5,0.32));
  object-fit: contain;
}
.featured-product__badge{
  position: absolute; top: 20px; left: 20px;
  background: var(--ink-deep); color: var(--accent);
  padding: 8px 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase;
}
.featured-product__text{
  display: flex; flex-direction: column; justify-content: center;
}
.featured-product__brand{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--counter); font-weight: 500;
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 12px;
}
.featured-product__brand::after{ content:""; width:48px; height:1px; background: var(--counter); opacity:.5; }
.featured-product__name{
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(36px, 4.4vw, 64px) !important;
  line-height: 1.0 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 24px !important;
}
.featured-product__name em{ font-style: italic; color: var(--counter); }
.featured-product__story{
  font-size: 17px; line-height: 1.6; color: #5C4A36;
  margin: 0 0 28px;
}
.featured-product__story strong{ color: var(--ink-deep); font-weight: 500; }
.featured-product__specs{
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.featured-product__spec{
  padding: 16px 16px 16px 0;
  border-right: 1px solid var(--rule);
}
.featured-product__spec:last-child{ border-right: 0; padding-right: 0; }
.featured-product__spec + .featured-product__spec{ padding-left: 16px; }
.featured-product__spec-num{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 24px; color: var(--accent); line-height: 1;
  margin-bottom: 4px;
}
.featured-product__spec-label{
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: #5C4A36;
}
.featured-product__cta{
  display: flex; gap: 14px; align-items: center;
}

/* Coffee page - system benefits */
.coffee-system {
  overflow: hidden;
}

.coffee-system__header {
  display: grid;
  justify-items: center;
  max-width: 840px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.coffee-system__header .eyebrow {
  margin-bottom: 18px;
}

.coffee-system__header h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.coffee-system__header p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.6;
}

.coffee-system__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(300px, 0.95fr) minmax(220px, 0.88fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.coffee-system__image {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(200, 184, 160, 0.64);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgba(250, 247, 242, 0.12), transparent 56%),
    linear-gradient(145deg, rgba(244, 230, 213, 0.78), rgba(232, 210, 184, 0.36));
  box-shadow: 0 30px 78px rgba(42, 31, 18, 0.13);
}

.coffee-system__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(250, 247, 242, 0.65),
    inset 0 -70px 100px rgba(15, 10, 5, 0.1);
}

.coffee-system__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04) sepia(0.04);
}

.coffee-system__benefits {
  display: grid;
  gap: clamp(22px, 3.2vw, 42px);
}

.coffee-system__benefit {
  position: relative;
  display: grid;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 68, 61, 0.22);
}

.coffee-system__benefit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(196, 146, 59, 0.12);
}

.coffee-system__benefit h3 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(22px, 1.85vw, 30px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.coffee-system__benefit p {
  max-width: 30ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (min-width: 981px) {
  .coffee-system__benefits--left .coffee-system__benefit {
    justify-items: end;
    text-align: right;
  }

  .coffee-system__benefits--left .coffee-system__benefit::before {
    right: 0;
    left: auto;
  }
}

@media (max-width: 980px) {
  .coffee-system__layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .coffee-system__image {
    order: 1;
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }

  .coffee-system__benefits--left {
    order: 2;
  }

  .coffee-system__benefits--right {
    order: 3;
  }

  .coffee-system__benefits {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .coffee-system__header {
    margin-bottom: 34px;
  }

  .coffee-system__header h2 {
    max-width: 11ch;
    font-size: clamp(38px, 11vw, 48px) !important;
  }

  .coffee-system__image {
    border-radius: 24px;
  }

  .coffee-system__benefit {
    padding-top: 18px;
  }
}

#sortiment .featured-product{
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
}

#sortiment .featured-product__photo{
  isolation: isolate;
  aspect-ratio: 1 / 1;
  padding: 0;
  background:
    radial-gradient(circle at 42% 42%, rgba(250, 247, 242, 0.96) 0%, rgba(244, 230, 213, 0.78) 42%, rgba(196, 146, 59, 0.16) 78%, rgba(42, 31, 18, 0.1) 100%),
    linear-gradient(145deg, rgba(250, 247, 242, 0.92), rgba(232, 210, 184, 0.62));
  border: 1px solid rgba(200, 184, 160, 0.64);
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(42, 31, 18, 0.13);
}

#sortiment .featured-product__photo::before,
#sortiment .featured-product__photo::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#sortiment .featured-product__photo::before{
  z-index: 0;
  background:
    radial-gradient(circle at 47% 62%, rgba(15, 10, 5, 0.16), transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(15, 10, 5, 0.08) 100%);
  opacity: 0.72;
}

#sortiment .featured-product__photo::after{
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(250, 247, 242, 0.74), inset 0 -54px 86px rgba(15, 10, 5, 0.08);
}

#sortiment .featured-product__photo img{
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.08) sepia(0.06);
}

#sortiment .featured-product__copy{
  max-width: 520px;
}

#sortiment .espresso-section-title{
  display: grid;
  grid-column: 1 / -1 !important;
  gap: 0.02em;
  max-width: min(100%, 20ch);
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.018em !important;
  text-wrap: balance;
}

#sortiment .espresso-section-title span{
  display: block;
}

#sortiment .espresso-section-title em{
  color: var(--ink-strong);
  display: inline;
  position: static;
  font-style: italic;
  font-weight: 500;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  transform: none;
  vertical-align: baseline;
}

#sortiment .featured-product__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--counter);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

#sortiment .featured-product__eyebrow::after{
  content: "";
  width: 48px;
  height: 1px;
  background: var(--counter);
  opacity: 0.5;
}

#sortiment .featured-product__title{
  max-width: 100%;
  margin: 0 0 20px;
  color: var(--ink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 2.6vw, 40px) !important;
  font-weight: 500;
  letter-spacing: -0.015em !important;
  line-height: 1.06 !important;
  text-wrap: balance;
}

#sortiment .featured-product__title span{
  display: block;
}

@media (max-width: 640px){
  #sortiment .featured-product__title span{
    display: inline;
  }
}

#sortiment .featured-product__intro{
  max-width: 47ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.58;
}

#sortiment .featured-product__benefits{
  display: grid;
  gap: 8px;
  margin: clamp(22px, 2.8vw, 32px) 0 clamp(24px, 3vw, 34px);
  padding: 10px;
  list-style: none;
  background:
    linear-gradient(145deg, rgba(250, 247, 242, 0.72), rgba(244, 230, 213, 0.32));
  border: 1px solid rgba(200, 184, 160, 0.48);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(250, 247, 242, 0.72);
}

#sortiment .featured-product__benefits li{
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 8px 13px 8px 10px;
  background: rgba(250, 247, 242, 0.58);
  border: 1px solid rgba(200, 184, 160, 0.24);
  border-radius: 999px;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

#sortiment .featured-product__benefits li + li{
  border-top: 1px solid rgba(200, 184, 160, 0.24);
}

#sortiment .featured-product__benefits li::before{
  content: "";
  position: static;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(196, 146, 59, 0.11);
}

@media (max-width: 640px){
  #sortiment .featured-product__benefits li{
    gap: 9px;
    min-height: 34px;
    padding: 7px 10px 7px 9px;
    font-size: 14px;
  }

  #sortiment .featured-product__benefits li::before{
    width: 5px;
    height: 5px;
  }
}

#sortiment .featured-product__cta-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

/* Editorial product listing (used in all 3 sections) */
.product-listing{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.product-card{
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  position: relative;
  background: transparent;
}
.product-card::before{
  content:""; position:absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover::before{ transform: scaleX(1); }
.product-card__photo{
  background: var(--paper-elevated);
  aspect-ratio: 5/6;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-card__photo img{
  max-width: 70% !important;
  max-height: 80% !important;
  width: auto !important;
  height: auto !important;
  filter: drop-shadow(0 20px 32px rgba(15,10,5,0.18));
  object-fit: contain;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .product-card__photo img{ transform: scale(1.04); }
.product-card__brand{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--counter); font-weight: 500;
  margin-bottom: 8px;
}
.product-card__name{
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 28px !important; line-height: 1.05 !important;
  letter-spacing: -.01em !important;
  margin: 0 0 12px !important; color: var(--ink-deep);
}
.product-card__body{
  font-size: 15px; line-height: 1.55; color: #5C4A36;
  margin: 0 0 18px;
}
.product-card__specs{
  list-style: none; padding: 0; margin: 0 0 20px;
  border-top: 1px solid var(--rule);
}
.product-card__specs li{
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  color: #5C4A36;
}
.product-card__specs li strong{ color: var(--ink-deep); font-weight: 500; }
.product-card__cta{ margin-top: auto; }

@media (max-width: 860px){
  .featured-product{ grid-template-columns: 1fr; gap: 24px; padding: 24px; margin-bottom: 48px; }
  .featured-product__name{ font-size: clamp(28px, 8vw, 40px) !important; }
  .product-listing{ grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Testimonials — Magazine Mosaic (used on Index)
   Asymmetric 12-col tile grid with paper + dark variants.
   ========================================================================== */
.testimonials-head{
  display:grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: end;
  margin-bottom: 64px;
  border-top: 1px solid var(--rule); padding-top: 24px;
}
.testimonials-head h2{
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.02em !important;
  margin: 16px 0 0 !important;
  max-width: 22ch;
}
.testimonials-head h2 em{ font-style: italic; color: var(--counter); }
.testimonials-head .rating{
  display: flex; flex-direction: column; gap: 8px;
  border-left: 1px solid var(--rule); padding-left: 32px;
  color: #5C4A36; font-size: 15px; line-height: 1.5;
}
.testimonials-head .rating .stars{
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--accent); font-size: 22px; letter-spacing: 2px; line-height: 1;
}
.testimonials-head .rating strong{
  color: var(--ink-deep); font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 24px; letter-spacing: -0.01em;
}

.testimonials-mosaic{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 24px;
}
.t-tile{
  padding: 28px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.t-tile__quote{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 400;
  line-height: 1.32; letter-spacing: -0.005em; color: var(--ink-deep);
  margin: 0 0 20px;
}
.t-tile__quote em{ color: var(--accent); font-style: italic; font-weight: 500; }
.t-tile__attr{
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--rule); padding-top: 14px;
}
.t-tile__attr strong{
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-weight: 500; font-size: 13px; color: var(--ink-deep); letter-spacing: 0.005em;
}
.t-tile__attr-meta{
  display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 2px;
}
.t-tile__attr-meta span:first-child{
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--counter); opacity: 0.8;
}
.t-tile__attr-meta .stars{
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--accent); font-size: 13px; letter-spacing: 1.5px;
}

.t-tile--lg{ grid-column: span 7; background: var(--paper-elevated); border-top: 2px solid var(--accent); min-height: 320px; }
.t-tile--lg .t-tile__quote{ font-size: clamp(22px, 2.4vw, 30px); }
.t-tile--lg::before{
  content: "\201C";
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500;
  font-size: 100px; line-height: 0.6; color: var(--accent);
  position: absolute; top: 24px; right: 32px; opacity: 0.25;
  pointer-events: none;
}
.t-tile--sm{ grid-column: span 5; background: var(--paper-elevated); border-left: 2px solid var(--rule); }
.t-tile--sm .t-tile__quote{ font-size: 18px; }
.t-tile--dark{ grid-column: span 5; background: var(--ink-deep); color: var(--color-text-on-dark); border-top: 2px solid var(--accent); }
.t-tile--dark .t-tile__quote{ color: var(--color-text-on-dark); font-size: 19px; }
.t-tile--dark .t-tile__quote em{ color: var(--accent); }
.t-tile--dark .t-tile__attr{ border-top-color: rgba(196,146,59,0.3); }
.t-tile--dark .t-tile__attr strong{ color: var(--color-text-on-dark); }
.t-tile--dark .t-tile__attr-meta span:first-child{ color: rgba(244,236,224,0.7); }
.t-tile--med{ grid-column: span 7; background: var(--paper-elevated); border-left: 2px solid var(--rule); }
.t-tile--med .t-tile__quote{ font-size: 20px; }

@media (max-width: 860px){
  .testimonials-head{ grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .testimonials-head .rating{ border-left: 0; border-top: 1px solid var(--rule); padding: 20px 0 0; }
  .testimonials-mosaic{ grid-template-columns: 1fr; gap: 16px; }
  .t-tile, .t-tile--lg, .t-tile--sm, .t-tile--dark, .t-tile--med{
    grid-column: span 1; min-height: auto; padding: 24px;
  }
  .t-tile--lg .t-tile__quote{ font-size: 19px; }
  .t-tile--lg::before{ font-size: 70px; top: 16px; right: 24px; }
}

/* ==========================================================================
   Stefan section — Pull-Quote + Portrait (used on Über uns)
   Editorial layout: large italic quote + handwritten signature on left,
   workshop photo with badges on right.
   ========================================================================== */
.stefan-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.86fr);
  gap: clamp(54px, 6vw, 88px);
  align-items: stretch;
}
.stefan-quote-col{
  display: grid;
  align-content: center;
  padding-top: 0;
}
.stefan-lede{
  display: grid;
  gap: 7px;
  margin: clamp(18px, 2.1vw, 26px) 0 clamp(24px, 2.8vw, 34px);
}
.stefan-lede__name{
  color: var(--ink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}
.stefan-lede__role{
  color: #6F6254;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stefan-pull{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2; letter-spacing: -0.012em;
  color: var(--ink-deep); margin: 0 0 32px;
  position: relative;
}
.stefan-pull::before{
  content: "\201C";
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-style: italic;
  color: var(--accent); font-size: 1.5em; line-height: 0.4;
  position: absolute; left: -.6em; top: -.15em; opacity: .5;
}
.stefan-pull em{ color: var(--accent); font-style: italic; }
.stefan-signature{
  font-family: 'Caveat', cursive; font-weight: 500;
  font-size: 36px; color: var(--ink-deep); line-height: 1;
  letter-spacing: 0; margin: 0 0 4px;
  transform: rotate(-2deg); display: inline-block;
}
.stefan-role{
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #5C4A36; font-weight: 500;
  margin: 0;
}
.stefan-bio{
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--rule);
  color: #5C4A36; font-size: 17px; line-height: 1.6;
  max-width: 50ch;
}
.stefan-bio strong{ color: var(--ink-deep); font-weight: 500; }

.stefan-portrait-col{
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.stefan-grid .stefan-portrait{
  height: 100%;
  min-height: clamp(560px, 44vw, 660px);
  aspect-ratio: auto;
}
.stefan-portrait{
  aspect-ratio: 4/5;
  background: var(--ink-deep);
  background-image: url('../assets/cimbali-m40.jpg');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.stefan-portrait::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,10,5,0) 50%, rgba(15,10,5,0.4) 100%);
}
.stefan-portrait__badge{
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: var(--paper); padding: 14px 18px;
  border-left: 2px solid var(--accent);
}
.stefan-portrait__badge strong{
  display: block; font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 18px; color: var(--ink-deep);
  letter-spacing: -0.005em; line-height: 1;
}
.stefan-portrait__badge span{
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--counter);
  margin-top: 4px; display: block;
}
.stefan-meta{
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stefan-meta__cell{
  padding: 18px 0 18px 0;
  border-right: 1px solid var(--rule);
  padding-right: 16px;
}
.stefan-meta__cell:last-child{
  border-right: 0; padding-right: 0; padding-left: 16px;
}
.stefan-meta__num{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 28px; color: var(--accent);
  letter-spacing: -0.01em; line-height: 1; margin-bottom: 4px;
}
.stefan-meta__label{
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #5C4A36;
}
.stefan-source{
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #5C4A36; opacity: 0.7;
  margin-top: 12px;
}

@media (max-width: 860px){
  .stefan-grid{ grid-template-columns: 1fr; gap: 48px; }
  .stefan-quote-col{ align-content: start; padding-top: 0; }
  .stefan-lede{ margin: 18px 0 24px; }
  .stefan-pull{ font-size: 24px; }
  .stefan-pull::before{ position: static; font-size: 60px; line-height: 0.4; display: block; margin-bottom: -16px; }
  .stefan-grid .stefan-portrait{ height: auto; min-height: 0; aspect-ratio: 4/5; }
  .stefan-portrait__badge{ top: 16px; left: 16px; padding: 10px 14px; }
  .stefan-portrait__badge strong{ font-size: 15px; }
}

/* ==========================================================================
   Hero — Card Overlay variant (Index)
   Foto full-bleed, cream card sits bottom-left with content + trust pins.
   Used as: <section class="hero hero--card-overlay">...
   ========================================================================== */
.hero--card-overlay{
  min-height: 100vh;
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--ink-deep);
}
.hero--card-overlay .hero__photo-bleed{
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../assets/hero-cafe.jpg');
  background-size: cover; background-position: center 35%;
}
.hero--card-overlay .hero__photo-bleed::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,10,5,0.55) 0%, rgba(15,10,5,0.10) 30%, rgba(15,10,5,0.45) 100%),
    linear-gradient(90deg, rgba(15,10,5,0.40) 0%, rgba(15,10,5,0.10) 60%, transparent 100%);
}
.hero--card-overlay .hero__inner{
  position: relative; z-index: 2;
  display: grid; place-items: end start;
  min-height: 100vh;
  padding: clamp(140px, 18vh, 200px) clamp(24px, 4vw, 56px) clamp(48px, 7vh, 80px);
}
.hero__card{
  background: var(--paper);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 56px) clamp(32px, 4vw, 48px);
  max-width: 640px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 30px 80px rgba(15,10,5,0.32);
  position: relative;
}
.hero__card .eyebrow{ margin-bottom: 24px; }
.hero__card-h1{
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: clamp(36px, 4.4vw, 64px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.02em !important;
  color: var(--ink-deep) !important;
  margin: 0 0 24px !important;
  max-width: 100%;
}
.hero__card-h1 .accent{
  color: var(--accent); font-style: italic; font-weight: 500;
}
.hero__card-lead{
  font-size: 17px !important;
  line-height: 1.55 !important;
  color: var(--color-text-secondary) !important;
  margin: 0 0 28px !important;
}
.hero__card-lead strong{ color: var(--ink-deep); font-weight: 500; }
.hero__card .cta-row{
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px; justify-content: flex-start;
}
.hero__card-trust{
  display: flex; gap: 0;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.hero__card-trust .pin{
  flex: 1; padding-right: 16px;
  border-right: 1px solid var(--rule);
}
.hero__card-trust .pin:last-child{ border-right: 0; padding-right: 0; }
.hero__card-trust .pin + .pin{ padding-left: 16px; }
.hero__card-trust .pin__num{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 26px; line-height: 1;
  color: var(--accent); letter-spacing: -0.01em; margin-bottom: 6px;
}
.hero__card-trust .pin__label{
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #5C4A36; line-height: 1.4;
}

/* On pages with the overlay-hero, lift the site-header to sit transparent
   over the photo. Texts default to paper (on-dark) until scroll. */
body.has-dark-hero .site-header{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
body.has-dark-hero .site-header.on-dark .nav-link,
body.has-dark-hero .site-header.on-dark .header-phone,
body.has-dark-hero .site-header.on-dark .brand{
  color: var(--color-text-on-dark);
}
body.has-dark-hero .site-header.is-scrolled .nav-link,
body.has-dark-hero .site-header.is-scrolled .header-phone{
  color: var(--ink-deep);
}

@media (max-width: 860px){
  .hero--card-overlay .hero__inner{
    padding: 120px 16px 24px;
    place-items: end stretch;
  }
  .hero__card{
    padding: 28px 22px 24px;
    max-width: 100%;
  }
  .hero__card-h1{
    font-size: clamp(26px, 7.5vw, 36px) !important;
    margin-bottom: 18px !important;
  }
  .hero__card-lead{
    font-size: 16px !important;
    margin-bottom: 22px !important;
  }
  .hero__card .cta-row{ width: 100%; margin-bottom: 24px; }
  .hero__card .cta-row .btn{ flex: 1; text-align: center; padding: 14px 16px !important; font-size: 11px !important; }
  .hero__card-trust .pin{ padding-right: 10px; }
  .hero__card-trust .pin + .pin{ padding-left: 10px; }
  .hero__card-trust .pin__num{ font-size: 20px; }
  .hero__card-trust .pin__label{ font-size: 9px; }
}

/* ==========================================================================
   TOC list — editorial numbered rows
   Used on: Index (Vier Leistungen), Über uns (Drei Werte), Maschine-finden (Drei Schritte)
   Modifiers:
     .toc--no-cta       → drop the CTA column (3 cols instead of 4)
     .row--hero         → dark hero treatment for one emphasized row
     .row--no-aside     → collapse to 2 cols (num + body) when aside is empty
   ========================================================================== */
.toc{
  margin:0; padding:0; list-style:none;
  border-top:1px solid var(--rule);
}
.toc .row{
  display:grid;
  grid-template-columns: 140px 1fr minmax(280px, 38%) auto;
  align-items:start; gap:48px;
  padding:48px 0 56px;
  border-bottom:1px solid var(--rule);
  position:relative;
}
.toc--no-cta .row{
  grid-template-columns: 140px 1fr minmax(280px, 38%);
  gap:56px;
}
.toc--no-cta .row.row--no-aside{
  grid-template-columns: 140px 1fr;
}
.toc .row.row--no-aside{
  grid-template-columns: 140px 1fr auto;
}

.row__num{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight:300;
  font-size:clamp(72px, 9vw, 132px);
  line-height:.85; color:var(--accent);
  letter-spacing:-.04em;
  font-feature-settings:"lnum" 1;
}
.row__meta{
  font-family: var(--font-mono);
  font-size:11px; letter-spacing:.16em;
  text-transform:uppercase; color:var(--counter);
  margin-bottom:12px; opacity:.85;
}
.row__title{
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight:500;
  font-size: clamp(28px, 3.4vw, 48px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.015em !important;
  margin: 14px 0 0 !important;
}
.row__title em{ font-style:italic; color:var(--counter); }
.row__body{
  font-size:16px; line-height:1.55; color:var(--muted);
  margin-top:18px; max-width:42ch;
}
.row__cta{
  align-self:end; padding-bottom:6px;
  font-family: var(--font-mono);
  font-size:12px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ink-deep); text-decoration:none;
  border-bottom:1px solid var(--ink-deep); padding:0 0 6px;
  transition:color .2s, border-color .2s; white-space:nowrap;
}
.row__cta:hover{ color:var(--accent); border-color:var(--accent); }
.row__aside{ align-self:start; margin-top:14px; }

.about-values .toc--no-cta .row{
  grid-template-columns: 128px minmax(260px, 1fr) minmax(300px, 34%);
  align-items:center;
  gap:48px;
  padding:36px 0 40px;
}
.about-values .row__main{
  align-self:center;
}
.about-values .row__title{
  margin-top:10px !important;
}
.about-values .row__aside{
  align-self:center;
  margin-top:0;
}
.about-values .example{
  width:100%;
  padding:14px 18px 16px;
  gap:6px;
}

/* About page: fused Standort and Kontakt close */
.about-contact{
  padding: clamp(78px, 8vw, 124px) 0;
  overflow:hidden;
}
.about-contact__inner{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(420px, .88fr);
  grid-template-areas:
    "copy panel"
    "actions panel";
  align-items:center;
  gap:clamp(28px, 4vw, 48px) clamp(48px, 6vw, 92px);
  border-top:1px solid rgba(244,236,224,.18);
  padding-top:clamp(42px, 5vw, 66px);
}
.about-contact__copy{
  grid-area: copy;
}
.about-contact__copy h2{
  max-width:13ch;
  margin:0;
  text-wrap: balance;
}
.about-contact__copy h2 span{
  display:block;
}
.about-contact__copy p{
  max-width:46ch;
  margin-top:24px;
  font-size:clamp(16px, 1.2vw, 18px);
  line-height:1.55;
  color:rgba(244,236,224,.72);
}
.about-contact__actions{
  grid-area: actions;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:4px;
}
.about-contact__panel{
  grid-area: panel;
  display:grid;
  gap:clamp(24px, 3vw, 34px);
  padding:clamp(28px, 3.3vw, 42px);
  border:1px solid rgba(196,146,59,.25);
  border-radius:24px;
  background:
    linear-gradient(145deg, rgba(244,236,224,.07), rgba(244,236,224,.025)),
    rgba(15,10,5,.32);
  box-shadow:0 30px 88px rgba(0,0,0,.22);
}
.about-contact__address{
  display:grid;
  gap:10px;
  margin:0;
  padding-bottom:clamp(22px, 2.5vw, 30px);
  border-bottom:1px solid rgba(244,236,224,.14);
  font-style:normal;
}
.about-contact__address span,
.about-contact__detail span,
.about-contact__way span{
  color:var(--accent);
  font-family:var(--font-mono);
  font-size:10px;
  font-weight:700;
  letter-spacing:.09em;
  line-height:1.35;
  text-transform:uppercase;
}
.about-contact__address strong{
  max-width:20ch;
  color:var(--color-text-on-dark);
  font-family:"Fraunces", Georgia, serif;
  font-size:clamp(24px, 2.2vw, 34px);
  font-weight:500;
  line-height:1.05;
  letter-spacing:0;
}
.about-contact__address p{
  margin:0;
  color:rgba(244,236,224,.86);
  font-size:clamp(16px, 1.15vw, 18px);
  line-height:1.55;
}
.about-contact__details{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px 26px;
}
.about-contact__detail{
  display:grid;
  gap:8px;
  min-width:0;
}
.about-contact__detail a{
  color:var(--accent);
  font-family:var(--font-body);
  font-size:clamp(15px, 1.05vw, 17px);
  font-weight:600;
  line-height:1.45;
  text-decoration:none;
  overflow-wrap:normal;
  word-break:normal;
}
.about-contact__detail a:hover,
.about-contact__way:hover strong,
.about-contact__way:focus-visible strong{
  color:var(--color-text-on-dark);
}
.about-contact__ways{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:0;
  border-top:1px solid rgba(244,236,224,.14);
}
.about-contact__way{
  display:grid;
  gap:8px;
  align-items:start;
  padding:16px 16px 0 0;
  border-right:1px solid rgba(244,236,224,.12);
  border-bottom:0;
  color:inherit;
  text-decoration:none;
}
.about-contact__way:last-child{
  border-right:0;
  padding-right:0;
  padding-left:16px;
}
.about-contact__way + .about-contact__way{
  padding-left:16px;
}
.about-contact__way p{
  display:grid;
  gap:4px;
  margin:0;
}
.about-contact__way strong{
  color:rgba(244,236,224,.94);
  font-family:var(--font-body);
  font-size:15px;
  font-weight:700;
  line-height:1.25;
}
.about-contact__way small{
  color:rgba(244,236,224,.62);
  font-size:14px;
  line-height:1.35;
}

@media (max-width:980px){
  .about-contact__inner{
    grid-template-columns:1fr;
    grid-template-areas:
      "copy"
      "panel"
      "actions";
  }
  .about-contact__copy h2{
    max-width:16ch;
  }
  .about-contact__panel{
    max-width:720px;
  }
}

@media (max-width:680px){
  .about-contact{
    padding:72px 0;
  }
  .about-contact__inner{
    gap:34px;
    padding-top:28px;
  }
  .about-contact__copy h2{
    max-width:12.5ch;
  }
  .about-contact__copy p{
    margin-top:20px;
  }
  .about-contact__actions{
    display:grid;
    gap:12px;
    margin-top:26px;
  }
  .about-contact__actions .btn{
    width:100%;
    white-space:normal;
    line-height:1.2;
  }
  .about-contact__panel{
    gap:22px;
    padding:24px;
    border-radius:20px;
  }
  .about-contact__details{
    grid-template-columns:1fr;
  }
  .about-contact__detail a{
    overflow-wrap:anywhere;
  }
  .about-contact__ways{
    grid-template-columns:1fr;
  }
  .about-contact__way,
  .about-contact__way + .about-contact__way,
  .about-contact__way:last-child{
    grid-template-columns:34px minmax(0, 1fr);
    gap:14px;
    padding:15px 0;
    border-right:0;
    border-bottom:1px solid rgba(244,236,224,.12);
  }
  .about-contact__way:last-child{
    border-bottom:0;
    padding-bottom:0;
  }
}

/* Hero row — dark treatment, breaks out of container padding slightly */
.row--hero{
  background: var(--ink-deep); color: var(--color-text-on-dark);
  border-bottom-color: var(--ink-deep);
  margin: 24px calc(-1 * clamp(24px, 5vw, 64px));
  padding: 64px clamp(24px, 5vw, 64px);
  grid-template-columns: 140px 1fr minmax(320px, 36%);
  background-image:
    radial-gradient(ellipse at 85% 20%, rgba(196,146,59,.16), transparent 55%),
    radial-gradient(ellipse at 10% 110%, rgba(30,58,76,.28), transparent 60%);
  position:relative; isolation:isolate;
}
.row--hero::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  opacity:.05; mix-blend-mode:overlay;
  background-image:
    repeating-radial-gradient(circle at 30% 40%, rgba(255,255,255,.6) 0 .5px, transparent .5px 2px),
    repeating-radial-gradient(circle at 70% 70%, rgba(255,255,255,.4) 0 .5px, transparent .5px 3px);
}
.row--hero > *{ position:relative; z-index:1; }
.row--hero .row__num{ color: var(--accent); }
.row--hero .row__meta{ color: var(--accent); opacity:1; }
.row--hero .row__title{ color: var(--color-text-on-dark) !important; font-size: clamp(34px, 4.2vw, 64px) !important; }
.row--hero .row__title em{ color: var(--accent); }
.row--hero .row__body{ color: rgba(244,236,224,0.78); font-size:17px; max-width:46ch; }
.row--hero .row__cta{ color: var(--color-text-on-dark); border-color: var(--color-text-on-dark); }
.row--hero .row__cta:hover{ color: var(--accent); border-color: var(--accent); }

/* Pulse indicator (for service-status-style hero rows like Index/03) */
.row--hero .pulse{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-mono); font-size:11px; letter-spacing:.14em;
  text-transform:uppercase; color: var(--color-text-on-dark); opacity:.85;
  margin-bottom:14px;
}
.row--hero .pulse::before{
  content:""; width:8px; height:8px; border-radius:50%;
  background:#5BD17E; box-shadow:0 0 0 0 rgba(91,209,126,.6);
  animation:pulse 1.6s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(91,209,126,.6)}
  70%{box-shadow:0 0 0 10px rgba(91,209,126,0)}
  100%{box-shadow:0 0 0 0 rgba(91,209,126,0)}
}

/* Hero asides — phone card (Index/03), mini calc (Maschine-finden/03) */
.hero__call{
  display:flex; flex-direction:column; gap:6px;
  padding:18px 22px; border:1px solid var(--color-border-dark);
  background:rgba(0,0,0,.25); align-self:end;
}
.hero__call strong{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight:500; font-size:32px; line-height:1; color: var(--color-text-on-dark);
  letter-spacing:-.01em;
}
.hero__call span{
  font-family: var(--font-mono); font-size:10px; letter-spacing:.16em;
  text-transform:uppercase; color: rgba(244,236,224,.65);
}

.calc{
  align-self:end; display:flex; flex-direction:column; gap:6px;
  padding:20px 24px 22px;
  border:1px solid var(--color-border-dark); background:rgba(0,0,0,.25);
}
.calc__label{
  font-family: var(--font-mono); font-size:10px; letter-spacing:.18em;
  text-transform:uppercase; color: rgba(244,236,224,.65);
}
.calc__formula{
  font-family: var(--font-mono); font-size:13px; line-height:1.5;
  color: rgba(244,236,224,.85); letter-spacing:.01em;
}
.calc__result{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight:500; font-size:32px; line-height:1.05; color: var(--color-text-on-dark);
  letter-spacing:-.01em; margin-top:4px;
}
.calc__result em{ font-style:italic; color: var(--accent); }
.calc__foot{
  font-family: var(--font-mono); font-size:10px; letter-spacing:.16em;
  text-transform:uppercase; color: rgba(244,236,224,.55);
  margin-top:6px; padding-top:10px; border-top:1px solid rgba(196,146,59,.18);
}

/* Standard aside — quiet "example" card on Über uns (light variant) */
.example{
  border-left:2px solid var(--accent);
  background: var(--paper-elevated);
  padding:18px 22px 20px;
  display:flex; flex-direction:column; gap:8px;
}
.example__label{
  font-family: var(--font-mono); font-size:10px; letter-spacing:.18em;
  text-transform:uppercase; color: var(--accent); font-weight:500;
}
.example__quote{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:18px; line-height:1.35; color: var(--ink-deep);
  letter-spacing:-.005em; margin:0;
}

/* TOC footer (centered CTA below the list, used on Maschine-finden) */
.toc-foot{
  display:flex; flex-wrap:wrap; gap:20px;
  align-items:center; padding:48px 0 0;
}

/* Mobile collapse */
@media (max-width:860px){
  .toc .row,
  .toc--no-cta .row,
  .toc--no-cta .row.row--no-aside{
    grid-template-columns: 84px 1fr;
    gap:18px;
    padding:36px 0 40px;
  }
  .row__num{ font-size:60px; }
  .row__title{ font-size:30px !important; }
  .row__body{ grid-column: 1 / -1; margin:8px 0 0 0; }
  .row__cta{ grid-column: 1 / -1; justify-self:start; margin-top:18px; }
  .row__aside{ grid-column: 1 / -1; margin:18px 0 0 0; }

  .row--hero{
    margin: 16px calc(-1 * clamp(24px, 5vw, 32px));
    padding:40px clamp(24px, 5vw, 32px);
    grid-template-columns: 84px 1fr;
  }
  .row--hero .row__title{ font-size:32px !important; }
  .hero__call,
  .calc{ grid-column: 1 / -1; align-self:start; margin-top:18px; }

  .about-values .toc--no-cta .row{
    grid-template-columns: 76px 1fr;
    gap:16px;
    align-items:center;
    padding:30px 0 32px;
  }
  .about-values .row__num{
    font-size:56px;
  }
  .about-values .row__main{
    align-self:center;
  }
  .about-values .row__meta{
    margin-bottom:8px;
  }
  .about-values .row__title{
    margin-top:6px !important;
  }
  .about-values .row__aside{
    grid-column: 1 / -1;
    margin-top:14px;
  }
  .about-values .example{
    padding:14px 16px 16px;
  }
}

/* ==========================================================
   Hero: Vision + Versprechen
   Premium B2B photo lead, reduced copy, quiet trust strip.
   ========================================================== */

.hero.hero--statement{
  background: var(--paper);
  color: var(--ink-deep);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(22px, 3vw, 44px) clamp(16px, 4vw, 48px) clamp(30px, 4.5vw, 64px);
  display: grid;
  gap: 0;
  position: relative;
  isolation: isolate;
}

.hero.hero--statement::before,
.hero.hero--statement::after{
  content: none;
}

.hero__visual-card{
  position: relative;
  min-height: clamp(520px, 68svh, 700px);
  overflow: hidden;
  background: #17110b;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 28px 90px rgba(35, 24, 12, 0.16);
  isolation: isolate;
}

.hero__image{
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.95) contrast(1.04) brightness(0.88);
  transform: scale(1.01);
}

.hero__shade{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 10, 5, 0.82) 0%, rgba(15, 10, 5, 0.62) 36%, rgba(15, 10, 5, 0.22) 67%, rgba(15, 10, 5, 0.06) 100%),
    linear-gradient(180deg, rgba(15, 10, 5, 0.05) 0%, rgba(15, 10, 5, 0.34) 100%);
  pointer-events: none;
}

.hero--statement .hero__type{
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  max-width: 820px;
  padding: clamp(44px, 6vw, 86px) clamp(28px, 7vw, 92px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow--anchor{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  color: rgba(250,247,242,0.86);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow--anchor::before{
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

.hero__statement-h1{
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 4.85vw, 68px) !important;
  line-height: 1.06 !important;
  font-weight: 500;
  letter-spacing: 0 !important;
  color: var(--paper) !important;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  max-width: 18ch;
  text-wrap: balance;
}
.hero__statement-h1 span{
  display: block;
  color: var(--paper);
}

.hero__statement-lead{
  max-width: 430px;
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: rgba(250,247,242,0.88);
  font-size: clamp(17px, 1.24vw, 20px);
  line-height: 1.5;
}

.hero__statement-cta-row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 26px;
}

.hero__phone-inline{
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.hero__phone-inline::before{ content: none; }
.hero__phone-inline:hover{ color: var(--accent); }

.hero__service-strip{
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.5fr);
  gap: 0;
  padding: 0 clamp(22px, 3vw, 34px);
  background: var(--ink-deep);
  border-radius: 0 0 30px 30px;
  color: var(--paper);
}
.hero__service-strip > div{
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px) 24px 0;
}
.hero__service-strip > div + div{
  border-left: 1px solid rgba(245,239,230,0.18);
  padding-left: clamp(18px, 3vw, 34px);
}
.hero__service-strip span{
  color: rgba(245,239,230,0.68);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero__service-strip strong{
  color: var(--paper);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.35;
}

/* Make Header readable on light hero (no on-dark class on index now) */
.site-header:not(.on-dark):not(.is-scrolled){
  color: var(--ink-deep);
}
.site-header:not(.on-dark):not(.is-scrolled) .nav-link,
.site-header:not(.on-dark):not(.is-scrolled) .header-phone{
  color: var(--ink-deep);
}

@media (max-width: 1023px){
  .hero.hero--statement{
    padding-top: 24px;
  }
  .hero__visual-card{
    min-height: clamp(520px, 66svh, 640px);
  }
  .hero--statement .hero__type{
    max-width: 620px;
    padding: clamp(40px, 8vw, 74px) clamp(24px, 7vw, 58px);
  }
  .hero__statement-h1{
    font-size: clamp(42px, 8vw, 68px) !important;
    max-width: 13.5ch;
  }
  .hero__service-strip{
    grid-template-columns: 1fr;
  }
  .hero__service-strip > div + div{
    border-left: 0;
    border-top: 1px solid rgba(245,239,230,0.18);
    padding-left: 0;
  }
  .hero__service-strip > div{
    min-height: 92px;
  }
}

@media (max-width: 620px){
  .hero.hero--statement{
    padding: 14px 8px 30px;
  }
  .hero__visual-card{
    min-height: 520px;
    border-radius: 24px 24px 0 0;
  }
  .hero__image{
    object-position: 58% 50%;
  }
  .hero__shade{
    background:
      linear-gradient(180deg, rgba(15,10,5,0.12) 0%, rgba(15,10,5,0.56) 46%, rgba(15,10,5,0.88) 100%),
      linear-gradient(90deg, rgba(15,10,5,0.48), rgba(15,10,5,0.18));
  }
  .hero--statement .hero__type{
    justify-content: flex-end;
    padding: 30px 18px 28px;
  }
  .eyebrow--anchor{
    font-size: 10px;
    line-height: 1.4;
  }
  .hero__statement-h1{
    font-size: clamp(35px, 10.8vw, 49px) !important;
    line-height: 1.04 !important;
    max-width: 12.8ch;
  }
  .hero__statement-lead{
    font-size: 16px;
    line-height: 1.48;
    max-width: 30ch;
  }
  .hero__statement-cta-row{
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .hero__statement-cta-row .btn{
    width: 100%;
  }
  .hero__phone-inline{
    justify-content: center;
  }
  .hero__service-strip{
    padding: 0 18px;
    border-radius: 0 0 24px 24px;
  }
  .hero__service-strip > div{
    min-height: 84px;
    padding: 18px 0;
  }
  .hero__service-strip strong{
    font-size: 16px;
  }
}

/* ==========================================================
   Hero — Video Background variant (Mai 2026)
   Mit Reduced-Motion- und Mobile-Bandwidth-Fallback auf Poster-Bild.
   ========================================================== */

.hero--video{
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  background-color: #0F0A05;
  /* Fallback bis Hero-Video-Asset final ist: nutzt existierendes hero-cafe.jpg.
     Sobald Stefan-Werkstatt-Footage vorliegt, hier wieder Poster-JPG einsetzen
     und das <video>-Element im HTML reaktivieren. */
  background-image: url('../assets/hero-cafe.jpg');
  background-size: cover;
  background-position: center 35%;
  isolation: isolate;
  display: block;
}

.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

.hero__veil{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,5,0.42) 0%, rgba(15,10,5,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero--video .hero__inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) clamp(24px, 4vw, 56px) clamp(80px, 11vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(560px, 78vh, 820px);
  gap: clamp(20px, 3vw, 32px);
}

/* Texts on dark video — light variants */
.hero--video .eyebrow--anchor{
  color: var(--paper, #F5EFE6);
  opacity: 0.92;
  margin-bottom: 0;
}
.hero--video .eyebrow--anchor::before{
  background: var(--accent);
}

.hero--video .hero__statement-h1{
  color: var(--paper, #F5EFE6);
  max-width: 16ch;
  margin: 0;
  text-shadow: 0 2px 22px rgba(0,0,0,0.28);
}
.hero--video .hero__statement-h1 em{
  color: var(--accent);
}

.hero--video .hero__statement-lead{
  color: rgba(244, 236, 224, 0.92);
  max-width: 60ch;
  margin: 0;
}
.hero--video .hero__statement-lead strong{
  color: var(--paper, #F5EFE6);
}

.hero--video .hero__statement-cta-row{
  margin-top: clamp(8px, 1.5vw, 16px);
}

.hero--video .btn--ghost{
  color: var(--paper, #F5EFE6);
}
.hero--video .btn--ghost:hover{ color: var(--accent); }

/* Reduced-motion: kill the video, keep poster background */
@media (prefers-reduced-motion: reduce){
  .hero__video{ display: none; }
}

/* Mobile bandwidth saver: poster only, no video */
@media (max-width: 768px){
  .hero__video{ display: none; }
  .hero--video{
    min-height: clamp(440px, 78vh, 620px);
  }
  .hero--video .hero__inner{
    min-height: clamp(440px, 78vh, 620px);
    padding-top: clamp(72px, 12vw, 110px);
    padding-bottom: clamp(72px, 12vw, 110px);
  }
}

/* ==========================================================================
   Reduced Motion — User-Praeferenz respektieren (WCAG 2.2.2, 2.3.3)
   Stoppt endlose Loops und kollabiert Reveal-/Stagger-Motion zu Instant.
   Hover-Transitions bleiben (durch User-Interaktion getriggert, nicht auto).
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .marquee,
  .hero__bg-deco,
  .row--hero .pulse::before {
    animation: none !important;
  }
  .reveal,
  .reveal--visual,
  .word-stagger > span,
  .hero--tall .body-l,
  .hero--tall .cta-row,
  .hero--tall .eyebrow {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  .markets-media img,
  .markets-media__badge,
  .market-list__item::before,
  .market-list__description,
  .brand-panel a {
    transition: none !important;
  }
}

/* ==========================================================
   Homepage redesign sections 2-8
   Hero is intentionally untouched. These rules only target the
   conversion structure after the existing hero.
   ========================================================== */

.home-legacy[hidden] {
  display: none !important;
}

.home-section {
  position: relative;
}

.home-section .container {
  max-width: 1320px;
}

.home-section__intro {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  max-width: 940px;
  margin-bottom: clamp(42px, 6vw, 82px);
}

.home-section__intro h2 {
  max-width: 16ch;
  margin: 0;
}

.home-section__intro p {
  max-width: 58ch;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.home-section__intro--split {
  max-width: none;
}

@media (min-width: 980px) {
  .home-section__intro--split {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(48px, 7vw, 100px);
  }
  .home-section__intro--split p {
    padding-bottom: 8px;
  }
}

.home-markets {
  overflow: hidden;
}

.markets-section-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.markets-section-head h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em;
}

.markets-section-head p {
  max-width: 54ch;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.32vw, 21px);
  line-height: 1.5;
}

.markets-showcase {
  display: grid;
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.markets-media {
  --markets-media-radius: 24px;
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--markets-media-radius);
  background: var(--ink-deep);
  box-shadow: 0 30px 78px rgba(34, 24, 12, 0.13);
  isolation: isolate;
}

.markets-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(15, 10, 5, 0.02), rgba(15, 10, 5, 0.28)),
    linear-gradient(90deg, rgba(15, 10, 5, 0.16), rgba(15, 10, 5, 0.02) 58%);
  pointer-events: none;
}

.markets-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: 52% center;
  border-radius: inherit;
  filter: saturate(0.9) contrast(1.04) brightness(0.9);
  transition: opacity 360ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.markets-media.is-changing img {
  opacity: 0.38;
  transform: scale(1.035);
}

.markets-media__badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 36px);
  min-height: 42px;
  padding: 9px 16px 9px 13px;
  border: 1px solid rgba(244, 236, 224, 0.78);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.95);
  color: var(--ink-deep);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.005em;
  box-shadow: 0 14px 36px rgba(15, 10, 5, 0.16);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.markets-media__badge-icon {
  width: 17px;
  height: 17px;
  margin-right: 9px;
  flex: 0 0 auto;
  color: var(--counter);
  overflow: visible;
}

.markets-media__badge-icon circle,
.markets-media__badge-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.markets-media__badge--top {
  top: clamp(22px, 3vw, 38px);
  left: clamp(18px, 3vw, 34px);
}

.markets-media__badge--bottom {
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(24px, 3vw, 40px);
}

.market-list {
  display: grid;
  border-top: 1px solid rgba(200, 184, 160, 0.82);
}

.market-list__item {
  position: relative;
  width: 100%;
  display: grid;
  gap: 12px;
  padding: clamp(25px, 3vw, 36px) 0;
  border: 0;
  border-bottom: 1px solid rgba(200, 184, 160, 0.82);
  background: transparent;
  color: rgba(92, 74, 54, 0.68);
  text-align: left;
  cursor: pointer;
}

.market-list__item::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(220px, 42%);
  height: 1px;
  content: "";
  background: var(--counter);
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.market-list__item:hover,
.market-list__item:focus-visible {
  color: rgba(42, 31, 18, 0.86);
}

.market-list__item:focus-visible {
  outline: 3px solid rgba(196, 146, 59, 0.32);
  outline-offset: 6px;
}

.market-list__item.is-active {
  color: var(--ink-deep);
}

.market-list__item.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.market-list__title {
  display: block;
  padding-right: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(32px, 3.55vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.market-list__description {
  display: block;
  max-width: 53ch;
  color: var(--ink-deep);
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.48;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transform: translateY(-4px);
  transition: max-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 240ms ease, transform 320ms ease;
}

.market-list__item.is-active .market-list__description {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.process-step__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
}

@media (min-width: 980px) {
  .markets-showcase {
    grid-template-columns: minmax(420px, 0.95fr) minmax(500px, 1.05fr);
  }

  .markets-media {
    min-height: clamp(520px, 43vw, 620px);
  }

  .markets-media img {
    min-height: clamp(520px, 43vw, 620px);
  }
}

.brand-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 24px;
  overflow: hidden;
}

.brand-panel li {
  min-height: clamp(104px, 11vw, 148px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.brand-panel li:nth-child(2n) {
  border-right: 0;
}

.brand-panel li:last-child {
  grid-column: 1 / -1;
  border-bottom: 0;
}

.brand-panel a {
  display: inline-grid;
  place-items: center;
  overflow: visible;
  line-height: 0;
  transform: translateZ(0);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), opacity 350ms ease;
}

.brand-panel a:hover {
  opacity: 0.94;
  transform: scale(1.055);
}

.brand-panel a:focus-visible {
  outline: 2px solid rgba(196, 146, 59, 0.44);
  outline-offset: 12px;
  border-radius: 8px;
}

.brand-panel img {
  max-height: 42px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.home-trust {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.home-trust .home-section__intro {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.home-trust .home-section__intro--split {
  grid-template-columns: 1fr;
  gap: 14px;
}

.home-trust .home-section__intro .eyebrow {
  justify-content: center;
}

.home-trust .home-section__intro h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px) !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

.home-trust .home-section__intro p {
  max-width: 54ch;
  margin: 0;
  padding-bottom: 0;
}

.home-trust .brand-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 4.2vw, 58px);
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(24px, 3.2vw, 38px) clamp(22px, 4vw, 52px);
  border-color: rgba(200, 184, 160, 0.58);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.48);
  box-shadow: 0 18px 54px rgba(42, 31, 18, 0.045);
}

.home-trust .brand-panel li,
.home-trust .brand-panel li:nth-child(2n),
.home-trust .brand-panel li:last-child {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
}

.home-trust .brand-panel img {
  max-height: clamp(26px, 2.6vw, 34px);
  max-width: clamp(112px, 12vw, 156px);
  opacity: 0.78;
  filter: brightness(0) saturate(0%) opacity(0.82);
  transition:
    opacity 300ms ease,
    filter 300ms ease;
}

.home-trust .brand-panel a:hover img,
.home-trust .brand-panel a:focus-visible img {
  opacity: 0.96;
  filter: brightness(0) saturate(0%) opacity(0.96);
}

.brand-panel__note {
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: rgba(42, 31, 18, 0.58);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 860px) {
  .brand-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .brand-panel li,
  .brand-panel li:nth-child(2n),
  .brand-panel li:last-child {
    grid-column: auto;
    border-bottom: 0;
    border-right: 1px solid var(--rule);
  }
  .brand-panel li:last-child {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .home-trust .brand-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
    border-radius: 24px;
  }

  .home-trust .brand-panel li:last-child {
    grid-column: 1 / -1;
  }
}

.package-layout,
.stefan-layout {
  display: grid;
  gap: clamp(38px, 6vw, 92px);
}

@media (min-width: 980px) {
  .package-layout,
  .stefan-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

.package-layout h2,
.stefan-copy h2 {
  max-width: 16ch;
  margin: 0;
}

.package-title__line {
  display: block;
}

.package-card__content span,
.stefan-facts span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--counter);
}

.process-journey {
  --journey-progress: 0;
}

.process-journey__intro {
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 96px);
}

.process-journey__intro h2 {
  max-width: 14ch;
  margin: 0;
}

.process-journey__intro p {
  max-width: 46ch;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.58;
}

.process-journey__stage {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.process-journey__rail {
  position: sticky;
  top: 132px;
  display: grid;
  width: 46px;
  height: min(72vh, 700px);
  min-height: 430px;
  justify-items: center;
}

.process-journey__line,
.process-journey__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(200, 184, 160, 0.78);
}

.process-journey__progress {
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%) scaleY(var(--journey-progress));
  transform-origin: top;
  transition: transform 160ms linear;
}

.process-journey__node {
  position: absolute;
  top: calc(var(--node-pos) * 100%);
  left: 50%;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-elevated);
  box-shadow: 0 0 0 8px var(--paper-elevated);
  transform: translate(-50%, -50%) scale(0.92);
  transition: border-color 360ms cubic-bezier(0.22, 1, 0.36, 1), background 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-journey__node::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--rule);
  transition: background 360ms ease;
}

.process-journey__node.is-active {
  border-color: rgba(196, 146, 59, 0.62);
  background: var(--paper);
  transform: translate(-50%, -50%) scale(1);
}

.process-journey__node.is-active::after {
  background: var(--accent);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list--journey {
  border-top: 1px solid var(--rule);
}

.process-list--journey > li {
  display: grid;
  grid-template-columns: minmax(82px, 0.18fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  min-height: clamp(280px, 36vh, 390px);
  padding: clamp(58px, 7.6vw, 112px) 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0.66;
  transform: translateY(14px);
  transition: opacity 460ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-list--journey > li.is-active {
  opacity: 1;
  transform: translateY(0);
}

.process-step__content {
  max-width: 68ch;
}

.process-step__phase {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--counter);
}

.process-list h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(36px, 4.2vw, 58px) !important;
  font-weight: 500;
  line-height: 0.98 !important;
  letter-spacing: -0.025em;
}

.process-list p {
  max-width: 56ch;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.58;
}

.process-journey__cta {
  margin-left: calc(46px + clamp(24px, 4vw, 58px));
  margin-top: clamp(50px, 6vw, 88px);
}

@media (min-width: 900px) {
  .process-journey__intro {
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.56fr);
  }

  .process-journey__stage {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .process-journey__rail {
    width: 68px;
    min-height: 520px;
  }

  .process-journey__cta {
    margin-left: calc(68px + clamp(24px, 4vw, 58px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-journey,
  .process-journey * {
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .process-journey.is-reduced-motion .process-list--journey > li {
    opacity: 1;
    transform: none;
  }
}

.quiet-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: clamp(36px, 5vw, 64px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--accent);
}

.package-copy p {
  max-width: 42ch;
  margin: 24px auto 0;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.55;
  text-align: center;
}

.package-copy {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.package-copy h2 {
  max-width: 22ch;
  font-size: clamp(26px, 4.2vw, 54px) !important;
  line-height: 1.04 !important;
}

.package-collage {
  display: grid;
  width: 100%;
  gap: clamp(16px, 1.9vw, 26px);
  grid-template-columns: minmax(0, 1fr);
}

.package-card {
  --package-image-scale: 1.001;
  --package-hover-y: 0px;
  --package-reveal-y: 0px;
  position: relative;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  background: var(--paper-elevated);
  box-shadow: 0 24px 70px rgba(35, 24, 12, 0.08);
  transform: translate3d(0, calc(var(--package-hover-y) + var(--package-reveal-y)), 0) scale(1);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-package .package-card.reveal {
  --package-reveal-y: var(--motion-reveal-distance);
  opacity: 0;
  transform: translate3d(0, calc(var(--package-hover-y) + var(--package-reveal-y)), 0) scale(0.985);
  transition:
    opacity var(--motion-reveal-duration) var(--motion-reveal-ease) var(--reveal-delay, 0ms),
    transform var(--motion-reveal-duration) var(--motion-reveal-ease) var(--reveal-delay, 0ms);
}

.home-package .package-card.reveal.is-in {
  --package-reveal-y: 0px;
  opacity: 1;
  transform: translate3d(0, var(--package-hover-y), 0) scale(1);
}

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 10, 5, 0.02) 0%, rgba(15, 10, 5, 0.12) 42%, rgba(15, 10, 5, 0.46) 76%, rgba(15, 10, 5, 0.78) 100%);
  pointer-events: none;
}

.package-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(var(--package-image-scale));
  transition: none;
}

.package-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.3vw, 30px);
  color: var(--on-dark-cream);
}

.package-card__content span {
  color: rgba(244, 236, 224, 0.78);
}

.package-card__content p {
  max-width: 32ch;
  margin: 0;
  color: rgba(244, 236, 224, 0.94);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.48;
}

.package-card--main {
  min-height: clamp(420px, 58vw, 620px);
}

.package-card--main .package-card__content p {
  max-width: 34ch;
  font-size: clamp(16px, 1.15vw, 18px);
}

.package-card--water {
  background:
    radial-gradient(circle at 50% 30%, rgba(250, 247, 242, 0.98) 0%, rgba(244, 236, 224, 0.78) 42%, rgba(200, 184, 160, 0.44) 100%),
    var(--paper-elevated);
}

.package-card--water::after {
  background:
    linear-gradient(180deg, rgba(15, 10, 5, 0) 0%, rgba(15, 10, 5, 0.08) 42%, rgba(15, 10, 5, 0.44) 76%, rgba(15, 10, 5, 0.76) 100%);
}

.package-card--water img {
  --package-image-scale: 1.18;
  object-fit: contain;
  object-position: center 34%;
  padding: clamp(20px, 2.8vw, 34px) clamp(18px, 2.7vw, 34px) clamp(86px, 7vw, 112px);
  background: transparent;
  mix-blend-mode: multiply;
  filter: saturate(0.94) contrast(1.04);
}

.package-card--beans img {
  object-position: center 44%;
}

.package-card--care img {
  object-position: center 50%;
}

.package-card--service img {
  object-position: center 42%;
}

.package-card__placeholder {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-error);
  box-shadow: 0 0 0 5px rgba(250, 247, 242, 0.76);
}

@media (hover: hover) and (pointer: fine) {
  .package-card:hover {
    --package-hover-y: -2px;
  }

  .home-package .package-card.reveal.is-in:hover {
    transition:
      opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.package-card:focus-visible,
.package-card:focus-within {
  outline: 2px solid rgba(196, 146, 59, 0.52);
  outline-offset: 4px;
  --package-hover-y: -2px;
}

@media (prefers-reduced-motion: reduce) {
  .package-card {
    transition: none !important;
  }

  .package-card:hover,
  .package-card:focus-visible,
  .package-card:focus-within {
    transform: translateY(0);
  }
}

@media (min-width: 980px) {
  .package-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(48px, 6vw, 82px);
  }

  .package-collage {
    grid-template-columns: minmax(230px, 0.78fr) minmax(420px, 1.35fr) minmax(230px, 0.78fr);
    grid-template-areas:
      "water machine beans"
      "care machine service";
    grid-template-rows: minmax(270px, 1fr) minmax(270px, 1fr);
  }

  .package-card {
    min-height: 270px;
  }

  .package-card--main {
    grid-area: machine;
    grid-row: 1 / span 2;
    min-height: clamp(590px, 50vw, 720px);
  }

  .package-card--water {
    grid-area: water;
  }

  .package-card--beans {
    grid-area: beans;
  }

  .package-card--care {
    grid-area: care;
  }

  .package-card--service {
    grid-area: service;
  }
}

@media (min-width: 700px) and (max-width: 979px) {
  .package-layout {
    gap: 44px;
  }

  .package-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "machine machine"
      "water beans"
      "care service";
  }

  .package-card--main {
    grid-area: machine;
    min-height: 500px;
  }

  .package-card--water {
    grid-area: water;
  }

  .package-card--beans {
    grid-area: beans;
  }

  .package-card--care {
    grid-area: care;
  }

  .package-card--service {
    grid-area: service;
  }

  .package-card:not(.package-card--main) {
    min-height: 310px;
  }
}

@media (max-width: 760px) {
  .package-card {
    min-height: 300px;
    border-radius: 20px;
  }

  .package-card--main {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .package-collage {
    gap: 14px;
  }

  .package-card,
  .package-card--main {
    min-height: 340px;
  }

  .package-card--water,
  .package-card--beans,
  .package-card--care,
  .package-card--service {
    min-height: 270px;
  }

  .package-card__content {
    padding: 18px;
  }
}

.stefan-layout {
  align-items: center;
}

.stefan-portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink-deep);
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 80px rgba(35, 24, 12, 0.13);
}

.stefan-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.72) contrast(1.04) sepia(0.12);
}

.stefan-copy {
  display: grid;
  gap: 20px;
}

.stefan-copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.stefan-copy .body-l {
  font-size: clamp(18px, 1.35vw, 21px);
}

.stefan-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.stefan-facts span {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-deep);
  background: rgba(250, 247, 242, 0.56);
}

.home-final {
  padding-top: clamp(92px, 13vh, 170px);
  padding-bottom: clamp(92px, 13vh, 170px);
}

.final-block {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}

.final-block h2 {
  max-width: 14ch;
  margin: 0;
}

.final-block p {
  max-width: 50ch;
  margin: 0;
  color: rgba(244, 236, 224, 0.78);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.final-phone {
  color: var(--color-text-on-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-top: clamp(16px, 3vw, 34px);
}

.final-phone:hover {
  color: var(--accent);
}

.quiet-cta--dark {
  justify-content: center;
  margin-top: 14px;
}

.quiet-cta--dark .text-link {
  color: var(--color-text-on-dark);
}

.quiet-cta--dark .text-link:hover {
  color: var(--accent);
}

@media (max-width: 620px) {
  .home-section__intro h2,
  .package-layout h2,
  .stefan-copy h2,
  .final-block h2 {
    max-width: none;
  }

  .process-journey__intro {
    gap: 22px;
    margin-bottom: 38px;
  }

  .process-journey__intro h2 {
    max-width: 12ch;
  }

  .process-journey__stage {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 20px;
  }

  .process-journey__rail {
    position: relative;
    top: auto;
    width: 34px;
    height: auto;
    min-height: 100%;
    align-self: stretch;
  }

  .process-list--journey > li {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 14px;
    padding: 44px 0;
  }

  .process-step__num {
    font-size: clamp(42px, 14vw, 58px);
  }

  .process-journey__cta {
    margin-left: 0;
  }

  .markets-section-head {
    justify-items: start;
    margin-bottom: 34px;
    text-align: left;
  }

  .markets-section-head h2 {
    font-size: clamp(36px, 11vw, 48px) !important;
  }

  .markets-media {
    min-height: 330px;
    border-radius: 24px;
  }

  .markets-media img {
    min-height: 330px;
  }

  .markets-media__badge {
    min-height: 38px;
    max-width: calc(100% - 28px);
    padding: 8px 13px 8px 11px;
    font-size: 12px;
  }

  .markets-media__badge--top {
    top: 18px;
    left: 14px;
  }

  .markets-media__badge--bottom {
    right: 14px;
    bottom: 18px;
  }

  .market-list__title {
    font-size: clamp(29px, 8.8vw, 38px);
  }

  .market-list__description {
    font-size: 16px;
    line-height: 1.52;
  }

  .brand-panel {
    border-radius: 18px;
  }

  .brand-panel li {
    min-height: 96px;
    padding: 20px 16px;
  }

  .brand-panel img {
    max-height: 32px;
    max-width: 132px;
  }

  .quiet-cta,
  .quiet-cta--dark {
    align-items: stretch;
    flex-direction: column;
  }

  .quiet-cta .btn,
  .quiet-cta .text-link {
    width: 100%;
    justify-content: center;
  }
}

/* Machines page */
.machines-page {
  background: var(--paper);
  color: var(--ink-deep);
}

.machines-page .site-header:not(.on-dark):not(.is-scrolled) {
  background: rgba(245, 239, 230, 0.9);
  border-bottom: 1px solid rgba(74, 68, 61, 0.16);
  color: var(--ink-deep);
}

.machine-hero {
  background: var(--paper);
  padding: clamp(22px, 3vw, 44px) clamp(16px, 4vw, 48px) clamp(30px, 4.5vw, 64px);
}

.machine-hero__frame {
  width: 100%;
  max-width: none;
  margin: 0;
}

.machine-hero__panel {
  position: relative;
  min-height: clamp(520px, 66svh, 700px);
  overflow: hidden;
  background: #17110b;
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(35, 24, 12, 0.16);
  isolation: isolate;
}

.machine-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.94) contrast(1.04) brightness(0.9);
  transform: scale(1.01);
}

.machine-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 10, 5, 0.88) 0%, rgba(15, 10, 5, 0.68) 38%, rgba(15, 10, 5, 0.24) 70%, rgba(15, 10, 5, 0.1) 100%),
    linear-gradient(180deg, rgba(15, 10, 5, 0.04) 0%, rgba(15, 10, 5, 0.36) 100%);
  pointer-events: none;
}

.machine-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  max-width: 760px;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 7vw, 92px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.machine-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  color: rgba(250, 247, 242, 0.86);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.machine-hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

.machine-hero__content h1 {
  max-width: 15ch;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  color: var(--paper) !important;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 4.85vw, 68px) !important;
  font-weight: 500;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.machine-hero__content .body-l {
  max-width: 560px;
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: rgba(250, 247, 242, 0.88);
  font-size: clamp(17px, 1.24vw, 20px);
  line-height: 1.5;
}

.machine-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: 0;
}

.machine-hero__text-link {
  color: var(--paper);
  border-color: rgba(245, 239, 230, 0.88);
}

.coffee-hero__photo {
  object-position: 44% 50%;
  filter: saturate(0.96) contrast(1.06) brightness(0.86);
}

.coffee-hero__shade {
  background:
    linear-gradient(90deg, rgba(15, 10, 5, 0.9) 0%, rgba(15, 10, 5, 0.72) 40%, rgba(15, 10, 5, 0.28) 72%, rgba(15, 10, 5, 0.12) 100%),
    linear-gradient(180deg, rgba(15, 10, 5, 0.08) 0%, rgba(15, 10, 5, 0.42) 100%);
}

.coffee-hero__content h1 {
  max-width: 14ch;
}

.leistungen-hero__photo {
  object-position: 58% 52%;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
}

.leistungen-hero__shade {
  background:
    linear-gradient(90deg, rgba(15, 10, 5, 0.92) 0%, rgba(15, 10, 5, 0.74) 42%, rgba(15, 10, 5, 0.28) 74%, rgba(15, 10, 5, 0.14) 100%),
    linear-gradient(180deg, rgba(15, 10, 5, 0.08) 0%, rgba(15, 10, 5, 0.46) 100%);
}

.leistungen-hero__content h1 {
  max-width: 13ch;
}

/* Leistungen page - premium service overview */
.leistungen-overview {
  position: relative;
  overflow: hidden;
  padding-top: clamp(86px, 10vw, 142px);
  padding-bottom: clamp(92px, 11vw, 154px);
  border-top: 1px solid rgba(200, 184, 160, 0.58);
  border-bottom: 1px solid rgba(200, 184, 160, 0.46);
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0.98), rgba(250, 247, 242, 0.98)),
    var(--paper);
}

.leistungen-overview__header {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto clamp(42px, 6vw, 78px);
  text-align: center;
}

.leistungen-overview__header .eyebrow {
  margin: 0;
}

.leistungen-overview__header h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.leistungen-overview__header p {
  max-width: 660px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.58;
}

.leistungen-overview__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 1px;
  border: 1px solid rgba(200, 184, 160, 0.62);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(200, 184, 160, 0.7), rgba(200, 184, 160, 0.22)),
    rgba(200, 184, 160, 0.48);
  box-shadow: 0 34px 90px rgba(42, 31, 18, 0.08);
}

.leistungen-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: clamp(500px, 40vw, 590px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.94), rgba(245, 239, 230, 0.92)),
    var(--paper-elevated);
  box-shadow: none;
  isolation: isolate;
}

.leistungen-card__media {
  position: relative;
  overflow: hidden;
  height: clamp(238px, 20vw, 302px);
  min-height: clamp(238px, 20vw, 302px);
  background: var(--ink-deep);
}

.leistungen-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 10, 5, 0.04), rgba(15, 10, 5, 0.24)),
    linear-gradient(90deg, rgba(15, 10, 5, 0.1), transparent 58%);
  pointer-events: none;
}

.leistungen-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04) brightness(0.96);
}

.leistungen-card--beratung .leistungen-card__media img {
  object-position: 48% 50%;
}

.leistungen-card--vertrieb .leistungen-card__media img {
  object-position: 52% 50%;
}

.leistungen-card--service .leistungen-card__media img {
  object-position: 50% 52%;
  filter: saturate(0.72) contrast(1.06) brightness(0.9) sepia(0.08);
}

.leistungen-card--wasser .leistungen-card__media {
  background:
    radial-gradient(circle at 50% 44%, rgba(250, 247, 242, 0.84), rgba(244, 230, 213, 0.36) 58%, rgba(232, 210, 184, 0.28)),
    linear-gradient(135deg, rgba(250, 247, 242, 0.96), rgba(231, 211, 185, 0.78));
}

.leistungen-card--wasser .leistungen-card__media::after {
  background:
    linear-gradient(180deg, transparent 34%, rgba(42, 31, 18, 0.11));
  box-shadow: inset 0 0 0 1px rgba(250, 247, 242, 0.44);
}

.leistungen-card--wasser .leistungen-card__media img {
  padding: clamp(24px, 3vw, 44px);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.02);
}

.leistungen-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.leistungen-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(196, 146, 59, 0.38);
  border-radius: 999px;
  background: rgba(196, 146, 59, 0.08);
  color: var(--accent-hover);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.12em;
}

.leistungen-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 2.8vw, 38px);
}

.leistungen-card__kicker {
  margin: 0;
  color: var(--counter);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.leistungen-card h3 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(28px, 2.35vw, 36px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.leistungen-card__text {
  max-width: 38ch;
  margin: 17px 0 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.56;
}

.leistungen-card__keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: clamp(20px, 2.4vw, 28px) 0 0;
}

.leistungen-card__keywords span {
  display: inline-flex;
  align-items: center;
  color: rgba(42, 31, 18, 0.78);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
  white-space: nowrap;
}

.leistungen-card__keywords span + span::before {
  content: "·";
  margin: 0 9px;
  color: var(--accent);
}

.leistungen-overview__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(200, 184, 160, 0.58);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(250, 247, 242, 0.86), rgba(245, 239, 230, 0.7)),
    var(--paper-elevated);
  box-shadow:
    0 22px 60px rgba(42, 31, 18, 0.06),
    inset 0 1px 0 rgba(250, 247, 242, 0.72);
}

.leistungen-overview__cta-copy h3 {
  max-width: 22ch;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(26px, 2.4vw, 36px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.leistungen-overview__cta-copy p {
  max-width: 54ch;
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.56;
}

.leistungen-overview__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px 22px;
}

.leistungen-overview__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(42, 31, 18, 0.62);
  color: var(--ink-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    border-color 260ms ease;
}

.leistungen-overview__call:hover,
.leistungen-overview__call:focus-visible {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.leistungen-overview__call:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

/* Leistungen page - linear service journey */
.leistungen-journey {
  --journey-progress: 0;
}

.leistungen-journey__intro {
  margin-bottom: clamp(48px, 7vw, 92px);
}

.leistungen-journey__stage {
  display: block;
}

.leistungen-journey__node {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-elevated);
  box-shadow: 0 0 0 8px var(--paper-elevated);
  transform: scale(0.9);
  transition:
    border-color 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background 360ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leistungen-journey__node::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--rule);
  transition: background 360ms ease;
}

.leistungen-journey__node.is-active {
  border-color: rgba(196, 146, 59, 0.62);
  background: var(--paper);
  transform: scale(1);
}

.leistungen-journey__node.is-active::after {
  background: var(--accent);
}

.leistungen-journey__list {
  --timeline-col-width: 68px;
  --timeline-line-x: calc(var(--timeline-col-width) / 2);
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(200, 184, 160, 0.74);
  list-style: none;
}

.leistungen-journey__list::before,
.leistungen-journey__list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--timeline-line-x);
  z-index: 0;
  width: 1px;
  background: rgba(200, 184, 160, 0.72);
  transform: translateX(-50%);
}

.leistungen-journey__list::after {
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%) scaleY(var(--journey-progress));
  transform-origin: top;
  transition: transform 160ms linear;
}

.leistungen-journey__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--timeline-col-width) minmax(260px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  min-height: clamp(370px, 48vh, 520px);
  padding: clamp(54px, 7.2vw, 94px) 0;
  border-bottom: 1px solid rgba(200, 184, 160, 0.74);
  opacity: 0.58;
  transform: translateY(12px);
  transition:
    opacity 460ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leistungen-journey__timeline {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: stretch;
  place-items: center;
}

.leistungen-journey__step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.leistungen-journey__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(200, 184, 160, 0.58);
  border-radius: 26px;
  background: var(--ink-deep);
  box-shadow: 0 24px 64px rgba(42, 31, 18, 0.08);
}

.leistungen-journey__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 10, 5, 0.04), rgba(15, 10, 5, 0.24)),
    linear-gradient(90deg, rgba(15, 10, 5, 0.10), transparent 62%);
}

.leistungen-journey__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04) brightness(0.96);
}

.leistungen-journey__step:nth-child(1) .leistungen-journey__visual img {
  object-position: 48% 50%;
}

.leistungen-journey__step:nth-child(2) .leistungen-journey__visual img {
  object-position: 52% 50%;
}

.leistungen-journey__step:nth-child(3) .leistungen-journey__visual img {
  object-position: 50% 52%;
  filter: saturate(0.72) contrast(1.06) brightness(0.9) sepia(0.08);
}

.leistungen-journey__visual--product {
  background:
    radial-gradient(circle at 50% 44%, rgba(250, 247, 242, 0.86), rgba(244, 230, 213, 0.36) 58%, rgba(232, 210, 184, 0.28)),
    linear-gradient(135deg, rgba(250, 247, 242, 0.96), rgba(231, 211, 185, 0.78));
}

.leistungen-journey__visual--product::after {
  background: linear-gradient(180deg, transparent 34%, rgba(42, 31, 18, 0.1));
  box-shadow: inset 0 0 0 1px rgba(250, 247, 242, 0.44);
}

.leistungen-journey__visual--product img {
  padding: clamp(26px, 4vw, 54px);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.02);
}

.leistungen-journey__copy {
  max-width: 620px;
}

.leistungen-journey__label {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.leistungen-journey__copy h3 {
  max-width: 14ch;
  margin: 18px 0 16px;
  color: var(--ink-deep);
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.leistungen-journey__copy p {
  max-width: 44ch;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.58;
}

.leistungen-journey__keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: clamp(20px, 2.4vw, 28px);
}

.leistungen-journey__keywords span {
  display: inline-flex;
  align-items: center;
  color: rgba(42, 31, 18, 0.78);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
  white-space: nowrap;
}

.leistungen-journey__keywords span + span::before {
  content: "·";
  margin: 0 9px;
  color: var(--accent);
}

.leistungen-journey__cta {
  margin-left: calc(68px + clamp(24px, 4vw, 58px));
  margin-top: clamp(48px, 6vw, 78px);
}

.leistungen-journey.is-reduced-motion .leistungen-journey__step {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .leistungen-journey__list {
    --timeline-col-width: 52px;
  }

  .leistungen-journey__step {
    grid-template-columns: var(--timeline-col-width) minmax(220px, 0.44fr) minmax(0, 0.56fr);
    gap: 28px;
    min-height: 380px;
  }

  .leistungen-journey__copy h3 {
    font-size: clamp(32px, 4.8vw, 46px) !important;
  }

  .leistungen-journey__cta {
    margin-left: calc(var(--timeline-col-width) + 28px);
  }
}

@media (max-width: 760px) {
  .leistungen-journey__list {
    --timeline-col-width: 34px;
  }

  .leistungen-journey__node {
    width: 13px;
    height: 13px;
    box-shadow: 0 0 0 7px var(--paper-elevated);
  }

  .leistungen-journey__node::after {
    inset: 3.5px;
  }

  .leistungen-journey__step {
    grid-template-columns: var(--timeline-col-width) minmax(0, 1fr);
    gap: 22px 14px;
    min-height: 0;
    padding: 34px 0;
  }

  .leistungen-journey__timeline {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .leistungen-journey__visual {
    grid-column: 2;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .leistungen-journey__copy {
    grid-column: 2;
  }

  .leistungen-journey__copy h3 {
    margin-top: 15px;
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  .leistungen-journey__cta {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .leistungen-overview__grid {
    gap: 1px;
  }

  .leistungen-card {
    min-height: 540px;
  }

  .leistungen-card__media {
    height: 226px;
    min-height: 226px;
  }

  .leistungen-card h3 {
    font-size: clamp(26px, 3.2vw, 34px) !important;
  }
}

@media (max-width: 760px) {
  .leistungen-overview {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .leistungen-overview__header {
    justify-items: start;
    text-align: left;
  }

  .leistungen-overview__header h2 {
    max-width: 11ch;
    font-size: clamp(38px, 12vw, 58px) !important;
  }

  .leistungen-overview__grid {
    grid-template-columns: 1fr;
  }

  .leistungen-card {
    min-height: 0;
  }

  .leistungen-card__media {
    height: 218px;
    min-height: 218px;
  }

  .leistungen-card__body {
    padding: 26px 22px 28px;
  }

  .leistungen-card__meta {
    align-items: flex-start;
    gap: 10px;
  }

  .leistungen-card__number {
    min-width: 38px;
    min-height: 26px;
    font-size: 10px;
  }

  .leistungen-overview__cta {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .leistungen-overview__cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .leistungen-overview__cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .leistungen-overview__cta-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .leistungen-overview__call {
    align-self: center;
    justify-content: center;
    padding-bottom: 2px;
  }
}

/* Leistungen page - accessory components */
.accessories-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.98), rgba(245, 239, 230, 0.96)),
    var(--paper);
}

.accessories-section__header {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  max-width: min(100%, 880px) !important;
  margin: 0 auto clamp(46px, 5.8vw, 78px) !important;
  text-align: center !important;
  column-gap: 0;
}

.accessories-section__header .eyebrow {
  grid-column: 1;
  justify-content: center;
}

.accessories-section__header h2 {
  grid-column: 1;
  max-width: min(100%, 780px);
  margin-inline: auto;
  text-wrap: balance;
}

.accessories-section__header p {
  grid-column: 1;
  max-width: 58ch;
  margin: clamp(14px, 1.6vw, 20px) auto 0;
  text-align: center;
  align-self: auto;
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
}

.accessory-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(200, 184, 160, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.94), rgba(245, 239, 230, 0.9)),
    var(--paper-elevated);
  box-shadow: 0 28px 74px rgba(42, 31, 18, 0.07);
  isolation: isolate;
}

.accessory-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.52), transparent 34%),
    radial-gradient(circle at 18% 0%, rgba(196, 146, 59, 0.1), transparent 36%);
}

.accessory-card__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 14px 14px 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(200, 184, 160, 0.42);
  border-radius: 22px;
  background: var(--ink-deep);
}

.accessory-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 10, 5, 0.02), rgba(15, 10, 5, 0.18)),
    linear-gradient(90deg, rgba(15, 10, 5, 0.08), transparent 58%);
  box-shadow: inset 0 1px 0 rgba(250, 247, 242, 0.34);
}

.accessory-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.95);
  transform: scale(1.01);
}

.accessory-card--muehlen .accessory-card__media img {
  object-position: 50% 48%;
}

.accessory-card--milchkuehler .accessory-card__media img {
  object-position: 50% 47%;
  filter: saturate(0.78) contrast(1.04) brightness(0.94) sepia(0.06);
}

.accessory-card--abrechnung .accessory-card__media img {
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  clip-path: inset(0 round 21px);
  filter: saturate(0.68) contrast(1.02) brightness(0.9) sepia(0.16);
  transform: none !important;
}

.accessory-card--abrechnung .accessory-card__media {
  overflow: hidden !important;
  clip-path: inset(0 round 22px);
  contain: paint;
  isolation: isolate;
}

.accessory-card--abrechnung .accessory-card__media::after {
  border-radius: inherit;
  clip-path: inset(0 round 21px);
  background:
    linear-gradient(90deg, rgba(15, 10, 5, 0.2), rgba(42, 31, 18, 0.08) 46%, rgba(250, 247, 242, 0.1)),
    linear-gradient(180deg, rgba(15, 10, 5, 0.08), rgba(15, 10, 5, 0.24));
}

.accessory-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.4vw, 32px);
}

.accessory-card h3 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(28px, 2.45vw, 38px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.accessory-card p {
  max-width: 34ch;
  margin: 16px 0 26px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.accessory-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(42, 31, 18, 0.62);
  color: var(--ink-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    border-color 260ms ease;
}

.accessory-card__link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 260ms ease;
}

.accessory-card__link:hover,
.accessory-card__link:focus-visible {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.accessory-card__link:hover::after,
.accessory-card__link:focus-visible::after {
  transform: translateX(4px);
}

.accessory-card__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

@media (max-width: 1080px) {
  .accessories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accessory-card--abrechnung {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .accessory-card--abrechnung .accessory-card__media {
    height: auto;
    min-height: 0;
    margin: 14px 14px 0;
  }
}

@media (max-width: 760px) {
  .accessories-grid {
    grid-template-columns: 1fr;
  }

  .accessory-card,
  .accessory-card--abrechnung {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .accessory-card__media,
  .accessory-card--abrechnung .accessory-card__media {
    height: auto;
    min-height: 0;
    margin: 12px 12px 0;
    border-radius: 20px;
  }

  .accessory-card--abrechnung .accessory-card__media {
    clip-path: inset(0 round 20px);
  }

  .accessory-card--abrechnung .accessory-card__media img,
  .accessory-card--abrechnung .accessory-card__media::after {
    clip-path: inset(0 round 19px);
  }

  .accessory-card__body {
    padding: 24px 22px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accessory-card__media img,
  .accessory-card__link::after {
    transition: none;
  }

  .accessory-card__link:hover::after,
  .accessory-card__link:focus-visible::after {
    transform: none;
  }
}

/* Leistungen page - partner manufacturers */
.leistungen-partners {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0.98), rgba(250, 247, 242, 0.98)),
    var(--paper);
}

.leistungen-partners__header {
  grid-template-columns: 1fr !important;
  justify-items: center;
  align-items: center;
  margin: 0 0 clamp(34px, 4.4vw, 56px) !important;
  text-align: center !important;
  column-gap: 0;
}

.leistungen-partners__header .eyebrow {
  grid-column: 1;
  justify-content: center;
}

.leistungen-partners__header h2 {
  grid-column: 1;
  max-width: min(100%, 680px);
  margin-inline: auto;
  text-wrap: balance;
}

.leistungen-partners__header p {
  grid-column: 1;
  max-width: min(100%, 560px);
  margin: 8px auto 0;
  text-wrap: balance;
}

.leistungen-partners__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 24px;
  background: var(--paper);
  list-style: none;
  box-shadow: 0 24px 70px rgba(42, 31, 18, 0.06);
}

.leistungen-partners__item {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: clamp(112px, 10vw, 148px);
  padding: clamp(24px, 2.6vw, 34px) clamp(18px, 2vw, 28px);
  border-right: 1px solid var(--rule);
  text-align: center;
}

.leistungen-partners__item:last-child {
  border-right: 0;
}

.leistungen-partners__item a {
  display: inline-grid;
  place-items: center;
  line-height: 0;
  transform: translateZ(0);
  transition:
    opacity 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leistungen-partners__item a:hover {
  opacity: 0.94;
  transform: scale(1.055);
}

.leistungen-partners__item a:focus-visible {
  outline: 2px solid rgba(196, 146, 59, 0.44);
  outline-offset: 12px;
  border-radius: 8px;
}

.leistungen-partners__item img {
  display: block;
  max-width: 180px;
  max-height: 42px;
  width: auto;
  object-fit: contain;
  filter: none;
}

@media (max-width: 1080px) {
  .leistungen-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leistungen-partners__item {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .leistungen-partners__item:nth-child(2n) {
    border-right: 0;
  }

  .leistungen-partners__item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .leistungen-partners__grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .leistungen-partners__item,
  .leistungen-partners__item:nth-child(2n),
  .leistungen-partners__item:last-child {
    grid-column: auto;
    min-height: 112px;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .leistungen-partners__item:last-child {
    border-bottom: 0;
  }

  .leistungen-partners__item img {
    max-width: 132px;
    max-height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leistungen-partners__item a {
    transition: none;
  }

  .leistungen-partners__item a:hover {
    transform: none;
  }
}

/* Leistungen page - FAQ header */
.leistungen-faq__header {
  grid-template-columns: 1fr !important;
  justify-items: center;
  align-items: center;
  max-width: min(100%, 760px) !important;
  margin: 0 auto clamp(38px, 5vw, 64px) !important;
  text-align: center !important;
  column-gap: 0;
}

.leistungen-faq__header .eyebrow {
  grid-column: 1;
  justify-content: center;
}

.leistungen-faq__header h2 {
  grid-column: 1;
  max-width: min(100%, 640px);
  margin-inline: auto;
  text-wrap: balance;
}

/* Coffee page - final Komplettpaket triptych */
.coffee-package {
  position: relative;
  overflow: hidden;
  padding-top: clamp(92px, 11vw, 150px);
  padding-bottom: clamp(96px, 12vw, 164px);
  background:
    radial-gradient(circle at 18% 16%, rgba(196, 146, 59, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(15, 10, 5, 0.98), rgba(42, 31, 18, 0.94)),
    var(--ink-deep);
}

.coffee-package__inner {
  display: grid;
  gap: clamp(42px, 6vw, 78px);
}

.coffee-package__intro {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.coffee-package__intro .eyebrow {
  margin: 0;
}

.coffee-package__intro h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--color-text-on-dark);
  font-size: clamp(42px, 5.6vw, 78px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.coffee-package-title__line {
  display: block;
}

.coffee-package-title__line--mobile {
  display: none;
}

.coffee-package__intro h2 em {
  color: var(--accent);
  font-style: italic;
}

.coffee-package__intro p {
  max-width: 58ch;
  margin: 0;
  color: rgba(244, 236, 224, 0.78);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.58;
}

.coffee-package__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.coffee-package__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.coffee-package-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  overflow: hidden;
  min-height: 100%;
  padding: 16px 16px 22px;
  border: 1px solid rgba(244, 236, 224, 0.16);
  border-radius: 28px;
  background: rgba(250, 247, 242, 0.055);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background 420ms ease;
}

.coffee-package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.08), transparent 34%);
  opacity: 0.75;
}

.coffee-package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 146, 59, 0.42);
  background: rgba(250, 247, 242, 0.075);
}

.coffee-package-card__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 300;
  line-height: 1;
}

.coffee-package-card__visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(244, 236, 224, 0.12);
  border-radius: 20px;
  background: rgba(250, 247, 242, 0.08);
}

.coffee-package-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-package-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.coffee-package-card__body h3 {
  margin: 0;
  color: var(--color-text-on-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

.coffee-package-card__body p {
  margin: 0;
  color: rgba(244, 236, 224, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.coffee-package-card__body span {
  color: rgba(244, 236, 224, 0.56);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .coffee-package__cards {
    grid-template-columns: 1fr;
  }

  .coffee-package-card {
    grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 18px 22px;
  }

  .coffee-package-card__visual {
    grid-column: 1;
    grid-row: 1;
  }

  .coffee-package-card__body {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .coffee-package {
    padding-bottom: 116px;
  }

  .coffee-package__intro h2 {
    max-width: 100%;
    font-size: clamp(33px, 9.3vw, 38px) !important;
  }

  .coffee-package-title__line--desktop {
    display: none;
  }

  .coffee-package-title__line--mobile {
    display: block;
  }

  .coffee-package__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .coffee-package__actions .btn,
  .coffee-package__actions .btn--secondary {
    justify-content: center;
    width: 100%;
  }

  .coffee-package-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 14px 20px;
    border-radius: 22px;
  }

  .coffee-package-card__visual,
  .coffee-package-card__body {
    grid-column: auto;
    grid-row: auto;
  }

  .coffee-package-card__visual {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coffee-package-card {
    transition: none;
  }

  .coffee-package-card:hover {
    transform: none;
  }
}

/*
  Legacy hero collage classes kept for older screenshots/prototypes.
  The current Maschinen-Hero uses .machine-hero__panel and .machine-hero__main-machine.
*/
.machine-hero__visual--collage {
  overflow: hidden;
}

.machine-hero__visual--collage::before {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(74, 68, 61, 0.14);
  pointer-events: none;
}

.machine-hero__product {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 68, 61, 0.16);
  border-radius: 22px;
  background: rgba(250, 247, 242, 0.78);
  box-shadow: 0 28px 70px rgba(35, 24, 12, 0.12);
}

.machine-hero__product img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.machine-hero__product--center {
  z-index: 2;
  width: 58%;
  height: 65%;
  left: 21%;
  top: 17%;
}

.machine-hero__product--left {
  z-index: 1;
  width: 34%;
  height: 42%;
  left: 5%;
  bottom: 7%;
  opacity: 0.92;
}

.machine-hero__product--right {
  z-index: 1;
  width: 36%;
  height: 43%;
  right: 4%;
  top: 8%;
  opacity: 0.94;
}

.machine-compass {
  padding: 0 0 clamp(52px, 6vw, 78px);
  background: var(--paper);
  scroll-margin-top: clamp(96px, 8vw, 126px);
}

.machine-compass__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(74, 68, 61, 0.2);
  border-bottom: 1px solid rgba(74, 68, 61, 0.2);
  padding: clamp(38px, 5vw, 58px) 0;
}

.machine-compass__intro {
  display: grid;
  align-content: start;
  gap: 18px;
}

.machine-compass__intro h2 {
  margin: 10px 0 0;
  color: var(--ink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.machine-compass__intro p {
  max-width: 32ch;
  margin: 0;
  color: #675746;
  font-size: 18px;
  line-height: 1.58;
}

.machine-compass__all {
  width: max-content;
  color: var(--ink-deep);
  font: 800 12px/1.2 "Inter", sans-serif;
  letter-spacing: 0.08em;
  padding: 9px 0 6px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.machine-compass__all:hover,
.machine-compass__all:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.machine-compass__panel {
  display: grid;
  gap: 22px;
}

.machine-compass__paths {
  display: grid;
  border-top: 1px solid rgba(74, 68, 61, 0.2);
}

.machine-compass__path {
  position: relative;
  display: grid;
  grid-template-columns: clamp(88px, 7vw, 116px) minmax(0, 1fr) auto;
  grid-template-areas: "number copy action";
  column-gap: clamp(32px, 4vw, 54px);
  row-gap: 8px;
  align-items: center;
  min-height: 102px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(74, 68, 61, 0.2);
  color: var(--ink-deep);
  text-decoration: none;
  transition: color 260ms ease, background 260ms ease, transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.machine-compass__path::before {
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  content: "";
  border-radius: 18px;
  background: rgba(250, 247, 242, 0);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.machine-compass__path:hover,
.machine-compass__path:focus-visible {
  color: var(--ink-deep);
  transform: translateX(2px);
}

.machine-compass__path:hover::before,
.machine-compass__path:focus-visible::before {
  background: rgba(250, 247, 242, 0.64);
  box-shadow: 0 18px 44px rgba(35, 24, 12, 0.07);
}

.machine-compass__path:focus-visible,
.machine-compass__all:focus-visible,
.machine-compass__makers a:focus-visible {
  outline: 3px solid rgba(196, 146, 59, 0.32);
  outline-offset: 5px;
}

.machine-compass__path-number {
  grid-area: number;
  display: flex;
  align-items: center;
  align-self: center;
  justify-self: start;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.machine-compass__path-copy {
  grid-area: copy;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.machine-compass__path-copy strong {
  color: currentColor;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.machine-compass__path-copy small {
  color: #675746;
  font-size: 15px;
  line-height: 1.45;
}

.machine-compass__path-action {
  grid-area: action;
  align-self: center;
  justify-self: end;
  color: #6F6254;
  font: 800 11px/1 "Inter", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.machine-compass__makers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.machine-compass__makers span {
  color: #6F6254;
  font: 700 11px/1 "Inter", sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.machine-compass__makers a {
  border: 1px solid rgba(74, 68, 61, 0.2);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.56);
  color: var(--ink-deep);
  font: 800 11px/1 "Inter", sans-serif;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, background 280ms ease;
}

.machine-compass__makers a:hover,
.machine-compass__makers a:focus-visible {
  background: rgba(196, 146, 59, 0.1);
  border-color: rgba(196, 146, 59, 0.55);
  transform: translateY(-1px);
}

.machine-category {
  padding: 96px 0 104px;
  background: var(--paper);
  scroll-margin-top: clamp(96px, 8vw, 126px);
}

.machine-category--elevated {
  background: #FAF7F2;
  border-top: 1px solid rgba(74, 68, 61, 0.14);
  border-bottom: 1px solid rgba(74, 68, 61, 0.14);
}

.machine-category--vollautomaten {
  padding-top: clamp(46px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.44), rgba(245, 239, 230, 0) 34%),
    var(--paper);
}

.machine-category--siebtraeger {
  padding-top: clamp(58px, 6vw, 82px);
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0.12), rgba(250, 247, 242, 0.82) 42%),
    #FAF7F2;
}

.machine-category--zubehoer {
  padding: clamp(58px, 6vw, 82px) 0 clamp(84px, 8vw, 116px);
  background: var(--paper);
}

.machine-category__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  margin-bottom: clamp(38px, 5vw, 58px);
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid rgba(74, 68, 61, 0.18);
  border-bottom: 1px solid rgba(74, 68, 61, 0.16);
}

.machine-category__head h2 {
  max-width: 19ch;
  margin: 14px 0 0;
  color: var(--ink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.machine-category__head p {
  max-width: 58ch;
  margin: 16px 0 0;
  color: #675746;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.56;
}

.machine-category-intro__copy {
  align-self: center;
}

.machine-category-intro__panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(250, 247, 242, 0.52);
  border: 1px solid rgba(74, 68, 61, 0.14);
}

.machine-category--elevated .machine-category-intro__panel {
  background: rgba(245, 239, 230, 0.5);
}

.machine-category-intro__group {
  display: grid;
  gap: 10px;
}

.machine-category-intro__group + .machine-category-intro__group {
  padding-top: 18px;
  border-top: 1px solid rgba(74, 68, 61, 0.12);
}

.machine-category-intro__label {
  color: var(--counter);
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.machine-category__summary {
  display: grid;
  gap: 20px;
}

.machine-category__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.machine-category__signals li {
  border: 1px solid rgba(74, 68, 61, 0.18);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.58);
  color: #5C4A36;
  font: 800 10px/1 "Inter", sans-serif;
  letter-spacing: 0.1em;
  padding: 9px 11px;
  text-transform: uppercase;
}

.machine-category__signals--makers li {
  background: rgba(196, 146, 59, 0.09);
  border-color: rgba(196, 146, 59, 0.28);
  color: var(--ink-strong);
}

.machine-category__body {
  display: grid;
  gap: 54px;
}

.machine-category--vollautomaten .machine-category__head {
  margin-bottom: clamp(44px, 5vw, 64px);
}

.machine-category--siebtraeger .machine-category__head {
  margin-bottom: clamp(44px, 5vw, 64px);
}

.machine-category--zubehoer .machine-category__head {
  margin-bottom: clamp(36px, 4vw, 48px);
}

.machine-category--vollautomaten .machine-category__body,
.machine-category--siebtraeger .machine-category__body {
  gap: clamp(74px, 8vw, 104px);
}

.machine-category--zubehoer .machine-category__body {
  max-width: 760px;
}

.machine-maker {
  scroll-margin-top: clamp(96px, 8vw, 126px);
}

.machine-maker__head {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: baseline;
  border-top: 1px solid rgba(74, 68, 61, 0.2);
  padding: 22px 0 24px;
}

.machine-maker__label,
.machine-maker__count {
  color: #8B7D6D;
  font: 700 11px/1 "Inter", sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.machine-maker__head h3 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.machine-category--vollautomaten .machine-maker__head,
.machine-category--siebtraeger .machine-maker__head {
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr) auto;
  padding: 28px 0 30px;
  border-top-color: rgba(74, 68, 61, 0.24);
}

.machine-category--vollautomaten .machine-maker__head h3,
.machine-category--siebtraeger .machine-maker__head h3 {
  font-size: clamp(44px, 4.5vw, 58px);
  line-height: 0.98;
}

.machine-category--vollautomaten .machine-maker__count,
.machine-category--siebtraeger .machine-maker__count {
  color: #6F6254;
}

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

.machine-category--vollautomaten .machine-grid,
.machine-category--siebtraeger .machine-grid {
  gap: clamp(24px, 2.4vw, 34px);
}

.machine-category--zubehoer .machine-maker__head {
  grid-template-columns: minmax(110px, 0.28fr) minmax(0, 1fr) auto;
  padding: 22px 0 24px;
}

.machine-category--zubehoer .machine-grid {
  grid-template-columns: minmax(280px, 480px);
}

.machine-category--zubehoer .machine-card {
  box-shadow: 0 18px 46px rgba(35, 24, 12, 0.055);
}

.machine-category--zubehoer .machine-card__media {
  min-height: 250px;
  padding: 26px;
}

.machine-category--zubehoer .machine-card__media img {
  height: 205px;
}

.machine-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 68, 61, 0.14);
  border-radius: 16px;
  background: rgba(250, 247, 242, 0.78);
  box-shadow: 0 22px 58px rgba(35, 24, 12, 0.06);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease, border-color 340ms ease;
}

.machine-card:hover,
.machine-card:focus-within {
  border-color: rgba(196, 146, 59, 0.36);
  box-shadow: 0 32px 78px rgba(35, 24, 12, 0.11);
  transform: translateY(-3px);
}

.machine-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 318px;
  margin: 0;
  padding: 34px 30px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 68%, rgba(196, 146, 59, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(250, 247, 242, 0.98), rgba(229, 214, 194, 0.48));
  isolation: isolate;
}

.machine-card__media::after {
  position: absolute;
  right: 18%;
  bottom: 28px;
  left: 18%;
  z-index: -1;
  height: 18px;
  content: "";
  border-radius: 999px;
  background: rgba(35, 24, 12, 0.16);
  filter: blur(18px);
  opacity: 0.72;
}

.machine-card__media img {
  width: 100%;
  height: 266px;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.machine-card:hover .machine-card__media img,
.machine-card:focus-within .machine-card__media img {
  transform: scale(1.035);
}

.machine-card__content {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 28px;
}

.machine-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.machine-card__meta span {
  border: 1px solid rgba(74, 68, 61, 0.16);
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.54);
  color: #5C4A36;
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.11em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.machine-card h3 {
  margin: 2px 0 0;
  color: var(--ink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.machine-card__description {
  display: -webkit-box;
  min-height: 4.6em;
  margin: 0;
  overflow: hidden;
  color: #665848;
  font-size: 16px;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.machine-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.machine-card__chip {
  border: 1px solid rgba(196, 146, 59, 0.42);
  border-radius: 999px;
  background: rgba(196, 146, 59, 0.075);
  color: #493725;
  font: 800 11px/1 "Inter", sans-serif;
  letter-spacing: 0.05em;
  padding: 9px 11px;
  text-transform: uppercase;
}

.machine-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(74, 68, 61, 0.12);
}

.machine-card__pdf,
.machine-card__contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font: 800 12px/1 "Inter", sans-serif;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.machine-card__pdf {
  color: #6F6254;
  padding: 0 0 0 4px;
}

.machine-card__pdf:hover,
.machine-card__pdf:focus-visible {
  color: var(--accent);
}

.machine-card__pdf--muted {
  border-color: rgba(74, 68, 61, 0.22);
  color: #8B7D6D;
}

.machine-card__contact {
  border: 1px solid var(--ink-deep);
  color: var(--ink-deep);
  padding: 0 16px;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.machine-card__contact::after {
  content: none;
}

.machine-card__contact:hover,
.machine-card__contact:focus-visible {
  background: var(--ink-deep);
  color: var(--color-text-on-dark);
}

.machine-card__pdf:focus-visible,
.machine-card__contact:focus-visible {
  outline: 2px solid rgba(196, 146, 59, 0.65);
  outline-offset: 4px;
}

.machine-advice {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 62px;
  border-top: 1px solid rgba(74, 68, 61, 0.2);
  border-bottom: 1px solid rgba(74, 68, 61, 0.2);
  padding: 26px 0;
}

.machine-advice p {
  max-width: 720px;
  margin: 0;
  color: #5C4A36;
  font-size: 18px;
  line-height: 1.55;
}

.machine-advice strong {
  color: var(--ink-deep);
  font-weight: 600;
}

.machine-final-cta {
  padding: clamp(92px, 9vw, 124px) 0 clamp(104px, 10vw, 140px);
  background:
    linear-gradient(135deg, rgba(15, 10, 5, 0.96), rgba(42, 31, 18, 0.94)),
    var(--ink-deep);
  color: var(--color-text-on-dark);
}

.machine-final-cta__inner {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid rgba(245, 239, 230, 0.18);
  border-bottom: 1px solid rgba(245, 239, 230, 0.18);
  padding: clamp(42px, 5vw, 64px) 0;
  text-align: center;
}

.machine-final-cta h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--color-text-on-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.machine-final-cta p {
  max-width: 54ch;
  margin: 0;
  color: rgba(244, 236, 224, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.machine-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 12px;
}

.machine-final-cta .btn--ghost {
  color: var(--color-text-on-dark);
}

.machine-final-cta .btn--ghost::after {
  content: none;
}

.machine-empty {
  border-top: 1px solid rgba(74, 68, 61, 0.18);
  border-bottom: 1px solid rgba(74, 68, 61, 0.18);
  color: #675746;
  margin: 0;
  padding: 28px 0;
}

@media (max-width: 1180px) {
  .machine-category__head {
    grid-template-columns: 1fr;
  }

  .machine-category-intro__panel {
    max-width: 640px;
  }

  .machine-hero__panel {
    min-height: clamp(560px, 68svh, 700px);
  }

  .machine-hero__content h1 {
    max-width: 14ch;
    font-size: 58px !important;
  }

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

@media (max-width: 860px) {
  .machine-hero {
    padding: 24px clamp(24px, 4vw, 32px) 58px;
  }

  .machine-hero__panel {
    min-height: 680px;
  }

  .machine-hero__content {
    max-width: 620px;
    padding: 56px 32px;
  }

  .machine-hero__content h1 {
    font-size: 48px !important;
  }

  .machine-hero__content .body-l {
    font-size: 18px;
  }

  .machine-compass__inner {
    grid-template-columns: 1fr;
  }

  .machine-compass__makers {
    justify-content: flex-start;
  }

  .machine-compass__path {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    column-gap: clamp(26px, 4vw, 40px);
  }

  .machine-category {
    padding: 64px 0 78px;
  }

  .machine-category__head h2 {
    max-width: 18ch;
    font-size: 40px;
  }

  .machine-final-cta h2 {
    max-width: 14ch;
    font-size: 46px;
  }

  .machine-maker__head {
    grid-template-columns: 1fr auto;
  }

  .machine-maker__label {
    grid-column: 1 / -1;
  }

  .machine-advice {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .machine-hero {
    padding: 18px 24px 52px;
  }

  .machine-hero__panel {
    min-height: 640px;
    border-radius: 22px;
  }

  .machine-hero__content {
    padding: 44px 18px;
  }

  .machine-hero__content h1 {
    max-width: 11ch;
    font-size: 40px !important;
  }

  .machine-hero__photo {
    object-position: 58% center;
  }

  .coffee-hero__photo {
    object-position: 42% center;
  }

  .leistungen-hero__photo {
    object-position: 62% center;
  }

  .machine-hero__actions,
  .machine-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .machine-hero__actions .btn,
  .machine-hero__actions .btn--ghost,
  .machine-final-cta__actions .btn,
  .machine-final-cta__actions .btn--ghost {
    justify-content: center;
    width: 100%;
  }

  .machine-compass__inner {
    padding: 24px 0;
  }

  .machine-compass__path {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas:
      "number copy"
      "number action";
    column-gap: 20px;
    row-gap: 9px;
    min-height: 0;
    padding: 21px 0;
  }

  .machine-compass__path-action {
    grid-area: action;
    justify-self: start;
  }

  .machine-compass__makers {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .machine-category {
    padding: 54px 0 70px;
  }

  .machine-category__head {
    gap: 22px;
    margin-bottom: 32px;
    padding: 22px 0;
  }

  .machine-category__head h2 {
    max-width: none;
    font-size: 34px;
  }

  .machine-category__head p {
    margin-top: 12px;
    font-size: 16px;
  }

  .machine-category-intro__panel {
    padding: 18px;
  }

  .machine-category__signals {
    gap: 7px;
  }

  .machine-category__signals li {
    font-size: 9px;
    padding: 8px 9px;
  }

  .machine-final-cta h2 {
    font-size: 38px;
  }

  .machine-grid {
    grid-template-columns: 1fr;
  }

  .machine-card__media {
    min-height: 240px;
    padding: 24px;
  }

  .machine-card__media img {
    height: 205px;
  }

  .machine-card__content {
    padding: 22px;
  }

  .machine-card h3 {
    font-size: 28px;
  }

  .machine-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .machine-card__contact {
    width: 100%;
  }

  .machine-card__pdf {
    width: max-content;
    min-height: 32px;
    align-self: flex-start;
  }

  .machine-final-cta {
    padding: 86px 0 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .machine-card,
  .machine-card__media img,
  .machine-compass__path,
  .machine-compass__path::before,
  .machine-compass__all,
  .machine-compass__makers a {
    transition: none;
  }

  .machine-card:hover,
  .machine-card:focus-within,
  .machine-compass__path:hover,
  .machine-compass__path:focus-visible,
  .machine-compass__all:hover,
  .machine-compass__makers a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--visual {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}
