/* ========================================
   Goldschmiede Schlachter — Multi-Page
   ======================================== */

:root {
  --color-bg: #f8f5f0;
  --color-bg-alt: #f0ebe3;
  --color-bg-dark: #2c2418;
  --color-text: #2c2418;
  --color-text-light: #f8f5f0;
  --color-text-muted: #7a7062;
  --color-red: #c73528;
  --color-gold: #b8932a;
  --color-gold-light: #d4b96b;
  --color-border: #e0d8cc;

  --surface-warm:
    linear-gradient(90deg, rgba(184,147,42,.018) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #faf7f2 0%, #f7f1e8 54%, #f3ede5 100%);
  --wave-top-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H1440V22C1180 46 1018 12 778 28C516 46 314 44 0 20V0Z' fill='black'/%3E%3C/svg%3E");
  --wave-bottom-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30C220 50 420 12 660 28C914 45 1084 46 1440 24V80H0Z' fill='black'/%3E%3C/svg%3E");

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1100px;
  --header-h: 76px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--surface-warm);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s; }
ul { list-style: none; }

:where(a, button, iframe):focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: .85rem;
  left: 1rem;
  z-index: 200;
  transform: translateY(-180%);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: .7rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(44,36,24,.18);
  transition: transform .25s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

h2 {
  font-size: clamp(2rem, 4vw + .5rem, 3.2rem);
  letter-spacing: 0;
  margin-bottom: 1.4rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: .7rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: .8rem;
}

.section-label::before {
  content: '';
  width: .42rem;
  height: .42rem;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  max-width: 620px;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

main > .section,
main > .page-content,
main > .page-banner,
main > .image-band,
.footer {
  position: relative;
}

/* ---- Split ---- */
.split {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.split--55-45 { grid-template-columns: 55fr 45fr; }
.split--45-55 { grid-template-columns: 45fr 55fr; }
.split--60-40 { grid-template-columns: 60fr 40fr; }

.split__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ---- Page fade-in ---- */
main {
  animation: pageIn .45s ease;
}

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

/* ======================
   HEADER
   ====================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.subpage .site-header {
  background: rgba(248,245,240,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 6px rgba(44,36,24,.06);
}

body:not(.subpage) .site-header:not(.scrolled) .nav-brand,
body:not(.subpage) .site-header:not(.scrolled) .nav-links a {
  color: rgba(248,245,240,.92);
}

body:not(.subpage) .site-header:not(.scrolled) .nav-links a[aria-current="page"] {
  color: var(--color-gold-light);
}

body:not(.subpage) .site-header:not(.scrolled) .nav-toggle span {
  background: rgba(248,245,240,.92);
}

body:not(.subpage) .site-header:not(.scrolled) .nav-links.open a {
  color: var(--color-text);
}

body:not(.subpage) .site-header:not(.scrolled) .nav-links.open a[aria-current="page"] {
  color: var(--color-gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1;
  color: var(--color-text);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 1.85rem);
  margin-left: auto;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: .2rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width .3s;
}

.nav-links a:hover { color: var(--color-text); }
.nav-links a:hover::after { width: 100%; }

/* Active page */
.nav-links a[aria-current="page"] {
  color: var(--color-gold);
}
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* Mobile burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ======================
   HERO (homepage only)
   ====================== */
.hero {
  --hero-wave-h: clamp(28px, 4.5vw, 62px);
  position: relative;
  height: calc(100svh + var(--hero-wave-h));
  min-height: calc(620px + var(--hero-wave-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: var(--hero-wave-h);
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 34C220 66 398 22 632 40C878 58 1058 44 1440 30V80H0Z' fill='%23faf7f2'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 80% 35%;
  transform-origin: center;
  animation: heroImageDrift 18s ease-out both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(18,14,9,.58) 0%,
      rgba(18,14,9,.24) 42%,
      rgba(18,14,9,.2) 68%,
      rgba(18,14,9,.58) 100%),
    linear-gradient(90deg,
      rgba(18,14,9,.42) 0%,
      rgba(18,14,9,.14) 52%,
      rgba(18,14,9,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 46rem);
  text-align: center;
  padding: 0 2rem;
  margin-top: -2rem;
  color: var(--color-text-light);
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin-bottom: .95rem;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.hero-kicker::before,
.hero-kicker::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: .78;
}

.hero-title {
  font-family: var(--font-body);
  font-size: 5.1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
  color: var(--color-text-light);
  margin-bottom: 1.35rem;
  text-shadow: 0 16px 36px rgba(0,0,0,.32);
}

.hero-title span {
  display: block;
}

.hero-line {
  width: 56px; height: 1px;
  background: var(--color-gold-light);
  margin: 0 auto 1.4rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(248,245,240,.86);
  max-width: 34rem;
  margin-inline: auto;
  text-shadow: 0 8px 22px rgba(0,0,0,.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.7rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border: 1px solid rgba(248,245,240,.48);
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn--primary {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-bg-dark);
}

.hero-btn--primary:hover {
  background: #e2c979;
  border-color: #e2c979;
}

.hero-btn--secondary {
  background: rgba(18,14,9,.26);
  color: var(--color-text-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn--secondary:hover {
  background: rgba(248,245,240,.13);
  border-color: rgba(248,245,240,.72);
}

.hero-meta {
  margin-top: 1rem;
  font-size: .78rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: rgba(248,245,240,.7);
}

.hero-visit {
  display: none;
}

.hero-kicker,
.hero-title,
.hero-line,
.hero-tagline,
.hero-actions,
.hero-meta {
  animation: heroTextIn .7s ease both;
}

.hero-title { animation-delay: .06s; }
.hero-line { animation-delay: .11s; }
.hero-tagline { animation-delay: .16s; }
.hero-actions { animation-delay: .22s; }
.hero-meta { animation-delay: .28s; }

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

@keyframes heroImageDrift {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

/* ======================
   PAGE BANNER (subpages)
   ====================== */
.page-banner {
  padding: calc(var(--header-h) + 3.2rem) 0 3.2rem;
  background:
    radial-gradient(circle at 88% 15%, rgba(184,147,42,.08) 0 1px, transparent 2px 100%),
    linear-gradient(135deg, #f0ebe3 0%, #f7f1e8 52%, #eee6dc 100%);
  border-bottom: 0;
  isolation: isolate;
  overflow: visible;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 1.9rem;
  right: max(1.2rem, calc((100vw - var(--max-w)) / 2 - 1.5rem));
  z-index: 0;
  width: clamp(5.5rem, 12vw, 10rem);
  aspect-ratio: 1;
  border: 1px solid rgba(184,147,42,.09);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw + .5rem, 3rem);
  font-weight: 300;
  letter-spacing: 0;
}

.page-banner .section-label { margin-bottom: .5rem; }

/* ======================
   PAGE CONTENT (subpages)
   ====================== */
.page-content {
  padding: 5rem 0;
  background: var(--surface-warm);
  isolation: isolate;
}

.image-band + .page-content,
.image-band + .teasers-section,
.page-banner + .page-content {
  isolation: isolate;
}

.image-band + .page-content::before,
.image-band + .teasers-section::before,
.page-banner + .page-content::before {
  content: '';
  position: absolute;
  top: 1px;
  right: 0;
  left: 0;
  z-index: 1;
  height: clamp(46px, 6vw, 86px);
  pointer-events: none;
  background: var(--surface-warm);
  transform: translateY(-100%);
  -webkit-mask: var(--wave-bottom-mask) center top / 100% 100% no-repeat;
  mask: var(--wave-bottom-mask) center top / 100% 100% no-repeat;
}

.image-band + .page-content::before,
.image-band + .teasers-section::before,
.page-banner + .page-content::before {
  display: none;
}

.image-band + .page-content > .container,
.image-band + .teasers-section > .container,
.page-banner + .page-content > .container {
  position: relative;
  z-index: 2;
}

.page-content p {
  max-width: 680px;
}

.page-content .lead {
  margin-bottom: 2rem;
}

/* ======================
   HOMEPAGE — Willkommen
   ====================== */
.willkommen {
  position: relative;
  overflow: hidden;
  padding: 6.2rem 0 5.5rem;
  background:
    linear-gradient(180deg, #f8f5f0 0%, #fbf7f0 50%, var(--color-bg) 100%);
}

.willkommen::before {
  content: '';
  position: absolute;
  top: 4rem;
  right: max(1.5rem, calc((100vw - var(--max-w)) / 2 - 4rem));
  width: clamp(9rem, 19vw, 16rem);
  aspect-ratio: 1;
  border: 1px solid rgba(184,147,42,.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.willkommen::after {
  content: '';
  position: absolute;
  top: calc(4rem + clamp(1.5rem, 4vw, 3rem));
  right: max(2.4rem, calc((100vw - var(--max-w)) / 2 - 1.2rem));
  width: clamp(1rem, 2vw, 1.7rem);
  aspect-ratio: 1;
  border: 1px solid rgba(184,147,42,.22);
  transform: rotate(45deg);
}

.willkommen .container {
  position: relative;
  z-index: 1;
}

.willkommen h2 {
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
}

.willkommen p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.hours-box {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.44), rgba(240,235,227,.74)),
    var(--color-bg-alt);
  padding: 2rem;
  border-left: 0;
  box-shadow:
    inset 3px 0 0 rgba(184,147,42,.78),
    0 18px 45px rgba(44,36,24,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.hours-box:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 3px 0 0 rgba(184,147,42,.86),
    0 24px 58px rgba(44,36,24,.1);
}

.hours-box::before {
  content: '';
  position: absolute;
  top: .85rem;
  right: .85rem;
  bottom: .85rem;
  left: .85rem;
  border: 1px solid rgba(184,147,42,.12);
  pointer-events: none;
}

.hours-box h3 {
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ======================
   HOMEPAGE — Teasers
   ====================== */
.teasers-section {
  padding: 6.5rem 0 7.2rem;
  background: var(--surface-warm);
}

.teasers-section h2 {
  margin-bottom: 2.5rem;
}

.teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1050px;
  margin: 0 auto;
}

.teaser {
  display: block;
  transition: transform .35s ease;
}

.teaser:hover {
  transform: translateY(-4px);
}

.teaser-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.3rem;
  box-shadow: 0 18px 34px rgba(44,36,24,.08);
  transition: opacity .3s, transform .35s ease, box-shadow .35s ease;
}

.teaser:hover .teaser-img {
  opacity: .92;
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(44,36,24,.13);
}

.teaser h3 {
  font-weight: 500;
  margin-bottom: .4rem;
}

.teaser p {
  font-size: .93rem;
  color: var(--color-text-muted);
  margin-bottom: .7rem;
}

.teaser-arrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color .3s, transform .3s ease;
}

.teaser:hover .teaser-arrow {
  color: var(--color-red);
  transform: translateX(4px);
}

/* ======================
   FULL-WIDTH IMAGE BAND
   ====================== */
.image-band {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  --wave-top-fill: var(--color-bg);
  --wave-bottom-fill: var(--color-bg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -1px 0 rgba(44,36,24,.12);
}

.image-band > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.js .image-band > img {
  transform: scale(1.045);
  transition: transform 1.4s cubic-bezier(.2,.72,.18,1);
  will-change: transform;
}

.js .image-band.band-visible > img {
  transform: scale(1);
}

.image-band::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 3;
  height: clamp(18px, 2.5vw, 34px);
  pointer-events: none;
  background: var(--wave-top-fill);
  -webkit-mask: var(--wave-top-mask) center top / 100% 100% no-repeat;
  mask: var(--wave-top-mask) center top / 100% 100% no-repeat;
}

.image-band__wave {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 5;
  height: clamp(18px, 2.5vw, 34px);
  pointer-events: none;
}

.image-band__wave--bottom {
  bottom: -1px;
  background: var(--wave-bottom-fill);
  -webkit-mask: var(--wave-bottom-mask) center bottom / 100% 100% no-repeat;
  mask: var(--wave-bottom-mask) center bottom / 100% 100% no-repeat;
}

.subpage .page-banner + .image-band {
  --wave-top-fill: #f0ebe3;
}

.image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,36,24,.52) 0%,
    rgba(44,36,24,.58) 50%,
    rgba(44,36,24,.65) 100%);
  z-index: 1;
}

.image-band__text {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 5rem 0;
  color: var(--color-text-light);
}

.image-band__text h2 { color: var(--color-text-light); }
.image-band__text p  { color: rgba(248,245,240,.85); line-height: 1.85; max-width: 580px; }
.image-band__text .section-label { color: var(--color-gold-light); }

.image-band__text .btn {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  border-bottom: 1px solid var(--color-gold-light);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}

.image-band__text .btn:hover {
  color: #fff;
  border-color: #fff;
}

/* ======================
   SERVICE GRID
   ====================== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  margin-top: 2.5rem;
}

.service-item {
  padding-left: 1.4rem;
  border-left: 2px solid var(--color-gold);
  transition: transform .3s ease, border-color .3s ease;
}

.service-item:hover {
  transform: translateX(4px);
  border-color: var(--color-red);
}

.service-item h3 {
  font-weight: 500;
  font-family: var(--font-heading);
}

.service-item p {
  font-size: .93rem;
  color: var(--color-text-muted);
}

/* ======================
   BRANDS GRID
   ====================== */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.brand-col h3 {
  font-weight: 500;
  font-family: var(--font-heading);
  padding-bottom: .7rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.brand-list li {
  font-size: .93rem;
  color: var(--color-text-muted);
  padding: .3rem 0;
}

.brand-list li::before {
  content: '\2014';
  margin-right: .65rem;
  color: var(--color-gold);
}

.brand-img {
  margin-top: 1.5rem;
  overflow: hidden;
}

.brand-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.72,.18,1);
}

.brand-col:hover .brand-img img {
  transform: scale(1.045);
}

/* ======================
   HOURS TABLE
   ====================== */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--color-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .6rem 0; font-size: .93rem; }
.hours-table td:last-child { text-align: right; color: var(--color-text-muted); white-space: nowrap; }

/* ======================
   DARK SECTION (altgold etc.)
   ====================== */
.dark-section {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.dark-section h2 {
  color: var(--color-gold-light);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.dark-section p { color: rgba(248,245,240,.78); }
.dark-section .section-label { color: var(--color-gold); }

/* ======================
   KONTAKT
   ====================== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.kontakt-info h3,
.kontakt-hours h3 {
  font-weight: 500;
  font-family: var(--font-heading);
}

.kontakt-info address {
  font-style: normal;
  margin: .8rem 0;
  line-height: 1.85;
}

.kontakt-detail { margin: .35rem 0; }
.kontakt-detail a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.kontakt-detail a:hover { color: var(--color-red); }

.kontakt-hours h3 { margin-bottom: 1rem; }

/* Google Maps embed placeholder */
.map-wrap {
  margin-top: 3rem;
  width: 100%;
  height: 320px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: .9rem;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======================
   FOOTER
   ====================== */
.footer {
  background: var(--color-bg-dark);
  color: rgba(248,245,240,.55);
  padding: 3.8rem 0 2rem;
  font-size: .85rem;
  isolation: isolate;
  border-top: 1px solid rgba(248,245,240,.08);
}

.footer::before {
  content: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248,245,240,.08);
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: .5;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,245,240,.35);
  margin-bottom: .7rem;
}

.footer ul li { padding: .05rem 0; }
.footer ul li a {
  font-size: .85rem;
  min-height: 28px;
}

.footer a { color: rgba(248,245,240,.55); }
.footer a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.footer a:hover { color: var(--color-gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

/* ======================
   IMPRESSUM
   ====================== */
.impressum-content {
  max-width: 680px;
}

.impressum-content p {
  margin-bottom: 1rem;
  max-width: none;
}

.impressum-content h3 {
  margin-top: 2rem;
  margin-bottom: .5rem;
  font-weight: 500;
}

/* ======================
   ANIMATIONS
   ====================== */
.reveal {
  --reveal-x: 0;
  --reveal-y: 0;
  --reveal-scale: 1;
  --reveal-delay: 0s;
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}

.js .reveal:not(.reveal--immediate) {
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity .78s cubic-bezier(.2,.72,.18,1),
    transform .78s cubic-bezier(.2,.72,.18,1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

.js .reveal.visible,
.js .reveal--immediate {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}

.reveal--left {
  --reveal-x: -42px;
  --reveal-y: 14px;
}

.reveal--right {
  --reveal-x: 42px;
  --reveal-y: 14px;
}

.reveal--up {
  --reveal-y: 30px;
}

.reveal--zoom {
  --reveal-y: 20px;
  --reveal-scale: .97;
}

.reveal--immediate {
  transition: none !important;
  will-change: auto;
}

.reveal-group > .reveal:nth-child(3n+1) {
  --reveal-x: -36px;
  --reveal-y: 22px;
}

.reveal-group > .reveal:nth-child(3n+2) {
  --reveal-x: 0;
  --reveal-y: 34px;
  --reveal-scale: .985;
  --reveal-delay: .09s;
}

.reveal-group > .reveal:nth-child(3n) {
  --reveal-x: 36px;
  --reveal-y: 22px;
  --reveal-delay: .16s;
}

.reveal-group > .reveal:nth-child(4) { --reveal-delay: .22s; }

.js .reveal.visible.teaser:hover {
  transform: translate3d(0,-4px,0) scale(1);
}

.js .reveal.visible.service-item:hover {
  transform: translate3d(4px,0,0) scale(1);
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 900px) {
  :root { --header-h: 70px; }

  .nav {
    justify-content: space-between;
    padding: 0 1.2rem;
  }
  .nav-brand { font-size: .95rem; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(248,245,240,.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: .5rem 2rem 1rem;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
    border-bottom: 1px solid var(--color-border);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Touch-friendly nav items (min 44px) */
  .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: .85rem 0;
    font-size: .85rem;
    min-height: 44px;
  }

  .split,
  .split--55-45,
  .split--45-55,
  .split--60-40 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .teasers {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .teaser-img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .service-grid,
  .brands-grid,
  .kontakt-grid { grid-template-columns: 1fr; }

  .image-band { min-height: 360px; }
  .image-band__text { padding: 3rem 0; }
  .image-band__text h2,
  .image-band__text p {
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
  }

  .section { padding: 5rem 0; }
  .willkommen { padding: 5rem 0 4rem; }
  .page-content { padding: 3.5rem 0; }

  .hero {
    align-items: flex-start;
    justify-content: flex-start;
    height: clamp(640px, 88svh, 720px);
    min-height: 0;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(15,11,7,.72) 0%,
        rgba(15,11,7,.36) 24%,
        rgba(15,11,7,.08) 48%,
        rgba(15,11,7,.68) 76%,
        rgba(15,11,7,.86) 100%),
      linear-gradient(90deg,
        rgba(15,11,7,.54) 0%,
        rgba(15,11,7,.1) 58%,
        rgba(15,11,7,.32) 100%);
  }
  .hero-title {
    max-width: 9ch;
    font-size: 2.86rem;
    margin-bottom: 1.08rem;
  }
  .hero-bg img { object-position: 57% 50%; }
  .hero-content {
    position: absolute;
    right: 1.45rem;
    top: calc(var(--header-h) + 1.75rem);
    bottom: auto;
    left: 1.45rem;
    max-width: none;
    width: auto;
    text-align: left;
    padding: 0;
    margin-top: 0;
  }
  .hero-kicker {
    justify-content: flex-start;
    margin-bottom: .86rem;
  }
  .hero-kicker::after { content: none; }
  .hero-line { margin: 0 0 1.05rem; }
  .hero-tagline {
    max-width: 21rem;
    margin-inline: 0;
    font-size: 1rem;
    line-height: 1.68;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 21.5rem;
    margin-top: 1.38rem;
    gap: .75rem;
  }
  .hero-btn {
    width: 100%;
    min-height: 46px;
    padding-inline: .8rem;
    font-size: .76rem;
  }
  .hero-meta { display: none; }
  .hero-visit {
    position: absolute;
    right: 1.45rem;
    bottom: calc(var(--hero-wave-h) + .75rem);
    left: 1.45rem;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: .86rem;
    padding: .9rem 0 0;
    color: var(--color-text-light);
    border-top: 1px solid rgba(212,185,107,.55);
    text-shadow: 0 8px 22px rgba(0,0,0,.32);
    animation: heroTextIn .78s .34s ease both;
  }
  .hero-visit__hours span {
    font-size: .7rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-gold-light);
  }
  .hero-visit__hours strong {
    display: block;
    margin-top: .18rem;
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(248,245,240,.93);
  }
  .hero-visit__hours small {
    display: block;
    margin-top: .08rem;
    font-size: .82rem;
    line-height: 1.3;
    color: rgba(248,245,240,.72);
  }
  .hero-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(248,245,240,.18);
    border-bottom: 1px solid rgba(248,245,240,.18);
  }
  .hero-shortcuts a {
    min-width: 0;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    padding: .48rem .3rem;
    text-align: center;
    border-right: 1px solid rgba(248,245,240,.16);
    border-bottom: none;
  }
  .hero-shortcuts a:last-child {
    border-right: none;
  }
  .hero-shortcuts span {
    overflow-wrap: anywhere;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
    color: rgba(248,245,240,.94);
  }
  .hero-shortcuts small {
    display: block;
    margin-top: .08rem;
    overflow-wrap: anywhere;
    font-size: .66rem;
    line-height: 1.15;
    color: rgba(212,185,107,.86);
  }
  .hero-visit__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
  }
  .hero-visit__links a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .68rem .7rem;
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    color: rgba(248,245,240,.92);
    border: 1px solid rgba(248,245,240,.34);
    background: rgba(18,14,9,.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-logo { margin: 0 auto 1rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }

  .map-wrap { height: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }

  .hero {
    height: clamp(610px, 86svh, 680px);
    min-height: 0;
  }
  .hero-bg img { object-position: 56% 50%; }
  .hero-title { font-size: 2.54rem; }
  .hero-tagline { font-size: .95rem; }
  .hero-content {
    right: 1.15rem;
    top: calc(var(--header-h) + 1.38rem);
    left: 1.15rem;
  }
  .hero-actions { max-width: none; }
  .hero-visit {
    right: 1.15rem;
    bottom: calc(var(--hero-wave-h) + .82rem);
    left: 1.15rem;
  }

  .image-band { min-height: 280px; }
  .image-band__text { padding: 2rem 0; }
  .image-band__text h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  .section { padding: 3.5rem 0; }
  .teasers-section { padding: 3rem 0 3.5rem; }
  .willkommen { padding: 3.5rem 0 3rem; }
  .teasers { max-width: none; }
  .teaser-img { aspect-ratio: 4 / 3; }

  .split__img img { height: 280px; }
  .brand-img img { height: 220px; }

  .page-banner { padding: calc(var(--header-h) + 2rem) 0 1.5rem; }
  .page-banner h1 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .page-content { padding: 2.5rem 0; }

  .hours-box { padding: 1.5rem; }
  .service-item { padding-left: 1rem; }
  .service-grid { gap: 2rem; }

  .map-wrap { height: 240px; }
  .nav-links { padding: .5rem 1.2rem 1rem; }
}

@media (max-width: 380px) {
  .hero {
    height: clamp(585px, 86svh, 640px);
    min-height: 0;
  }
  .hero-title {
    font-size: 2.22rem;
    margin-bottom: .88rem;
  }
  .hero-content {
    top: calc(var(--header-h) + 1.12rem);
  }
  .hero-tagline {
    font-size: .88rem;
    line-height: 1.55;
  }
  .hero-actions {
    gap: .58rem;
    margin-top: 1.05rem;
  }
  .hero-btn {
    min-height: 44px;
    font-size: .7rem;
  }
  .hero-visit {
    bottom: calc(var(--hero-wave-h) + .55rem);
    gap: .58rem;
    padding-top: .72rem;
  }
  .hero-visit__hours strong { font-size: .9rem; }
  .hero-shortcuts a {
    min-height: 50px;
    padding-block: .42rem;
  }
  .hero-shortcuts span { font-size: .7rem; }
  .hero-shortcuts small { font-size: .6rem; }
  .hero-visit__links { gap: .55rem; }
  .hero-visit__links a {
    padding-inline: .52rem;
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  main,
  .hero-bg img,
  .hero-kicker,
  .hero-title,
  .hero-line,
  .hero-tagline,
  .hero-actions,
  .hero-meta,
  .hero-visit {
    animation: none;
  }

  .js .reveal,
  .js .reveal:not(.reveal--immediate),
  .js .image-band > img {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
