:root {
  --ink: #111113;
  --ink-soft: #19191b;
  --paper: #f7f4ed;
  --white: #fff;
  --gold: #d7b96f;
  --gold-light: #ead89f;
  --gold-dark: #9b7a38;
  --muted: #68645d;
  --line: rgba(20, 20, 22, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
  --scroll-progress: 0;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  --hero-glow-x: 0px;
  --hero-glow-y: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--gold); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  content: "";
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  will-change: transform;
}
.site-header.scrolled {
  background: rgba(12, 12, 13, .94);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: 0 8px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; min-height: 90px; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: flex; width: 126px; height: 70px; align-items: center; flex: 0 0 auto; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); }
.main-nav a { position: relative; font-size: 13px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { position: relative; padding: 12px 18px; overflow: hidden; border: 1px solid var(--gold); color: var(--gold-light); }
.nav-cta:hover { color: var(--ink); background: var(--gold); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #07080c;
  place-items: center;
}
.hero-media { position: absolute; width: 100%; height: 100%; object-fit: cover; inset: 0; transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.1); transition: transform .8s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.hero-overlay {
  position: absolute;
  background: linear-gradient(90deg, rgba(5, 5, 7, .92) 0%, rgba(7, 7, 9, .65) 48%, rgba(7, 7, 9, .32) 100%), linear-gradient(0deg, rgba(0, 0, 0, .6), transparent 45%);
  inset: 0;
}
.hero-glow { position: absolute; top: -25%; right: -12%; width: 52vw; height: 52vw; border-radius: 50%; background: rgba(198, 155, 74, .14); filter: blur(100px); transform: translate3d(var(--hero-glow-x), var(--hero-glow-y), 0); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 12px; font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.hero h1, .section h2, .contact-section h2, .legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 850px; font-size: clamp(58px, 8vw, 112px); }
.hero h1 em, .section h2 em, .contact-section h2 em { color: var(--gold); font-weight: 400; }
.hero-lead { max-width: 630px; margin: 30px 0 0; color: rgba(255,255,255,.8); font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 38px; }
.js .hero-content > * { opacity: 0; animation: hero-rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.js .hero-content > :nth-child(1) { animation-delay: .12s; }
.js .hero-content > :nth-child(2) { animation-delay: .24s; }
.js .hero-content > :nth-child(3) { animation-delay: .38s; }
.js .hero-content > :nth-child(4) { animation-delay: .52s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.button::after, .nav-cta::after {
  position: absolute;
  top: -70%;
  left: -45%;
  width: 28%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  content: "";
  opacity: 0;
  transform: rotate(18deg) translateX(-240%);
  transition: transform .7s ease, opacity .25s ease;
  pointer-events: none;
}
.button:hover::after, .button:focus-visible::after, .nav-cta:hover::after, .nav-cta:focus-visible::after { opacity: .65; transform: rotate(18deg) translateX(650%); }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.button-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.42); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-ghost svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.scroll-hint { position: absolute; z-index: 3; right: 4vw; bottom: 28px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-hint i { display: block; width: 54px; height: 1px; overflow: hidden; background: rgba(255,255,255,.3); }
.scroll-hint i::after { display: block; width: 50%; height: 100%; background: var(--gold); content: ""; animation: scrollline 1.8s ease-in-out infinite; }
@keyframes scrollline { 0% { transform: translateX(-110%); } 100% { transform: translateX(210%); } }

.trust-bar { color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid div:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--gold); font-family: var(--serif); font-size: 19px; font-weight: 400; }
.trust-grid span { color: rgba(255,255,255,.58); font-size: 12px; }

.section { padding: clamp(90px, 11vw, 150px) 0; }
.section-heading { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.section-heading.compact { margin-bottom: 48px; }
.section h2, .contact-section h2 { font-size: clamp(45px, 5.5vw, 76px); }
.section-heading > p:last-child { max-width: 670px; margin: 25px auto 0; color: var(--muted); }
.section-heading h2 { position: relative; }
.section-heading h2::after {
  display: block;
  width: 72px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  content: "";
  transform: scaleX(0);
  transition: transform .9s .25s cubic-bezier(.2,.7,.2,1);
}
.section-heading.visible h2::after { transform: scaleX(1); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 405px; padding: 42px 38px 36px; overflow: hidden; background: var(--white); border: 1px solid rgba(20,20,22,.08); transition: transform .3s, box-shadow .3s, background .3s; }
.service-card::before, .equipment-card::before {
  position: absolute;
  z-index: 0;
  background: radial-gradient(280px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(215,185,111,.18), transparent 68%);
  content: "";
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  inset: 0;
}
.service-card:hover::before, .equipment-card:hover::before { opacity: 1; }
.service-card > *, .equipment-card > * { position: relative; z-index: 1; }
.service-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.interactive-card { transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--card-lift, 0px)); transform-style: preserve-3d; will-change: transform; }
.interactive-card:hover { --card-lift: -7px; transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--card-lift)); }
.service-card:hover::after { transform: scaleX(1); }
.service-number { position: absolute; top: 24px; right: 28px; color: rgba(20,20,22,.17); font-family: var(--serif); font-size: 16px; }
.service-icon { display: grid; width: 72px; height: 72px; margin-bottom: 55px; color: var(--gold-dark); border: 1px solid rgba(155,122,56,.35); place-items: center; }
.service-icon svg { width: 40px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }
.service-card h3, .occasion-card h3, .equipment-card h3, .process-list h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.2; }
.service-card p { margin: 16px 0 26px; color: var(--muted); font-size: 14px; }
.service-card a, .text-link { color: var(--gold-dark); font-size: 12px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.service-card a span, .text-link span { margin-left: 6px; transition: margin .2s; }
.service-card a:hover span, .text-link:hover span { margin-left: 11px; }

.dark-section { overflow: hidden; color: var(--white); background: var(--ink); }
.split-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(60px, 8vw, 120px); }
.split-copy h2 { max-width: 540px; }
.split-copy .lead, .about-copy .lead { margin: 30px 0 14px; font-family: var(--serif); font-size: 22px; line-height: 1.45; }
.split-copy > p:not(.eyebrow):not(.lead) { color: rgba(255,255,255,.62); }
.check-grid { display: grid; margin: 34px 0 32px; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.check-grid span { position: relative; padding-left: 22px; color: rgba(255,255,255,.82); font-size: 14px; }
.check-grid span::before { position: absolute; top: .7em; left: 0; width: 10px; height: 1px; background: var(--gold); content: ""; }
.dark-section .text-link { color: var(--gold-light); }
.image-composition { position: relative; min-height: 660px; }
.image-main { position: absolute; top: 0; right: 0; width: 82%; height: 84%; object-fit: cover; transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.035); will-change: transform; }
.image-small { position: absolute; bottom: 0; left: 0; width: 42%; height: 47%; object-fit: cover; border: 10px solid var(--ink); transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.025); will-change: transform; }
.image-note { position: absolute; right: -25px; bottom: 45px; display: flex; width: 210px; min-height: 102px; padding: 20px; align-items: center; gap: 13px; color: var(--ink); background: var(--gold); }
.image-note strong { font-family: var(--serif); font-size: 30px; font-weight: 400; }
.image-note span { font-size: 11px; font-weight: 700; line-height: 1.4; text-transform: uppercase; }

.occasion-row { display: grid; grid-template-columns: 1.15fr .95fr .95fr; gap: 14px; }
.occasion-card { position: relative; min-height: 430px; overflow: hidden; color: var(--white); background-position: center; background-size: cover; }
.occasion-card::before { position: absolute; background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.05) 75%); content: ""; inset: 0; transition: background .3s; }
.occasion-card:hover::before { background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.2) 75%); }
.occasion-card > div { position: absolute; right: 0; bottom: 0; left: 0; padding: 34px; }
.occasion-card span { color: var(--gold-light); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.occasion-card h3 { margin-top: 8px; font-size: 29px; }
.occasion-card p { max-height: 0; margin: 0; overflow: hidden; color: rgba(255,255,255,.7); font-size: 13px; opacity: 0; transition: max-height .35s, margin .35s, opacity .35s; }
.occasion-card:hover p { max-height: 100px; margin-top: 13px; opacity: 1; }
.occasion-wedding { background-image: url("images/haselbach-hochzeitsfeier.jpeg"); }
.occasion-business { background-image: url("images/firmenfeier-gala-tafel.jpg"); }
.occasion-special { background-image: url("images/haselbach-willkommen.jpg"); }

.gallery-section { padding-bottom: 0; background: #eeebe3; }
.gallery-heading { display: grid; margin-bottom: 55px; grid-template-columns: 1.5fr .7fr; align-items: end; gap: 60px; }
.gallery-heading p:last-child { margin: 0; color: var(--muted); }
.gallery-grid { display: grid; background: var(--ink); grid-template-columns: repeat(4, 1fr); grid-auto-rows: 330px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; color: var(--white); background: #222; border: 0; cursor: zoom-in; }
.gallery-item::before { position: absolute; z-index: 2; background: radial-gradient(240px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(234,216,159,.2), transparent 65%); content: ""; opacity: 0; transition: opacity .35s ease; pointer-events: none; inset: 0; }
.gallery-item:hover::before { opacity: 1; }
.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s; }
.gallery-item::after { position: absolute; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 50%); content: ""; inset: 0; }
.gallery-item span { position: absolute; z-index: 3; bottom: 20px; left: 24px; color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: transform .35s ease, color .35s ease; }
.gallery-item span::before { display: inline-block; width: 0; height: 1px; margin-right: 0; vertical-align: middle; background: var(--gold-light); content: ""; transition: width .35s ease, margin .35s ease; }
.gallery-item:hover span { color: var(--gold-light); transform: translateX(2px); }
.gallery-item:hover span::before { width: 22px; margin-right: 10px; }
.gallery-item:hover img { filter: saturate(1.12); transform: scale(1.045); }

.consultancy { display: grid; padding: 0; grid-template-columns: 1fr 1fr; background: var(--white); }
.consultancy-image { min-height: 720px; overflow: hidden; }
.consultancy-image img { width: 100%; height: 100%; object-fit: cover; transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.06); will-change: transform; }
.consultancy-copy { display: flex; padding: clamp(65px, 8vw, 120px); flex-direction: column; justify-content: center; }
.consultancy-copy h2 { font-size: clamp(42px, 4.5vw, 66px); }
.consultancy-copy > p:not(.eyebrow) { color: var(--muted); }
.feature-list { margin: 25px 0 36px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: flex; padding: 15px 0; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.feature-list span { color: var(--gold-dark); font-family: var(--serif); }
.button-dark { align-self: flex-start; color: var(--white); background: var(--ink); }
.button-dark:hover { background: #2c2c30; }

.equipment { color: var(--white); background: #151517; }
.equipment-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.equipment-copy { align-self: center; }
.equipment-copy h2 { font-size: clamp(43px, 4.8vw, 68px); }
.equipment-copy > p:not(.eyebrow) { color: rgba(255,255,255,.6); }
.equipment-copy .text-link { display: inline-block; margin-top: 17px; color: var(--gold-light); }
.equipment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.12); }
.equipment-card { position: relative; min-height: 250px; padding: 34px; overflow: hidden; background: #1b1b1e; transition: background .25s, transform .3s; }
.equipment-card:hover { background: #222226; }
.equipment-card > span { display: block; margin-bottom: 45px; color: var(--gold); font-family: var(--serif); font-size: 16px; }
.equipment-card p { color: rgba(255,255,255,.55); font-size: 13px; }

.process { background: var(--paper); }
.process-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); list-style: none; }
.process-list li { position: relative; padding: 5px 28px 10px; border-left: 1px solid var(--line); }
.process-list li:last-child { border-right: 1px solid var(--line); }
.process-list > li > span { display: block; margin-bottom: 62px; color: var(--gold-dark); font-family: var(--serif); font-size: 17px; }
.process-list li::before { position: absolute; top: 36px; left: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-dark); content: ""; }
.process-list h3 { font-size: 25px; }
.process-list p { color: var(--muted); font-size: 13px; }

.about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(60px, 10vw, 145px); }
.portrait-wrap { position: relative; max-width: 430px; }
.portrait-wrap::before { position: absolute; top: -16px; right: -16px; width: 54%; height: 62%; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); content: ""; }
.portrait-wrap img { position: relative; width: 100%; max-height: 610px; object-fit: cover; transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.015); will-change: transform; }
.portrait-caption { position: absolute; right: -40px; bottom: 28px; min-width: 260px; padding: 19px 25px; color: var(--white); background: var(--ink); }
.portrait-caption strong, .portrait-caption span { display: block; }
.portrait-caption strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.portrait-caption span { color: var(--gold); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.about-copy { max-width: 650px; }
.about-copy p:not(.eyebrow):not(.lead) { color: var(--muted); }
.about-copy blockquote { margin: 30px 0; padding-left: 25px; color: var(--gold-dark); border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 24px; font-style: italic; }
.button-outline-dark { color: var(--ink); border-color: var(--ink); }
.button-outline-dark:hover { color: var(--white); background: var(--ink); }

.contact-section { padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: #0d0d0e; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.contact-details { margin-top: 45px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-details > * { display: block; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-details span, .contact-details strong { display: block; }
.contact-details span { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-details strong { margin-top: 3px; font-size: 15px; font-weight: 450; overflow-wrap: anywhere; }
.contact-details a:hover strong { color: var(--gold-light); }
.contact-form { padding: 42px; color: var(--ink); background: var(--paper); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 17px; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(20,20,22,.35); border-radius: 0; outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-dark); }
.contact-form textarea { resize: vertical; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 450; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.consent input { width: 17px; height: 17px; margin: 3px 0 0; flex: 0 0 auto; accent-color: var(--gold-dark); }
.consent a { text-decoration: underline; }
.form-submit { width: 100%; margin-top: 5px; border: 0; cursor: pointer; }
.form-note { margin: 11px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.site-footer { color: rgba(255,255,255,.72); background: #080809; }
.footer-main { display: grid; padding: 65px 0; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 80px; }
.footer-logo { display: block; width: 250px; max-width: 100%; }
.footer-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  aspect-ratio: auto;
  object-fit: contain;
}
.footer-nav { display: grid; grid-template-columns: 1.3fr 1.1fr .8fr; gap: 35px; }
.footer-nav strong, .footer-nav a { display: block; }
.footer-nav strong { margin-bottom: 13px; color: var(--gold); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-nav a { margin: 7px 0; font-size: 13px; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; padding: 17px 0 25px; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }

.lightbox { width: min(1000px, calc(100vw - 30px)); max-width: none; padding: 0; background: #070708; border: 0; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox[open] { animation: lightbox-in .38s cubic-bezier(.2,.7,.2,1); }
@keyframes lightbox-in { from { opacity: 0; transform: translateY(16px) scale(.975); } to { opacity: 1; transform: none; } }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox button { position: absolute; z-index: 2; top: 8px; right: 12px; width: 40px; height: 40px; color: var(--white); background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 27px; line-height: 1; cursor: pointer; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; filter: blur(6px); transform: translateY(30px); transition: opacity .8s ease, filter .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.js .gallery-item.reveal { transform: translateY(24px) scale(.985); }
.reveal.visible { opacity: 1; filter: blur(0); transform: none; }

.seo-page { background: var(--paper); }
.seo-hero {
  position: relative;
  display: flex;
  min-height: 78svh;
  padding: 170px 0 105px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background-color: #09090a;
  background-position: center;
  background-size: cover;
}
.seo-hero::before { position: absolute; z-index: 0; background: linear-gradient(90deg, rgba(5,5,7,.94), rgba(7,7,9,.58) 62%, rgba(7,7,9,.32)), linear-gradient(0deg, rgba(0,0,0,.65), transparent 52%); content: ""; inset: 0; }
.seo-hero::after { position: absolute; top: -30%; right: -12%; width: 55vw; height: 55vw; border-radius: 50%; background: rgba(198,155,74,.16); content: ""; filter: blur(110px); }
.seo-hero-location { background-image: url("images/festsaal-hochzeitsbestuhlung-tueren-entfernt.png"); }
.seo-hero-management { background-image: url("images/haselbach-tanzflaeche.jpeg"); }
.seo-hero-equipment { background-image: url("images/eventbar-mit-lila-beleuchtung.jpg"); }
.seo-hero-content { position: relative; z-index: 1; max-width: 920px; }
.breadcrumbs { display: flex; margin-bottom: 25px; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--gold-light); }
.seo-hero h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(52px, 7vw, 96px); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.seo-hero h1 em { color: var(--gold); font-weight: 400; }
.seo-hero .hero-lead { margin-top: 28px; }
.seo-section { padding: clamp(85px, 10vw, 135px) 0; }
.seo-intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(55px, 8vw, 110px); }
.seo-copy h2, .seo-section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 5vw, 66px); font-weight: 400; line-height: 1.08; letter-spacing: -.025em; }
.seo-copy h2 em, .seo-section-heading h2 em { color: var(--gold-dark); font-weight: 400; }
.seo-copy > p:not(.eyebrow) { color: var(--muted); }
.seo-copy .lead { color: var(--ink) !important; font-family: var(--serif); font-size: 23px; line-height: 1.45; }
.seo-facts { display: grid; margin-top: 32px; grid-template-columns: 1.25fr .95fr .95fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.seo-fact { padding: 23px 18px 23px 0; }
.seo-fact + .seo-fact { padding-left: 18px; border-left: 1px solid var(--line); }
.seo-fact strong, .seo-fact span { display: block; }
.seo-fact strong { color: var(--gold-dark); font-family: var(--serif); font-size: clamp(20px, 2vw, 25px); font-weight: 400; line-height: 1.2; }
.seo-fact span { color: var(--muted); font-size: 12px; }
.seo-feature-section { color: var(--white); background: var(--ink); }
.seo-section-heading { max-width: 820px; margin-bottom: 50px; }
.seo-section-heading > p:last-child { max-width: 680px; color: rgba(255,255,255,.62); }
.seo-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.seo-card { min-height: 285px; padding: 36px; background: #19191c; transition: background .3s, transform .3s; }
.seo-card:hover { background: #222226; transform: translateY(-4px); }
.seo-card > span { display: block; margin-bottom: 48px; color: var(--gold); font-family: var(--serif); }
.seo-card h2, .seo-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.2; }
.seo-card p { color: rgba(255,255,255,.58); font-size: 14px; }
.seo-image-band { display: grid; grid-template-columns: 1.05fr .95fr; background: var(--white); }
.seo-image-band > img { width: 100%; min-height: 600px; height: 100%; object-fit: cover; }
.seo-image-copy { display: flex; padding: clamp(65px, 8vw, 110px); flex-direction: column; justify-content: center; }
.seo-image-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.8vw, 64px); font-weight: 400; line-height: 1.08; }
.seo-image-copy p { color: var(--muted); }
.seo-list { margin: 22px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.seo-list li { position: relative; padding: 13px 0 13px 22px; border-bottom: 1px solid var(--line); color: #494741; font-size: 14px; }
.seo-list li::before { position: absolute; top: 1.1em; left: 0; width: 10px; height: 1px; background: var(--gold-dark); content: ""; }
.seo-cta { padding: clamp(80px, 9vw, 120px) 0; color: var(--white); background: #0d0d0f; text-align: center; }
.seo-cta h2 { max-width: 850px; margin: 0 auto; font-family: var(--serif); font-size: clamp(42px, 5.4vw, 72px); font-weight: 400; line-height: 1.05; }
.seo-cta p { max-width: 650px; margin: 24px auto 34px; color: rgba(255,255,255,.62); }
.seo-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.seo-crosslinks { padding: 42px 0; background: #e9e5dc; }
.seo-crosslinks-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.seo-crosslinks strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.seo-crosslinks nav { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.seo-crosslinks a { color: var(--gold-dark); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.seo-crosslinks a:hover { color: var(--ink); }

.legal-page { background: var(--paper); }
.legal-page .site-header { position: relative; background: var(--ink); }
.legal-hero { padding: 85px 0 65px; color: var(--white); background: var(--ink); }
.legal-hero h1 { font-size: clamp(48px, 7vw, 85px); }
.legal-content { width: min(820px, calc(100vw - 48px)); margin: 0 auto; padding: 80px 0 110px; }
.legal-content h2 { margin: 43px 0 12px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.legal-content h3 { margin: 28px 0 8px; font-size: 16px; }
.legal-content p, .legal-content li { color: #4e4b46; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content ul { padding-left: 20px; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 11px; }
  .split-layout, .equipment-layout { gap: 55px; }
  .image-note { right: 0; }
  .consultancy-copy { padding: 65px 48px; }
  .occasion-row { grid-template-columns: 1.1fr 1fr; }
  .occasion-card:last-child { grid-column: span 2; min-height: 340px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 34px, 680px); }
  .header-inner { min-height: 76px; }
  .brand { width: 104px; height: 60px; }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; top: 0; right: 0; display: flex; width: min(86vw, 420px); height: 100svh; padding: 120px 40px 50px; flex-direction: column; align-items: flex-start; gap: 25px; background: #0d0d0f; box-shadow: -25px 0 60px rgba(0,0,0,.35); transform: translateX(105%); transition: transform .3s ease; }
  .main-nav.open { transform: none; }
  .main-nav a { font-family: var(--serif); font-size: 27px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .main-nav .nav-cta { margin-top: 14px; padding: 13px 18px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .hero-content { padding-top: 55px; }
  .scroll-hint { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.1); }
  .trust-grid div { border-bottom: 1px solid rgba(255,255,255,.1); }
  .service-grid, .split-layout, .equipment-layout, .about-layout, .contact-layout, .gallery-heading { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .service-icon { margin-bottom: 35px; }
  .image-composition { min-height: 570px; }
  .occasion-row { grid-template-columns: 1fr 1fr; }
  .occasion-card { min-height: 370px; }
  .gallery-heading { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .gallery-wide { grid-column: auto; }
  .gallery-item:first-child, .gallery-item:last-child { grid-column: span 2; }
  .consultancy { grid-template-columns: 1fr; }
  .consultancy-image { min-height: 480px; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 45px 0; }
  .process-list li:nth-child(3) { border-left: 1px solid var(--line); }
  .portrait-wrap { margin: 0 auto; }
  .about-copy { max-width: 680px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .seo-hero { min-height: 70svh; padding-top: 140px; }
  .seo-intro-grid, .seo-image-band { grid-template-columns: 1fr; }
  .seo-card-grid { grid-template-columns: 1fr; }
  .seo-card { min-height: 240px; }
  .seo-image-band > img { min-height: 440px; }
  .seo-crosslinks-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  :root { --container: calc(100vw - 28px); }
  .hero h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div, .trust-grid div:nth-child(3) { padding: 17px 20px; border-left: 1px solid rgba(255,255,255,.1); }
  .section { padding: 80px 0; }
  .section-heading { text-align: left; }
  .section-heading h2::after { margin-left: 0; }
  .section-heading > p:last-child { margin-left: 0; }
  .service-grid { gap: 12px; }
  .service-card { min-height: auto; padding: 34px 28px; }
  .image-composition { min-height: 480px; }
  .image-main { width: 93%; height: 78%; }
  .image-small { width: 45%; height: 43%; border-width: 6px; }
  .image-note { width: 180px; min-height: 82px; bottom: 18px; }
  .check-grid { grid-template-columns: 1fr; }
  .occasion-row { grid-template-columns: 1fr; }
  .occasion-card, .occasion-card:last-child { grid-column: auto; min-height: 390px; }
  .occasion-card p { max-height: 100px; margin-top: 13px; opacity: 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 310px; }
  .gallery-item:first-child, .gallery-item:last-child { grid-column: auto; }
  .consultancy-copy { padding: 75px 24px; }
  .consultancy-image { min-height: 370px; }
  .equipment-grid, .process-list { grid-template-columns: 1fr; }
  .equipment-card { min-height: 220px; }
  .process-list { gap: 0; }
  .process-list li, .process-list li:last-child { padding: 15px 25px 35px; border-right: 0; }
  .process-list > li > span { margin-bottom: 22px; }
  .process-list li::before { top: 26px; }
  .portrait-caption { right: -5px; bottom: 15px; min-width: 230px; }
  .contact-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-logo { width: 220px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-nav div:first-child { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .seo-hero { min-height: 78svh; padding: 125px 0 80px; }
  .seo-hero h1 { font-size: clamp(45px, 13vw, 63px); }
  .seo-facts { grid-template-columns: 1fr; }
  .seo-fact strong { font-size: 25px; }
  .seo-fact, .seo-fact + .seo-fact { padding: 17px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .seo-fact:last-child { border-bottom: 0; }
  .seo-card { min-height: auto; padding: 30px 26px; }
  .seo-card > span { margin-bottom: 30px; }
  .seo-image-band > img { min-height: 330px; }
  .seo-image-copy { padding: 70px 24px; }
  .seo-cta-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-media { display: none; }
  .hero { background: #09090b url("images/hero-poster.jpg") center / cover no-repeat; }
  .reveal { opacity: 1; filter: none; transform: none; }
}
