/* Tischlerei Holtkamp — Editorial Manufaktur · gestaltet von Kruithoff Design */
/* Design: warm paper · Fraunces serif editorial · brass hairlines · magazine layout */

:root {
  --paper: #F4EEE4;
  --paper-2: #FBF8F2;
  --card: #FFFFFF;
  --walnut: #2B2018;
  --walnut-2: #3A2C20;
  --ink: #2B2018;
  --muted: #6B5D4C;
  --faint: #9A8B77;
  --line: #E0D6C4;
  --brass: #A9762F;
  --brass-hi: #C89A52;
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1280px;
  --radius: 4px;
  --radius-sm: 2px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; width: 100%; box-sizing: border-box; }

/* ── TYPOGRAPHY SCALE ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  hyphens: auto;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  hyphens: auto;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  hyphens: auto;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.22;
  color: var(--ink);
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  hyphens: auto;
}
em, .italic {
  font-style: italic;
  color: var(--brass);
}
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-brass {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.body-lg { font-size: 1.1rem; line-height: 1.78; color: var(--muted); }
.body-md { font-size: 1rem; line-height: 1.72; color: var(--muted); }

/* ── HAIRLINE RULE ── */
.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}
.rule-brass {
  border: none;
  border-top: 1px solid var(--brass);
  opacity: 0.3;
  margin: 0;
}

/* ── DEMO RIBBON (fixed) ── */
.demo-ribbon {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--walnut);
  color: rgba(255,255,255,0.72);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 7px 16px;
}
.demo-ribbon a { color: var(--brass-hi); font-weight: 600; }

/* ── HEADER (solid — readable on the light hero) ── */
.site-header {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(244, 238, 228, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  transition: box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.solid {
  box-shadow: 0 12px 32px -18px rgba(43,32,24,0.3);
}
.hd-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo — two-line editorial wordmark */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  color: var(--walnut);
  letter-spacing: 0.01em;
  font-optical-sizing: auto;
}
.site-logo .logo-craft {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  padding: 9px 15px;
  border-radius: var(--radius);
  transition: color 0.22s, background 0.22s;
}
.nav-links a:hover { color: var(--brass); background: rgba(169,118,47,0.07); }
.nav-links a.active { color: var(--brass); font-weight: 600; }

/* Header CTA */
.hd-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--walnut);
  padding: 11px 21px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hd-cta:hover {
  background: var(--brass);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(169,118,47,0.7);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--walnut);
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--walnut);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 40px;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3rem);
  color: rgba(255,255,255,0.88);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-optical-sizing: auto;
}
.mobile-menu a.active { color: var(--brass-hi); }
.mobile-menu a:hover { color: var(--brass-hi); }
.mm-foot {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.mm-foot a { color: rgba(255,255,255,0.5); }

/* ── HERO — EDITORIAL SPLIT LAYOUT ── */
.hero-editorial {
  background: var(--paper);
  min-height: 100vh;
  padding-top: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

/* Left text column */
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px 72px 40px;
  position: relative;
}
.hero-text-col::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

.hero-manufaktur {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-manufaktur::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brass);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--walnut);
  margin-bottom: 28px;
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-h1 em {
  font-style: italic;
  color: var(--brass);
}
.hero-intro {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 44px;
}
.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--walnut);
  font-optical-sizing: auto;
  border-bottom: 1.5px solid var(--walnut);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s;
}
.hero-cta-link svg { width: 18px; height: 18px; transition: transform 0.25s; flex-shrink: 0; }
.hero-cta-link:hover { color: var(--brass); border-color: var(--brass); }
.hero-cta-link:hover svg { transform: translateX(5px); }

/* Right image column */
.hero-image-col {
  position: relative;
  overflow: hidden;
  background: var(--walnut);
}
.hero-image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 8s ease;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43,32,24,0.15) 0%, rgba(43,32,24,0.35) 100%);
  z-index: 1;
}
.hero-ki-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(43,32,24,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

/* ── PAGE HERO (sub-pages) — editorial banner ── */
.page-hero {
  background: var(--walnut);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.page-hero-inner .label {
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  display: block;
}
.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 700px;
  margin-bottom: 18px;
  font-optical-sizing: auto;
}
.page-hero-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.72;
}
.ki-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(43,32,24,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}
.crumb {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 16px;
}
.crumb a:hover { color: var(--brass-hi); }

/* ── EDITORIAL STATEMENT SECTION ── */
.statement-section {
  background: var(--paper-2);
  padding: 110px 0;
}
.statement-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}
.statement-aside {
  padding-top: 6px;
}
.statement-aside .label-brass { display: block; margin-bottom: 18px; }
.statement-aside-rule {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  opacity: 0.4;
  margin-top: 18px;
}
.statement-body {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--walnut);
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
.statement-body em {
  font-style: italic;
  color: var(--brass);
}

/* ── LEISTUNGEN CATALOGUE — numbered rows ── */
.catalogue-section {
  background: var(--paper);
  padding: 100px 0 80px;
}
.catalogue-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 60px;
}
.catalogue-header .display-md { flex: 1; }

.catalogue-entry {
  display: grid;
  grid-template-columns: 90px 1fr 320px;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.catalogue-entry:last-child { border-bottom: 1px solid var(--line); }
.catalogue-entry.flip { grid-template-columns: 90px 320px 1fr; }
.catalogue-entry.flip .cat-image { order: 2; }
.catalogue-entry.flip .cat-content { order: 3; }

.cat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--line);
  line-height: 1;
  font-optical-sizing: auto;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.cat-content .label-brass { display: block; margin-bottom: 16px; }
.cat-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--walnut);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
.cat-content p { font-size: 0.97rem; line-height: 1.75; color: var(--muted); margin-bottom: 20px; }
.cat-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.cat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--muted);
}
.cat-bullets li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--brass);
  margin-top: 11px;
  flex-shrink: 0;
}
.cat-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 22px 48px -28px rgba(43,32,24,0.42);
}
.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.catalogue-entry:hover .cat-image img { transform: scale(1.04); }

/* ── MASONRY GALLERY ── */
.gallery-section {
  background: var(--walnut);
  padding: 100px 0;
}
.gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.gallery-header .label { color: rgba(255,255,255,0.4); }
.masonry-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 6px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  background: var(--walnut-2);
  cursor: pointer;
}
.masonry-item:first-child {
  grid-row: span 2;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s;
}
.masonry-item:hover img { transform: scale(1.06); opacity: 0.8; }
.masonry-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,32,24,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.masonry-item:hover .masonry-caption { opacity: 1; }
.masonry-caption span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  font-optical-sizing: auto;
  font-style: italic;
}
.masonry-caption small {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}

/* ── WERKSTATT FEATURE ── */
.werkstatt-section {
  background: var(--paper-2);
  padding: 110px 0;
}
.werkstatt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.werkstatt-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 64px -34px rgba(43,32,24,0.45);
}
.werkstatt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.werkstatt-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(43,32,24,0.65);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}
.werkstatt-text .label-brass { display: block; margin-bottom: 24px; }
.werkstatt-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--walnut);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-optical-sizing: auto;
}
.werkstatt-text h2 em { font-style: italic; color: var(--brass); }
.werkstatt-text p { font-size: 1rem; line-height: 1.78; color: var(--muted); margin-bottom: 16px; }
.werkstatt-pull {
  border-left: 2px solid var(--brass);
  padding-left: 20px;
  margin: 32px 0;
}
.werkstatt-pull blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--walnut);
  font-optical-sizing: auto;
}

/* ── STATS ROW ── */
.stats-section {
  background: var(--walnut);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-numeral {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--brass-hi);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  font-optical-sizing: auto;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  display: block;
}

/* ── REVIEWS — warm serif quote cards ── */
.reviews-section {
  background: var(--paper);
  padding: 110px 0;
}
.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 56px;
  gap: 32px;
}
.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  color: var(--walnut);
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
.google-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 22px;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 14px 34px -24px rgba(43,32,24,0.32);
}
.google-g-svg { width: 22px; height: 22px; flex-shrink: 0; }
.google-rating {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--walnut);
  line-height: 1;
  font-optical-sizing: auto;
}
.google-stars {
  display: flex;
  gap: 2px;
}
.google-stars svg { width: 16px; height: 16px; color: #FBBC04; }
.google-meta {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px -28px rgba(43,32,24,0.38);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -28px rgba(43,32,24,0.45);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.review-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--walnut);
  color: var(--brass-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  flex-shrink: 0;
  font-optical-sizing: auto;
}
.review-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--walnut);
}
.review-date {
  font-size: 11.5px;
  color: var(--faint);
}
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 14px; height: 14px; color: #FBBC04; }
.review-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--muted);
  font-optical-sizing: auto;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--faint);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-footer svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── EDITORIAL CTA / INVITATION ── */
.invitation-section {
  background: var(--paper-2);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.invitation-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.invitation-text .label-brass { display: block; margin-bottom: 24px; }
.invitation-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--walnut);
  margin-bottom: 22px;
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  hyphens: auto;
}
.invitation-text h2 em { font-style: italic; color: var(--brass); }
.invitation-text p { font-size: 1rem; line-height: 1.78; color: var(--muted); max-width: 480px; }
.invitation-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background: var(--walnut);
  border-radius: var(--radius);
  max-width: 100%;
  box-sizing: border-box;
}
.invitation-actions .label { color: rgba(255,255,255,0.4); margin-bottom: 6px; display: block; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--walnut);
  background: var(--brass-hi);
  padding: 14px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--brass); transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  background: transparent;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  font-optical-sizing: auto;
}
.btn-text:hover { color: var(--brass-hi); border-color: var(--brass-hi); }
.btn-text svg { width: 16px; height: 16px; transition: transform 0.25s; }
.btn-text:hover svg { transform: translateX(4px); }

.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--walnut);
  padding: 14px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-ink:hover { background: var(--walnut-2); transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--walnut);
  padding: 80px 0 36px;
  color: rgba(255,255,255,0.6);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}
.foot-brand .logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-optical-sizing: auto;
}
.foot-brand .logo-craft {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 20px;
}
.foot-brand p { font-size: 13.5px; max-width: 280px; line-height: 1.7; }
.foot-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.foot-col a, .foot-col p, .foot-col address {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-style: normal;
  line-height: 1.65;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--brass-hi); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}
.foot-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.foot-bottom a:hover { color: var(--brass-hi); }

/* ── CONTACT FORM ── */
.contact-section { padding: 100px 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px 48px;
  box-shadow: 0 32px 72px -42px rgba(43,32,24,0.4);
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
.form-card .form-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 11.5px; color: var(--faint); margin-top: 6px; line-height: 1.55; }
.form-ok {
  display: none;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(169,118,47,0.08);
  border: 1px solid var(--brass);
  color: var(--walnut);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-optical-sizing: auto;
}
.form-ok.show { display: block; }

.info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-block {
  background: var(--walnut);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
  font-optical-sizing: auto;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-row:last-of-type { border-bottom: none; }
.info-row .ic {
  width: 36px;
  height: 36px;
  background: rgba(200,154,82,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row .ic svg { width: 17px; height: 17px; color: var(--brass-hi); }
.info-row small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.info-row strong, .info-row b { color: rgba(255,255,255,0.88); font-weight: 500; font-size: 14px; }
.info-row a { color: rgba(255,255,255,0.65); font-size: 13.5px; transition: color 0.2s; }
.info-row a:hover { color: var(--brass-hi); }
.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; filter: sepia(0.2) brightness(0.95); }
.map-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(43,32,24,0.85);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

/* ── LEISTUNGEN PAGE — editorial entries ── */
.leistungen-catalogue { padding: 100px 0; background: var(--paper); }
.leistungen-entry {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.leistungen-entry:last-child { border-bottom: 1px solid var(--line); }
.leistungen-top {
  display: grid;
  grid-template-columns: 100px 1fr 280px;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}
.leistungen-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--line);
  line-height: 1;
  letter-spacing: -0.04em;
  font-optical-sizing: auto;
}
.leistungen-title { }
.leistungen-title .label-brass { display: block; margin-bottom: 12px; }
.leistungen-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--walnut);
  margin-bottom: 16px;
  font-optical-sizing: auto;
}
.leistungen-title h2 em { font-style: italic; color: var(--brass); }
.leistungen-title p { font-size: 1rem; line-height: 1.78; color: var(--muted); max-width: 540px; }
.leistungen-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.leistungen-img img { width: 100%; height: 100%; object-fit: cover; }
.leistungen-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  margin-left: 148px;
}
.leistungen-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.leistungen-bullets li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--brass);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ── UEBER UNS — story section ── */
.story-section { padding: 110px 0; background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text .label-brass { display: block; margin-bottom: 24px; }
.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--walnut);
  margin-bottom: 24px;
  font-optical-sizing: auto;
}
.story-text h2 em { font-style: italic; color: var(--brass); }
.story-text p { font-size: 1rem; line-height: 1.82; color: var(--muted); margin-bottom: 20px; }
.story-pull {
  border-left: 2px solid var(--brass);
  padding: 6px 0 6px 22px;
  margin: 36px 0;
}
.story-pull blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--walnut);
  font-optical-sizing: auto;
}
.story-image {
  position: sticky;
  top: 100px;
}
.story-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.story-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-img-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  font-optical-sizing: auto;
}

/* Values section */
.values-section { padding: 100px 0; background: var(--paper-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.value-cell {
  padding: 48px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-cell:nth-child(2n) { border-right: none; }
.value-cell:nth-child(n+3) { border-bottom: none; }
.value-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 18px;
  font-optical-sizing: auto;
}
.value-cell h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
.value-cell p { font-size: 0.95rem; line-height: 1.75; color: var(--muted); }

/* Meister feature */
.meister-section { padding: 100px 0; background: var(--paper); }
.meister-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.meister-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.meister-image img { width: 100%; height: 100%; object-fit: cover; }
.meister-text .label-brass { display: block; margin-bottom: 22px; }
.meister-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--walnut);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.meister-text p { font-size: 1rem; line-height: 1.78; color: var(--muted); margin-bottom: 16px; }
.meister-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.meister-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}
.meister-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--brass);
  margin-top: 11px;
  flex-shrink: 0;
}

/* Workshop feature leistungen */
.workshop-feature {
  background: var(--walnut);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.workshop-img {
  aspect-ratio: auto;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}
.workshop-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.workshop-text {
  padding: 100px 72px 100px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workshop-text .label { color: rgba(255,255,255,0.4); margin-bottom: 22px; display: block; }
.workshop-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.workshop-text h2 em { font-style: italic; color: var(--brass-hi); }
.workshop-text p { font-size: 1rem; line-height: 1.78; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.workshop-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.workshop-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}
.workshop-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--brass-hi);
  margin-top: 11px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* CTA BAND */
.cta-band {
  background: var(--walnut-2);
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-inner {
  text-align: center;
}
.cta-inner .label { color: rgba(255,255,255,0.4); margin-bottom: 22px; display: block; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-optical-sizing: auto;
}
.cta-inner h2 em { font-style: italic; color: var(--brass-hi); }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 36px; line-height: 1.72; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── WHATSAPP WIDGET ── */
.wa-pulse {
  position: fixed;
  right: 21px;
  bottom: 21px;
  z-index: 79;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: wa-pulse 2.8s infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { opacity: 0; }
}
.wa-fab {
  position: fixed;
  right: 21px;
  bottom: 21px;
  z-index: 80;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
.wa-fab svg { width: 25px; height: 25px; color: #fff; }

.wa-card {
  position: fixed;
  right: 21px;
  bottom: 82px;
  z-index: 81;
  width: 215px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(43,32,24,0.22);
  overflow: hidden;
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: 0.32s cubic-bezier(0.22,0.61,0.36,1);
}
.wa-card.show { transform: none; opacity: 1; pointer-events: auto; }
.wa-card-head {
  background: #075E54;
  color: #fff;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-card-head .av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-card-head .av svg { width: 16px; height: 16px; color: #fff; }
.wa-card-head .wa-name { font-weight: 700; font-size: 12px; display: block; font-family: var(--font-body); line-height: 1.15; }
.wa-card-head .wa-status {
  font-size: 9.5px;
  color: #a7f3d0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.wa-card-head .wa-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: block;
}
.wa-card-head .wa-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
}
.wa-card-body {
  padding: 11px 11px;
  background: #ECE5DD;
}
.wa-bubble {
  background: #fff;
  border-radius: 3px 10px 10px 10px;
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  line-height: 1.5;
}
.wa-bubble .t { font-size: 9px; color: var(--faint); text-align: right; margin-top: 3px; }
.wa-availability {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 7px 9px;
  font-weight: 700;
  font-size: 10px;
  color: #075E54;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  font-family: var(--font-body);
  line-height: 1.25;
}
.wa-availability svg { width: 13px; height: 13px; color: #25D366; flex-shrink: 0; }
.wa-card-foot { padding: 9px 11px; background: #fff; }
.wa-card-foot a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  padding: 9px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-card-foot a:hover { background: #1ebe5d; }
.wa-card-foot a svg { width: 14px; height: 14px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 1s cubic-bezier(0.22,0.61,0.36,1), transform 1s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal-d1.in { transition-delay: 0.1s; }
.reveal-d2.in { transition-delay: 0.2s; }
.reveal-d3.in { transition-delay: 0.3s; }
.reveal-d4.in { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .hd-inner { padding: 0 24px; gap: 16px; }
  .nav-links, .hd-cta { display: none; }
  .burger { display: flex; }

  .hero-editorial { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col {
    order: -1;
    min-height: 55vw;
    max-height: 420px;
  }
  .hero-image-col img { position: relative; height: 100%; }
  .hero-text-col { padding: 56px 24px 64px; }
  .hero-text-col::after { display: none; }

  .statement-inner { grid-template-columns: 1fr; gap: 24px; }
  .statement-aside { display: flex; align-items: center; gap: 24px; }
  .statement-aside-rule { width: 60px; height: 1px; margin: 0; }

  .catalogue-entry, .catalogue-entry.flip {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .catalogue-entry .cat-image, .catalogue-entry.flip .cat-image {
    grid-column: 1 / -1;
    order: -1;
    aspect-ratio: 16/7;
  }
  .catalogue-entry .cat-content, .catalogue-entry.flip .cat-content {
    grid-column: 2 / 3;
    order: 0;
  }

  .masonry-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }
  .masonry-item:first-child { grid-row: span 1; }

  .werkstatt-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(n+3) { border-bottom: none; }

  .reviews-header { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .invitation-inner { grid-template-columns: 1fr; gap: 32px; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .leistungen-top { grid-template-columns: 80px 1fr; }
  .leistungen-top .leistungen-img { display: none; }
  .leistungen-bullets { margin-left: 0; grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .value-cell { border-right: none; }
  .meister-inner { grid-template-columns: 1fr; }
  .workshop-feature { grid-template-columns: 1fr; }
  .workshop-img { min-height: 280px; }
  .workshop-text { padding: 56px 24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hd-inner { padding: 0 18px; }
  .masonry-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .masonry-item { aspect-ratio: 4/3; }
  .masonry-item:first-child { grid-row: auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 16px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .wa-card { right: 12px; }
  .wa-fab, .wa-pulse { right: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }

  /* Invitation section — fix padding and button widths on narrow screens */
  .invitation-actions { padding: 28px 20px; }
  .invitation-actions .btn-primary,
  .invitation-actions .btn-outline,
  .invitation-actions .btn-text { width: 100%; justify-content: center; white-space: normal; }

  /* Google rating block — wrap on narrow */
  .google-block { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }

  /* Hero text column */
  .hero-text-col { padding: 48px 18px 56px; }

  /* Page hero inner padding */
  .page-hero-inner { padding: 130px 0 48px; }

  /* Heading sizes tighter on mobile */
  .hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* Statement body */
  .statement-body { font-size: clamp(1.2rem, 4.5vw, 1.55rem); }

  /* Catalogue entries — collapse number into content row */
  .catalogue-entry, .catalogue-entry.flip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .catalogue-entry .cat-number, .catalogue-entry.flip .cat-number { display: none; }
  .catalogue-entry .cat-content, .catalogue-entry.flip .cat-content {
    grid-column: 1 / -1;
  }

  /* Leistungen top grid — drop number column */
  .leistungen-top { grid-template-columns: 1fr; gap: 12px; }
  .leistungen-number { font-size: 2.5rem; }

  /* CTA band buttons wrap */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline,
  .cta-buttons .btn-ink { width: 100%; justify-content: center; white-space: normal; }

  /* Workshop text padding */
  .workshop-text { padding: 48px 18px; }

  /* Values / Meister */
  .value-cell { padding: 32px 24px; }
  .info-block { padding: 28px 20px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .hd-inner { padding: 0 16px; }

  /* Safety: nothing wider than viewport */
  .google-block { padding: 10px 14px; gap: 8px; }
  .google-rating { font-size: 1.6rem; }

  /* Invitation actions — tighter */
  .invitation-actions { padding: 22px 16px; }
  .invitation-section { padding: 72px 0; }

  /* Hero heading at 320 */
  .hero-h1 { font-size: clamp(1.9rem, 9.5vw, 2.5rem); }

  /* Page hero */
  .page-hero-inner h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }

  /* Buttons always full-width on tiny screens */
  .btn-primary,
  .btn-outline { width: 100%; justify-content: center; white-space: normal; }

  /* Leistungen bullets */
  .leistungen-bullets { gap: 8px 0; }

  /* Form card */
  .form-card { padding: 24px 16px; }

  /* Stats inner stays 2-col but narrower padding */
  .stat-item { padding: 16px 8px; }

  /* Footer */
  .foot-brand p { font-size: 13px; }

  /* Werkstatt section */
  .werkstatt-section { padding: 72px 0; }
  .story-section { padding: 72px 0; }
  .values-section { padding: 72px 0; }
  .meister-section { padding: 72px 0; }
  .catalogue-section { padding: 72px 0 56px; }
  .reviews-section { padding: 80px 0; }
}
