/* ==========================================================================
   Brasil Catering – Stylesheet
   "Elegant Noir": warmes Tiefschwarz, mattes Gold nur als Linien-/Text-/
   Icon-/Button-Akzent, keine Flächen, keine runden Ecken, keine Schatten.
   Bildgetrieben, ruhige Scroll-Bewegung statt Text und Tabellen.
   Headlines: Playfair Display · Text/UI: Jost
   ========================================================================== */

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --bg: #0d0c0a;
  --text: #f6f1e4;
  --text-dim: #cfc6b2;

  --gold: #c9a24b;
  --gold-hover: #d4af63;
  --gold-line: rgba(201, 162, 75, 0.25);
  --gold-line-strong: rgba(201, 162, 75, 0.45);
  --gold-wash: rgba(201, 162, 75, 0.08);

  --font-display: "Playfair Display", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: clamp(3.75rem, 7vw, 6.75rem) 0;
}

main > section.interstitial {
  padding: 0;
}

main > section:not(.interstitial) + section:not(.interstitial) {
  border-top: 1px solid var(--gold-line);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 4.5vw, 3.25rem);
}

.section-head p {
  color: var(--text-dim);
  font-size: 1.08rem;
  font-weight: 300;
}

.lede {
  font-size: 1.15rem;
  font-weight: 300;
}

/* ---------- Suchintention / Leistungsübersicht ---------- */

.services-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gold-line-strong);
  border-bottom: 1px solid var(--gold-line-strong);
}

.services-links a {
  min-height: 180px;
  padding: 2rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--gold-line);
}

.services-links a:last-child { border-right: 0; }
.services-links span { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.services-links strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.35; }

@media (hover: hover) and (pointer: fine) {
  .services-links a:hover { background: var(--gold-wash); }
}

@media (max-width: 760px) {
  .services-links { grid-template-columns: 1fr; }
  .services-links a { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--gold-line); }
  .services-links a:last-child { border-bottom: 0; }
}

.full-service {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--gold-line-strong);
}

.full-service > div:first-child { max-width: 720px; }
.full-service > div:first-child > p:last-child { color: var(--text-dim); font-size: 1.08rem; }

.full-service__stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.full-service__stages > div { padding: 1.8rem 1.5rem; border-right: 1px solid var(--gold-line); }
.full-service__stages > div:last-child { border-right: 0; }
.full-service__stages span { color: var(--gold); font-size: .78rem; letter-spacing: .12em; }
.full-service__stages h3 { margin-top: .75rem; font-size: 1.2rem; }
.full-service__stages p { color: var(--text-dim); font-size: .95rem; margin-bottom: 0; }
.full-service__note { margin: 1.4rem 0 0; color: var(--text-dim); font-size: .9rem; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gold-line-strong);
}

.faq-grid article { padding: 1.8rem 2rem 1.8rem 0; border-bottom: 1px solid var(--gold-line); }
.faq-grid article:nth-child(odd) { border-right: 1px solid var(--gold-line); }
.faq-grid article:nth-child(even) { padding-left: 2rem; }
.faq-grid h3 { font-size: 1.18rem; }
.faq-grid p { color: var(--text-dim); margin-bottom: 0; }

@media (max-width: 820px) {
  .full-service__stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .full-service__stages > div:nth-child(2) { border-right: 0; }
  .full-service__stages > div:nth-child(-n+2) { border-bottom: 1px solid var(--gold-line); }
}

@media (max-width: 620px) {
  .full-service__stages, .faq-grid { grid-template-columns: 1fr; }
  .full-service__stages > div { border-right: 0; border-bottom: 1px solid var(--gold-line); }
  .full-service__stages > div:last-child { border-bottom: 0; }
  .faq-grid article, .faq-grid article:nth-child(even) { padding: 1.5rem 0; border-right: 0; }
}

/* ---------- Inhaltliche SEO-Seiten ---------- */

.content-page { padding-top: 0; }

.page-hero {
  min-height: min(70vh, 680px);
  position: relative;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__media,
.page-hero__scrim {
  position: absolute;
  inset: 0;
}

.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.page-hero__media--wedding img { object-position: center 58%; }
.page-hero__media--business img { object-position: center 45%; }
.page-hero__media--area img { object-position: center 58%; }
.page-hero__scrim { background: linear-gradient(180deg, rgba(13,12,10,.2), rgba(13,12,10,.42) 42%, rgba(13,12,10,.94)); }

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.page-hero__content h1 { max-width: 900px; }
.page-hero__content > p:last-child { max-width: 680px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-dim); }

.breadcrumbs {
  display: flex;
  gap: .65rem;
  align-items: center;
  padding-top: 1.4rem;
  color: var(--text-dim);
  font-size: .86rem;
}
.breadcrumbs a { color: var(--gold); text-underline-offset: .25em; }

.prose-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.prose, .prose-grid > div { max-width: 760px; }
.prose p, .prose-grid p { color: var(--text-dim); font-size: 1.08rem; }
.prose a, .prose-grid a { color: var(--gold); text-underline-offset: .22em; }

.seo-facts { border-left: 1px solid var(--gold-line-strong); padding-left: 2rem; }
.seo-facts h2 { font-size: 1.35rem; }
.seo-facts ul { margin: 1.25rem 0 0; padding-left: 1.15rem; color: var(--text-dim); }
.seo-facts li + li { margin-top: .65rem; }

.page-cta { border-top: 1px solid var(--gold-line-strong); background: linear-gradient(135deg, var(--gold-wash), transparent 55%); }
.page-cta .container { max-width: 820px; text-align: center; }
.page-cta .hero__ctas { justify-content: center; }

.area__link { margin-top: 1.5rem; }

/* ---------- Fehlerseite ---------- */

.error-page {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.error-page__media,
.error-page__scrim { position: absolute; inset: 0; }
.error-page__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.error-page__scrim { background: linear-gradient(90deg, rgba(13,12,10,.96), rgba(13,12,10,.68) 58%, rgba(13,12,10,.35)); }
.error-page__content { position: relative; z-index: 1; }
.error-page__content > p:not(.eyebrow, .error-page__code) { max-width: 580px; color: var(--text-dim); font-size: 1.1rem; }
.error-page__code { margin: 0 0 .2rem; color: rgba(201,162,75,.45); font-family: var(--font-display); font-size: clamp(5rem, 15vw, 11rem); line-height: .8; }

@media (max-width: 760px) {
  .page-hero { min-height: 620px; }
  .page-hero__media img { object-position: 58% center; }
  .page-hero__media--wedding img { object-position: 58% center; }
  .page-hero__media--business img { object-position: 50% center; }
  .prose-grid { grid-template-columns: 1fr; }
  .seo-facts { border-left: 0; border-top: 1px solid var(--gold-line-strong); padding: 2rem 0 0; }
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.9s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--scale {
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 1.4s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.reveal--scale.is-visible {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
}

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.btn--outline,
.btn--whatsapp {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover,
.btn--whatsapp:hover {
  background: var(--gold-wash);
}

.btn--block { width: 100%; justify-content: center; }

.icon { width: 1.1em; height: 1.1em; flex: none; fill: currentColor; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(13, 12, 10, 0.85) 0%, rgba(13, 12, 10, 0.55) 65%, rgba(13, 12, 10, 0) 100%);
}

.site-header.is-scrolled {
  background: var(--bg);
  padding: 0.85rem 0;
  border-bottom-color: var(--gold-line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text);
}

.brand__mark {
  flex: none;
  width: 46px;
  height: 46px;
}

.brand__text {
  line-height: 1.15;
}
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.brand__sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a[aria-current="page"] { color: var(--gold); }

.nav__links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover { color: var(--gold); }
}

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav__toggle-lines,
.nav__toggle-lines span {
  display: block;
}

.nav__toggle-lines {
  position: relative;
  width: 24px;
  height: 18px;
  margin: auto;
}

.nav__toggle-lines span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}

.nav__toggle-lines span:nth-child(1) { top: 1px; }
.nav__toggle-lines span:nth-child(2) { top: 8px; }
.nav__toggle-lines span:nth-child(3) { top: 15px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-lines span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-lines span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-lines span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

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

.field :where(input, textarea, select):focus-visible {
  outline-offset: 2px;
}

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }

  .nav__panel {
    position: fixed;
    inset: 0 0 0 auto;
    min-height: 100dvh;
    width: min(78vw, 340px);
    background: var(--bg);
    border-left: 1px solid var(--gold-line);
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    padding: 6.5rem 2rem max(2rem, env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 90;
    overflow-y: auto;
    visibility: hidden;
  }

  .nav__links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav__links a { font-size: 1.05rem; }

  .nav__ctas {
    flex-direction: column;
    gap: 0.9rem;
  }

  .nav__ctas .btn { width: 100%; justify-content: center; }
  body.nav-open .nav__panel { transform: translateX(0); visibility: visible; transition-delay: 0s; }
  .nav__toggle { display: block; position: relative; z-index: 91; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--text);
  background: var(--bg);
  overflow: hidden;
}

.hero .hero__media {
  position: absolute;
  inset: 0;
}

.hero__poster {
  position: absolute;
  inset: 0;
  display: block;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 821px) {
  .hero__poster img { object-position: center 58%; }
}

@media (max-width: 820px) {
  .hero__poster img { object-position: center 58%; }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 12, 10, 0.05) 0%, rgba(13, 12, 10, 0.55) 55%, rgba(13, 12, 10, 0.96) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3.5rem, 9vw, 7rem);
  padding-top: 8rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--text);
  margin-bottom: 0;
}

.hero__rule {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 1.6rem auto 1.8rem;
}

.hero__sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 2.4rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__calc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 400;
  text-underline-offset: 4px;
}

.hero__calc span { transition: transform 0.2s ease; }

@media (hover: hover) and (pointer: fine) {
  .hero__calc:hover span { transform: translateX(3px); }
}

@media (max-width: 540px) {
  .hero__content { padding-bottom: 5rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; padding-inline: 0.75rem; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__scrolldown { display: none; }
}

.hero__scrolldown {
  position: absolute;
  bottom: 1.6rem;
  right: 1.8rem;
  z-index: 2;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__scrolldown::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--gold-line-strong);
  display: block;
}

/* ---------- Placeholder images / photo frames ---------- */

.ph {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-dim);
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
}

@media (hover: hover) and (pointer: fine) {
  .ph:hover img { transform: scale(1.035); }
}

.ph__fallback {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.ph__fallback span { display: none; }

.ph__fallback svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.6rem;
  opacity: 0.7;
}

.ph.img-loaded .ph__fallback { display: none; }
.ph.img-loaded img { opacity: 1; }

/* ---------- Full-bleed interstitial images ---------- */

.interstitial {
  position: relative;
  width: 100%;
  height: clamp(320px, 46vw, 640px);
  overflow: hidden;
  background: var(--bg);
}

.interstitial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interstitial--team img { object-position: center 56%; }
.interstitial--grill img { object-position: center 64%; }
.interstitial--atmosphere img { object-position: center 62%; }

/* ---------- About ---------- */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__media {
  aspect-ratio: 4 / 5;
}

.about__promise {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1.6rem;
}

.about__media-wrap {
  position: relative;
}

.about__media-accent {
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 42%;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
}

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; aspect-ratio: 16/10; }
  .about__media-accent {
    position: static;
    width: 45%;
    margin: 0.8rem 0 0 auto;
  }
}

/* ---------- Values (Warum wir) ---------- */

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

.value-item {
  padding-top: 1.5rem;
  border-top: 2px solid var(--gold);
}

.value-item h3 { margin-bottom: 0.6rem; }
.value-item p {
  color: var(--text-dim);
  font-weight: 300;
  margin: 0;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Story rows (Handwerk & Fleisch) ---------- */

.story-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}
.story-row:last-child { margin-bottom: 0; }

.story-row--reverse { grid-template-columns: 1fr 1.2fr; }
.story-row--reverse .story-row__media { order: 2; }
.story-row--reverse .story-row__text { order: 1; }

.story-row__media {
  aspect-ratio: 4 / 3;
}

.story-row__text h3 { margin-bottom: 0.5rem; }
.story-row__text p {
  color: var(--text-dim);
  font-size: 1.08rem;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 780px) {
  .story-row,
  .story-row--reverse {
    grid-template-columns: 1fr;
  }
  .story-row--reverse .story-row__media,
  .story-row--reverse .story-row__text {
    order: initial;
  }
}

/* ---------- Trio photo strip (Beilagen) ---------- */

.fleisch__sides {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.fleisch__sides > p {
  max-width: 640px;
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.trio-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.trio-photos .ph {
  aspect-ratio: 4 / 3;
}

@media (max-width: 720px) {
  .trio-photos { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 0.8rem;
}

.gallery-grid a { display: block; height: 100%; }

.gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(5),
.gallery-grid figure:nth-child(10),
.gallery-grid figure:nth-child(14) { grid-column: span 2; }
.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(7),
.gallery-grid figure:nth-child(15) { grid-row: span 2; }

.gallery-grid figure:nth-child(1) img { object-position: center 48%; }
.gallery-grid figure:nth-child(2) img { object-position: center 36%; }
.gallery-grid figure:nth-child(3) img { object-position: center 28%; }
.gallery-grid figure:nth-child(5) img { object-position: center 32%; }
.gallery-grid figure:nth-child(7) img { object-position: center 34%; }
.gallery-grid figure:nth-child(10) img { object-position: center 40%; }
.gallery-grid figure:nth-child(11) img,
.gallery-grid figure:nth-child(12) img { object-position: center 38%; }
.gallery-grid figure:nth-child(14) img { object-position: center 45%; }
.gallery-grid figure:nth-child(15) img { object-position: center 28%; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(15) { grid-row: span 2; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(5),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(10),
  .gallery-grid figure:nth-child(14),
  .gallery-grid figure:nth-child(15) { grid-column: span 1; grid-row: span 1; }
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--bg);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.faq__items {
  border-top: 1px solid var(--gold-line);
}

.faq details {
  border-bottom: 1px solid var(--gold-line);
}

.faq summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.15rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
}

.faq details[open] summary::after { content: "−"; }

.faq details p {
  max-width: 62ch;
  padding: 0 2.5rem 1.4rem 0;
  color: var(--text-dim);
}

.faq summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .faq__layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Testimonials ---------- */

.testi-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.testi-layout__media {
  aspect-ratio: 4 / 5;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testi-card {
  padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--gold);
}

.testi-card p.quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.testi-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-dim);
}

@media (max-width: 780px) {
  .testi-layout { grid-template-columns: 1fr; }
  .testi-layout__media { aspect-ratio: 16/10; }
}

/* ---------- Area ---------- */

.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.area__tags span {
  border: 1px solid var(--gold-line-strong);
  color: var(--text);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 300;
}

/* ---------- Process (Ablauf einer Anfrage) ---------- */

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

.process-step {
  padding-top: 2.2rem;
  border-top: 2px solid var(--gold);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 300;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-info dl {
  margin: 0;
}

.contact-info dt {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.6rem;
}
.contact-info dt:first-child { margin-top: 0; }

.contact-info dd {
  margin: 0.3rem 0 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.contact-info dd a { text-decoration: none; border-bottom: 1px solid transparent; }
.contact-info dd a:hover { border-color: currentColor; color: var(--gold); }

.contact-info__address {
  font-size: 1rem;
  font-weight: 300;
  font-family: var(--font-body);
}

.contact-info__socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.contact-info__socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line-strong);
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-info__socials a:hover { background: var(--gold); color: var(--bg); }

.contact-info__trust {
  margin-top: 2.2rem;
  max-width: 320px;
  aspect-ratio: 16 / 9;
}

.form {
  padding: 2.4rem;
  border: 1px solid var(--gold-line);
}

.form h3 { color: var(--text); }

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text-dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gold-line-strong);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.field textarea { resize: vertical; min-height: 100px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 720px) {
  .contact__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

.form__note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  margin-top: 0.9rem;
}

.form__note--calc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link--gold { color: var(--gold); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  color: var(--text-dim);
  padding: 3.5rem 0 1.8rem;
  font-size: 0.9rem;
  font-weight: 300;
  border-top: 1px solid var(--gold-line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--gold-line);
}

.footer-grid nav a {
  display: block;
  text-decoration: none;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}
.footer-grid nav a:hover { color: var(--gold); }

.footer-brand__mark { margin-bottom: 0.9rem; display: inline-grid; }
.footer-brand__claim { max-width: 260px; color: var(--text-dim); }
.footer-contact__line { color: var(--text-dim); margin-bottom: 0.5rem; }
.footer-contact__line:last-child { margin-bottom: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.6rem;
  font-size: 0.8rem;
}

.footer-bottom nav { display: flex; gap: 1rem; }
.footer-bottom nav a { color: var(--text-dim); }

/* ---------- Legal pages ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
}
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--text-dim); font-weight: 300; }
.legal__updated { margin-top: 2rem; font-size: 0.85rem; }

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--bg);
  padding: 0.8rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }
/* Datenschutz-Einwilligung */
.consent-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 10000;
  padding: clamp(1rem, 2vw, 1.5rem);
  color: #f5f0e6;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(198, 157, 75, 0.55);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.consent-banner[hidden] { display: none; }

.consent-banner__inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.consent-banner__copy { max-width: 760px; }
.consent-banner__eyebrow {
  margin: 0 0 0.35rem;
  color: #c69d4b;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consent-banner h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.consent-banner p { margin: 0; line-height: 1.6; }
.consent-banner a { color: #e0bd73; text-decoration: underline; text-underline-offset: 0.2em; }
.consent-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }

.footer-consent-link {
  padding: 0;
  color: inherit;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.footer-consent-link:hover,
.footer-consent-link:focus-visible { color: #c69d4b; }

@media (max-width: 760px) {
  .consent-banner__inner { grid-template-columns: 1fr; gap: 1rem; }
  .consent-banner__actions { display: grid; grid-template-columns: 1fr; }
  .consent-banner__actions .btn { width: 100%; text-align: center; }
}
