:root {
  /* Slightly cooler, more subdued palette for the abschied context */
  --bg: #f6f5f1;
  --bg-alt: #ecebe5;
  --ink: #1f1d1b;
  --ink-soft: #50504a;
  --muted: #807d75;
  --line: #ddd9d0;
  --accent: #b48a4a;
  --accent-dark: #8c6730;
  --white: #ffffff;
  --black: #111111;
  --shadow-sm: 0 4px 14px rgba(20, 18, 14, 0.06);
  --shadow: 0 14px 38px rgba(20, 18, 14, 0.12);
  --container: 1180px;
  --radius: 4px;
  --transition: 0.3s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 0.6em;
  color: var(--ink);
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section { padding: 5.5rem 0; }

@media (min-width: 1024px) {
  .section { padding: 7.5rem 0; }
}

.eyebrow {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.72rem;
  margin: 0 0 1.1rem;
}

.eyebrow-light { color: #e8d3a8; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

.skip-link:focus { left: 1rem; z-index: 1000; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(246, 245, 241, 0);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(246, 245, 241, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(20, 18, 14, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.hero-active .site-header:not(.is-scrolled) .brand { color: var(--white); }

@media (min-width: 1024px) {
  .hero-active .site-header:not(.is-scrolled) .primary-nav a { color: var(--white); }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  padding: 0.55rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: background var(--transition), transform var(--transition);
}

.hero-active .site-header:not(.is-scrolled) .nav-toggle-bar { background: var(--white); }

.primary-nav {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: 0 18px 40px rgba(20, 18, 14, 0.12);
}

.primary-nav.open { max-height: 600px; }

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem 1.5rem;
}

.primary-nav a {
  display: block;
  padding: 0.7rem 0.2rem;
  color: var(--ink);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line);
}

.primary-nav li:last-child a { border-bottom: none; }

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--accent); }

.nav-cta {
  display: inline-block;
  margin-top: 0.4rem;
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 999px;
  border: none !important;
  letter-spacing: 0.16em !important;
}

.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .primary-nav {
    position: static;
    max-height: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .primary-nav ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
  }

  .primary-nav a {
    border-bottom: none;
    padding: 0.5rem 0;
    font-size: 0.74rem;
    position: relative;
  }

  .primary-nav li:not(:last-child) a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }

  .primary-nav li:not(:last-child) a:hover::after,
  .primary-nav li:not(:last-child) a:focus-visible::after {
    transform: scaleX(1);
  }

  .nav-cta { margin-top: 0; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 14, 12, 0.55), rgba(15, 14, 12, 0.62)),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  font-weight: 300;
  font-style: italic;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  margin: 0 auto 2.2rem;
  font-size: 1.1rem;
  line-height: 1.75;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.hero-scroll span {
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  margin-top: 0.6rem;
}

.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.btn-block { width: 100%; margin-top: 0.6rem; }

/* SECTION HEAD */
.section-head { margin: 0 0 3rem; max-width: 70ch; }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head p:last-child { color: var(--ink-soft); }

/* INTRO */
.section-intro {
  background: var(--bg);
  padding: 5rem 0;
  text-align: center;
}

.intro-wrap { max-width: 760px; margin-inline: auto; }

.intro-text {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

.section-intro::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 2.2rem auto 0;
}

/* ANGEBOT CARDS */
.section-angebot { background: var(--bg-alt); }

.card-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover, .offer-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.offer-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.offer-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer-card:hover img { transform: scale(1.05); }

.offer-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-card h3 { margin-bottom: 0.4rem; }

.offer-card p {
  color: var(--ink-soft);
  flex-grow: 1;
  font-size: 0.96rem;
}

.offer-card-link {
  margin-top: 1rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

/* FEATURE ALTERNATING */
.feature { background: var(--bg); }
.feature + .feature { border-top: 1px solid var(--line); }

.feature-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .feature-reverse .feature-grid { direction: rtl; }
  .feature-reverse .feature-grid > * { direction: ltr; }
}

.feature-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1s ease;
}

.feature:hover .feature-media img { transform: scale(1.03); }

.feature-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.feature-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}

.feature-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

/* REDEN HINWEIS (Querverweis) */
.section-reden {
  background:
    linear-gradient(rgba(20, 16, 12, 0.55), rgba(20, 16, 12, 0.65)),
    url('../images/individuelle-gestaltung.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.section-reden .eyebrow { color: #e8d3a8; }
.section-reden h2 { color: var(--white); }

.reden-wrap { max-width: 640px; margin-inline: auto; }

.reden-wrap p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.section-reden .btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.section-reden .btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ABOUT */
.section-about { background: var(--bg-alt); }

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

.about-portrait {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.facts-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* CONTACT */
.section-contact { background: var(--bg); }

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-note {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border-left: 2px solid var(--accent);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.contact-note a { color: var(--accent); border-bottom: 1px solid currentColor; }

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.4rem 0 0;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-quick a {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-quick a:hover { color: var(--accent); }

.contact-quick .quick-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .field-grid { grid-template-columns: 1fr 1fr; }
}

label {
  display: grid;
  gap: 0.4rem;
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  font: inherit;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 138, 74, 0.15);
}

textarea { resize: vertical; min-height: 120px; }

.consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 1.1rem 0 0.4rem;
}

.consent input { width: auto; margin-top: 0.2rem; }
.consent a { color: var(--accent); border-bottom: 1px solid currentColor; }

.form-status {
  min-height: 1.4em;
  margin-top: 0.8rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #1c6b2e;
}

.form-status.is-error {
  color: #a12626;
}

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }
  .footer-copy { text-align: right; }
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.footer-claim {
  margin: 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--accent); }

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* LEGAL PAGES */
.legal-page { background: var(--bg); }

.legal-page > main.section {
  padding-top: calc(78px + 3rem);
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .legal-page > main.section {
    padding-top: calc(78px + 4rem);
    padding-bottom: 5rem;
  }
}

.legal-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.4rem;
  max-width: 820px;
  margin-inline: auto;
}

.legal-wrap h1 { margin-top: 0.4rem; }
.legal-wrap h2 { margin-top: 2rem; font-size: 1.4rem; }

.legal-wrap a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

.legal-wrap a:hover { color: var(--accent-dark); }
.legal-wrap a.back-link { border-bottom: none; }

.back-link {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--accent);
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.back-link:hover { color: var(--accent-dark); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .site-header,
  .hero-scroll,
  .nav-toggle,
  .primary-nav,
  .btn,
  .contact-form,
  .site-footer,
  .hero-media {
    display: none !important;
  }

  .site-header {
    position: static;
    background: none;
    border: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    color: #000;
    background: none !important;
  }

  .hero h1,
  .hero .lead {
    color: #000;
  }

  .hero .lead {
    max-width: 100%;
  }

  .section {
    padding: 1.5rem 0;
    break-inside: avoid;
  }

  .section-reden {
    background: none !important;
    color: #000;
  }

  .section-reden h2 {
    color: #000;
  }

  .section-reden .btn-primary {
    display: none !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}
