
  :root {
    --stone: #2a2520;
    --stone-mid: #4a433c;
    --stone-light: #8a7e74;
    --cream: #f5f0ea;
    --warm-white: #faf8f5;
    --gold: #c9a96e;
    --gold-light: #e8d5b0;
    --text: #1a1714;
    --text-muted: #6b5f57;
    --border: rgba(201,169,110,0.25);
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAVIGATION */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  nav.scrolled {
    height: 60px;
    background: rgba(250,248,245,0.98);
    box-shadow: 0 2px 30px rgba(42,37,32,0.08);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    min-width: 0;
  }

  .nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 350px;
    display: block;
    object-fit: contain;
    transition: height 0.3s ease, max-width 0.3s ease;
  }

  nav.scrolled .nav-logo-img {
    height: 38px;
    max-width: 310px;
  }

  .nav-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--stone);
    line-height: 1;
  }

  .nav-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone-mid);
    font-weight: 400;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--stone) !important;
    color: var(--cream) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 2px;
    transition: background 0.2s !important;
    font-weight: 500 !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--stone) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    width: 24px; height: 1.5px;
    background: var(--stone);
    transition: all 0.3s;
    display: block;
  }

  /* PAGES */
  .page {
    display: none;
    min-height: 100vh;
  }
  .page.active { display: block; }

  /* HERO */
  .hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--stone);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(135deg, rgba(42,37,32,0.85) 0%, rgba(42,37,32,0.5) 50%, rgba(42,37,32,0.75) 100%);
    z-index: 1;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.55;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    padding-top: 72px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 1.8rem;
    max-width: 700px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-subtitle {
    font-size: 1rem;
    color: rgba(245,240,234,0.7);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.8rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--stone);
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.35);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--cream);
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(245,240,234,0.4);
    transition: all 0.25s;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
  }

  .hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-scroll-text {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,234,0.5);
  }

  /* SECTIONS */
  section {
    padding: 6rem 3rem;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--stone);
    margin-bottom: 1.5rem;
  }

  .section-title em { font-style: italic; color: var(--stone-light); }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 3rem;
  }

  /* INTRO SECTION */
  .intro-section {
    background: var(--warm-white);
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .intro-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 0.97rem;
  }

  .intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .stat-item {
    border-left: 1px solid var(--border);
    padding-left: 1.5rem;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--stone);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.3rem;
  }

  .intro-visual {
    position: relative;
  }

  .intro-main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
  }

  .intro-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 60%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 6px solid var(--warm-white);
  }

  /* SERVICES */
  .services-section {
    background: var(--stone);
    color: var(--cream);
  }

  .services-section .section-title {
    color: var(--cream);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
  }

  .service-card {
    background: rgba(255,255,255,0.04);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(201,169,110,0.15);
    transition: all 0.35s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.35s;
  }

  .service-card:hover { background: rgba(201,169,110,0.08); }
  .service-card:hover::before { width: 100%; }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 0.85rem;
    color: rgba(245,240,234,0.55);
    line-height: 1.75;
    font-weight: 300;
  }

  /* BEFORE/AFTER */
  .gallery-section {
    background: var(--cream);
  }

  .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }

  .ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .ba-item {
    position: relative;
  }

  .ba-compare {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    aspect-ratio: 4/3;
    user-select: none;
  }

  .ba-compare img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ba-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s;
  }

  .ba-slider-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    z-index: 10;
    pointer-events: none;
  }

  .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    pointer-events: none;
  }

  .ba-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
  }

  .ba-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .ba-label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--stone-light);
  }

  .ba-label-dot.after { background: var(--gold); }

  .ba-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--stone);
    margin-top: 0.8rem;
    font-weight: 400;
  }

  /* PROCESS */
  .process-section {
    background: var(--warm-white);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
  }

  .process-step {
    position: relative;
  }

  .process-step::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -1.5rem;
    width: calc(100% - 40px);
    height: 1px;
    background: var(--border);
  }

  .process-step:last-child::after { display: none; }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.6;
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 0.8rem;
  }

  .step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* MATERIALS */
  .materials-section {
    background: var(--stone);
    position: relative;
    overflow: hidden;
  }

  .materials-section::before {
    content: 'STEIN';
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18vw;
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
  }

  .materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }

  .material-card {
    border: 1px solid rgba(201,169,110,0.2);
    padding: 2.5rem;
    position: relative;
  }

  .material-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }

  .material-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .material-services {
    list-style: none;
  }

  .material-services li {
    font-size: 0.82rem;
    color: rgba(245,240,234,0.55);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 300;
  }

  .material-services li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.7;
  }

  /* CONTACT STRIP */
  .cta-strip {
    background: var(--gold);
    padding: 3rem;
  }

  .cta-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .cta-strip-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--stone);
  }

  .cta-strip-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--stone);
    color: var(--cream);
    padding: 0.85rem 1.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
  }
  .btn-dark:hover {
    background: rgba(42,37,32,0.85);
    transform: translateY(-1px);
  }

  .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--stone);
    padding: 0.85rem 1.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    border-radius: 2px;
    border: 1.5px solid var(--stone);
    transition: all 0.25s;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
  }
  .btn-outline-dark:hover { background: var(--stone); color: var(--cream); }

  /* FOOTER */
  footer {
    background: #1a1714;
    padding: 5rem 3rem 2rem;
    color: rgba(245,240,234,0.6);
  }

  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 330px;
    display: block;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: invert(1) brightness(1.9) contrast(1.05);
    opacity: 0.96;
  }

  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
  }

  .footer-brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .footer-brand-text {
    font-size: 0.82rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
  }

  .footer-contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .footer-col-title {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 0.7rem;
  }

  .footer-links a {
    color: rgba(245,240,234,0.55);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 300;
    transition: color 0.2s;
    cursor: pointer;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
  }

  /* INNER PAGES */
  .page-hero {
    height: 45vh;
    min-height: 300px;
    background: var(--stone);
    display: flex;
    align-items: flex-end;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(42,37,32,0.3), rgba(42,37,32,0.85));
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.4;
  }

  .page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }

  .page-hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
  }

  /* LEISTUNGEN PAGE */
  .leistungen-grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    margin-top: 4rem;
  }

  .leistung-item {
    background: var(--warm-white);
    padding: 3rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    align-items: start;
    transition: background 0.2s;
  }

  .leistung-item:hover { background: var(--cream); }

  .leistung-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
  }

  .leistung-content-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 0.8rem;
  }

  .leistung-content-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
  }

  .leistung-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .leistung-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 2px;
  }

  /* GALERIE PAGE */
  .gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
  }

  /* KONTAKT PAGE */
  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
  }

  .contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
  }

  .contact-icon-box {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
  }

  .contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
  }

  .contact-value {
    font-size: 1rem;
    color: var(--stone);
    font-weight: 400;
  }

  .contact-value a {
    color: inherit;
    text-decoration: none;
  }
  .contact-value a:hover { color: var(--gold); }

  .contact-wa-card {
    background: var(--stone);
    padding: 3rem;
    text-align: center;
  }

  .wa-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wa-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 1rem;
  }

  .wa-desc {
    font-size: 0.85rem;
    color: rgba(245,240,234,0.5);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .impressum-section {
    background: var(--cream);
    padding: 5rem 3rem;
  }

  .impressum-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .impressum-block {
    margin-bottom: 2rem;
  }

  .impressum-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .impressum-block p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-logo-img { height: 38px; max-width: 260px; }
    nav.scrolled .nav-logo-img { height: 34px; max-width: 240px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: rgba(250,248,245,0.98);
      padding: 2rem 1.5rem;
      gap: 1.5rem;
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .hamburger { display: flex; }
    section { padding: 4rem 1.5rem; }
    .hero-content { padding: 0 1.5rem; padding-top: 72px; }
    .intro-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .ba-grid, .gallery-full-grid { grid-template-columns: 1fr; gap: 2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step::after { display: none; }
    .materials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .impressum-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cta-strip { padding: 2.5rem 1.5rem; }
    .cta-strip-inner { flex-direction: column; }
    .page-hero { padding: 3rem 1.5rem; }
    .leistung-item { grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }
  }

  @media (max-width: 600px) {
    .nav-logo-img { height: 32px; max-width: 210px; }
    .footer-logo-img { height: 44px; max-width: 260px; }
    .footer-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .intro-stats { grid-template-columns: 1fr; }
  }

  /* LEGAL MODAL */
  .legal-modal {
    position: fixed;
    inset: 0;
    background: rgba(26,23,20,0.72);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .legal-modal.open { display: flex; }

  .legal-modal-dialog {
    width: min(980px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--warm-white);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.22);
    position: relative;
  }

  .legal-modal-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(250,248,245,0.96);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.75rem 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .legal-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--stone);
    font-weight: 400;
    line-height: 1.1;
  }

  .legal-close {
    appearance: none;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--stone);
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .legal-modal-body {
    padding: 1.75rem;
  }

  .legal-doc {
    display: none;
  }

  .legal-doc.active { display: block; }

  .legal-doc h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--stone);
    margin: 2rem 0 0.8rem;
  }

  .legal-doc h3:first-child { margin-top: 0; }

  .legal-doc p,
  .legal-doc li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
  }

  .legal-doc ul {
    margin: 0.6rem 0 0 1.1rem;
  }

  .legal-doc a {
    color: var(--stone);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .legal-note {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-left: 2px solid var(--gold);
    background: rgba(201,169,110,0.08);
  }

  @media (max-width: 600px) {
    .legal-modal { padding: 1rem; }
    .legal-modal-header, .legal-modal-body { padding-left: 1rem; padding-right: 1rem; }
    .legal-modal-title { font-size: 1.6rem; }
  }



  /* SEO EINSATZORTE */
  .seo-location-section {
    background: var(--warm-white);
    padding: 5.5rem 3rem;
    border-top: 1px solid var(--border);
  }
  .seo-location-intro {
    max-width: 760px;
    color: var(--text-muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .seo-keyword-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin: 2rem 0 3rem;
  }
  .seo-keyword-grid a, .seo-city-grid a {
    display: block;
    text-decoration: none;
    color: var(--stone-mid);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.45);
    padding: 0.85rem 1rem;
    font-size: 0.84rem;
    line-height: 1.35;
    transition: all 0.2s ease;
  }
  .seo-keyword-grid a:hover, .seo-city-grid a:hover {
    color: var(--stone);
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
    transform: translateY(-1px);
  }
  .seo-city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.65rem;
    margin-top: 1.5rem;
  }
  .seo-small-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: var(--stone);
    font-weight: 400;
    margin-top: 2rem;
  }
  @media (max-width: 900px) {
    .seo-location-section { padding: 4rem 1.5rem; }
    .seo-keyword-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-city-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .seo-keyword-grid, .seo-city-grid { grid-template-columns: 1fr; }
  }



/* ===== Production SEO / UX additions ===== */
.page { display:block; min-height:100vh; }
.seo-breadcrumbs{max-width:1200px;margin:0 auto;padding:7.25rem 3rem 0;font-size:.76rem;color:var(--stone-light);letter-spacing:.03em}
.seo-breadcrumbs a{color:var(--stone-mid);text-decoration:none}.seo-breadcrumbs a:hover{color:var(--gold)}
.answer-strip{background:var(--cream);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:1.3rem 0}
.answer-strip .container{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.answer-item{padding:.35rem 1rem;border-left:1px solid var(--border)}
.answer-item strong{display:block;font-family:'Cormorant Garamond',serif;font-size:1.15rem;color:var(--stone);font-weight:600;margin-bottom:.25rem}
.answer-item span{font-size:.82rem;color:var(--text-muted);line-height:1.55}
.content-narrow{max-width:880px;margin:0 auto}
.prose p{font-size:1rem;line-height:1.8;color:var(--text-muted);margin-bottom:1rem;font-weight:300}
.prose h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3rem);font-weight:300;line-height:1.15;color:var(--stone);margin:2.6rem 0 1rem}
.prose h3{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:500;color:var(--stone);margin:2rem 0 .65rem}
.prose ul,.prose ol{margin:0 0 1.2rem 1.2rem;color:var(--text-muted);line-height:1.75}.prose li{margin:.35rem 0}
.quick-answer{border:1px solid var(--border);background:linear-gradient(135deg,var(--cream),var(--warm-white));padding:1.35rem 1.5rem;margin:1.5rem 0 2rem}
.quick-answer strong{color:var(--stone)}
.seo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}
.seo-card{border:1px solid var(--border);background:var(--warm-white);padding:1.4rem;text-decoration:none;color:inherit;transition:.2s}
.seo-card:hover{transform:translateY(-2px);box-shadow:0 12px 35px rgba(42,37,32,.08);border-color:var(--gold)}
.seo-card h3{font-family:'Cormorant Garamond',serif;font-size:1.45rem;font-weight:500;margin-bottom:.45rem;color:var(--stone)}
.seo-card p{font-size:.88rem;line-height:1.65;color:var(--text-muted)}
.faq-list{max-width:920px;display:grid;gap:.8rem}
.faq-list details{border:1px solid var(--border);background:rgba(255,255,255,.55);padding:1rem 1.2rem}
.faq-list summary{cursor:pointer;font-weight:500;color:var(--stone);line-height:1.45}
.faq-list details p{margin-top:.8rem;color:var(--text-muted);line-height:1.7;font-weight:300}
.intent-note{font-size:.86rem;line-height:1.7;color:var(--text-muted);border-left:2px solid var(--gold);padding-left:1rem;margin:1.4rem 0}
.location-pills{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1.3rem}
.location-pills a{border:1px solid var(--border);padding:.55rem .8rem;text-decoration:none;color:var(--stone-mid);font-size:.8rem;background:rgba(255,255,255,.45)}
.location-pills a:hover{border-color:var(--gold);color:var(--stone)}
.service-clarity{background:#fff;border:1px solid var(--border);padding:1rem 1.2rem;margin-top:1.4rem;font-size:.88rem;color:var(--text-muted);line-height:1.7}
.service-clarity strong{color:var(--stone)}
.sticky-mobile-cta{display:none}
.skip-link{position:absolute;left:-9999px;top:auto}.skip-link:focus{left:1rem;top:1rem;z-index:9999;background:#fff;color:#111;padding:.6rem 1rem}
img{max-width:100%}
.article-meta{font-size:.76rem;color:var(--stone-light);margin-bottom:1.5rem}
.link-arrow{display:inline-block;margin-top:.8rem;color:var(--gold);font-size:.82rem;letter-spacing:.05em;text-transform:uppercase}
.cta-band{background:var(--stone);color:var(--cream);padding:3.2rem 1.5rem}
.cta-band .container{display:flex;justify-content:space-between;gap:2rem;align-items:center;flex-wrap:wrap}
.cta-band h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3rem);font-weight:300;margin:0;color:var(--cream)}
.cta-band p{color:rgba(245,240,234,.65);margin-top:.4rem;max-width:680px}
.breadcrumb-inline{font-size:.75rem;color:rgba(245,240,234,.62);margin-bottom:1.2rem}.breadcrumb-inline a{color:var(--gold-light);text-decoration:none}
@media(max-width:900px){
  .answer-strip .container,.seo-grid{grid-template-columns:1fr}
  .seo-breadcrumbs{padding:6.5rem 1.4rem 0}
}
@media(max-width:700px){
  body{padding-bottom:64px}
  .sticky-mobile-cta{position:fixed;display:grid;grid-template-columns:1fr 1fr;left:0;right:0;bottom:0;z-index:1200;background:var(--stone);box-shadow:0 -4px 20px rgba(0,0,0,.16)}
  .sticky-mobile-cta a{display:flex;align-items:center;justify-content:center;padding:.95rem .5rem;color:var(--cream);text-decoration:none;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase}
  .sticky-mobile-cta a+ a{background:var(--gold);color:var(--stone)}
  .answer-item{border-left:0;border-top:1px solid var(--border);padding:1rem 0}
  .answer-item:first-child{border-top:0}
}

/* production SEO content additions */
.compact-hero{min-height:340px;background:var(--stone);}
.card-kicker{display:block;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;opacity:.65;margin-bottom:.65rem;}
.editorial-note{margin-top:2.5rem;padding:1rem 1.1rem;border-left:3px solid var(--gold);background:rgba(255,255,255,.55);font-size:.92rem;}
.prose ol{padding-left:1.2rem;margin:1rem 0 1.5rem}.prose ol li{margin:.55rem 0;line-height:1.75}
@media(max-width:700px){.compact-hero{min-height:270px}.compact-hero .page-hero-content{padding-top:7.5rem}}
