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

  :root {
    --ivory:    #F8F7F5;
    --cream:    #EDE9E4;
    --gold:     #C9A84C;
    --gold-lt:  #E8D49E;
    --gold-dk:  #997A28;   /* large-text accents & graphical marks on light (>=3:1) */
    --gold-text:#7A6019;   /* small gold text on white/ivory/cream (>=4.5:1) */
    --gold-hov: #B89440;   /* button hover bg, keeps ink text >=4.5:1 */
    --sage:     #7A8F72;
    --sage-lt:  #D4DECA;
    --ink:      #1A1A18;
    --muted:    #524F4A;
    --line:     #DEDAD4;
    --white:    #FFFFFF;
    --ease:     cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  ::selection { background: var(--gold); color: var(--white); }

  a:focus-visible, button:focus-visible, [role="button"]:focus-visible,
  input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  @media (pointer: fine) {
    ::-webkit-scrollbar { width: 11px; height: 11px; }
    ::-webkit-scrollbar-track { background: var(--ivory); }
    ::-webkit-scrollbar-thumb { background: #CFC9C0; border: 3px solid var(--ivory); border-radius: 6px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--gold); }
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
    padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)); /* clear sticky wizard bar */
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: linear-gradient(to bottom, rgba(14,14,12,0.52), rgba(14,14,12,0));
    border-bottom: 1px solid transparent;
    transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.35s ease;
    padding: 0 2.5rem 0 4rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 2;
  }
  .nav-logo svg {
    height: 36px;
    width: auto;
  }

  /* Desktop: nav-menu is a flex row */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .nav-links { display: flex; gap: 2.2rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.86);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav-links a:hover { color: var(--ivory); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    background: var(--gold);
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .nav-cta:hover { background: var(--gold-hov); }

  /* Hamburger — hidden on desktop */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 36px; height: 36px;
    flex-shrink: 0;
    z-index: 2;
    padding: 4px;
  }
  .nav-burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--ivory);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  /* Burger → X animation */
  nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE NAV ── */
  @media (max-width: 800px) {
    nav { padding: 0 1.5rem 0 1.5rem; }
    .nav-burger { display: flex; }

    /* Slide-down panel */
    .nav-menu {
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--ink);
      border-bottom: 0 solid var(--gold);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0;
      z-index: 99;
    }
    nav.nav-open .nav-menu { max-height: 460px; border-bottom-width: 2px; }

    /* Links list inside panel */
    .nav-links {
      flex-direction: column;
      gap: 0;
      padding: 1.2rem 1.5rem 0.5rem;
      list-style: none;
    }
    .nav-links li { border-bottom: 1px solid rgba(253,250,244,0.07); }
    .nav-links li {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }
    nav.nav-open .nav-links li { opacity: 1; transform: translateY(0); }
    nav.nav-open .nav-links li:nth-child(1) { transition-delay: 0.06s; }
    nav.nav-open .nav-links li:nth-child(2) { transition-delay: 0.11s; }
    nav.nav-open .nav-links li:nth-child(3) { transition-delay: 0.16s; }
    nav.nav-open .nav-links li:nth-child(4) { transition-delay: 0.21s; }
    nav.nav-open .nav-links li:nth-child(5) { transition-delay: 0.26s; }
    .nav-links a {
      display: block;
      padding: 1.05rem 0;
      font-size: 0.95rem;
      letter-spacing: 0.16em;
      color: rgba(253,250,244,0.85);
    }
    .nav-links a::after { display: none; }
    .nav-links a:hover { color: var(--gold); }

    /* CTA inside panel */
    .nav-cta {
      display: block;
      margin: 1rem 1.5rem 1.5rem;
      text-align: center;
      padding: 0.9rem 1rem;
    }
  }

  /* ── HERO ── */
  #hero {
    height: 100vh; /* overridden by JS below for pixel-perfect accuracy */
    min-height: 600px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
  }

  /* Cinematic overlay: strong on the left, fades right and has a subtle bottom vignette */
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        100deg,
        rgba(14,14,12,0.92) 0%,
        rgba(14,14,12,0.72) 28%,
        rgba(14,14,12,0.30) 55%,
        rgba(14,14,12,0.04) 100%
      );
  }
  /* Separate bottom vignette for thumb-strip depth */
  .hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(14,14,12,0.55) 0%, transparent 100%);
  }

  .hero-text {
    position: absolute;
    top: 120px;
    bottom: 124px;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
    max-width: 800px;
  }
  @media (min-width: 801px) and (max-height: 800px) {
    .hero-title { font-size: clamp(2rem, 4vw, 3.4rem); }
    .hero-subtitle { margin-bottom: 1.4rem; }
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-wrap: balance;
    color: var(--ivory);
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 32px rgba(14,14,12,0.4);
  }
  .hero-title em { font-style: italic; font-weight: 300; color: var(--gold); }
  .hero-subtitle {
    font-size: 1.04rem;
    color: rgba(253,250,244,0.87);
    max-width: 420px;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  .hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-weight: 500;
    padding: 0.75rem 1.6rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  }
  .btn-primary:hover {
    background: var(--gold-hov);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.32);
  }
  .btn-primary:active { transform: translateY(-1px); box-shadow: none; }
  .btn-outline {
    display: inline-block;
    border: 1px solid rgba(253,250,244,0.45);
    color: rgba(253,250,244,0.82);
    padding: 0.75rem 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
  }
  .btn-outline:hover { border-color: var(--ivory); color: var(--ivory); }
  .hero-trust {
    margin-top: auto;
    padding-top: 1rem;
    display: flex; gap: 2rem;
  }
  .trust-item { display: flex; flex-direction: column; padding-left: 1.4rem; border-left: 1px solid rgba(201,168,76,0.35); }
  .trust-item:first-child { padding-left: 0; border-left: none; }
  .trust-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }
  .trust-label { font-size: 0.78rem; color: rgba(253,250,244,0.82); letter-spacing: 0.06em; margin-top: 0.15rem; }

  /* ── HERO MOBILE ── */
  @media (max-width: 800px) {
    /* Hide desktop-only thumbs (Louis, Infinity) — 6 remain */
    .hc-thumb[data-desktop-only="true"] { display: none; }

    /* Adjust hero text — top clears the 72px nav, bottom clears the 116px thumb strip */
    .hero-text {
      top: 100px;
      bottom: 128px;
      padding: 0 6vw;
    }

    /* Stronger overlay so text reads over any image */
    .hero-overlay {
      background:
        linear-gradient(
          180deg,
          rgba(14,14,12,0.82) 0%,
          rgba(14,14,12,0.60) 50%,
          rgba(14,14,12,0.45) 100%
        );
    }

    .hero-eyebrow { font-size: 0.7rem; margin-bottom: 0.6rem; }
    .hero-title { margin-bottom: 0.8rem; }
    .hero-subtitle { font-size: 0.93rem; margin-bottom: 1.4rem; max-width: 100%; }

    .hero-btns { flex-direction: column; gap: 0.6rem; }
    .btn-primary, .btn-outline {
      width: 100%; text-align: center; padding: 0.85rem 1.2rem;
    }

    /* Trust row removed on mobile — too crowded above the thumb strip */
    .hero-trust { display: none; }
    .hc-caption { display: none; }
  }

  @media (max-width: 480px) {
    nav { padding: 0 1.2rem; }
    .nav-logo svg { height: 28px; }
  }

  @media (max-width: 560px) {
    .hc-thumbs { height: 84px; }
    .hc-thumb-label { display: none; }
    .hero-text { bottom: 104px; }
  }

  /* ── HERO CAROUSEL ── */
  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    background: var(--ink);
  }

  /* Main image stage */
  .hc-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.95s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .hc-slide.hc-active {
    opacity: 1;
    pointer-events: auto;
  }
  .hc-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transform: scale(1.04);
    transition: transform 8s ease-out;
  }
  .hc-slide.hc-active img {
    transform: scale(1);
  }

  /* Caption overlay */
  .hc-caption {
    position: absolute;
    bottom: 150px; right: 3vw;
    padding: 1.2rem 1.6rem;
    text-align: right;
    pointer-events: none;
  }
  .hc-caption-label {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s 0.5s ease, transform 0.5s 0.5s ease;
  }
  .hc-caption-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(253,250,244,0.88);
    line-height: 1.3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s 0.65s ease, transform 0.5s 0.65s ease;
  }
  .hc-slide.hc-active .hc-caption-label,
  .hc-slide.hc-active .hc-caption-title {
    opacity: 1;
    transform: translateY(0);
  }

  /* Progress bar */
  .hc-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
  }
  .hc-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width linear;
  }

  /* Thumbnail strip — absolute at bottom of hero, sits above overlay */
  .hc-thumbs {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    display: flex;
    height: 116px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(14,14,12,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hc-thumb {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: flex 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hc-thumb:last-child { border-right: none; }
  .hc-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.38) saturate(0.6);
  }
  .hc-thumb:hover img {
    filter: brightness(0.6) saturate(0.85);
    transform: scale(1.05);
  }
  .hc-thumb.hc-thumb-active { flex: 1.8; }
  .hc-thumb.hc-thumb-active img {
    filter: brightness(0.65) saturate(1);
  }

  /* Thumb label */
  .hc-thumb-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.5rem 0.7rem 0.55rem;
    background: linear-gradient(to top, rgba(22,14,6,0.8) 0%, transparent 100%);
  }
  .hc-thumb-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(253,250,244,0.8);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
  }
  .hc-thumb.hc-thumb-active .hc-thumb-name { color: rgba(253,250,244,0.92); }

  /* Gold tick on active thumb */
  .hc-thumb-active-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform linear;
  }
  .hc-thumb.hc-thumb-active .hc-thumb-active-bar {
    transform: scaleX(1);
  }

  /* ── SECTION COMMONS ── */
  body > section { padding: clamp(5.5rem, 10vw, 8.5rem) 5vw; }
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2.3rem, 4.8vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    text-wrap: balance;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; font-weight: 300; color: var(--gold-dk); }
  .section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.85;
    margin-bottom: 3.5rem;
  }
  .divider {
    width: 48px; height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
  }

  /* ── WARUM WIR / USPs ── */
  #warum {
    padding: 5rem 5vw;
    background:
      linear-gradient(to right, var(--cream) 40%, rgba(237,233,228,0.68) 100%),
      url('/img/crossback-braun-hero.webp') right center / cover no-repeat;
  }

  .usps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .usps-grid > div {
    padding: 2.5rem 2rem 2rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    background: var(--cream);
    transition: background 0.22s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  }

  .usps-grid > div:hover {
    background: var(--ivory);
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(26,26,24,0.08);
    z-index: 1;
  }

  .usp-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.4rem;
    font-weight: 400;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(153,122,40,0.85);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    transition: color 0.35s ease;
  }
  .usps-grid > div:hover .usp-num { color: rgba(201,168,76,0.18); }
  @supports not (-webkit-text-stroke: 1px black) {
    .usp-num { color: var(--gold-lt); }
  }

  .usp-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .usp-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 900px) {
    .usps-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .usps-grid { grid-template-columns: 1fr; }
    .usp-num { font-size: 2.8rem; }
  }

  /* ── REGIONEN ── */
  #regionen {
    position: relative;
    background: var(--ink) url('at-map.png') right center / contain no-repeat;
    color: var(--ivory);
    padding: 5rem 5vw;
  }
  #regionen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20,18,14,0.2);
    pointer-events: none;
  }
  #regionen > * { position: relative; z-index: 1; }
  #regionen .section-label { color: var(--gold); }
  #regionen .section-title { color: var(--ivory); }
  #regionen .section-sub { color: rgba(253,250,244,0.82); }
  .distance-lines { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.85rem; max-width: 560px; }
  .distance-depot { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
  .distance-row { display: flex; align-items: center; gap: 0.75rem; }
  .distance-bar {
    height: 2px; flex-shrink: 0; border-radius: 1px;
    transform: scaleX(0); transform-origin: left center;
    transition: transform 1.05s var(--ease) 0.15s;
  }
  .distance-row.sr-visible .distance-bar { transform: scaleX(1); }
  @media (max-width: 600px) {
    .distance-bar { width: calc(var(--w) * 0.5) !important; }
  }
  .distance-label { font-size: 1rem; white-space: nowrap; }
  .distance-note { font-size: 0.78rem; color: rgba(253,250,244,0.62); margin-top: 1.75rem; font-style: italic; }

  /* ── FAQ ── */
  #faq {
    background:
      linear-gradient(to right, var(--white) 50%, rgba(248,247,245,0.72) 100%),
      url('/img/chiavari-gold-hero.webp') right center / cover no-repeat;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 4rem;
    max-width: 1100px;
  }
  .faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
  .faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem;
  }
  .faq-q::after {
    content: '+'; color: var(--gold-dk); font-size: 1.35rem; flex-shrink: 0;
    line-height: 1; display: block;
    transition: transform 0.35s var(--ease);
  }
  .faq-q.open::after { transform: rotate(45deg); }
  .faq-a {
    font-size: 0.95rem; color: var(--muted); line-height: 1.85;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.42s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.32s ease;
  }
  .faq-a.open { max-height: 360px; opacity: 1; }
  @media (max-width: 768px) {
    #faq {
      background:
        linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
        url('/img/chiavari-gold-hero.webp') center / cover no-repeat;
    }
    .faq-grid { grid-template-columns: 1fr; gap: 0; max-width: 100%; }
  }

  /* ── ANFRAGE ── */
  #anfrage { background: var(--cream); }
  .contact-simple {
    display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 3rem;
  }
  .contact-card {
    display: flex; align-items: flex-start; gap: 1rem;
    flex: 1; min-width: 220px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.5rem 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.25s, transform 0.28s var(--ease);
  }
  a.contact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(201,168,76,0.12);
    transform: translateY(-4px);
  }
  .contact-card--static { cursor: default; }
  .contact-card .contact-icon { color: var(--gold-dk); font-style: normal; flex-shrink: 0; margin-top: 0.1rem; }
  .contact-card-val { font-size: 1rem; color: var(--ink); font-weight: 500; }
  .contact-card-sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
  .anfrage-step-lbl { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 1.2rem; }
  .anfrage-step-headline { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; line-height: 1.4; color: var(--ink); margin-bottom: 1.5rem; }

  /* ── SOCIAL PROOF ── */
  #erfahrungen {
    background:
      linear-gradient(to right, var(--ivory) 35%, rgba(248,247,245,0.65) 100%),
      url('/img/chiavari-weiss-hero.webp') right center / cover no-repeat;
  }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .review-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(26,26,24,0.10);
    border-color: var(--gold-lt);
  }
  .review-stars { color: var(--gold-dk); font-size: 1rem; letter-spacing: 0.1em; }
  .review-text { font-size: 0.95rem; color: var(--muted); line-height: 1.75; font-style: italic; flex: 1; }
  .review-author { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
  .reviews-placeholder { font-size: 0.88rem; color: var(--muted); text-align: center; margin-top: 2.5rem; }
  @media (max-width: 700px) {
    .reviews-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      margin: 3rem -5vw 0;
      padding: 0.5rem 5vw 1rem;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card {
      flex: 0 0 82%;
      scroll-snap-align: center;
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ── LAST-CHANCE CTA ── */
  #last-cta {
    background:
      linear-gradient(rgba(26,26,24,0.80), rgba(26,26,24,0.80)),
      url('/img/infinity-gold-weiss-hero.webp') center / cover no-repeat;
    color: var(--ivory);
    text-align: center;
    padding: 6rem 5vw;
  }
  .last-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  .last-cta-sub { font-size: 1.05rem; color: rgba(253,250,244,0.7); margin-bottom: 2.5rem; line-height: 1.7; }
  .last-cta-btn { display: inline-block; }
  .last-cta-micro {
    font-size: 0.82rem; color: rgba(253,250,244,0.68); margin-top: 1.5rem; letter-spacing: 0.04em;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem 1.1rem;
  }
  .last-cta-micro span { position: relative; white-space: nowrap; }
  .last-cta-micro span:not(:last-child)::after {
    content: '·';
    position: absolute; right: -0.62rem; top: 0;
    color: rgba(253,250,244,0.3);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: rgba(253,250,244,0.6);
    padding: 4.5rem 5vw 2.2rem;
    font-size: 0.9rem;
  }
  footer a { color: rgba(253,250,244,0.74); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--gold); }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 3rem 4rem;
    padding-bottom: 3.2rem;
    border-bottom: 1px solid rgba(253,250,244,0.08);
  }
  .footer-brand { max-width: 380px; }
  .footer-logo svg { height: 30px; width: auto; opacity: 0.9; }
  .footer-claim {
    margin-top: 1.3rem;
    font-size: 0.92rem;
    line-height: 1.85;
    color: rgba(253,250,244,0.62);
  }
  .footer-cols { display: flex; gap: 4.5rem; flex-wrap: wrap; }
  .footer-col-title {
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
  }
  .footer-col a { display: block; padding: 0.34rem 0; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.6rem 1.5rem;
    padding-top: 1.7rem;
    font-size: 0.8rem;
    color: rgba(253,250,244,0.58);
  }
  .footer-bottom .footer-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.92rem;
    color: rgba(232,212,158,0.85);
  }

  /* ── MICROINTERACTIONS & SCROLL REVEALS ── */

  /* Scroll-reveal base state */
  .sr-item {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity  0.68s cubic-bezier(0.25,0.46,0.45,0.94),
      transform 0.68s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .sr-item.sr-visible { opacity: 1; transform: translateY(0); }

  /* Divider: grow from left */
  .divider.sr-item {
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 0.4s ease, transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .divider.sr-item.sr-visible { opacity: 1; transform: scaleX(1); }

  /* Section label: line grows in */
  .section-label.sr-item::before { width: 0; transition: width 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s; }
  .section-label.sr-item.sr-visible::before { width: 32px; }

  /* Nav: glass treatment once the page scrolls */
  nav.nav-scrolled {
    background: rgba(20,19,17,0.88);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    backdrop-filter: blur(16px) saturate(1.15);
    border-bottom-color: rgba(201,168,76,0.35);
    box-shadow: 0 8px 36px rgba(14,14,12,0.38);
  }
  nav.nav-open { background: var(--ink); border-bottom-color: var(--gold); }

  /* btn-outline lift */
  .btn-outline { transition: all 0.25s, transform 0.22s cubic-bezier(0.34,1.56,0.64,1); }
  .btn-outline:hover { border-color: var(--ivory); color: var(--ivory); transform: translateY(-3px); }
  .btn-outline:active { transform: translateY(-1px); }

  /* FAQ question hover */
  .faq-q { transition: color 0.2s ease; }
  .faq-q:hover { color: var(--gold-dk); }

  /* Hero text entrance — initial state set in CSS to avoid FOUC flash */
  .hero-eyebrow, .hero-title, .hero-subtitle, .hero-btns, .hero-trust {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: opacity, transform;
  }

  /* Regionen single-column over map bg */
  .regionen-inner { max-width: 640px; }

  /* ── MARQUEE BAND ── */
  .marquee {
    background: var(--ink);
    border-top: 1px solid rgba(201,168,76,0.16);
    border-bottom: 1px solid rgba(201,168,76,0.16);
    overflow: hidden;
    padding: 1.05rem 0;
  }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 48s linear infinite;
    will-change: transform;
  }
  .marquee-group {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    padding-right: 3.2rem;
    white-space: nowrap;
  }
  .marquee-group span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.18rem;
    letter-spacing: 0.07em;
    color: rgba(232,212,158,0.82);
  }
  .marquee-group i {
    font-style: normal;
    font-size: 0.45rem;
    color: rgba(201,168,76,0.55);
  }
  @keyframes marquee-scroll {
    to { transform: translateX(-50%); }
  }

  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee-track { animation: none; }
    .sr-item { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hc-slide img { transition: none; transform: none; }
    .distance-bar { transform: scaleX(1); transition: none; }
    .hero-eyebrow, .hero-title, .hero-subtitle, .hero-btns, .hero-trust { transition: none; }
  }




/* ── WIZARD ANCHOR (page-flow placeholder for nav links) ── */
#wizard { scroll-margin-top: 72px; }

/* ── MODAL OVERLAY ── */
#wiz-modal {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(26,26,24,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#wiz-modal.wiz-open {
  display: flex;
  align-items: stretch;
}
.wiz-modal-box {
  position: relative;
  background: #EDE4D3;
  border-top: 2px solid var(--gold);
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wiz-modal-close {
  background: rgba(192,57,43,0.08); border: 1.5px solid rgba(192,57,43,0.35); cursor: pointer;
  font-family: 'Jost', sans-serif; line-height: 1; padding: 4px 9px;
  color: #c0392b; border-radius: 3px;
  transition: background 0.15s, border-color 0.15s;
}
.wiz-modal-close:hover { background: rgba(192,57,43,0.16); border-color: #c0392b; }
/* Mobile: absolute top-right of content column */
.wiz-close-mobile {
  position: absolute; top: 0.75rem; right: 1rem; z-index: 10; font-size: 1.1rem;
}
@media (min-width: 961px) { .wiz-close-mobile { display: none; } }
/* Desktop: inline in sidebar header, static flow */
.wiz-close-desktop { position: static; font-size: 0.9rem; }
@media (max-width: 960px) { .wiz-close-desktop { display: none; } }
/* Sidebar header row */
.wiz-sb-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem;
}
.wiz-sb-header .wiz-sidebar-label { margin-bottom: 0; }

/* Two-column shell */
.wiz-shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  flex: 1;
  min-height: 100dvh;
}

/* Left: step content */
.wiz-content-col {
  padding: 3.5rem 3.5rem 3.5rem 5vw;
  overflow-y: auto;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.wiz-steps-wrap { flex: 1; display: flex; flex-direction: column; min-height: 0; }

/* ── Wizard intro: competitive pitch (above shell grid) ── */
.wiz-intro-inner { max-width: 640px; margin-bottom: 2.25rem; }

/* Three-part staggered headline */
.wiz-intro-statement { margin: 0 0 1.5rem; }
.wiz-intro-s1 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.8vw, 1.75rem);
  font-weight: 300; line-height: 1.25;
  color: rgba(26,26,24,0.42);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wiz-intro-s2 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.8vw, 1.75rem);
  font-weight: 600; line-height: 1.2;
  color: rgba(26,26,24,0.72);
  margin-bottom: 0.15rem;
  white-space: nowrap;
}
.wiz-intro-s3 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.8vw, 2.5rem);
  font-weight: 600; line-height: 1.05;
  font-style: italic;
  color: var(--gold-dk);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Gold rule */
.wiz-intro-rule {
  width: 36px; height: 1px;
  background: var(--gold-dk); opacity: 0.35;
  margin-bottom: 1.1rem;
}

/* Body text */
.wiz-intro-body {
  font-size: 1rem; line-height: 1.8;
  color: rgba(26,26,24,0.6);
}
.wiz-intro-body em { font-style: italic; color: var(--ink); }


/* Sidebar condensed pitch */
.wiz-sb-pitch {
  font-size: 0.81rem; color: rgba(253,250,244,0.48);
  line-height: 1.65; font-style: italic; margin-bottom: 0.5rem;
}
.wiz-sb-pitch strong { color: rgba(201,168,76,0.85); font-style: normal; font-weight: 400; }

/* Right: sidebar */
.wiz-sidebar {
  background: var(--ink);
  position: sticky;
  top: 72px;
  height: calc(100dvh - 72px);
  overflow-y: auto;
  flex-shrink: 0;
}
.wiz-sidebar-inner {
  padding: 1.75rem 2rem 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Sidebar typography */
.wiz-sidebar-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,250,244,0.62); margin-bottom: 0.7rem;
}
.wiz-sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 300; color: var(--ivory);
  line-height: 1.15; margin-bottom: 0;
}
.wiz-sidebar-title em { font-style: italic; color: var(--gold); }
.wiz-sb-hr { height: 1px; background: rgba(255,255,255,0.1); margin: 1rem 0; }

/* Step indicator */
.wiz-sb-step-lbl {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(253,250,244,0.62); margin-bottom: 0.65rem;
}
.wiz-sb-progress {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 1.25rem; position: relative; overflow: hidden;
}
.wiz-sb-progress-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Summary rows */
.wiz-sidebar-summary { display: flex; flex-direction: column; }
.wiz-sb-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wiz-sb-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.wiz-sb-lbl {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,250,244,0.62);
}
.wiz-sb-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300; color: var(--ivory);
}

/* Total block */
.wiz-sb-divider { height: 1px; background: rgba(201,168,76,0.35); margin: 0.9rem 0; }
.wiz-sb-total-lbl {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(253,250,244,0.62); margin-bottom: 0.3rem;
}
.wiz-sb-total-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--ivory); line-height: 1;
}
.wiz-sb-pp { font-size: 0.84rem; color: var(--gold); margin-top: 0.25rem; }

/* Step panels */
.wiz-panel { display: none; animation: wizIn 0.32s ease; }
.wiz-panel.active { display: block; }
.wiz-panel.back-anim { animation: wizBack 0.32s ease; }
/* Step 2 gets its own flex layout so the tab bar is always visible
   and only the chair/table panel scrolls internally */
#wiz-step-2.active { display: flex; flex-direction: column; flex: 1; min-height: 0; }
@keyframes wizIn  { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:translateX(0); } }
@keyframes wizBack{ from { opacity:0; transform:translateX(-28px);} to { opacity:1; transform:translateX(0); } }

/* ── Step 1: suppress panel wizIn on load/forward — back-nav still gets wizBack ── */
#wiz-step-1.active:not(.back-anim) { animation: none; }

/* ── Calculator body: slide up on initial load only ── */
@keyframes wiz-calc-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wiz-calc-body.wiz-page-load {
  animation: wiz-calc-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

/* Step header */
.wiz-step-num {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 0.5rem;
}
.wiz-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--ink); line-height: 1.2;
  margin-bottom: 2rem;
}
.wiz-step-title em { font-style: italic; color: var(--gold-dk); }

/* ── STEP 1: GUEST COUNT ── */
.wiz-guest-btn {
  width: 44px; height: 60px; border: 1.5px solid var(--line);
  background: var(--white); font-size: 1.6rem; color: var(--gold);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; font-family: 'Jost', sans-serif; flex-shrink: 0;
}
.wiz-guest-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.wiz-quick-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.wiz-qbtn {
  padding: 0.5rem 1.3rem; border: 1px solid var(--line);
  background: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.9rem; color: var(--muted); cursor: pointer; transition: all 0.18s;
}
.wiz-qbtn:hover, .wiz-qbtn.wiz-active { border-color: var(--gold); background: var(--gold); color: var(--ink); font-weight: 500; }

/* ── STEP 2: CHAIR GRID ── */
.wiz-chair-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.wiz-chair-card {
  background: var(--white); border: 1.5px solid var(--line);
  padding: 0; cursor: pointer; transition: all 0.2s;
  position: relative; text-align: center; overflow: hidden;
}
.wiz-chair-card:hover { border-color: var(--gold-lt); box-shadow: 0 4px 20px rgba(201,168,76,0.15); transform: translateY(-2px); }
.wiz-chair-card.wiz-selected { border-color: var(--gold); }
.wiz-chair-card.wiz-selected::after {
  content: '✓'; position: absolute; top: 0.7rem; right: 0.7rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.wiz-chair-img-wrap {
  height: 200px; width: 100%; margin: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; overflow: hidden;
}
.wiz-chair-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.45s ease;
  display: block;
}
.wiz-chair-card:hover .wiz-chair-img-wrap img { transform: scale(1.07); }
.wiz-chair-info {
  padding: 0.65rem 0.9rem 0.75rem;
  border-top: 1px solid var(--line);
}

/* Guest count row */
.wiz-gcount-row {
  display: flex; align-items: center; gap: 0.75rem;
  justify-content: flex-start; margin-bottom: 1.5rem;
}
.wiz-gcount-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; color: var(--muted);
}

/* Guest number input — box-border style, display-scale */
.wiz-guests-input {
  width: 4.5ch; padding: 0.15rem 0.4rem;
  border: 1.5px solid var(--line); background: var(--white);
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300;
  color: var(--ink); outline: none; text-align: center; line-height: 1;
  transition: border-color 0.2s, box-shadow 0.2s; -moz-appearance: textfield;
}
.wiz-guests-input:hover { border-color: var(--gold-lt); }
.wiz-guests-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.wiz-guests-input::-webkit-inner-spin-button,
.wiz-guests-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.wiz-chair-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.wiz-chair-tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.15rem 0.5rem;
  background: var(--cream); color: var(--muted); margin-bottom: 0.25rem;
}
.wiz-chair-card.wiz-selected .wiz-chair-tag { background: rgba(201,168,76,0.15); color: var(--gold-dk); }
.wiz-chair-price { font-size: 0.82rem; color: var(--gold-text); margin-bottom: 0; }

/* Chair quantity row (appears when card is selected) */
.wiz-chair-qty-row {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.6rem 0.9rem; border-top: 1px solid var(--line);
  margin-top: 0;
}
.wiz-chair-qty-lbl { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }

/* ── MÖBEL TABS (step 2) ── */
.wiz-mobel-tabs {
  display: flex; border: 1.5px solid var(--line);
  border-bottom: none; margin-bottom: 0;
  background: var(--ivory);
  margin-left: -5vw;
  margin-right: -3.5rem;
  box-shadow: 0 3px 0 0 var(--ivory), 0 4px 0 0 var(--line);
  flex-shrink: 0;
}
.wiz-mobel-tabs::before { display: none; }
.wiz-mobel-tab {
  flex: 1; padding: 0.85rem 1rem;
  background: var(--cream); border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 400; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.18s; border-bottom: 3px solid transparent;
  user-select: none;
}
.wiz-mobel-tab + .wiz-mobel-tab { border-left: 1.5px solid var(--line); }
.wiz-mobel-tab:hover { color: var(--gold-dk); background: var(--ivory); }
.wiz-mobel-tab.active {
  background: var(--white); color: var(--gold-text);
  border-bottom-color: var(--gold);
}
.wiz-mobel-icon {
  width: 18px; height: 18px; vertical-align: middle;
  flex-shrink: 0;
}
.wiz-mobel-count {
  font-size: 0.72rem; font-family: 'Jost', sans-serif;
  background: var(--gold); color: var(--ink); font-weight: 500;
  padding: 0.1rem 0.45rem; border-radius: 20px;
  display: none;
}
.wiz-mobel-count.has-items { display: inline-block; }
.wiz-mobel-panel {
  display: none;
  border: 1.5px solid var(--line);
  padding: 1.25rem 1rem 1rem;
}
.wiz-mobel-panel.active {
  display: block;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
.wiz-mobel-tab-next {
  display: block; width: 100%; margin-top: 1.25rem;
  padding: 0.7rem 1rem; background: var(--cream);
  border: 1.5px solid var(--line); cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); transition: all 0.18s; text-align: center;
}
.wiz-mobel-tab-next:hover { border-color: var(--gold); color: var(--gold-dk); background: var(--white); }

.wiz-mobel-prompt {
  display: none;
  border: 1.5px dashed var(--line);
  padding: 2.5rem 1rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
}
.wiz-mobel-prompt.active { display: block; }
.wiz-mobel-prompt span {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ── STEP 2: TISCHE grid ── */
#wiz-table-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.wiz-table-card {
  background: var(--white); border: 1.5px solid var(--line);
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column; position: relative;
}
.wiz-table-card:hover { border-color: var(--gold-lt); box-shadow: 0 4px 20px rgba(201,168,76,0.15); transform: translateY(-2px); }
.wiz-table-card.wiz-selected { border-color: var(--gold); }
.wiz-table-card.wiz-selected::after {
  content: '✓'; position: absolute; top: 0.45rem; right: 0.55rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.wiz-table-img-wrap {
  height: 170px; width: 100%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem; overflow: hidden;
}
.wiz-table-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.45s ease; display: block;
}
.wiz-table-card:hover .wiz-table-img-wrap img { transform: scale(1.06); }
.wiz-table-info {
  padding: 0.65rem 0.9rem 0.75rem;
  border-top: 1px solid var(--line); flex: 1;
}
.wiz-table-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.wiz-table-tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.15rem 0.5rem;
  background: var(--cream); color: var(--muted); margin-bottom: 0.25rem;
}
.wiz-table-card.wiz-selected .wiz-table-tag { background: rgba(201,168,76,0.15); color: var(--gold-dk); }
.wiz-table-price { font-size: 0.82rem; color: var(--gold-text); }
.wiz-table-qty-row {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.6rem 0.9rem; border-top: 1px solid var(--line);
}
.wiz-qty-ctrl { display: flex; align-items: center; gap: 0.5rem; }
.wiz-qty-btn {
  width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--white); font-size: 1rem; color: var(--gold);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; font-family: 'Jost', sans-serif;
}
.wiz-qty-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
/* Unified editable quantity input — shared by chairs, tables, textiles */
.wiz-qty-input {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300;
  color: var(--ink); width: 56px; text-align: center;
  background: var(--white); border: 1.5px solid var(--line);
  outline: none; padding: 0.2rem 0.25rem;
  cursor: text; transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
}
.wiz-qty-input:hover { border-color: var(--gold-lt); }
.wiz-qty-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.wiz-qty-input::-webkit-inner-spin-button,
.wiz-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── STEP 4: TEXTILES ── */
.wiz-tex-toggle { display: flex; gap: 1rem; margin-bottom: 2rem; }
.wiz-tex-btn {
  flex: 1; padding: 1.4rem 1rem; border: 1.5px solid var(--line);
  background: var(--white); font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; cursor: pointer; transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.wiz-tex-btn .tex-icon { font-size: 1.5rem; }
.wiz-tex-btn small { font-family: 'Jost', sans-serif; font-size: 0.78rem; color: var(--muted); font-weight: 400; }
.wiz-tex-btn:hover { border-color: var(--gold-lt); }
.wiz-tex-btn.wiz-selected { border-color: var(--gold); background: rgba(201,168,76,0.05); }

#wiz-tex-ja .tex-icon { color: #5A8A5A; }
#wiz-tex-nein .tex-icon { color: #A04040; }
.wiz-textile-items { display: none; }
.wiz-textile-items.open { display: block; }
.wiz-textile-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
}
.wiz-textile-row:last-child { border-bottom: none; }
.wiz-textile-info { flex: 1; }
.wiz-textile-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
.wiz-textile-sub { font-size: 0.76rem; color: var(--muted); }
.wiz-textile-unit { font-size: 0.82rem; color: var(--gold-text); width: 72px; text-align: right; flex-shrink: 0; }
.wiz-tex-suggest {
  font-size: 0.74rem; color: var(--muted); background: none; border: none;
  cursor: pointer; text-decoration: underline; transition: color 0.15s; white-space: nowrap;
}
.wiz-tex-suggest:hover { color: var(--gold); }

/* ── STEP 5: LOCATION + EMAIL ── */
.wiz-loc-wrap { position: relative; max-width: 520px; }
.wiz-input {
  width: 100%; border: 1.5px solid var(--line); background: var(--white);
  padding: 1rem 1.2rem; font-family: 'Jost', sans-serif; font-size: 0.95rem;
  color: var(--ink); outline: none; transition: border-color 0.2s;
}
.wiz-input:focus { border-color: var(--gold); }
.wiz-autocomplete {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 50;
  background: var(--white); border: 1.5px solid var(--gold-lt);
  box-shadow: 0 8px 24px rgba(42,34,24,0.12); display: none;
}
.wiz-autocomplete.open { display: block; }
.wiz-ac-item {
  padding: 0.8rem 1.2rem; font-size: 0.9rem; cursor: pointer;
  border-bottom: 1px solid var(--line); transition: background 0.15s;
}
.wiz-ac-item:last-child { border-bottom: none; }
.wiz-ac-item:hover { background: var(--cream); }
.wiz-transport-result {
  margin-top: 1.2rem; padding: 1rem 1.4rem; background: var(--ink);
  display: none; justify-content: space-between; align-items: center;
  max-width: 520px;
}
.wiz-transport-result.show { display: flex; }
.wiz-tr-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253,250,244,0.7); margin-bottom: 0.2rem; }
.wiz-tr-dist { display: none !important; }
.wiz-tr-val { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--gold); }
.wiz-tr-truck { color: var(--gold); opacity: 0.55; display: flex; align-items: center; margin-right: 0.85rem; flex-shrink: 0; }

/* ── Step-1 Weiter button: continuous gold pulse + flash on guest change ── */
/* outline ping — not clipped by overflow-y:auto ancestors */
@keyframes wiz-btn-ping {
  0%   { outline-color: rgba(201,168,76,0.8);  outline-offset: 2px;  }
  55%  { outline-color: rgba(201,168,76,0);    outline-offset: 14px; }
  100% { outline-color: rgba(201,168,76,0);    outline-offset: 2px;  }
}
@keyframes wiz-btn-flash {
  0%   { outline-color: rgba(201,168,76,0.95); outline-offset: 2px;  }
  100% { outline-color: rgba(201,168,76,0);    outline-offset: 22px; }
}
/* target both desktop panel button and mobile sticky-bar button */
#wiz-step1-next,
#wiz-bar-next-btn {
  outline: 2px solid transparent;
  animation: wiz-btn-ping 2s ease-out infinite;
}
#wiz-step1-next.wiz-btn-flash,
#wiz-bar-next-btn.wiz-btn-flash { animation: wiz-btn-flash 0.55s ease-out; }

/* ── 60-second competitive note ── */

/* ── STEP 5: DATE PICKER ── */
.wiz-date-block { max-width: 380px; }
.wiz-date-fields {
  display: flex; align-items: center; gap: 0.4rem; margin-bottom: 1rem;
}
.wiz-date-field {
  width: 3rem; text-align: center;
  font-family: 'Jost', sans-serif; font-size: 1.1rem;
  padding: 0.55rem 0.2rem;
  border: 1.5px solid var(--line); border-radius: 6px;
  background: var(--white); color: var(--ink);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.wiz-date-field-year { width: 4.6rem; }
.wiz-date-field:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,0.15); }
.wiz-date-field.filled { border-color: var(--gold-dk); color: var(--gold-dk); font-weight: 500; }
.wiz-date-sep { color: var(--muted); font-size: 1.3rem; font-weight: 300; line-height: 1; }

/* Inline calendar — always visible */
.wiz-cal {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 1rem 0.8rem; user-select: none;
}
.wiz-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.wiz-cal-selects {
  display: flex; gap: 4px; align-items: center;
}
.wiz-cal-sel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500; color: var(--ink);
  background: none; border: none; cursor: pointer;
  padding: 2px 4px; border-radius: 6px;
  appearance: none; -webkit-appearance: none;
  outline: none; transition: background 0.15s;
}
.wiz-cal-sel:hover, .wiz-cal-sel:focus { background: var(--cream); }
.wiz-cal-nav {
  background: none; border: none; cursor: pointer;
  font-size: 1.7rem; color: var(--gold-dk); padding: 0 0.5rem; line-height: 1;
  border-radius: 4px; transition: background 0.15s;
}
.wiz-cal-nav:hover { background: var(--cream); }
.wiz-cal-dow {
  display: grid; grid-template-columns: repeat(7,1fr);
  text-align: center; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem; padding: 0 2px;
}
.wiz-cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 2px;
}
.wiz-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; border-radius: 50%; cursor: pointer;
  transition: background 0.12s, color 0.12s; color: var(--ink);
  min-height: 36px;
}
.wiz-cal-day:hover:not(.past):not(.empty) { background: var(--cream); }
.wiz-cal-day.today { font-weight: 700; color: var(--gold-dk); }
.wiz-cal-day.selected { background: var(--gold) !important; color: var(--white) !important; font-weight: 700; }
.wiz-cal-day.past { color: var(--line); cursor: default; pointer-events: none; }
.wiz-cal-day.empty { cursor: default; }

/* ── STEP 7: SUMMARY ── */
/* summary grid removed — flattened to single column in content col */
.wiz-sum-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.65rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem;
}
.wiz-sum-lname { color: var(--ink); }
.wiz-sum-lqty { color: var(--muted); font-size: 0.8rem; margin-left: 0.3rem; }
.wiz-sum-lval { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--ink); }
.wiz-sum-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.2rem; }
.wiz-sum-total-lbl { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.wiz-sum-total-val { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--ink); line-height: 1; }
.wiz-sum-pp { font-size: 0.84rem; color: var(--gold-text); text-align: right; margin-bottom: 0.3rem; }
.wiz-sum-mwst { font-size: 0.76rem; color: var(--muted); }
.wiz-sum-top { margin-bottom: 0.2rem; }
.wiz-sum-breakdown { margin-top: 2rem; }
.wiz-sum-breakdown-lbl { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
/* Step 6 back/edit link — shown on mobile only (desktop uses the sidebar back) */
.wiz-sum-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: none; cursor: pointer; padding: 0;
  margin-bottom: 1.1rem;
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); transition: color 0.18s;
}
.wiz-sum-back:hover { color: var(--gold); }
@media (min-width: 961px) { .wiz-sum-back { display: none; } }

/* Contact panel (step 7 — full width in content col) */
.wiz-contact-panel { background: var(--ink); padding: 2rem; margin-top: 2rem; }
.wiz-cp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--ivory); margin-bottom: 1.5rem; }
.wiz-cp-field { margin-bottom: 1rem; }
.wiz-cp-field label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(253,250,244,0.5); margin-bottom: 0.35rem; }
.wiz-cp-field input {
  width: 100%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
  padding: 0.75rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.92rem;
  color: var(--ivory); outline: none; transition: border-color 0.2s;
}
.wiz-cp-field input:focus { border-color: var(--gold); }
.wiz-submit-btn {
  width: 100%; background: var(--gold); color: var(--ink); font-weight: 500; border: none;
  padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.83rem;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; margin-top: 0.4rem;
}
.wiz-submit-btn:hover { background: var(--gold-hov); }
.wiz-submit-note {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem;
}
.wiz-submit-note span {
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: rgba(253,250,244,0.82);
  display: flex; align-items: center; gap: 0.3em;
}
.wiz-submit-note span::before {
  content: '✓'; color: var(--gold-dk); font-size: 0.85rem; font-weight: 700;
}
/* Success card — swaps in for the whole form on submit */
.wiz-contact-panel.submitted .wiz-cp-title,
.wiz-contact-panel.submitted .wiz-cp-field,
.wiz-contact-panel.submitted .wiz-submit-btn,
.wiz-contact-panel.submitted .wiz-submit-note { display: none; }
.wiz-contact-panel.submitted .wiz-success-card { display: block; }

.wiz-success-card { display: none; }
.wiz-success-seal {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.4rem;
}
.wiz-success-head {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300;
  color: var(--ivory); line-height: 1.25; margin-bottom: 0.5rem;
}
.wiz-success-sub {
  font-size: 0.86rem; color: rgba(253,250,244,0.6); margin-bottom: 2rem;
}
.wiz-success-steps { margin: 0 0 2rem; padding: 0; list-style: none; counter-reset: s; }
.wiz-success-steps li {
  position: relative; padding: 0 0 1.1rem 2.6rem; counter-increment: s;
  font-size: 0.9rem; line-height: 1.55; color: rgba(253,250,244,0.85);
}
.wiz-success-steps li:last-child { padding-bottom: 0; }
.wiz-success-steps li::before {
  content: counter(s); position: absolute; left: 0; top: -0.1rem;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5); color: var(--gold);
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
}
.wiz-success-steps li:not(:last-child)::after {
  content: ''; position: absolute; left: 13px; top: 26px; bottom: 0.3rem;
  width: 1px; background: rgba(201,168,76,0.25);
}
.wiz-success-contact {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.wiz-success-avatar {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid rgba(201,168,76,0.45);
}
.wiz-success-person { display: flex; flex-direction: column; line-height: 1.55; font-size: 0.86rem; }
.wiz-success-person-label {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,250,244,0.5); margin-bottom: 0.1rem;
}
.wiz-success-contact strong { color: var(--ivory); font-weight: 500; }
.wiz-success-contact a { color: var(--gold); text-decoration: none; }
.wiz-success-phone { color: rgba(253,250,244,0.7); }
.wiz-success-reassure {
  margin-top: 1.4rem; display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(253,250,244,0.6);
}
.wiz-success-reassure span::before { content: '✓'; color: var(--gold); margin-right: 0.3em; }

/* Loader (1.5s processing beat) */
.wiz-contact-panel.submitting .wiz-cp-title,
.wiz-contact-panel.submitting .wiz-cp-field,
.wiz-contact-panel.submitting .wiz-submit-btn,
.wiz-contact-panel.submitting .wiz-submit-note { display: none; }
.wiz-contact-panel.submitting .wiz-success-loader { display: flex; }

.wiz-success-loader {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem; min-height: 168px;
}
.wiz-success-spinner {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.18); border-top-color: var(--gold);
  animation: wiz-spin 0.8s linear infinite;
}
.wiz-success-loader-txt {
  font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(253,250,244,0.55);
}
@keyframes wiz-spin { to { transform: rotate(360deg); } }

/* Staggered reveal of the confirmation card */
.wiz-contact-panel.submitted .wiz-success-head,
.wiz-contact-panel.submitted .wiz-success-sub,
.wiz-contact-panel.submitted .wiz-success-steps li,
.wiz-contact-panel.submitted .wiz-success-contact,
.wiz-contact-panel.submitted .wiz-success-reassure {
  opacity: 0; animation: wiz-fade-up 0.5s ease-out forwards;
}
.wiz-contact-panel.submitted .wiz-success-seal {
  opacity: 0; animation: wiz-seal-pop 0.55s 0.05s ease-out forwards;
}
.wiz-contact-panel.submitted .wiz-success-head      { animation-delay: 0.15s; }
.wiz-contact-panel.submitted .wiz-success-sub       { animation-delay: 0.25s; }
.wiz-contact-panel.submitted .wiz-success-steps li:nth-child(1) { animation-delay: 0.38s; }
.wiz-contact-panel.submitted .wiz-success-steps li:nth-child(2) { animation-delay: 0.50s; }
.wiz-contact-panel.submitted .wiz-success-steps li:nth-child(3) { animation-delay: 0.62s; }
.wiz-contact-panel.submitted .wiz-success-contact  { animation-delay: 0.74s; }
.wiz-contact-panel.submitted .wiz-success-reassure { animation-delay: 0.84s; }
@keyframes wiz-fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wiz-seal-pop { 0% { opacity: 0; transform: scale(0.5); } 65% { opacity: 1; transform: scale(1.12); } 100% { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .wiz-success-spinner { animation-duration: 1.6s; }
  .wiz-contact-panel.submitted .wiz-success-card *,
  .wiz-contact-panel.submitted .wiz-success-seal { animation: none; opacity: 1; }
}

/* ── WIZARD NAV ── */
.wiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 3rem; padding-top: 2rem;
  gap: 1rem;
}
.wiz-back-btn {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.18s;
}
.wiz-back-btn:hover { color: var(--gold); }
.wiz-back-btn:disabled { opacity: 0.3; cursor: default; }
.wiz-next-btn {
  padding: 0.9rem 2.4rem; background: var(--gold); color: var(--ink); font-weight: 500;
  border: none; font-family: 'Jost', sans-serif; font-size: 0.83rem;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.wiz-next-btn:hover { background: var(--gold-hov); }
.wiz-next-btn:disabled { background: var(--line); color: var(--muted); cursor: default; }
.wiz-skip-btn {
  display: block; width: 100%;
  padding: 0.85rem 1.5rem; margin-top: 1.5rem;
  background: var(--white); border: 1.5px solid var(--line);
  font-family: 'Jost', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  text-align: center; min-height: 44px;
}
.wiz-skip-btn:hover { border-color: var(--gold-lt); background: var(--cream); color: var(--ink); }

/* ── STICKY BAR ── */
/* ── MOBILE STICKY BAR ── */
#wiz-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); border-top: 2px solid var(--gold); z-index: 600;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
#wiz-bar.wiz-bar-on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* Three-zone layout: [← Back] [progress + price] [Weiter →] */
.wiz-bar-inner {
  display: flex; align-items: center; height: 64px;
  padding: 0 0.75rem; gap: 0.5rem;
}
.wiz-bar-back {
  flex-shrink: 0; min-width: 44px; height: 44px; padding: 0 0.5rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,250,244,0.62);
  display: flex; align-items: center; white-space: nowrap;
  transition: color 0.18s;
}
.wiz-bar-back:hover { color: var(--ivory); }
.wiz-bar-back:disabled { opacity: 0.28; cursor: default; }
.wiz-bar-center {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.wiz-bar-progress {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.15); position: relative; overflow: hidden;
}
.wiz-bar-progress-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.wiz-bar-price {
  display: flex; align-items: baseline;
}
.wiz-bar-tval {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; color: var(--ivory); line-height: 1;
}
.wiz-bar-next {
  flex-shrink: 0; height: 44px; padding: 0 1.25rem;
  background: var(--gold); color: var(--ink); font-weight: 500; border: none;
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  white-space: nowrap; display: flex; align-items: center;
}
.wiz-bar-next:hover { background: var(--gold-hov); }
.wiz-bar-next:disabled { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); cursor: default; }

/* ── SIDEBAR NAV ── */
.wiz-sb-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: sticky; bottom: 0;
  background: var(--ink);
  flex-shrink: 0;
}
.wiz-sb-back-btn {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253,250,244,0.7);
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.18s;
}
.wiz-sb-back-btn:hover { color: var(--gold); }
.wiz-sb-back-btn:disabled { opacity: 0.3; cursor: default; }
.wiz-sb-next-btn {
  padding: 0.75rem 1.75rem; background: var(--gold); color: var(--ink); font-weight: 500;
  border: none; font-family: 'Jost', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.wiz-sb-next-btn:hover { background: var(--gold-hov); }
.wiz-sb-next-btn:disabled { background: var(--line); color: var(--muted); cursor: default; }

/* Panel nav visible on all sizes; sidebar nav is supplementary on desktop */

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  /* Collapse to single column, show mobile header, hide sidebar */
  .wiz-shell { grid-template-columns: 1fr; min-height: auto; }
  .wiz-sidebar { display: none; }
  .wiz-content-col {
    max-height: 100dvh; overflow-y: auto;
    padding: 3rem 5vw 6rem;
  }
}
@media (max-width: 960px) {
  .wiz-chair-grid { grid-template-columns: repeat(2, 1fr); }
  .wiz-mobel-tabs { margin-left: -5vw; margin-right: -5vw; }
}
@media (max-width: 600px) {
  .wiz-chair-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  #wiz-table-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #wiz-table-list { grid-template-columns: 1fr; }
}
/* On mobile the bar provides back/next — hide panel-level duplicates */
@media (max-width: 960px) {
  .wiz-back-btn, .wiz-next-btn { display: none; }
}
/* Hide sticky bar on desktop — sidebar replaces it */
@media (min-width: 961px) {
  #wiz-bar { display: none !important; }
  body { padding-bottom: 0; }
}

/* ── MODAL-SPECIFIC OVERRIDES ── */
#wiz-modal .wiz-intro-inner { display: none; }
#wiz-modal .wiz-step-title { margin-bottom: 1rem; }
#wiz-modal .wiz-sidebar { top: 0; height: 100dvh; }
/* Content column padding */
#wiz-modal .wiz-content-col { padding-top: 2rem; padding-bottom: 5rem; }
/* Mobile: extra top clearance for floating close button,
   and bottom clearance for the fixed sticky bar (64px + safe-area inset) */
@media (max-width: 960px) {
  #wiz-modal .wiz-content-col {
    padding-top: 2.5rem;
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 2.5rem);
  }
}
/* In modal: hide inline step-level nav — sidebar or bar handle navigation */
#wiz-modal .wiz-nav { display: none !important; }
/* Desktop modal: sidebar nav is visible — no bottom bar needed */
#wiz-modal .wiz-sb-nav { display: flex; }
/* Mobile modal: sidebar is hidden — bottom bar handles navigation */
@media (max-width: 960px) {
  #wiz-modal .wiz-sb-nav { display: none !important; }
  #wiz-modal.wiz-open ~ #wiz-bar { display: block !important; }
}



/* ── SORTIMENT SECTION ── */
#sortiment {
  background: var(--ivory);
  padding: 6rem 5vw 0;
}
.sort-head {
  margin-bottom: 2.5rem;
}
.sort-head-text { max-width: 580px; }

/* Sticky tab bar */
.sort-tabs-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: var(--ivory);
  border-bottom: 2px solid var(--gold);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0;
  padding: 0 5vw;
  margin: 0 -5vw;
  box-shadow: 0 4px 24px rgba(26,26,24,0.07);
}
.sort-tab {
  background: none;
  border: none;
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.sort-tab::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.sort-tab:hover { color: var(--ink); }
.sort-tab.active { color: var(--ink); font-weight: 500; }
.sort-tab.active::after { transform: scaleX(1); }

/* Panels: add top padding since tabs are now sticky */
.sort-panel { display: none; padding-top: 2.5rem; padding-bottom: 5rem; }
.sort-panel.active { display: block; }

/* Card grid */
.sort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
}

/* Product card */
.sort-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Media wrapper */
.sort-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
}
.sort-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.35s ease, transform 0.5s ease;
  z-index: 1;
}
.sort-media video.card-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.sort-card:hover .sort-media img {
  opacity: 0;
  transform: scale(1.02);
}
.sort-card.no-video:hover .sort-media img {
  opacity: 1;
  transform: scale(1.05);
}

/* Style tag */
.sort-tag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  z-index: 3;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(253,250,244,0.88);
  color: var(--muted);
  padding: 0.22rem 0.55rem;
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: background 0.2s;
}

/* 360° indicator */
.sort-360 {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  z-index: 3;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.55);
  background: rgba(42,34,24,0.45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s 0.1s ease, transform 0.25s 0.1s ease;
  pointer-events: none;
}
.sort-card:hover .sort-360 {
  opacity: 1;
  transform: scale(1);
}
.sort-360 svg { width: 16px; height: 16px; }

/* Kissen-inklusive badge */
.sort-cushion {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.94);
  color: var(--ink);
  padding: 0.24rem 0.6rem 0.24rem 0.5rem;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.sort-cushion svg { width: 12px; height: 12px; flex-shrink: 0; }

/* "Foto folgt" placeholder tile */
.ph-tile {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory); color: var(--muted);
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px dashed var(--line);
}
.ph-tile-sm { position: static; width: 100%; height: 100%; }

.sort-tax {
  font-family: 'Jost', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.2rem;
}
.sort-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* Info strip */
.sort-info {
  padding: 1rem 1rem 1.1rem;
  border-top: 1px solid var(--line);
}
.sort-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.sort-price {
  font-size: 0.8rem;
  color: var(--gold-text);
  letter-spacing: 0.04em;
}
.sort-price-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 0.3rem;
}

/* Textile panel */
.sort-tex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
}
.sort-tex-card {
  background: var(--white);
  padding: 1.6rem 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.sort-tex-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 1.4rem;
}
.sort-tex-body { flex: 1; }
.sort-tex-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.sort-tex-sub {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.sort-tex-price {
  font-size: 0.82rem;
  color: var(--gold-text);
}

.sort-cta-wrap {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 3rem 2rem 2.75rem;
  background: var(--ink);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.sort-cta-wrap::before {
  content: "";
  position: absolute;
  top: -45%; left: 50%;
  transform: translateX(-50%);
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201,168,76,0.22), transparent 65%);
  pointer-events: none;
}
.sort-cta-eyebrow {
  position: relative;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.7rem;
}
.sort-cta-hint {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  line-height: 1.3;
  color: var(--ivory);
  max-width: 26ch;
  margin: 0 auto 1.6rem;
}
.sort-cta-hint strong { color: var(--gold-lt); font-weight: 600; }
.sort-cta-btn {
  position: relative;
  font-size: 0.92rem;
  padding: 1.05rem 2.6rem;
  box-shadow: 0 10px 30px rgba(201,168,76,0.28);
}
.sort-cta-trust {
  position: relative;
  margin-top: 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(253,250,244,0.6);
}
@media (max-width: 600px) {
  .sort-cta-wrap { padding: 2.4rem 1.4rem 2.2rem; margin-top: 3rem; }
  .sort-cta-hint { font-size: 1.35rem; }
  .sort-cta-btn { width: 100%; padding: 1rem 1rem; }
}

@media (max-width: 600px) {
  .sort-head { margin-bottom: 1.5rem; }
  .sort-tabs-bar { padding: 0 4vw; margin: 0 -5vw; }
  .sort-tab { padding: 0.85rem 1.2rem; font-size: 0.76rem; letter-spacing: 0.14em; flex: 1; text-align: center; }
  .sort-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── DEKO CROSS-SELL (Herballon) ── */
#deko {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(14,14,12,0.55) 0%,
      rgba(14,14,12,0.72) 45%,
      rgba(14,14,12,0.88) 100%),
    url('/img/hochzeitsdeko-feuerwehrscheune-unterwaltersdorf.webp') center 30% / cover no-repeat;
  border-top: 1px solid var(--line);
  padding: 6rem 5vw;
  text-align: center;
}
.deko-inner { max-width: 680px; margin: 0 auto; }
#deko .section-label { justify-content: center; color: var(--gold-lt); }
#deko .section-title { color: var(--ivory); }
#deko .section-title em { color: var(--gold-lt); }
#deko .divider { margin-left: auto; margin-right: auto; background: var(--gold); opacity: 0.5; }
#deko .section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(253,250,244,0.85);
  max-width: 600px;
  margin: 0 auto;
}
.deko-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 2.25rem;
}
.deko-chip {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,244,0.9);
  background: rgba(253,250,244,0.08);
  border: 1px solid rgba(253,250,244,0.25);
  padding: 0.42rem 0.9rem;
  backdrop-filter: blur(4px);
}
.deko-note {
  margin-top: 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(253,250,244,0.55);
}
