/* -------------------------------------------------------------
     Danis BBQ — Design Tokens
     ------------------------------------------------------------- */
  :root {
    --bg:            #0c0a09;
    --bg-2:          #15110e;
    --surface:       #1a1410;
    --surface-2:     #221a14;
    --line:          #2c2218;
    --line-2:        #3a2c1f;

    --text:          #f3ead9;
    --text-dim:      #c8baa3;
    --text-muted:    #8a7c6a;

    --ember:         #e8602e;   /* fire orange */
    --ember-2:       #ff7a3d;
    --ember-deep:    #b53f15;
    --copper:        #d4a24a;   /* warm gold */
    --copper-deep:   #a87a2c;
    --blood:         #8a1f12;   /* deep BBQ red */

    --radius:        14px;
    --radius-lg:     22px;

    --shadow-glow:   0 0 80px -20px rgba(232,96,46,.55);
    --shadow-card:   0 30px 60px -30px rgba(0,0,0,.7), 0 0 0 1px var(--line) inset;

    --max:           1280px;
    --pad:           clamp(20px, 4vw, 56px);

    --f-display: "Anton", "Impact", sans-serif;
    --f-serif:   "DM Serif Display", "Times New Roman", serif;
    --f-script:  "Caveat", "Brush Script MT", cursive;
    --f-body:    "Manrope", system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* subtle smoke/grain background */
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    background:
      radial-gradient(1200px 600px at 80% -10%, rgba(232,96,46,.10), transparent 60%),
      radial-gradient(900px 600px at -10% 30%, rgba(212,162,74,.06), transparent 60%),
      radial-gradient(800px 500px at 50% 110%, rgba(232,96,46,.08), transparent 60%);
    z-index: 0;
  }
  body::after {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    opacity: .04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    z-index: 0;
  }
  main, header, footer { position: relative; z-index: 1; }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

  /* -------------------------------------------------------------
     Typography
     ------------------------------------------------------------- */
  .display {
    font-family: var(--f-display);
    font-weight: 400;
    letter-spacing: .01em;
    line-height: .95;
    text-transform: uppercase;
  }
  .eyebrow {
    font-family: var(--f-body);
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--ember);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--ember);
  }
  .script {
    font-family: var(--f-script);
    color: var(--copper);
    font-weight: 700;
    font-style: italic;
  }
  h1, h2, h3, h4 { margin: 0; }
  h2.display { font-size: clamp(38px, 5.5vw, 72px); }
  h3.display { font-size: clamp(26px, 2.4vw, 36px); }
  p { margin: 0; }
  .lede {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--text-dim);
    max-width: 62ch;
    line-height: 1.65;
  }

  /* -------------------------------------------------------------
     Buttons
     ------------------------------------------------------------- */
  .btn {
    --bg: var(--ember);
    --fg: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(232,96,46,.55); }
  .btn .arrow { transition: transform .2s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .btn--ghost {
    --bg: transparent;
    --fg: var(--text);
    border-color: var(--line-2);
  }
  .btn--ghost:hover {
    background: var(--surface);
    border-color: var(--ember);
    color: var(--ember);
  }
  .btn--copper { --bg: var(--copper); --fg: #1a1410; }

  /* -------------------------------------------------------------
     Header
     ------------------------------------------------------------- */
  .site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
  }
  .site-header.is-scrolled {
    background: rgba(12, 10, 9, .82);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: var(--line);
  }
  .site-header .bar {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .brand img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    transition: height .25s ease, width .25s ease;
  }
  .brand--logo-only img {
    height: 100px;
    width: 100px;
  }
  .site-header.is-scrolled .brand img {
    height: 80px;
    width: 80px;
  }
  .brand-text {
    display: flex; flex-direction: column; line-height: 1;
  }
  .brand-text .b1 {
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: .04em;
  }
  .brand-text .b2 {
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav a {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
  }
  .nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
  .nav-cta { margin-left: 10px; }

  .burger {
    display: none;
    background: transparent;
    border: 1px solid var(--line-2);
    color: var(--text);
    width: 46px; height: 46px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .burger svg { width: 22px; height: 22px; }

  @media (max-width: 1080px) {
    .nav { display: none; }
    .nav-cta { display: none; }
    .burger { display: inline-flex; }
  }

  /* Mobile menu */
  .mobile-menu {
    position: fixed; inset: 0;
    background: rgba(12, 10, 9, .96);
    backdrop-filter: blur(20px);
    z-index: 60;
    display: flex;
    flex-direction: column;
    padding: 90px var(--pad) 40px;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.7,0,.3,1);
    overflow-y: auto;
  }
  .mobile-menu.is-open { transform: translateY(0); }
  .mobile-menu a {
    font-family: var(--f-display);
    font-size: 34px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    letter-spacing: .03em;
  }
  .mobile-menu .btn { margin-top: 24px; align-self: flex-start; }
  .mobile-close {
    position: absolute; top: 16px; right: var(--pad);
    width: 46px; height: 46px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid var(--line-2);
    color: var(--text);
    cursor: pointer;
  }

  /* -------------------------------------------------------------
     Hero
     ------------------------------------------------------------- */
  .hero {
    position: relative;
    min-height: 100svh;
    padding: 140px var(--pad) 80px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background:
      linear-gradient(180deg, rgba(12,10,9,.55) 0%, rgba(12,10,9,.85) 60%, var(--bg) 100%),
      url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
  }
  .hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 60%, rgba(232,96,46,.18), transparent 60%);
  }

  .hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: end;
  }
  @media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

  .hero h1 {
    font-family: var(--f-display);
    font-weight: 400;
    line-height: .92;
    font-size: clamp(54px, 9vw, 124px);
    letter-spacing: .005em;
    text-transform: uppercase;
    text-wrap: balance;
  }
  .hero h1 .accent { color: var(--ember); display: block; }
  .hero h1 .serif {
    display: inline-block;
    font-family: var(--f-serif);
    font-style: italic;
    text-transform: none;
    color: var(--copper);
    font-size: .78em;
    letter-spacing: -.01em;
    font-weight: 400;
  }
  .hero .sub {
    margin-top: 28px;
    font-size: clamp(17px, 1.5vw, 21px);
    color: var(--text-dim);
    max-width: 56ch;
    line-height: 1.55;
  }
  .hero-ctas {
    margin-top: 36px;
    display: flex; flex-wrap: wrap; gap: 14px;
  }

  .hero-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(26,20,16,.85), rgba(20,15,12,.7));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
  }
  .hero-meta .trust {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .hero-meta .trust .ic {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(232,96,46,.12);
    color: var(--ember);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .hero-meta .trust .ic svg { width: 20px; height: 20px; }
  .hero-meta .trust h4 {
    font-size: 15px; font-weight: 700; letter-spacing: .02em;
    margin-bottom: 2px;
  }
  .hero-meta .trust p { color: var(--text-muted); font-size: 14px; line-height: 1.45; }

  /* scroll indicator */
  .scroll-cue {
    position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .scroll-cue .line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--ember), transparent); animation: scroll-cue 2s ease-in-out infinite; transform-origin: top; }
  @keyframes scroll-cue { 0%, 100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

  /* -------------------------------------------------------------
     Section base
     ------------------------------------------------------------- */
  section {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
    margin-bottom: 60px;
  }
  .section-head .left { max-width: 740px; }
  .section-head .eyebrow { margin-bottom: 18px; }
  @media (max-width: 820px) {
    .section-head { grid-template-columns: 1fr; }
  }

  .divider-rule {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line-2), transparent);
  }

  /* -------------------------------------------------------------
     Intro
     ------------------------------------------------------------- */
  .intro {
    text-align: center;
  }
  .intro .display { font-size: clamp(40px, 5.5vw, 76px); max-width: 16ch; margin: 18px auto 28px; text-wrap: balance; }
  .intro .lede { margin: 0 auto; }
  .intro .marquee-strip {
    margin-top: 70px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  }
  .marquee-track {
    display: flex; gap: 56px;
    width: max-content;
    animation: marquee 38s linear infinite;
    color: var(--text-muted);
    font-family: var(--f-display);
    font-size: 28px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
  .marquee-track .dot { color: var(--ember); font-size: 16px; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* -------------------------------------------------------------
     Über uns
     ------------------------------------------------------------- */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 980px) { .about { grid-template-columns: 1fr; gap: 50px; } }
  .about-img {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }
  .about-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12,10,9,.7));
  }
  .about-img .stamp {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    z-index: 1;
    display: flex; align-items: center; gap: 14px;
  }
  .about-img .stamp .num {
    font-family: var(--f-display);
    font-size: 56px;
    color: var(--ember);
    line-height: 1;
  }
  .about-img .stamp .lbl {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .15em;
  }
  .about h2 { margin-top: 18px; }
  .about p { color: var(--text-dim); margin-top: 22px; }
  .about-signature {
    margin-top: 32px;
    display: flex; align-items: center; gap: 16px;
  }
  .about-signature .script { font-size: 38px; line-height: 1; }
  .about-signature .role {
    font-size: 13px; color: var(--text-muted); letter-spacing: .2em; text-transform: uppercase;
  }

  /* -------------------------------------------------------------
     Smoker section
     ------------------------------------------------------------- */
  .smoker {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .smoker .lede { margin-top: 22px; }
  .smoker-cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .smoker-cards { grid-template-columns: 1fr; } }

  .card-feature {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .35s ease, border-color .3s ease;
  }
  .card-feature:hover { transform: translateY(-6px); border-color: var(--ember); }
  .card-feature .bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .card-feature .bg img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
  }
  .card-feature:hover .bg img { transform: scale(1.05); }
  .card-feature .bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(12,10,9,.95) 90%);
  }
  .card-feature .content {
    position: relative; z-index: 1;
    padding: 28px;
  }
  .card-feature .num {
    position: absolute; top: 20px; left: 24px;
    font-family: var(--f-display);
    font-size: 18px;
    color: var(--ember);
    letter-spacing: .1em;
  }
  .card-feature h3 {
    font-family: var(--f-display);
    font-size: 32px;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .card-feature p { color: var(--text-dim); font-size: 15px; }

  /* -------------------------------------------------------------
     Einsatzbereiche
     ------------------------------------------------------------- */
  .occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  @media (max-width: 900px) { .occasions-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .occasions-grid { grid-template-columns: 1fr; } }

  .occasion {
    background: var(--surface);
    padding: 36px 32px;
    transition: background .3s ease;
    position: relative;
  }
  .occasion:hover { background: var(--surface-2); }
  .occasion .ic {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232,96,46,.18), rgba(212,162,74,.08));
    color: var(--ember);
    display: grid; place-items: center;
    margin-bottom: 22px;
  }
  .occasion .ic svg { width: 26px; height: 26px; }
  .occasion h4 {
    font-family: var(--f-display);
    font-size: 24px;
    letter-spacing: .03em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .occasion p { color: var(--text-muted); font-size: 15px; }

  /* -------------------------------------------------------------
     Menüs
     ------------------------------------------------------------- */
  .menus {
    background: linear-gradient(180deg, var(--bg), var(--bg-2) 40%, var(--bg));
  }
  .menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }
  .menu-tab {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--line);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    cursor: pointer;
    transition: all .2s ease;
  }
  .menu-tab:hover { color: var(--text); border-color: var(--line-2); }
  .menu-tab.is-active {
    background: var(--ember);
    color: #fff;
    border-color: var(--ember);
  }

  .menu-panel { display: none; animation: fade .35s ease; }
  .menu-panel.is-active { display: grid; }
  @keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  .menu-panel {
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: start;
  }
  @media (max-width: 900px) { .menu-panel { grid-template-columns: 1fr; gap: 30px; } }

  .menu-list {
    list-style: none;
    padding: 0; margin: 0;
  }
  .menu-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px dashed var(--line);
  }
  .menu-list li:last-child { border-bottom: 0; }
  .menu-list .name {
    font-family: var(--f-display);
    font-size: 26px;
    letter-spacing: .03em;
    text-transform: uppercase;
  }
  .menu-list .desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    grid-column: 1 / -1;
    margin-top: -6px;
  }
  .menu-list .tag {
    font-size: 11px;
    color: var(--copper);
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .menu-visual {
    position: sticky;
    top: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    position: relative;
  }
  .menu-visual img { width: 100%; height: 100%; object-fit: cover; }
  .menu-visual::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12,10,9,.8));
  }
  .menu-visual .caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
    z-index: 1;
  }
  .menu-visual .caption .script { font-size: 32px; line-height: 1; }
  .menu-visual .caption .label {
    font-family: var(--f-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 6px;
  }

  .menu-note {
    margin-top: 48px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--text-dim);
    font-size: 15px;
  }
  .menu-note .ic {
    color: var(--copper);
    flex-shrink: 0;
    width: 26px; height: 26px;
  }

  /* -------------------------------------------------------------
     Warum
     ------------------------------------------------------------- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
  .why-item {
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color .25s ease, transform .25s ease;
    position: relative;
    overflow: hidden;
  }
  .why-item:hover { border-color: var(--ember); transform: translateY(-4px); }
  .why-item::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(232,96,46,.18), transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
  }
  .why-item:hover::before { opacity: 1; }
  .why-item .num {
    font-family: var(--f-display);
    font-size: 14px;
    color: var(--copper);
    letter-spacing: .2em;
    margin-bottom: 14px;
    display: block;
  }
  .why-item h4 {
    font-family: var(--f-display);
    font-size: 26px;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .why-item p { color: var(--text-muted); font-size: 15px; }

  /* -------------------------------------------------------------
     Ablauf — Process timeline
     ------------------------------------------------------------- */
  .process {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  @media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
  .process-steps::before {
    content: "";
    position: absolute;
    top: 28px; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line-2), var(--line-2), transparent);
    z-index: 0;
  }
  @media (max-width: 900px) { .process-steps::before { display: none; } }

  .step {
    position: relative;
    z-index: 1;
    padding-top: 0;
  }
  .step .circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--ember);
    color: var(--ember);
    font-family: var(--f-display);
    font-size: 22px;
    display: grid; place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px var(--bg-2);
  }
  .step h4 {
    font-family: var(--f-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
  }
  .step p { color: var(--text-muted); font-size: 14px; }

  .process-cta {
    margin-top: 60px;
    text-align: center;
  }

  /* -------------------------------------------------------------
     Offerte / Form
     ------------------------------------------------------------- */
  .offerte {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
  }
  @media (max-width: 980px) { .offerte { grid-template-columns: 1fr; gap: 40px; } }

  .offerte-info p { color: var(--text-dim); margin-top: 22px; }
  .offerte-info .stats {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }
  .stat .big {
    font-family: var(--f-display);
    font-size: 42px;
    color: var(--ember);
    line-height: 1;
  }
  .stat .lbl {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 640px) { .form { padding: 24px; grid-template-columns: 1fr; } }
  .form .full { grid-column: 1 / -1; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .field input, .field select, .field textarea {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--f-body);
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 100%;
  }
  .field textarea { resize: vertical; min-height: 130px; }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--ember);
    box-shadow: 0 0 0 4px rgba(232,96,46,.18);
  }
  .field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
  .form-actions {
    grid-column: 1 / -1;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    margin-top: 6px;
  }
  .form-actions .hint {
    font-size: 13px; color: var(--text-muted); max-width: 38ch;
  }
  .form-success {
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    background: rgba(212,162,74,.08);
    border: 1px solid var(--copper);
    border-radius: 12px;
    color: var(--copper);
    font-weight: 600;
  }
  .form-success.is-shown { display: block; }

  /* -------------------------------------------------------------
     Galerie
     ------------------------------------------------------------- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
  }
  .gallery-grid .g {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
  }
  .gallery-grid .g img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
  }
  .gallery-grid .g:hover img { transform: scale(1.06); }
  .gallery-grid .g .lbl {
    position: absolute; bottom: 14px; left: 16px;
    z-index: 1;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 700;
  }
  .gallery-grid .g::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12,10,9,.85));
    pointer-events: none;
  }
  .gallery-grid .g.replace::before {
    content: "Eigene Fotos einfügen";
    position: absolute; top: 14px; right: 14px;
    z-index: 2;
    font-size: 10px;
    background: rgba(212,162,74,.18);
    border: 1px dashed var(--copper);
    color: var(--copper);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .15em;
    text-transform: uppercase;
  }

  /* Bento layout */
  .gallery-grid .g:nth-child(1) { grid-column: span 6; grid-row: span 2; }
  .gallery-grid .g:nth-child(2) { grid-column: span 3; }
  .gallery-grid .g:nth-child(3) { grid-column: span 3; }
  .gallery-grid .g:nth-child(4) { grid-column: span 3; }
  .gallery-grid .g:nth-child(5) { grid-column: span 3; }
  .gallery-grid .g:nth-child(6) { grid-column: span 4; }
  .gallery-grid .g:nth-child(7) { grid-column: span 4; }
  .gallery-grid .g:nth-child(8) { grid-column: span 4; }

  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
    .gallery-grid .g:nth-child(1) { grid-column: span 6; grid-row: span 2; }
    .gallery-grid .g:nth-child(n+2) { grid-column: span 3; }
  }
  @media (max-width: 540px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .g { grid-column: span 1 !important; grid-row: auto !important; }
    .gallery-grid .g:nth-child(1) { grid-column: span 2 !important; }
  }

  /* -------------------------------------------------------------
     Testimonials
     ------------------------------------------------------------- */
  .testimonials {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
  .quote {
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
  }
  .quote .marks {
    font-family: var(--f-serif);
    font-size: 60px;
    color: var(--ember);
    line-height: 1;
    margin-bottom: 8px;
  }
  .quote blockquote {
    margin: 0;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    color: var(--text);
  }
  .quote .who {
    margin-top: 24px;
    display: flex; align-items: center; gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .quote .who .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ember), var(--copper));
    display: grid; place-items: center;
    color: #1a1410;
    font-weight: 800;
    font-size: 15px;
  }
  .quote .who .name { font-weight: 700; font-size: 14px; }
  .quote .who .role { font-size: 12px; color: var(--text-muted); }
  .stars {
    display: inline-flex; gap: 3px;
    color: var(--copper);
    margin-bottom: 14px;
  }

  /* -------------------------------------------------------------
     Kontakt
     ------------------------------------------------------------- */
  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) { .contact { grid-template-columns: 1fr; gap: 40px; } }

  .contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    gap: 22px;
  }
  .contact-row {
    display: flex; gap: 18px; align-items: center;
  }
  .contact-row .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(232,96,46,.12);
    color: var(--ember);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .contact-row .ic svg { width: 20px; height: 20px; }
  .contact-row .lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
  .contact-row .val { font-weight: 600; color: var(--text); margin-top: 2px; font-size: 15px; }
  .contact-row .val .ph { color: var(--copper); font-style: italic; font-weight: 500; }

  .contact-socials {
    display: flex; gap: 10px; margin-top: 6px;
  }
  .contact-socials a {
    width: 44px; height: 44px; border-radius: 10px;
    border: 1px solid var(--line-2);
    display: grid; place-items: center;
    color: var(--text-dim);
    transition: all .2s ease;
  }
  .contact-socials a:hover { background: var(--ember); color: #fff; border-color: var(--ember); }
  .contact-socials a svg { width: 18px; height: 18px; }

  /* -------------------------------------------------------------
     CTA Banner before footer
     ------------------------------------------------------------- */
  .cta-banner {
    margin: 0 var(--pad);
    max-width: var(--max);
    margin-left: auto; margin-right: auto;
    padding: clamp(50px, 7vw, 90px) clamp(30px, 5vw, 70px);
    background:
      linear-gradient(135deg, rgba(12,10,9,.55), rgba(12,10,9,.85)),
      url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1800&q=80") center/cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-2);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner h2 {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 18px;
    text-wrap: balance;
  }
  .cta-banner .lede { margin: 0 auto 30px; }
  .cta-banner .row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

  /* -------------------------------------------------------------
     Footer
     ------------------------------------------------------------- */
  footer.site-footer {
    margin-top: 100px;
    padding: 80px 0 30px;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
  }
  @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

  .footer-brand .brand { margin-bottom: 18px; }
  .footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 38ch;
  }
  .footer-col h5 {
    font-family: var(--f-display);
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ember);
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .footer-col li a {
    color: var(--text-dim);
    font-size: 14px;
    transition: color .2s;
  }
  .footer-col li a:hover { color: var(--text); }

  .footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
  }
  .footer-bottom .legal { display: flex; gap: 22px; }

  /* -------------------------------------------------------------
     Reveal animation
     ------------------------------------------------------------- */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.is-in { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }
