:root {
  --cream: #f7f2ec;
  --cream-soft: #fbf8f4;
  --white: #fffdfb;

  --ink: #493f39;
  --muted: #776b64;

  --rose: #a66f63;
  --rose-dark: #8e5d53;

  --gold: #b99a57;

  --line: rgba(73, 63, 57, 0.17);

  --header-height: 126px;

  --shadow:
    0 18px 50px rgba(67, 49, 40, 0.11);
}


/* =========================================================
   BASIS
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--ink);

  background: var(--cream-soft);

  font-family:
    "Segoe UI",
    Arial,
    sans-serif;

  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;

  top: 12px;
  left: 12px;

  z-index: 999;

  transform: translateY(-180%);

  padding: 10px 14px;

  background: #ffffff;

  border-radius: 8px;

  box-shadow: var(--shadow);
}

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

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  min-height: var(--header-height);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding:
    22px
    clamp(24px, 4vw, 72px);

  background:
    rgba(251, 248, 244, 0.98);

  border-bottom:
    1px solid
    rgba(73, 63, 57, 0.06);

  position: relative;

  z-index: 20;
}


.brand {
  display: inline-flex;

  flex-direction: column;

  align-items: center;

  text-decoration: none;

  white-space: nowrap;
}


.brand-name {
  font-family:
    "Segoe Script",
    "Lucida Handwriting",
    "Brush Script MT",
    cursive;

  font-size:
    clamp(2rem, 3vw, 3.15rem);

  font-weight: 400;

  line-height: 1;

  letter-spacing: -0.04em;
}


.brand-subtitle {
  margin-top: 8px;

  color: var(--rose-dark);

  font-size: 0.82rem;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  gap:
    clamp(22px, 2.5vw, 46px);
}


.main-nav a {
  text-decoration: none;

  font-size: 0.88rem;

  font-weight: 600;

  letter-spacing: 0.09em;

  text-transform: uppercase;

  white-space: nowrap;
}


.main-nav a:not(.nav-cta) {
  position: relative;
}


.main-nav a:not(.nav-cta)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: var(--ink);

  transform: scaleX(0);

  transform-origin: right;

  transition: transform 180ms ease;
}


.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);

  transform-origin: left;
}


.nav-cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 32px;

  color: #ffffff;

  background: var(--rose);

  border-radius: 999px;

  transition:
    transform 180ms ease,
    background 180ms ease;
}


.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--rose-dark);

  transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  padding: 10px;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.menu-toggle__line {
  display: block;

  height: 2px;

  margin: 6px 0;

  background: var(--ink);

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height:
    min(
      720px,
      calc(
        100svh
        - var(--header-height)
        - 106px
      )
    );

  overflow: hidden;

  display: grid;

  align-items: center;
}


.hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;
}


.hero-shade {
  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      90deg,
      rgba(248, 243, 236, 0.93) 0%,
      rgba(248, 243, 236, 0.76) 25%,
      rgba(248, 243, 236, 0.18) 48%,
      rgba(248, 243, 236, 0) 70%
    ),

    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(70,50,40,0.02)
    );
}


.hero-content {
  position: relative;

  z-index: 2;

  width: min(920px, 54vw);

  margin-left:
    clamp(26px, 7.5vw, 128px);

  padding: 52px 0;
}


.hero h1 {
  margin: 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.7rem, 3.75vw, 4.55rem);

  font-weight: 400;

  line-height: 1.12;

  letter-spacing: -0.025em;
}


.hero-title-line {
  display: block;
}


.accent-line {
  display: block;

  width: 118px;
  height: 3px;

  margin: 28px 0 36px;

  background: var(--rose);

  border-radius: 999px;
}


.hero-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 24px 38px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 58px;

  padding: 0 36px;

  border-radius: 18px;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  font-size: 0.84rem;

  font-weight: 600;

  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}


.button-primary {
  color: #ffffff;

  background: var(--rose);

  box-shadow:
    0 10px 25px
    rgba(132, 83, 73, 0.18);
}


.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rose-dark);

  transform: translateY(-2px);
}


.button-secondary {
  color: var(--ink);

  background: transparent;

  border:
    1px solid
    rgba(73, 63, 57, 0.45);
}


.text-link {
  padding-bottom: 7px;

  border-bottom:
    1px solid
    var(--ink);

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  font-size: 0.84rem;

  font-weight: 600;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits {
  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  background: var(--cream-soft);

  border-top:
    1px solid
    rgba(73, 63, 57, 0.08);
}


.benefit {
  min-height: 106px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 17px;

  padding: 20px 24px;

  border-right:
    1px solid
    var(--line);
}


.benefit:last-child {
  border-right: 0;
}


.benefit svg {
  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  fill: none;

  stroke: var(--rose);

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.benefit p {
  margin: 0;

  font-size: 0.94rem;

  line-height: 1.5;
}


.benefit span {
  color: var(--muted);
}


/* =========================================================
   GEMEINSAME KLEINE ÜBERSCHRIFT
   ========================================================= */

.eyebrow {
  margin: 0;

  color: var(--rose-dark);

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}


/* =========================================================
   ANGEBOTE
   ========================================================= */

.offers-section {
  padding:

    clamp(82px, 8vw, 138px)

    clamp(20px, 5vw, 82px)

    clamp(96px, 9vw, 150px);

  background:

    radial-gradient(
      circle at 8% 4%,
      rgba(166, 111, 99, 0.075),
      transparent 27%
    ),

    var(--white);
}


.offers-intro {
  max-width: 820px;

  margin:
    0 auto
    clamp(44px, 5vw, 72px);

  text-align: center;
}


.offers-intro h2 {
  margin: 13px auto 20px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.45rem, 4.6vw, 4.75rem);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -0.03em;
}


.offers-lead {
  max-width: 700px;

  margin: 0 auto;

  color: var(--muted);

  font-size:
    clamp(1rem, 1.25vw, 1.18rem);

  line-height: 1.75;
}


.offers-grid {
  max-width: 1480px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(22px, 2.4vw, 38px);
}


.offer-card {
  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(73, 63, 57, 0.10);

  border-radius: 26px;

  box-shadow: var(--shadow);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}


.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-5px);
}


.offer-card__image-link {
  display: block;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #d6b995;
}


.offer-card__image-link img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transition:
    transform 650ms cubic-bezier(.2,.65,.25,1);
}


.offer-card:hover
.offer-card__image-link img {
  transform: scale(1.025);
}


.offer-card__body {
  padding:
    clamp(26px, 3vw, 40px);
}


.offer-card__number {
  margin: 0 0 12px;

  color: var(--rose-dark);

  font-size: 0.74rem;

  font-weight: 700;

  letter-spacing: 0.18em;
}


.offer-card h3 {
  margin: 0 0 12px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2rem, 2.8vw, 3.15rem);

  font-weight: 400;

  line-height: 1.08;
}


.offer-card__body
> p:not(.offer-card__number) {
  min-height: 3.2em;

  margin: 0 0 24px;

  color: var(--muted);

  line-height: 1.62;
}


.offer-card__link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding-bottom: 5px;

  border-bottom:
    1px solid
    rgba(73, 63, 57, 0.58);

  text-decoration: none;

  font-size: 0.79rem;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}
/* =========================================================
   ANGEBOTE – 3 HAUPTBEREICHE
   ========================================================= */

.offers-grid--three {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}


/* Keramik bemalen leicht hervorheben */

.offer-card--featured {
  border:
    1px solid
    rgba(166, 111, 99, 0.26);

  box-shadow:
    0 22px 60px
    rgba(67, 49, 40, 0.14);
}


/* Alle 3 Karten auf gleiche Höhe */

.offers-grid--three .offer-card {
  display: flex;
  flex-direction: column;
}

.offers-grid--three .offer-card__body {
  flex: 1;

  display: flex;
  flex-direction: column;
}

.offers-grid--three .offer-card__link {
  margin-top: auto;

  align-self: flex-start;
}


/* =========================================================
   GUTSCHEIN
   ========================================================= */

.gift-banner {
  max-width: 1480px;

  margin:
    clamp(44px, 5vw, 78px)
    auto
    0;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap:
    clamp(32px, 5vw, 80px);

  padding:
    clamp(34px, 4vw, 58px)
    clamp(32px, 5vw, 72px);

  background:
    linear-gradient(
      135deg,
      rgba(247, 242, 236, 0.98),
      rgba(255, 253, 251, 0.98)
    );

  border:
    1px solid
    rgba(166, 111, 99, 0.16);

  border-radius: 28px;

  box-shadow:
    0 16px 44px
    rgba(67, 49, 40, 0.08);
}


.gift-banner__text {
  max-width: 720px;
}


.gift-banner h3 {
  margin:
    9px 0
    12px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2rem, 3.4vw, 3.7rem);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -0.025em;
}


.gift-banner__text > p:last-child {
  margin: 0;

  color: var(--muted);

  font-size:
    clamp(1rem, 1.15vw, 1.14rem);

  line-height: 1.65;
}


.gift-banner__action {
  flex: 0 0 auto;
}

/* =========================================================
   GERADE IM ATELIER
   ========================================================= */

.highlights-section {
  padding:

    clamp(92px, 9vw, 156px)

    clamp(18px, 5vw, 82px);

  background:

    radial-gradient(
      circle at 92% 9%,
      rgba(185,154,87,0.10),
      transparent 22%
    ),

    radial-gradient(
      circle at 7% 92%,
      rgba(166,111,99,0.06),
      transparent 24%
    ),

    #f8f3ed;

  position: relative;

  overflow: hidden;
}


.highlights-heading {
  max-width: 980px;

  margin:
    0 auto
    clamp(52px, 5vw, 82px);

  text-align: center;
}


.highlights-heading h2 {
  margin: 14px auto 18px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.5rem, 4.7vw, 5.15rem);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -0.035em;
}


.highlights-heading
> p:last-child {
  max-width: 760px;

  margin: 0 auto;

  color: var(--muted);

  line-height: 1.75;
}


.highlights-ornament,
.highlight-card__ornament {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;
}


.highlights-ornament {
  max-width: 520px;

  margin: 22px auto 24px;
}


.highlights-ornament span,
.highlight-card__ornament span {
  height: 1px;

  background:
    rgba(185,154,87,0.58);
}


.highlights-ornament span {
  flex: 1;
}


.highlights-ornament b,
.highlight-card__ornament b {
  color: #c88b79;

  font-size: 0.9rem;

  font-weight: 400;
}


.highlights-grid {
  max-width: 1480px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(20px, 2vw, 30px);

  align-items: stretch;
}


.highlight-card {
  position: relative;

  display: flex;

  flex-direction: column;

  height: 100%;

  overflow: hidden;

  background:
    rgba(255, 253, 251, 0.97);

  border:
    1px solid
    rgba(73,63,57,0.09);

  border-radius: 26px;

  box-shadow:
    0 18px 50px
    rgba(67,49,40,0.10);
}


.highlight-card__image {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;
}


.highlight-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


.highlight-card__medallion {
  position: relative;

  align-self: center;

  width: 72px;
  height: 72px;

  margin: -36px auto 0;

  z-index: 5;

  display: grid;

  place-items: center;

  color: var(--ink);

  background: #f4e8d8;

  border:
    1px solid
    rgba(185,154,87,0.52);

  border-radius: 50%;

  box-shadow:
    0 10px 24px
    rgba(67,49,40,0.12);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.65rem;
}


.highlight-card__body {
  flex: 1;

  display: flex;

  flex-direction: column;

  padding:
    18px
    clamp(28px, 3vw, 40px)
    clamp(30px, 3vw, 38px);

  text-align: center;
}


.highlight-card__kicker {
  margin: 8px 0 14px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.15rem;

  text-transform: uppercase;
}


.highlight-card h3 {
  min-height: 3.1em;

  display: flex;

  align-items: center;
  justify-content: center;

  max-width: 13ch;

  margin: 0 auto 18px;

  color: #b66f61;

  font-family:
    "Segoe Script",
    "Lucida Handwriting",
    "Brush Script MT",
    cursive;

  font-size:
    clamp(1.55rem, 2.3vw, 2.45rem);

  font-weight: 400;

  line-height: 1.28;
}


.highlight-card__text {
  min-height: 6.8em;

  margin: 0 auto;

  color: var(--muted);

  line-height: 1.72;
}


.highlight-card__facts {
  min-height: 2.8em;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  margin: 28px 0 22px;

  font-size: 0.92rem;

  font-weight: 600;
}


.highlight-card__facts span {
  padding: 0 6px;

  color: #c79a74;
}


.highlight-card__ornament {
  margin: 0 0 24px;
}


.highlight-card__ornament span {
  width: 30%;
}


.highlight-card__button {
  width: 100%;

  min-height: 54px;

  margin-top: auto;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  color: #ffffff;

  background:
    linear-gradient(
      180deg,
      #b97869 0%,
      #a66f63 100%
    );

  border-radius: 15px;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.10em;

  font-size: 0.78rem;

  font-weight: 700;
}


/* =========================================================
   DAS ATELIER
   entsprechend der Nebel-Vorlage
   ========================================================= */

.atelier-section {
  width: min(1720px, calc(100% - 96px));

  margin:
    clamp(95px, 8vw, 150px)
    auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(460px, 0.92fr);

  gap:
    clamp(65px, 6vw, 110px);

  align-items: center;

  padding:
    clamp(42px, 4vw, 72px);

  background: #fffdfb;

  border-radius: 34px;
}


/* =========================================================
   LINKE SEITE
   ========================================================= */

.atelier-visual {
  position: relative;

  min-width: 0;

  /*
    Platz für die große Box,
    die unten aus dem Foto herausragt
  */
  padding-bottom:
    clamp(145px, 12vw, 205px);
}


/* =========================================================
   FOTO
   WICHTIG:
   keine feste Höhe und KEIN object-fit: cover mehr
   ========================================================= */

.atelier-photo {
  position: relative;

  width: 100%;

  overflow: visible;

  border-radius: 34px;
}


.atelier-photo > img {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;
  height: auto;

  /*
    Das vollständige Foto bleibt erhalten.
    Es wird NICHT hineingezoomt.
  */

  object-fit: contain;

  border-radius: 30px;
}


/* =========================================================
   NEBEL
   ========================================================= */

.atelier-photo__mist {
  position: absolute;

  z-index: 3;

  inset: -3px;

  pointer-events: none;

  border-radius: 31px;

  background:

    /* oben */
    linear-gradient(
      180deg,
      rgba(255, 253, 251, 0.96) 0%,
      rgba(255, 253, 251, 0.72) 3%,
      rgba(255, 253, 251, 0.32) 8%,
      rgba(255, 253, 251, 0.08) 14%,
      rgba(255, 253, 251, 0) 21%
    ),

    /* unten */
    linear-gradient(
      0deg,
      rgba(255, 253, 251, 0.98) 0%,
      rgba(255, 253, 251, 0.78) 4%,
      rgba(255, 253, 251, 0.38) 10%,
      rgba(255, 253, 251, 0.08) 17%,
      rgba(255, 253, 251, 0) 25%
    ),

    /* links */
    linear-gradient(
      90deg,
      rgba(255, 253, 251, 0.97) 0%,
      rgba(255, 253, 251, 0.69) 3%,
      rgba(255, 253, 251, 0.29) 8%,
      rgba(255, 253, 251, 0.05) 14%,
      rgba(255, 253, 251, 0) 21%
    ),

    /* rechts */
    linear-gradient(
      270deg,
      rgba(255, 253, 251, 0.98) 0%,
      rgba(255, 253, 251, 0.74) 3%,
      rgba(255, 253, 251, 0.32) 9%,
      rgba(255, 253, 251, 0.06) 15%,
      rgba(255, 253, 251, 0) 23%
    );

  box-shadow:
    inset 0 0 76px 22px
    rgba(255, 253, 251, 0.34);
}


/* zusätzliche weiche obere Lichtwolke */

.atelier-photo::before {
  content: "";

  position: absolute;

  z-index: 4;

  top: -45px;
  left: 4%;

  width: 88%;
  height: 125px;

  pointer-events: none;

  background:
    rgba(255, 253, 251, 0.46);

  filter: blur(38px);
}


/* zusätzliche weiche untere Wolke */

.atelier-photo::after {
  content: "";

  position: absolute;

  z-index: 4;

  left: 2%;
  right: 2%;
  bottom: -28px;

  height: 125px;

  pointer-events: none;

  background:
    rgba(255, 253, 251, 0.45);

  filter: blur(38px);
}


/* =========================================================
   GROSSE ROSÉ-FLÄCHE
   ========================================================= */

.atelier-photo__badge {
  position: absolute;

  z-index: 10;

  /*
    exakt wie in der Vorlage:
    deutlich innerhalb des Fotos,
    aber über dem unteren Bereich
  */

  left: 8%;
  right: 8%;

  bottom:
    clamp(-155px, -10vw, -115px);

  min-height:
    clamp(220px, 17vw, 285px);

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding:
    36px
    clamp(28px, 4vw, 56px);

  color: #ffffff;

  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(190, 117, 97, 0.96) 0%,
      rgba(169, 96, 81, 0.97) 100%
    );

  border:
    1px solid
    rgba(255, 232, 204, 0.82);

  border-radius: 29px;

  box-shadow:
    0 24px 58px
    rgba(72, 43, 34, 0.26),
    0 7px 18px
    rgba(72, 43, 34, 0.12);

  backdrop-filter: blur(7px);
}


/* feine zweite Rahmenlinie */

.atelier-photo__badge::before {
  content: "";

  position: absolute;

  inset: 9px;

  border:
    1px solid
    rgba(255, 236, 212, 0.62);

  border-radius: 21px;

  pointer-events: none;
}


/* Herz */

.atelier-photo__heart {
  position: relative;

  z-index: 2;

  display: block;

  margin-bottom: 18px;

  color: #e3bd74;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 2rem;

  line-height: 1;
}


/* Haupttext */

.atelier-photo__badge p {
  position: relative;

  z-index: 2;

  margin: 0;

  color: #ffffff;

  font-size:
    clamp(1.65rem, 2.25vw, 2.65rem);

  font-weight: 400;

  line-height: 1.25;

  letter-spacing: 0.01em;
}


/* Ornament */

.atelier-photo__ornament {
  position: relative;

  z-index: 2;

  display: block;

  margin-top: 20px;

  color: #ddb567;

  font-size: 2.15rem;

  line-height: 1;
}


/* =========================================================
   RECHTE SEITE
   ========================================================= */

.atelier-copy {
  min-width: 0;

  max-width: 720px;

  padding:
    20px
    clamp(8px, 1.5vw, 26px);
}


/* kleine Überschrift */

.atelier-copy .eyebrow {
  margin: 0;

  color: #a66f63;

  font-size: 0.79rem;

  font-weight: 700;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}


/* Hauptüberschrift */

.atelier-copy h2 {
  max-width: 720px;

  margin:
    20px 0 22px;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.75rem, 4.15vw, 5rem);

  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -0.04em;
}


.atelier-copy h2 em {
  display: block;

  margin-top: 5px;

  color: #b46f60;

  font-style: italic;

  font-weight: 400;
}


/* kleines Herz */

.atelier-heading-heart {
  margin:
    0 0 30px;

  color: #c88b79;

  font-size: 0.9rem;

  line-height: 1;
}


/* =========================================================
   EINLEITUNG
   ========================================================= */

.atelier-intro {
  max-width: 660px;

  margin: 0;

  color: var(--muted);

  font-size:
    clamp(1.02rem, 1.13vw, 1.16rem);

  line-height: 1.85;
}


/* =========================================================
   HERVORGEHOBENE BOX
   ========================================================= */

.atelier-thought {
  max-width: 680px;

  display: grid;

  grid-template-columns:
    auto 1fr;

  align-items: center;

  gap: 22px;

  margin:
    40px 0 32px;

  padding:
    30px 32px;

  background:
    linear-gradient(
      135deg,
      #f6ede7 0%,
      #fbf7f3 100%
    );

  border-radius: 20px;
}


.atelier-thought__mark {
  color: #b99a57;

  font-size: 2.1rem;

  line-height: 1;
}


.atelier-thought p {
  margin: 0;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.12rem, 1.35vw, 1.38rem);

  line-height: 1.47;
}


/* =========================================================
   UNTERER SATZ
   ========================================================= */

.atelier-copy__last {
  max-width: 650px;

  margin: 0;

  color: var(--muted);

  font-size: 0.98rem;

  line-height: 1.72;
}


/* =========================================================
   TRENNLINIE
   ========================================================= */

.atelier-divider {
  max-width: 680px;

  display: flex;

  align-items: center;

  gap: 14px;

  margin:
    35px 0 28px;
}


.atelier-divider span {
  flex: 1;

  height: 1px;

  background:
    rgba(185, 154, 87, 0.48);
}


.atelier-divider b {
  color: #c88b79;

  font-size: 0.8rem;

  font-weight: 400;
}


/* =========================================================
   DETAILS
   ========================================================= */

.atelier-details {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap:
    14px 27px;
}


.atelier-detail {
  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--muted);

  font-size: 0.9rem;
}


.atelier-detail__dot {
  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  background: #b99a57;

  border-radius: 50%;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .atelier-section {
    width:
      min(
        920px,
        calc(100% - 48px)
      );

    grid-template-columns: 1fr;

    gap: 58px;

    margin:
      80px auto;

    padding:
      clamp(28px, 5vw, 54px);
  }


  .atelier-visual {
    padding-bottom: 180px;
  }


  .atelier-copy {
    max-width: 760px;

    margin: 0 auto;

    padding:
      0 18px 28px;
  }

}


/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 620px) {

  .atelier-section {
    width:
      calc(100% - 28px);

    margin:
      56px auto;

    padding:
      14px;

    gap: 42px;

    border-radius: 24px;
  }


  .atelier-visual {
    padding-bottom: 135px;
  }


  .atelier-photo {
    border-radius: 22px;
  }


  .atelier-photo > img {
    border-radius: 22px;
  }


  .atelier-photo__mist {
    border-radius: 22px;

    box-shadow:
      inset 0 0 45px 12px
      rgba(255, 253, 251, 0.38);
  }


  .atelier-photo__badge {
    left: 5%;
    right: 5%;

    bottom: -112px;

    min-height: 175px;

    padding:
      26px 20px;

    border-radius: 22px;
  }


  .atelier-photo__badge::before {
    border-radius: 16px;
  }


  .atelier-photo__badge p {
    font-size:
      clamp(1.3rem, 6vw, 1.8rem);
  }


  .atelier-copy {
    padding:
      0 10px 26px;
  }


  .atelier-copy h2 {
    font-size:
      clamp(2.5rem, 11vw, 4rem);
  }


  .atelier-thought {
    grid-template-columns: 1fr;

    gap: 10px;

    padding:
      24px 22px;
  }


  .atelier-details {
    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
  }

}
	  
/* =========================================================
   ÜBER MICH
   ========================================================= */

.about-section {
  display: grid;

  grid-template-columns:
    minmax(380px, 0.95fr)
    minmax(0, 1.05fr);

  min-height: 690px;

  background: var(--cream-soft);
}


.about-copy {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    clamp(72px, 8vw, 132px)
    clamp(34px, 7vw, 118px);
}


.about-copy h2 {
  margin: 16px 0 28px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.55rem, 4.6vw, 5.1rem);

  font-weight: 400;

  line-height: 1.08;
}


.about-copy
> p:not(.eyebrow) {
  max-width: 680px;

  margin: 0;

  color: var(--muted);

  line-height: 1.82;
}


.about-copy
> p:not(.eyebrow)
+ p {
  margin-top: 18px;
}


.about-link {
  align-self: flex-start;

  margin-top: 34px;
}


/* =========================================================
   PORTRÄT
   ========================================================= */

.portrait-placeholder {
  position: relative;

  min-height: 690px;

  display: grid;

  place-items: center;

  overflow: hidden;

  padding: 42px;

  background:

    radial-gradient(
      circle at 24% 24%,
      rgba(255,239,214,0.88),
      transparent 27%
    ),

    radial-gradient(
      circle at 78% 68%,
      rgba(130,160,134,0.20),
      transparent 31%
    ),

    linear-gradient(
      145deg,
      #d3b493 0%,
      #a9785e 52%,
      #80614f 100%
    );
}


.portrait-placeholder::before,
.portrait-placeholder::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 460px;

  border:
    1px solid
    rgba(255,255,255,0.36);

  border-radius:
    50% 50% 44% 56% /
    54% 44% 56% 46%;

  transform: rotate(28deg);
}


.portrait-placeholder::before {
  left: -96px;
  top: -130px;
}


.portrait-placeholder::after {
  right: -110px;
  bottom: -170px;

  transform: rotate(-36deg);
}


.portrait-placeholder__halo {
  position: absolute;

  width: min(430px, 70%);

  aspect-ratio: 1;

  border-radius: 50%;

  background:
    rgba(255,247,234,0.22);

  border:
    1px solid
    rgba(255,255,255,0.34);
}


.portrait-placeholder__content {
  position: relative;

  z-index: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  color: #fffaf5;

  text-align: center;
}


.portrait-placeholder__script {
  font-family:
    "Segoe Script",
    "Lucida Handwriting",
    "Brush Script MT",
    cursive;

  font-size:
    clamp(3.1rem, 6vw, 6.3rem);

  line-height: 1;
}


.portrait-placeholder__label {
  margin-top: 22px;

  font-size: 0.78rem;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.portrait-placeholder small {
  margin-top: 8px;

  color:
    rgba(255,250,245,0.82);
}


/* =========================================================
   TERMINE
   ========================================================= */

.placeholder-section {
  min-height: 410px;

  display: grid;

  place-content: center;

  text-align: center;

  padding: 88px 24px;

  background: #ffffff;
}


.placeholder-section--alt {
  background: var(--cream);
}


.placeholder-section h2 {
  margin: 12px auto 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2rem, 4vw, 4rem);

  font-weight: 400;
}


.placeholder-section > p {
  max-width: 760px;

  margin: 20px auto 0;

  color: var(--muted);
}


/* =========================================================
   KONTAKT
   ========================================================= */

.contact-section {
  padding:
    clamp(92px, 10vw, 158px)
    clamp(20px, 5vw, 82px);

  background: var(--white);
}


.contact-heading {
  max-width: 820px;

  margin:
    0 auto
    clamp(48px, 5vw, 74px);

  text-align: center;
}


.contact-heading h2 {
  margin: 14px 0 20px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.55rem, 4.8vw, 5.1rem);

  font-weight: 400;
}


.contact-heading
> p:last-child {
  max-width: 660px;

  margin: 0 auto;

  color: var(--muted);
}


.contact-grid {
  max-width: 980px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(18px, 2.2vw, 32px);
}


.contact-card {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding:
    clamp(30px, 3.4vw, 48px);

  background: var(--cream-soft);

  border:
    1px solid
    rgba(73,63,57,0.10);

  border-radius: 24px;
}


.contact-card__kicker {
  margin: 0 0 20px;

  color: var(--rose-dark);

  font-size: 0.76rem;

  font-weight: 700;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}


.contact-card h3 {
  margin: 0 0 22px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.65rem, 2.4vw, 2.45rem);

  font-weight: 400;
}


.contact-card address,
.contact-card > a {
  color: var(--muted);

  line-height: 1.75;
}


.contact-card address {
  margin: 0 0 18px;

  font-style: normal;
}


.contact-card > a {
  display: inline-block;

  margin-bottom: 8px;
}


/* =========================================================
   ABSCHLUSS
   ========================================================= */

.closing-section {
  padding:
    clamp(100px, 12vw, 190px)
    clamp(24px, 7vw, 110px);

  background: #efe6df;

  text-align: center;
}


.closing-inner {
  max-width: 1100px;

  margin: 0 auto;
}


.closing-section h2 {
  margin: 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.45rem, 5vw, 5.7rem);

  font-weight: 400;

  line-height: 1.1;
}


.closing-actions {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 46px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding:
    clamp(54px, 6vw, 82px)
    clamp(24px, 5vw, 80px)
    28px;

  color: var(--muted);

  background: #e9dfd7;

  font-size: 0.88rem;
}


.footer-brand {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  margin-bottom: 30px;
}


.footer-brand__name {
  color: var(--ink);

  font-family:
    "Segoe Script",
    "Lucida Handwriting",
    "Brush Script MT",
    cursive;

  font-size:
    clamp(2.1rem, 3.6vw, 3.6rem);

  line-height: 1;
}


.footer-contact {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  gap: 10px 34px;

  padding-bottom: 32px;
}


.footer-contact p {
  margin: 0;
}


.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 24px;

  padding-top: 24px;

  border-top:
    1px solid
    rgba(73,63,57,0.17);
}


.footer-bottom p {
  margin: 0;
}


.footer-bottom nav {
  display: flex;

  gap: 24px;
}

/* =========================================================
   MUSEEN & INSTITUTIONEN
   ========================================================= */

.institutions-grid {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(24px, 3vw, 40px);
}


.institutions-block {
  padding:
    clamp(28px, 3.5vw, 42px);

  background: #fffdfb;

  border:
    1px solid
    rgba(73, 63, 57, 0.10);

  border-radius: 24px;

  box-shadow:
    0 14px 36px
    rgba(67, 49, 40, 0.07);
}


.institutions-block h3,
.institutions-contact h3 {
  margin:
    0 0 20px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.7rem, 2.4vw, 2.6rem);

  font-weight: 400;

  line-height: 1.15;
}


.institutions-list {
  margin: 0;

  padding-left: 1.2em;

  color: var(--muted);

  line-height: 1.75;
}


.institutions-list li + li {
  margin-top: 12px;
}


.institutions-contact {
  max-width: 1180px;

  margin:
    clamp(34px, 4vw, 58px)
    auto
    0;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap:
    clamp(28px, 4vw, 64px);

  padding:
    clamp(30px, 4vw, 48px)
    clamp(28px, 4.5vw, 56px);

  background:
    linear-gradient(
      135deg,
      rgba(247, 242, 236, 0.98),
      rgba(255, 253, 251, 0.98)
    );

  border:
    1px solid
    rgba(166, 111, 99, 0.16);

  border-radius: 26px;
}


.institutions-contact > div {
  max-width: 760px;
}


.institutions-contact p:not(.eyebrow) {
  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}
	  
	  /* =========================================================
   FAQ MUSEEN & INSTITUTIONEN
   ========================================================= */

.institutions-faq__list {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  gap: 14px;
}


.institutions-faq__item {
  overflow: hidden;

  background: #fffdfb;

  border:
    1px solid
    rgba(73, 63, 57, 0.10);

  border-radius: 18px;
}


.institutions-faq__item summary {
  position: relative;

  padding:
    22px
    58px
    22px
    24px;

  cursor: pointer;

  list-style: none;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.05rem, 1.4vw, 1.25rem);

  line-height: 1.4;
}


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


.institutions-faq__item summary::after {
  content: "+";

  position: absolute;

  top: 50%;
  right: 24px;

  transform: translateY(-50%);

  color: var(--rose-dark);

  font-family:
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 1.5rem;

  font-weight: 400;
}


.institutions-faq__item[open] summary::after {
  content: "–";
}


.institutions-faq__answer {
  padding:
    0
    24px
    24px;

  color: var(--muted);

  line-height: 1.75;
}


.institutions-faq__answer p {
  margin: 0;
}


.institutions-faq__answer p + p {
  margin-top: 14px;
}
	  
/* =========================================================
   RESPONSIVE
   ========================================================= */

	  
@media (max-width: 1050px) {

  .offers-grid--three {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .offer-card--featured {
    grid-column: 1 / -1;
  }

  .gift-banner {
    align-items: flex-start;
    flex-direction: column;
  }

}
	  @media (max-width: 1120px) {

  :root {
    --header-height: 104px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.76rem;
  }

  .benefits {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


@media (max-width: 980px) {

  .highlights-grid {
    grid-template-columns: 1fr;

    max-width: 760px;
  }


  .highlight-card h3,
  .highlight-card__text,
  .highlight-card__facts {
    min-height: 0;
  }


  /* Atelier untereinander */

  .atelier-section {

    width:
      min(
        920px,
        calc(100% - 48px)
      );

    grid-template-columns: 1fr;

    gap: 54px;

    padding:
      clamp(30px, 5vw, 58px);

    margin:
      80px auto;
  }


  .atelier-photo {

    aspect-ratio: 1 / 0.92;

    min-height: 650px;
  }


  .atelier-copy {

    padding:
      10px
      clamp(12px, 3vw, 28px)
      30px;
  }


  .about-section {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 860px) {
	  .institutions-grid {
    grid-template-columns: 1fr;
  }

  .institutions-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  :root {
    --header-height: 90px;
  }


  .site-header {
    min-height: var(--header-height);

    padding: 16px 22px;
  }


  .menu-toggle {
    display: block;
  }


  .main-nav {
    position: absolute;

    left: 0;
    right: 0;
    top: 100%;

    display: grid;

    padding: 14px 22px 24px;

    background: var(--cream-soft);

    opacity: 0;

    visibility: hidden;
  }


  .main-nav.is-open {
    opacity: 1;

    visibility: visible;
  }


  .hero-content {
    width: auto;

    margin: 0;

    padding: 42px 24px 52px;
  }


  .benefits {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .offers-grid {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 700px) {

  .offers-grid--three {
    grid-template-columns: 1fr;
  }

  .offer-card--featured {
    grid-column: auto;
  }

  .gift-banner {
    padding:
      30px
      24px;
  }

  .gift-banner__action {
    width: 100%;
  }

  .gift-banner__action .button {
    width: 100%;
  }

}
@media (max-width: 660px) {

  .highlights-section {
    padding-inline: 16px;
  }


  .highlights-heading {
    text-align: left;
  }


  .contact-grid {
    grid-template-columns: 1fr;
  }


  /*
    ATELIER MOBILE
  */

  .atelier-section {

    width:
      calc(100% - 28px);

    margin:
      56px auto;

    padding:
      14px;

    gap: 38px;

    border-radius: 25px;
  }


  .atelier-photo {

    min-height: 560px;

    border-radius: 23px;
  }


  .atelier-photo > img {

    object-position:
      50% 42%;
  }


  .atelier-photo__mist {

    box-shadow:
      inset 0 0 55px 18px
      rgba(255,253,251,0.50);
  }


  .atelier-photo__badge {

    left: 5%;
    right: 5%;

    bottom: 4%;

    min-height: 175px;

    padding:
      26px 20px;

    border-radius: 22px;
  }


  .atelier-photo__badge::before {

    border-radius: 16px;
  }


  .atelier-photo__badge p {

    font-size:
      clamp(1.3rem, 6vw, 1.8rem);
  }


  .atelier-copy {

    padding:
      8px 12px 26px;
  }


  .atelier-copy h2 {

    font-size:
      clamp(2.5rem, 11vw, 4rem);
  }


  .atelier-thought {

    grid-template-columns: 1fr;

    gap: 10px;

    padding:
      24px 22px;
  }


  .atelier-details {

    flex-direction: column;

    align-items: flex-start;
  }


  .about-section {
    grid-template-columns: 1fr;
  }


  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 560px) {

  .hero-actions {
    flex-direction: column;

    align-items: flex-start;
  }


  .button {
    width: 100%;
  }


  .benefits {
    grid-template-columns: 1fr;
  }


  .closing-actions {
    flex-direction: column;
  }

}


/* =========================================================
   WENIGER BEWEGUNG
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition: none !important;
  }

}
/* =========================================================
   ANLÄSSE – Dropdown + dein-anlass.html
   ========================================================= */

/* ---------- Dropdown Hauptnavigation ---------- */

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "⌄";
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(180deg);
}

.nav-dropdown--current > summary {
  color: var(--rose-dark);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 70;

  width: max-content;
  min-width: 310px;
  max-width: 380px;

  padding: 10px;

  transform: translateX(-50%);

  background: rgba(255, 253, 251, 0.99);
  border: 1px solid rgba(73, 63, 57, 0.10);
  border-radius: 17px;

  box-shadow: 0 18px 45px rgba(67, 49, 40, 0.15);
}

.nav-submenu a {
  display: block;

  padding: 12px 14px;

  border-radius: 10px;

  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.35;
  text-transform: none;
  white-space: normal;
}

.main-nav .nav-submenu a::after {
  display: none !important;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: var(--cream);
}

@media (min-width: 861px) {

  .nav-dropdown:not([open]) > .nav-submenu {
    display: none;
  }

  .nav-dropdown:hover > .nav-submenu,
  .nav-dropdown:focus-within > .nav-submenu {
    display: block;
  }

}


/* ---------- Schnellauswahl Anlass-Seite ---------- */

.occasion-jumpnav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  background: var(--white);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.occasion-jumpnav a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 84px;

  padding: 18px 24px;

  text-align: center;
  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  border-right: 1px solid var(--line);
}

.occasion-jumpnav a:last-child {
  border-right: 0;
}

.occasion-jumpnav a:hover,
.occasion-jumpnav a:focus-visible {
  background: var(--cream);
}


/* ---------- Angebotskarten ---------- */

.occasion-section {
  scroll-margin-top: 120px;
}

.occasion-grid {
  max-width: 1320px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;
  align-items: start;
}

.occasion-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.occasion-card {
  overflow: hidden;

  background: var(--white);

  border: 1px solid rgba(73, 63, 57, 0.11);
  border-radius: 24px;

  box-shadow: 0 14px 36px rgba(67, 49, 40, 0.06);
}

.occasion-card > summary {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 11px;

  min-height: 164px;

  padding: 30px 60px 28px 30px;

  list-style: none;
  cursor: pointer;
}

.occasion-card > summary::-webkit-details-marker {
  display: none;
}

.occasion-card > summary::after {
  content: "+";

  position: absolute;
  top: 28px;
  right: 28px;

  color: var(--rose-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.occasion-card[open] > summary::after {
  content: "–";
}

.occasion-card[open] > summary {
  border-bottom: 1px solid rgba(73, 63, 57, 0.10);
}

.occasion-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1.1;
}

.occasion-card__price {
  color: var(--rose-dark);

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.occasion-card__body {
  padding: 28px 30px 32px;
}

.occasion-card__body > p {
  margin: 0;

  color: var(--muted);
  line-height: 1.72;
}

.occasion-card__body h3 {
  margin: 26px 0 10px;

  color: var(--ink);

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.occasion-card__body ul {
  margin: 0;
  padding-left: 20px;

  color: var(--muted);
  line-height: 1.7;
}

.occasion-card__optional {
  margin-top: 24px !important;

  padding-top: 20px;

  border-top: 1px solid rgba(73, 63, 57, 0.10);
}

.occasion-card__optional strong,
.occasion-card__note strong {
  color: var(--ink);
}

.occasion-card__note {
  margin-top: 15px !important;

  font-size: 0.9rem;
}

.occasion-card--special {
  border-color: rgba(166, 111, 99, 0.28);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(166, 111, 99, 0.09),
      transparent 33%
    ),
    var(--white);
}


/* ---------- Zwischenüberschriften Firmen / mobil ---------- */

.occasion-subheading {
  max-width: 1320px;

  margin: 0 auto 24px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.occasion-subheading--spaced {
  margin-top: clamp(70px, 8vw, 110px);
}

.occasion-sublead {
  max-width: 900px;

  margin: -8px auto 34px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.72;
}


/* ---------- Responsive ---------- */

@media (max-width: 1120px) {

  .nav-dropdown > summary {
    font-size: 0.76rem;
  }

  .occasion-grid,
  .occasion-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 860px) {

  .main-nav .nav-dropdown {
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown > summary {
    width: 100%;

    justify-content: space-between;

    padding: 14px 4px;

    font-size: 0.76rem;
  }

  .nav-submenu {
    position: static;

    width: 100%;
    min-width: 0;
    max-width: none;

    padding: 0 0 10px 14px;

    transform: none;

    background: transparent;

    border: 0;
    border-radius: 0;

    box-shadow: none;
  }

  .nav-submenu a {
    padding: 10px 4px;

    border-bottom: 0;

    font-size: 0.86rem;
  }

  .occasion-jumpnav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasion-jumpnav a:nth-child(2) {
    border-right: 0;
  }

  .occasion-jumpnav a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

}


@media (max-width: 680px) {

  .occasion-grid,
  .occasion-grid--two {
    grid-template-columns: 1fr;
  }

  .occasion-card > summary {
    min-height: 0;

    padding: 26px 54px 24px 24px;
  }

  .occasion-card__body {
    padding: 24px;
  }

  .occasion-sublead {
    margin-left: 0;
  }

}


@media (max-width: 520px) {

  .occasion-jumpnav {
    grid-template-columns: 1fr;
  }

  .occasion-jumpnav a,
  .occasion-jumpnav a:nth-child(2) {
    min-height: 64px;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .occasion-jumpnav a:last-child {
    border-bottom: 0;
  }

}
	/* =========================================================
   ANLÄSSE – Layoutkorrektur
   ruhiger, kompakter, näher an der Startseite
   ========================================================= */


/* ---------- HERO ---------- */

.occasions-page .subpage-hero {
  width: min(1440px, calc(100% - 64px));
  min-height: 580px;
  margin: 44px auto 0;

  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas: "copy image";

  overflow: hidden;

  background: var(--cream);
  border-radius: 30px;
}

.occasions-page .subpage-hero__copy {
  grid-area: copy;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(58px, 6vw, 96px);
}

.occasions-page .subpage-hero__copy h1 {
  max-width: 680px;

  margin: 14px 0 24px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.6vw, 5.3rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.occasions-page .subpage-hero__copy > p:not(.eyebrow) {
  max-width: 620px;

  margin: 0;

  color: var(--muted);

  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.75;
}

.occasions-page .subpage-hero__image {
  grid-area: image;

  min-height: 580px;

  overflow: hidden;
}

.occasions-page .subpage-hero__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* ---------- SPRUNGLEISTE ---------- */

.occasions-page .occasion-jumpnav {
  width: min(1280px, calc(100% - 64px));
  margin: 34px auto 0;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 20px;
}

.occasions-page .occasion-jumpnav a {
  min-height: 72px;

  padding: 18px 20px;

  font-size: 0.78rem;
  letter-spacing: 0.075em;
}


/* ---------- ALLE INHALTSBEREICHE ---------- */

.occasions-page .content-section {
  padding:
    clamp(86px, 8vw, 132px)
    clamp(24px, 5vw, 72px);
}

.occasions-page .occasion-section {
  scroll-margin-top: 130px;
}


/* Überschrift jedes Bereichs */

.occasions-page .occasion-section > .section-heading {
  width: min(840px, 100%);

  margin: 0 auto 54px;

  text-align: center;
}

.occasions-page .occasion-section > .section-heading h2 {
  margin: 12px 0 20px;

  font-size: clamp(2.5rem, 4vw, 4.6rem);
}

.occasions-page .occasion-section > .section-heading > p:last-child {
  max-width: 760px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 1.02rem;
  line-height: 1.75;
}


/* ---------- KARTEN ---------- */

.occasions-page .occasion-grid {
  width: min(1120px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.occasions-page .occasion-grid--two {
  width: min(920px, 100%);

  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.occasions-page .occasion-card {
  width: 100%;

  background: rgba(255, 253, 251, 0.96);

  border: 1px solid rgba(73, 63, 57, 0.12);
  border-radius: 22px;

  box-shadow: 0 12px 34px rgba(67, 49, 40, 0.055);
}

.occasions-page .occasion-card > summary {
  min-height: 150px;

  padding: 28px 54px 26px 28px;
}

.occasions-page .occasion-card__title {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  line-height: 1.13;
}

.occasions-page .occasion-card__price {
  margin-top: auto;

  font-size: 0.84rem;
  line-height: 1.5;
}

.occasions-page .occasion-card__body {
  padding: 26px 28px 30px;
}


/* ---------- FIRMEN / MOBILE ZWISCHENÜBERSCHRIFTEN ---------- */

.occasions-page .occasion-subheading {
  width: min(1120px, 100%);

  margin: 0 auto 28px;

  text-align: center;

  font-size: clamp(2.25rem, 3vw, 3.45rem);
}

.occasions-page .occasion-subheading--spaced {
  margin-top: 96px;
}

.occasions-page .occasion-sublead {
  width: min(720px, 100%);

  margin: -8px auto 38px;

  text-align: center;

  font-size: 0.98rem;
  line-height: 1.7;
}


/* ---------- ABSCHLUSS / ANFRAGE ---------- */

.occasions-page .booking-panel {
  width: min(1080px, 100%);
  margin: 0 auto;

  padding: clamp(38px, 5vw, 68px);

  background: var(--white);

  border-radius: 28px;

  box-shadow: 0 16px 48px rgba(67, 49, 40, 0.07);
}

.occasions-page .booking-panel h2 {
  max-width: 700px;

  margin: 12px 0 20px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
}

.occasions-page .booking-panel > div:first-child > p:last-child {
  max-width: 700px;

  color: var(--muted);

  line-height: 1.75;
}


/* ---------- TABLET ---------- */

@media (max-width: 1050px) {

  .occasions-page .subpage-hero {
    width: min(100% - 40px, 1100px);

    grid-template-columns: 1fr 1fr;
  }

  .occasions-page .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* ---------- HANDY ---------- */

@media (max-width: 760px) {

  .occasions-page .subpage-hero {
    width: calc(100% - 28px);
    margin-top: 20px;

    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image";

    border-radius: 22px;
  }

  .occasions-page .subpage-hero__copy {
    padding: 48px 26px;
  }

  .occasions-page .subpage-hero__image {
    min-height: 380px;
  }

  .occasions-page .occasion-jumpnav {
    width: calc(100% - 28px);
  }

  .occasions-page .content-section {
    padding: 72px 18px;
  }

  .occasions-page .occasion-section > .section-heading {
    margin-bottom: 38px;

    text-align: left;
  }

  .occasions-page .occasion-section > .section-heading > p:last-child {
    margin-left: 0;
  }

  .occasions-page .occasion-grid,
  .occasions-page .occasion-grid--two {
    grid-template-columns: 1fr;
  }

  .occasions-page .occasion-subheading,
  .occasions-page .occasion-sublead {
    text-align: left;
  }

  .occasions-page .occasion-subheading--spaced {
    margin-top: 72px;
  }

}
	/* =========================================================
   TEMPORÄRE BUCHUNGSPAUSE
   ========================================================= */

.booking-pause-notice {
  width: 100%;

  padding: 11px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #f1e7e0;

  border-top: 1px solid rgba(73, 63, 57, 0.06);
  border-bottom: 1px solid rgba(73, 63, 57, 0.10);

  color: var(--ink);

  text-align: center;

  font-size: 0.9rem;
  line-height: 1.45;

  position: relative;
  z-index: 19;
}

.booking-pause-notice strong {
  color: var(--rose-dark);

  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-pause-notice span {
  color: var(--muted);
}

@media (max-width: 700px) {

  .booking-pause-notice {
    flex-direction: column;

    gap: 2px;

    padding: 10px 18px;

    font-size: 0.86rem;
  }

  .booking-pause-notice strong {
    font-size: 0.78rem;
  }

}

/* =========================================================
   KERAMIKMALEREI – UNTERSEITE
   saubere Innenabstände für Desktop + Mobile
   ========================================================= */

body.subpage:not(.occasions-page) .subpage-hero {
  width: min(1440px, calc(100% - 48px));
  margin: clamp(48px, 6vw, 90px) auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
}

body.subpage:not(.occasions-page) .subpage-hero__copy {
  min-width: 0;
  padding: clamp(22px, 3vw, 42px);
}

body.subpage:not(.occasions-page) .subpage-hero__copy h1 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

body.subpage:not(.occasions-page) .subpage-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

body.subpage:not(.occasions-page) .subpage-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 32px;
}

body.subpage:not(.occasions-page) .subpage-hero__image {
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
}

body.subpage:not(.occasions-page) .subpage-hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.subpage:not(.occasions-page) .fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

body.subpage:not(.occasions-page) .fact-strip__item {
  min-width: 0;
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

body.subpage:not(.occasions-page) .fact-strip__item:last-child {
  border-right: 0;
}

body.subpage:not(.occasions-page) .fact-strip__value,
body.subpage:not(.occasions-page) .fact-strip__label {
  display: block;
}

body.subpage:not(.occasions-page) .fact-strip__value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

body.subpage:not(.occasions-page) .fact-strip__label {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

body.subpage:not(.occasions-page) .content-section {
  padding: clamp(76px, 8vw, 126px) clamp(24px, 6vw, 92px);
}

body.subpage:not(.occasions-page) .content-section--white {
  background: var(--white);
}

body.subpage:not(.occasions-page) .content-section--cream {
  background: var(--cream);
}

body.subpage:not(.occasions-page) .content-section--soft {
  background: var(--cream-soft);
}

body.subpage:not(.occasions-page) .section-heading {
  max-width: 900px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

body.subpage:not(.occasions-page) .section-heading h2 {
  margin: 12px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body.subpage:not(.occasions-page) .section-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

body.subpage:not(.occasions-page) .process-grid,
body.subpage:not(.occasions-page) .info-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

body.subpage:not(.occasions-page) .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.subpage:not(.occasions-page) .info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.subpage:not(.occasions-page) .process-card,
body.subpage:not(.occasions-page) .info-card {
  min-width: 0;
  padding: clamp(25px, 3vw, 36px);
  background: var(--white);
  border: 1px solid rgba(73, 63, 57, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(67, 49, 40, 0.05);
}

body.subpage:not(.occasions-page) .process-card__number {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body.subpage:not(.occasions-page) .process-card h3,
body.subpage:not(.occasions-page) .info-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

body.subpage:not(.occasions-page) .process-card p:last-child,
body.subpage:not(.occasions-page) .info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

body.subpage:not(.occasions-page) .capacity-note {
  max-width: 900px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
}

body.subpage:not(.occasions-page) .booking-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(73, 63, 57, 0.10);
  border-radius: 28px;
}

body.subpage:not(.occasions-page) .booking-panel h2 {
  margin: 10px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
}

body.subpage:not(.occasions-page) .booking-panel > div:first-child > p:last-child {
  margin: 0;
  color: var(--muted);
}

body.subpage:not(.occasions-page) .booking-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

body.subpage:not(.occasions-page) .booking-panel__hint {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {
  body.subpage:not(.occasions-page) .subpage-hero {
    grid-template-columns: 1fr;
  }

  body.subpage:not(.occasions-page) .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.subpage:not(.occasions-page) .booking-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.subpage:not(.occasions-page) .subpage-hero {
    width: 100%;
    margin: 0;
    gap: 0;
  }

  body.subpage:not(.occasions-page) .subpage-hero__copy {
    width: 100%;
    padding: 44px 24px 38px;
  }

  body.subpage:not(.occasions-page) .subpage-hero__copy h1,
  body.subpage:not(.occasions-page) .subpage-hero__copy > p,
  body.subpage:not(.occasions-page) .subpage-hero__actions {
    max-width: 100%;
  }

  body.subpage:not(.occasions-page) .subpage-hero__image {
    border-radius: 0;
  }

  body.subpage:not(.occasions-page) .fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.subpage:not(.occasions-page) .fact-strip__item:nth-child(2) {
    border-right: 0;
  }

  body.subpage:not(.occasions-page) .fact-strip__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  body.subpage:not(.occasions-page) .content-section {
    padding: 64px 24px;
  }

  body.subpage:not(.occasions-page) .process-grid,
  body.subpage:not(.occasions-page) .info-grid {
    grid-template-columns: 1fr;
  }

  body.subpage:not(.occasions-page) .section-heading {
    width: 100%;
    margin-bottom: 34px;
  }

  body.subpage:not(.occasions-page) .booking-panel {
    padding: 28px 24px;
  }
}

/* =========================================================
   KERAMIKMALEREI – UNTERSEITE
   saubere Innenabstände für Desktop + Mobile
   ========================================================= */

body.subpage:not(.occasions-page) .subpage-hero {
  width: min(1440px, calc(100% - 48px));
  margin: clamp(48px, 6vw, 90px) auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
}

body.subpage:not(.occasions-page) .subpage-hero__copy {
  min-width: 0;
  padding: clamp(22px, 3vw, 42px);
}

body.subpage:not(.occasions-page) .subpage-hero__copy h1 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

body.subpage:not(.occasions-page) .subpage-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

body.subpage:not(.occasions-page) .subpage-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 32px;
}

body.subpage:not(.occasions-page) .subpage-hero__image {
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
}

body.subpage:not(.occasions-page) .subpage-hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.subpage:not(.occasions-page) .fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

body.subpage:not(.occasions-page) .fact-strip__item {
  min-width: 0;
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

body.subpage:not(.occasions-page) .fact-strip__item:last-child {
  border-right: 0;
}

body.subpage:not(.occasions-page) .fact-strip__value,
body.subpage:not(.occasions-page) .fact-strip__label {
  display: block;
}

body.subpage:not(.occasions-page) .fact-strip__value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

body.subpage:not(.occasions-page) .fact-strip__label {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

body.subpage:not(.occasions-page) .content-section {
  padding: clamp(76px, 8vw, 126px) clamp(24px, 6vw, 92px);
}

body.subpage:not(.occasions-page) .content-section--white {
  background: var(--white);
}

body.subpage:not(.occasions-page) .content-section--cream {
  background: var(--cream);
}

body.subpage:not(.occasions-page) .content-section--soft {
  background: var(--cream-soft);
}

body.subpage:not(.occasions-page) .section-heading {
  max-width: 900px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

body.subpage:not(.occasions-page) .section-heading h2 {
  margin: 12px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body.subpage:not(.occasions-page) .section-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

body.subpage:not(.occasions-page) .process-grid,
body.subpage:not(.occasions-page) .info-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

body.subpage:not(.occasions-page) .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.subpage:not(.occasions-page) .info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.subpage:not(.occasions-page) .process-card,
body.subpage:not(.occasions-page) .info-card {
  min-width: 0;
  padding: clamp(25px, 3vw, 36px);
  background: var(--white);
  border: 1px solid rgba(73, 63, 57, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(67, 49, 40, 0.05);
}

body.subpage:not(.occasions-page) .process-card__number {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body.subpage:not(.occasions-page) .process-card h3,
body.subpage:not(.occasions-page) .info-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

body.subpage:not(.occasions-page) .process-card p:last-child,
body.subpage:not(.occasions-page) .info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

body.subpage:not(.occasions-page) .capacity-note {
  max-width: 900px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
}

body.subpage:not(.occasions-page) .booking-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(73, 63, 57, 0.10);
  border-radius: 28px;
}

body.subpage:not(.occasions-page) .booking-panel h2 {
  margin: 10px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
}

body.subpage:not(.occasions-page) .booking-panel > div:first-child > p:last-child {
  margin: 0;
  color: var(--muted);
}

body.subpage:not(.occasions-page) .booking-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

body.subpage:not(.occasions-page) .booking-panel__hint {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {
  body.subpage:not(.occasions-page) .subpage-hero {
    grid-template-columns: 1fr;
  }

  body.subpage:not(.occasions-page) .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.subpage:not(.occasions-page) .booking-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.subpage:not(.occasions-page) .subpage-hero {
    width: 100%;
    margin: 0;
    gap: 0;
  }

  body.subpage:not(.occasions-page) .subpage-hero__copy {
    width: 100%;
    padding: 44px 24px 38px;
  }

  body.subpage:not(.occasions-page) .subpage-hero__copy h1,
  body.subpage:not(.occasions-page) .subpage-hero__copy > p,
  body.subpage:not(.occasions-page) .subpage-hero__actions {
    max-width: 100%;
  }

  body.subpage:not(.occasions-page) .subpage-hero__image {
    border-radius: 0;
  }

  body.subpage:not(.occasions-page) .fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.subpage:not(.occasions-page) .fact-strip__item:nth-child(2) {
    border-right: 0;
  }

  body.subpage:not(.occasions-page) .fact-strip__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  body.subpage:not(.occasions-page) .content-section {
    padding: 64px 24px;
  }

  body.subpage:not(.occasions-page) .process-grid,
  body.subpage:not(.occasions-page) .info-grid {
    grid-template-columns: 1fr;
  }

  body.subpage:not(.occasions-page) .section-heading {
    width: 100%;
    margin-bottom: 34px;
  }

  body.subpage:not(.occasions-page) .booking-panel {
    padding: 28px 24px;
  }
}
	/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
  padding: 70px 24px;
}

.faq-section .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  margin-bottom: 28px;
}

.faq-section details {
  border-top: 1px solid rgba(73, 63, 57, 0.14);
  padding: 18px 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid rgba(73, 63, 57, 0.14);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 30px;
}

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

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--rose-dark);
}

.faq-section details[open] summary::after {
  content: "–";
}

.faq-section details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

@media (max-width: 700px) {
  .faq-section {
    padding: 50px 24px;
  }

  .faq-section details {
    padding: 16px 0;
  }
}
	/* =========================================================
   INSTITUTIONEN & SAMMLUNGEN
   klare B2B-Struktur
   ========================================================= */

.institutions-page .subpage-hero__copy h1 {
  font-size: clamp(2.9rem, 4.3vw, 4.8rem);
}


/* ---------- LEISTUNGEN ---------- */

.institution-focus {
  padding:
    clamp(82px, 8vw, 128px)
    clamp(24px, 5vw, 82px);

  background: #fffdfb;
}

.institution-focus__heading {
  max-width: 820px;

  margin:
    0 auto
    clamp(46px, 5vw, 70px);

  text-align: center;
}

.institution-focus__heading h2 {
  margin: 12px 0 18px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.35rem, 3.8vw, 4rem);

  font-weight: 400;

  line-height: 1.08;
}

.institution-focus__heading > p:last-child {
  max-width: 680px;

  margin: 0 auto;

  color: var(--muted);

  line-height: 1.7;
}


.institution-services {
  max-width: 1280px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(22px, 2.5vw, 34px);
}


.institution-service {
  padding:
    clamp(30px, 3vw, 42px);

  background: #ffffff;

  border:
    1px solid
    rgba(73, 63, 57, 0.10);

  border-radius: 22px;

  box-shadow:
    0 12px 32px
    rgba(67, 49, 40, 0.06);
}


.institution-service__number {
  margin: 0 0 18px;

  color: var(--rose-dark);

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.17em;
}


.institution-service h3 {
  margin: 0 0 17px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.65rem, 2.2vw, 2.35rem);

  font-weight: 400;

  line-height: 1.15;
}


.institution-service > p:not(.institution-service__number) {
  margin: 0 0 22px;

  color: var(--muted);

  line-height: 1.7;
}


.institution-service ul {
  margin: 0;

  padding-left: 1.15em;

  color: var(--muted);

  line-height: 1.65;
}


.institution-service li + li {
  margin-top: 8px;
}



/* ---------- ZIELGRUPPEN ---------- */

.institution-audience {
  padding:
    clamp(72px, 7vw, 108px)
    clamp(24px, 5vw, 82px);

  background: var(--cream);
}


.institution-audience__inner {
  max-width: 1050px;

  margin: 0 auto;

  text-align: center;
}


.institution-audience h2 {
  margin: 12px auto 28px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.2rem, 3.5vw, 3.7rem);

  font-weight: 400;

  line-height: 1.08;
}


.institution-audience__names {
  max-width: 980px;

  margin: 0 auto;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.05rem, 1.45vw, 1.35rem);

  line-height: 2;
}


.institution-audience__names span {
  padding: 0 8px;

  color: var(--gold);
}


.institution-audience__note {
  margin: 28px auto 0;

  color: var(--muted);
}



/* ---------- PROFIL ---------- */

.institution-profile {
  padding:
    clamp(88px, 8vw, 132px)
    clamp(24px, 5vw, 82px);

  background: #fffdfb;
}


.institution-profile__inner {
  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(340px, 0.95fr);

  gap:
    clamp(54px, 7vw, 100px);

  align-items: center;
}


.institution-profile__copy h2 {
  margin: 12px 0 24px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.5rem, 4vw, 4.25rem);

  font-weight: 400;

  line-height: 1.07;
}


.institution-profile__degree {
  margin: 0 0 22px;

  color: var(--rose-dark);

  font-weight: 700;

  letter-spacing: 0.04em;
}


.institution-profile__copy > p:not(.eyebrow):not(.institution-profile__degree) {
  max-width: 680px;

  margin: 0;

  color: var(--muted);

  line-height: 1.75;
}


.institution-profile__copy
> p:not(.eyebrow):not(.institution-profile__degree)
+ p {
  margin-top: 16px;
}


.institution-profile__competences {
  border-top:
    1px solid
    var(--line);
}


.institution-profile__competences > div {
  padding: 22px 4px;

  border-bottom:
    1px solid
    var(--line);
}


.institution-profile__competences strong {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.05rem, 1.45vw, 1.35rem);

  font-weight: 400;
}



/* ---------- ZUSAMMENARBEIT ---------- */

.institution-collaboration {
  padding:
    clamp(66px, 6vw, 94px)
    clamp(24px, 5vw, 82px);

  background: #f4ede7;
}


.institution-collaboration__inner {
  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 50px;

  align-items: center;
}


.institution-collaboration h2 {
  max-width: 760px;

  margin: 10px 0 16px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2rem, 3.2vw, 3.35rem);

  font-weight: 400;

  line-height: 1.08;
}


.institution-collaboration
p:not(.eyebrow) {
  max-width: 720px;

  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}



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

.institution-faq-clean {
  padding:
    clamp(82px, 8vw, 128px)
    clamp(24px, 5vw, 82px);

  background: #fffdfb;
}


.institution-faq-clean__heading {
  max-width: 760px;

  margin:
    0 auto
    42px;

  text-align: center;
}


.institution-faq-clean__heading h2 {
  margin: 10px 0 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.35rem, 3.8vw, 4rem);

  font-weight: 400;
}



/* ---------- ABSCHLUSS ---------- */

.institution-final {
  padding:
    clamp(74px, 7vw, 112px)
    clamp(24px, 5vw, 82px);

  background: var(--cream);
}


.institution-final__inner {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


.institution-final h2 {
  margin: 12px auto 18px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.4rem, 4vw, 4.25rem);

  font-weight: 400;

  line-height: 1.08;
}


.institution-final__inner > p:not(.eyebrow) {
  max-width: 650px;

  margin: 0 auto;

  color: var(--muted);

  line-height: 1.7;
}


.institution-final__actions {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 34px;
}



/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px) {

  .institution-services {
    grid-template-columns: 1fr;
  }


  .institution-profile__inner {
    grid-template-columns: 1fr;
  }


  .institution-collaboration__inner {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 700px) {

  .institution-focus,
  .institution-audience,
  .institution-profile,
  .institution-collaboration,
  .institution-faq-clean,
  .institution-final {
    padding-left: 22px;
    padding-right: 22px;
  }


  .institution-focus__heading,
  .institution-faq-clean__heading,
  .institution-audience__inner {
    text-align: left;
  }


  .institution-audience__names {
    line-height: 1.9;
  }


  .institution-audience__names span {
    padding: 0 4px;
  }


  .institution-final__inner {
    text-align: left;
  }


  .institution-final__actions {
    justify-content: flex-start;
  }

}

/* =========================================================
   STARTSEITE – INSTITUTIONEN & SAMMLUNGEN
   ========================================================= */

.institutions-home-link {
  max-width: 1480px;

  margin:
    clamp(42px, 5vw, 68px)
    auto
    0;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap:
    clamp(30px, 5vw, 70px);

  padding:
    clamp(30px, 3.5vw, 46px)
    clamp(30px, 4.5vw, 58px);

  background: #fffdfb;

  border:
    1px solid
    rgba(73, 63, 57, 0.15);

  border-radius: 22px;
}

.institutions-home-link__copy {
  max-width: 760px;
}

.institutions-home-link h3 {
  margin: 8px 0 10px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.8rem, 2.7vw, 2.8rem);

  font-weight: 400;

  line-height: 1.1;
}

.institutions-home-link__copy > p:last-child {
  max-width: 680px;

  margin: 0;

  color: var(--muted);

  line-height: 1.65;
}

.institutions-home-link .button {
  flex: 0 0 auto;
}


/* =========================================================
   FEIERN – SCHNELLAUSWAHL MIT 3 BEREICHEN
   ========================================================= */

.occasions-page .occasion-jumpnav {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}


/* =========================================================
   RESPONSIVE ERGÄNZUNGEN
   ========================================================= */

@media (max-width: 760px) {

  .institutions-home-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .institutions-home-link .button {
    width: 100%;
  }

}

@media (max-width: 700px) {

  .occasions-page .occasion-jumpnav {
    grid-template-columns: 1fr;
  }

  .occasions-page .occasion-jumpnav a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .occasions-page .occasion-jumpnav a:last-child {
    border-bottom: 0;
  }

}
/* =========================================================
   FEIERN – HERO ABSTÄNDE
   ========================================================= */

.occasions-page .subpage-hero__copy > p:not(.eyebrow) + p {
  margin-top: 18px;
}

.occasions-page .subpage-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 18px 34px;

  margin-top: 34px;
}


/* auf kleineren Bildschirmen etwas luftiger stapeln */

@media (max-width: 620px) {

  .occasions-page .subpage-hero__actions {
    align-items: flex-start;
    flex-direction: column;

    gap: 22px;

    margin-top: 30px;
  }
}
	/* =========================================================
   SOMMERFERIENPROGRAMM – GLASIEREN
   ========================================================= */

.holiday-glaze {
  width: min(1440px, calc(100% - 64px));

  margin:
    clamp(52px, 6vw, 92px)
    auto;

  display: grid;

  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(0, 1.1fr);

  align-items: stretch;

  overflow: hidden;

  background: #fffdfb;

  border:
    1px solid
    rgba(73, 63, 57, 0.10);

  border-radius: 30px;

  box-shadow:
    0 18px 50px
    rgba(67, 49, 40, 0.09);
}


/* FOTO */

.holiday-glaze__image {
  min-height: 520px;

  overflow: hidden;

  background: #e8ddd3;
}


.holiday-glaze__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* TEXT */

.holiday-glaze__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(48px, 6vw, 90px);
}


.holiday-glaze__copy h2 {
  max-width: 720px;

  margin:
    14px 0
    24px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.5rem, 4vw, 4.5rem);

  font-weight: 400;

  line-height: 1.06;

  letter-spacing: -0.035em;
}


.holiday-glaze__copy > p:not(.eyebrow) {
  max-width: 720px;

  margin: 0;

  color: var(--muted);

  font-size:
    clamp(1rem, 1.15vw, 1.12rem);

  line-height: 1.75;
}


.holiday-glaze__copy > p:not(.eyebrow) + p {
  margin-top: 18px;
}


.holiday-glaze__children {
  color: var(--ink) !important;
}


/* BUCHUNGSHINWEIS */

.holiday-glaze__booking {
  max-width: 720px;

  margin-top: 32px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 12px;
}


.holiday-glaze__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 56px;

  padding:
    0 30px;

  color: #ffffff;

  background: var(--rose);

  border-radius: 18px;

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


.holiday-glaze__booking small {
  color: var(--muted);

  line-height: 1.55;
}


/* KLEINER ALTERNATIV-HINWEIS */

.holiday-glaze__note {
  margin-top: 30px !important;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(73, 63, 57, 0.13);

  font-size: 0.92rem !important;
}


/* TABLET */

@media (max-width: 900px) {

  .holiday-glaze {
    width:
      calc(100% - 40px);

    grid-template-columns: 1fr;
  }


  .holiday-glaze__image {
    min-height: 420px;
  }

}


/* HANDY */

@media (max-width: 620px) {

  .holiday-glaze {
    width:
      calc(100% - 28px);

    margin:
      42px auto;

    border-radius: 22px;
  }


  .holiday-glaze__image {
    min-height: 300px;
  }


  .holiday-glaze__copy {
    padding:
      38px 25px
      42px;
  }


  .holiday-glaze__copy h2 {
    font-size:
      clamp(2.2rem, 10vw, 3.25rem);
  }


  .holiday-glaze__button {
    width: 100%;

    padding:
      14px 20px;

    text-align: center;
  }

}