/* ============================================================
   Bluemechäller – Marjo Trachsel, Nuolen SZ
   Gold: #EAD68A · Dunkel: #1a1a1a · Font: Roboto + Roboto Slab
   ============================================================ */

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Roboto Slab';
  src: url('/assets/fonts/roboto-slab-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --gold:      #EAD68A;
  --gold-d:    #C8B56C;
  --gold-glow: rgba(234,214,138,.18);
  --dark:      #181818;
  --dark2:     #202020;
  --mid:       #282828;
  --mid2:      #303030;
  --grey:      #363636;
  --text:      #ede9e0;
  --muted:     #9a8e80;
  --border:    rgba(234,214,138,.1);
  --border-s:  rgba(255,255,255,.07);
  --radius:    0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --max-w:     1160px;
  --pad:       clamp(1.2rem, 5vw, 2.8rem);
  --font:      'Roboto', system-ui, sans-serif;
  --font-h:    'Roboto Slab', 'Roboto', Georgia, serif;
  --ease:      cubic-bezier(.4,0,.2,1);
  --shadow:    0 8px 32px rgba(0,0,0,.28);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.4);
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-d); }
img { display: block; max-width: 100%; height: auto; }
::selection { background: rgba(234,214,138,.22); }

/* ─── Container ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .72rem 1.9rem;
  border: 1.5px solid transparent;
  border-radius: 0;
  font: 500 .87rem/1 var(--font);
  letter-spacing: .07em;
  cursor: pointer;
  transition: background .22s var(--ease), color .18s, border-color .18s, transform .14s, box-shadow .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: none; }
.btn-primary {
  background: var(--gold); color: #1a1a1a; border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(234,214,138,.18);
}
.btn-primary:hover { background: var(--gold-d); border-color: var(--gold-d); color: #1a1a1a; box-shadow: 0 6px 20px rgba(234,214,138,.28); }
.btn-outline { background: transparent; color: var(--gold); border-color: rgba(234,214,138,.5); }
.btn-outline:hover { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }
.btn-dark { background: rgba(255,255,255,.07); color: var(--text); border-color: rgba(255,255,255,.12); }
.btn-dark:hover { background: rgba(255,255,255,.13); color: var(--text); }
.btn-sm { padding: .48rem 1.1rem; font-size: .8rem; }

/* ─── Header ───────────────────────────────────────────────── */
header {
  position: fixed; inset: 0 0 auto;
  z-index: 100;
  background: rgba(18,18,18,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: .6rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo img { height: 50px; width: auto; display: block; }
.header-right { display: flex; align-items: center; gap: 1.8rem; }
header nav { display: flex; gap: 1.6rem; align-items: center; }
header nav a {
  color: rgba(237,233,224,.7); font-size: .78rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  transition: color .18s;
  padding: .25rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color .18s, border-color .18s;
}
header nav a:hover,
header nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
.header-cta {
  padding: .44rem 1.1rem; font-size: .78rem;
  border-radius: 0;
  border: 1px solid rgba(234,214,138,.3);
  color: var(--gold); background: rgba(234,214,138,.06);
  transition: background .18s, border-color .18s, box-shadow .18s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold); color: #1a1a1a; border-color: var(--gold); box-shadow: 0 4px 16px rgba(234,214,138,.2); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(22,22,22,.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: .8rem var(--pad) 1.4rem;
  flex-direction: column; gap: .1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(237,233,224,.82); font-size: .95rem; font-weight: 500;
  padding: .75rem 0; border-bottom: 1px solid var(--border-s);
  letter-spacing: .04em;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .btn { margin-top: .9rem; justify-content: center; }
.mobile-nav .btn-primary {
  background: var(--gold) !important; color: #1a1a1a !important;
  border-color: var(--gold) !important; font-weight: 600;
  padding: .75rem 1.9rem;
}
.mobile-nav .btn-primary:hover { background: var(--gold-d) !important; border-color: var(--gold-d) !important; }

/* ─── Spacer ────────────────────────────────────────────────── */
.header-spacer { height: 70px; }

/* ─── Sections ─────────────────────────────────────────────── */
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-title.center { text-align: center; margin-bottom: 2.5rem; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 58vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.48);
  transform: scale(1.03);
  transition: filter 1.2s;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.08) 100%
  );
}
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--dark), transparent);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-w); margin: 0 auto;
  padding: 3rem calc(var(--pad) + 3vw) 3.5rem;
  display: flex; justify-content: flex-start;
}
.hero-content { max-width: 500px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.3rem; opacity: .95;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold); opacity: .6;
}
.hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
  letter-spacing: .01em;
}
.hero-content p {
  font-size: 1rem; color: rgba(237,233,224,.87);
  line-height: 1.75; margin-bottom: 2.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ─── Page-Hero ─────────────────────────────────────────────── */
.page-hero {
  position: relative; min-height: 38vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.5); z-index: 0;
}
.page-hero .hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.38); z-index: 1;
}
.page-hero .hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--dark), transparent); z-index: 2;
}
.page-hero .hero-inner {
  position: relative; z-index: 3; display: block; width: 100%;
  max-width: 560px; margin: 0 auto;
  padding: 4.5rem var(--pad) 3.5rem; text-align: center; justify-content: initial;
}
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--gold); margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5); letter-spacing: .01em;
}
.page-hero p {
  font-size: 1rem; color: rgba(237,233,224,.85); max-width: 600px;
  margin: 0 auto; line-height: 1.8; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ─── Sortiment / Services ──────────────────────────────────── */
.services-section { background: var(--mid); }
.services-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 4rem; align-items: center;
}
.services-img img {
  border-radius: var(--radius-xl); width: 100%; height: 440px;
  object-fit: cover; box-shadow: var(--shadow-lg);
}
.services-right .section-title { margin-bottom: 1.6rem; }
.kacheln { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.kachel {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: background .22s var(--ease), border-color .22s, transform .22s;
}
.kachel:hover {
  background: rgba(234,214,138,.06); border-color: rgba(234,214,138,.22);
  transform: translateY(-2px);
}
.kachel-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(234,214,138,.08); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(234,214,138,.18);
}
.kachel-icon img { width: 18px; height: 18px; object-fit: contain; filter: invert(1) sepia(1) saturate(1.5) hue-rotate(10deg) brightness(1.15); }
.kachel-text h3 { font-size: .85rem; font-weight: 600; color: var(--gold); margin-bottom: .2rem; }
.kachel-text p { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ─── About ─────────────────────────────────────────────────── */
.about-section { background: var(--dark2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img { position: relative; }
.about-img img {
  border-radius: var(--radius-xl); width: 100%; height: 500px;
  object-fit: cover; box-shadow: var(--shadow-lg);
}
.about-img::before {
  content: ''; position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid rgba(234,214,138,.12);
  border-radius: 0;
  pointer-events: none;
}
.about-text .section-title { margin-bottom: 1rem; }
.about-text p { color: var(--muted); font-size: .95rem; margin-bottom: .9rem; line-height: 1.78; }
.about-text strong { color: var(--text); font-weight: 600; }
.about-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--gold); font-weight: 500;
  background: rgba(234,214,138,.07); border: 1px solid rgba(234,214,138,.18);
  border-radius: 0; padding: .3rem .9rem;
  margin: .8rem 0 .4rem;
}
.about-note { font-size: .83rem; color: var(--muted); margin-top: .3rem; }
.about-note strong { color: var(--gold); }
.about-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }

/* ─── USPs ──────────────────────────────────────────────────── */
.usp-section {
  background: var(--mid2);
  position: relative;
  overflow: hidden;
}
.usp-section::before {
  content: ''; position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(234,214,138,.04) 0%, transparent 70%);
  pointer-events: none;
}
.usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.usp-item {
  padding: 2.2rem 1.6rem; background: rgba(255,255,255,.03);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  text-align: center;
  transition: border-color .22s var(--ease), background .22s, transform .22s, box-shadow .22s;
}
.usp-item:hover {
  border-color: rgba(234,214,138,.28); background: rgba(234,214,138,.04);
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.usp-icon {
  width: 56px; height: 56px; background: rgba(234,214,138,.1);
  border: 1px solid rgba(234,214,138,.25);
  border-radius: 0; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.usp-item h3 { font-size: .92rem; font-weight: 600; color: var(--text); margin-bottom: .55rem; letter-spacing: .03em; }
.usp-item p { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ─── CTA ───────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--mid) 0%, var(--mid2) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(234,214,138,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-section .section-title { margin-bottom: .75rem; }
.cta-section p { color: var(--muted); font-size: .96rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ─── Gallery ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1/1; background: var(--mid2);
  cursor: zoom-in; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { background: rgba(234,214,138,.06); }

/* ─── Gallery Lightbox ──────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 500; display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: lbFadeIn .22s var(--ease); }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: min(90vw, 1000px); max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  cursor: default;
}
.lightbox-close {
  position: fixed; top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.3rem; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, transform .18s;
}
.lightbox-close:hover { background: rgba(234,214,138,.15); transform: scale(1.1); }

/* ─── Kontakt ───────────────────────────────────────────────── */
.contact-section { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start; }
.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-card h3 {
  color: var(--gold); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem;
}
.contact-card p { font-size: .9rem; color: var(--muted); margin-bottom: .4rem; line-height: 1.65; }
.contact-card a { color: var(--text); transition: color .15s; }
.contact-card a:hover { color: var(--gold); }
.contact-card .c-divider { border: none; border-top: 1px solid var(--border); margin: 1.2rem 0; }
.social-links { display: flex; gap: .6rem; margin-top: .4rem; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(234,214,138,.08); border: 1px solid var(--border);
  border-radius: 0; font-size: .78rem; font-weight: 700; color: var(--gold);
  transition: background .18s, border-color .18s, transform .18s;
}
.social-link:hover { background: var(--gold); color: #1a1a1a; border-color: var(--gold); transform: translateY(-2px); }

/* ─── Formular ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block; font-size: .73rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .38rem;
}
input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%; padding: .78rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  font: 400 .95rem/1 var(--font);
  color: var(--text);
  transition: border-color .18s, background .18s, box-shadow .18s;
}
input:focus, textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(234,214,138,.04);
  box-shadow: 0 0 0 3px rgba(234,214,138,.1);
}
textarea { min-height: 140px; resize: vertical; line-height: 1.65; }
.field-error { font-size: .8rem; color: #f08080; margin-top: .32rem; }

/* ─── Alerts ────────────────────────────────────────────────── */
.alert { padding: .85rem 1.1rem; border-radius: var(--radius); font-size: .9rem; margin-bottom: 1.3rem; }
.alert-success { background: rgba(80,160,80,.1); color: #90c890; border: 1px solid rgba(80,160,80,.18); }
.alert-error { background: rgba(200,80,80,.1); color: #e08080; border: 1px solid rgba(200,80,80,.18); }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: #131313;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; padding: 4rem var(--pad);
  max-width: var(--max-w); margin: 0 auto;
}
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: .83rem; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  font-size: .84rem; color: var(--muted); line-height: 1.9; display: block;
}
.footer-col a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: .5rem; margin-top: .7rem; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(234,214,138,.07); border: 1px solid var(--border);
  border-radius: 0; font-size: .78rem; font-weight: 700; color: var(--gold);
  transition: background .18s, transform .18s;
}
.footer-socials a:hover { background: var(--gold); color: #1a1a1a; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.1rem var(--pad); max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem; font-size: .76rem; color: var(--muted);
}
.footer-bottom-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-bottom-links a,
.footer-bottom-links button {
  color: var(--muted); font-size: .76rem; font-family: var(--font);
  background: none; border: none; cursor: pointer; padding: 0;
  transition: color .15s;
}
.footer-bottom-links a:hover,
.footer-bottom-links button:hover { color: var(--gold); }

/* ─── Statische Seiten (Datenschutz/Impressum) ──────────────── */
.static-page { background: var(--dark2); }
.static-page h1 {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--gold); margin-bottom: 1.6rem;
}
.static-page h2 { font-size: 1rem; font-weight: 600; margin: 2.4rem 0 .7rem; color: var(--gold); }
.static-page p, .static-page li { color: var(--muted); margin-bottom: .65rem; font-size: .94rem; line-height: 1.78; }
.static-page ul { padding-left: 1.4rem; }
.static-page a { color: var(--gold); }
.static-page .last-updated { font-size: .83rem; color: rgba(154,142,128,.6); margin-bottom: 2rem; }

/* ─── Formular Extras ───────────────────────────────────────── */
.form-honeypot {
  position: absolute; left: -9999px; top: -9999px;
  opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none;
}
.form-privacy {
  display: flex; align-items: flex-start; gap: .65rem;
  margin-bottom: 1.3rem; cursor: pointer;
}
.form-privacy input[type=checkbox] {
  width: 18px; height: 18px; min-width: 18px;
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 0;
  background: rgba(255,255,255,.05);
  accent-color: var(--gold); cursor: pointer; margin-top: .15rem;
}
.form-privacy label {
  font-size: .83rem; color: var(--muted);
  text-transform: none; letter-spacing: 0; font-weight: 400;
  cursor: pointer;
}
.form-privacy label a { color: var(--gold); border-bottom: 1px solid rgba(234,214,138,.3); }
.form-privacy label a:hover { color: var(--gold-d); }

/* ─── Cookie Banner ─────────────────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(16,16,16,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 300;
  padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  transform: translateY(100%);
  transition: transform .38s var(--ease);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar-text { flex: 1; min-width: 200px; font-size: .84rem; color: rgba(237,233,224,.75); line-height: 1.6; }
.cookie-bar-text a { color: var(--gold); border-bottom: 1px solid rgba(234,214,138,.3); }
.cookie-bar-text a:hover { color: var(--gold-d); }
.cookie-bar-btns { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-btn {
  padding: .52rem 1.3rem; border-radius: 0;
  font: 500 .82rem/1 var(--font); cursor: pointer;
  border: 1.5px solid; transition: background .18s, color .18s, border-color .18s;
  letter-spacing: .05em;
}
.cookie-btn-accept {
  background: var(--gold); color: #1a1a1a; border-color: var(--gold);
}
.cookie-btn-accept:hover { background: var(--gold-d); border-color: var(--gold-d); }
.cookie-btn-decline {
  background: transparent; color: rgba(237,233,224,.65);
  border-color: rgba(255,255,255,.15);
}
.cookie-btn-decline:hover { color: var(--text); border-color: rgba(255,255,255,.35); }

/* ─── Site Popup ─────────────────────────────────────────────── */
.site-popup-wrap {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 400;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; animation: popupFadeIn .3s .1s var(--ease) forwards;
}
@keyframes popupFadeIn { to { opacity: 1; } }
.site-popup-inner {
  background: var(--dark2);
  border: 1px solid rgba(234,214,138,.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 440px; width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  animation: popupSlideUp .32s .1s var(--ease) both;
}
@keyframes popupSlideUp { from { transform: translateY(20px); } to { transform: translateY(0); } }
.site-popup-close {
  position: absolute; top: .85rem; right: .9rem;
  background: rgba(255,255,255,.07); border: 1px solid var(--border);
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s, transform .18s;
}
.site-popup-close:hover { background: rgba(234,214,138,.1); color: var(--gold); transform: scale(1.1); }
.site-popup-img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 1.1rem;
}
.site-popup-title {
  font-family: var(--font-h);
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); margin-bottom: .6rem; line-height: 1.3;
}
.site-popup-body { font-size: .88rem; color: rgba(237,233,224,.82); line-height: 1.75; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { gap: 3.5rem; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-right .section-title { text-align: center; }
  .kacheln { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img img { height: 260px; }
  .services-img img { height: 260px; }
  .about-img::before { display: none; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { justify-content: center; padding: 2.5rem var(--pad) 3rem; }
  .hero-content { max-width: 580px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .kacheln { grid-template-columns: 1fr 1fr; }
  .about-img img { height: 200px; }
  .services-img img { height: 200px; }
  .contact-card { padding: 1.5rem; }
}

@media (max-width: 600px) {
  header { position: sticky; top: 0; background: rgba(18,18,18,.98); backdrop-filter: none; }
  .header-spacer { display: none; }
  .header-right > nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .logo img { height: 42px; }
  .mobile-nav { top: 62px; }

  .hero { min-height: 52vh; }
  .hero-inner { padding: 2.5rem var(--pad) 2.5rem; justify-content: flex-start; padding-left: var(--pad); }
  .hero-content { max-width: 100%; }

  .page-hero { min-height: 30vh; }
  .page-hero .hero-inner { padding: 2.5rem var(--pad) 2rem; }

  .kacheln { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .services-img img { height: 180px; }
  .about-img img { height: 180px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .35rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.2rem; padding: 3rem var(--pad); }
  .footer-brand img { margin: 0 auto 1rem; }
  .footer-brand p { max-width: 100%; }
  .footer-socials, .footer-bottom-links { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .about-actions { justify-content: center; }
  .about-tag { display: flex; justify-content: center; }
  .cookie-bar { padding: 1rem; }
  .cookie-bar-btns { width: 100%; justify-content: flex-end; }
}
