/* ================================================
   KIMBERLY – Personal Training & Coaching
   style.css
   ================================================ */

/* Bunny Fonts – DSGVO-konform (EU-Server, keine Datenübertragung in die USA) */
@import url('https://fonts.bunny.net/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Lato:wght@300;400;700&display=swap');

/* ================================================
   VARIABLES
   ================================================ */
:root {
  --cream:       #FAF7F4;
  --cream-dark:  #F2EDE8;
  --rose:        #B8847A;
  --rose-dark:   #9E6E65;
  --rose-light:  #DBBBB5;
  --rose-pale:   #F5EAE7;
  --sage:        #7A8F6F;
  --gold:        #B8966E;
  --dark:        #2D2521;
  --text:        #4A3F3A;
  --text-light:  #8A7E7A;
  --white:       #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', sans-serif;

  --transition: all 0.3s ease;
  --shadow:     0 4px 24px rgba(45, 37, 33, 0.08);
  --shadow-lg:  0 8px 48px rgba(45, 37, 33, 0.14);
  --radius:     3px;
  --radius-lg:  6px;
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem,   4vw,   3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.35rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }


/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(45, 37, 33, 0.08);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
}
.nav__logo span { color: var(--rose-light); }
.nav.scrolled .nav__logo { color: var(--dark); }
.nav.scrolled .nav__logo span { color: var(--rose); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0;
}
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s;
  font-weight: 400;
}
.nav.scrolled .nav__links a { color: var(--text); }
.nav__links a:hover,
.nav__links a.active { color: var(--rose) !important; }

.nav__cta {
  padding: 0.6rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.65);
  color: var(--white) !important;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--white);
  color: var(--dark) !important;
  border-color: var(--white);
}
.nav.scrolled .nav__cta {
  border-color: var(--rose);
  color: var(--rose) !important;
}
.nav.scrolled .nav__cta:hover {
  background: var(--rose);
  color: var(--white) !important;
}

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 0.4rem;
}
.nav__burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav.scrolled .nav__burger span { background: var(--dark); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ================================================
   HERO
   ================================================ */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 1.2s ease;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(45, 37, 33, 0.60) 0%,
    rgba(45, 37, 33, 0.22) 55%,
    rgba(45, 37, 33, 0.08) 100%
  );
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1.5rem;
}
.hero__title {
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  max-width: 650px;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--rose-light); }
.hero__text {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 2.2s ease infinite;
}
@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}


/* ================================================
   PAGE HERO (subpages)
   ================================================ */
.page-hero {
  height: 52vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.page-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,37,33,0.72) 0%, rgba(45,37,33,0.12) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 2.5rem;
  width: 100%;
}
.page-hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.75rem;
}
.page-hero__title {
  color: var(--white);
  font-weight: 300;
}


/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--rose);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 132, 122, 0.38);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(45,37,33,0.35);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--rose-outline {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--rose);
}
.btn--rose-outline:hover {
  background: var(--rose);
  color: var(--white);
}


/* ================================================
   SECTIONS & LAYOUT
   ================================================ */
.section { padding: 6.5rem 2.5rem; }
.section--sm { padding: 4rem 2.5rem; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--dark); color: var(--cream); }
.section--rose   { background: var(--rose); color: var(--white); }
.section--rose-pale { background: var(--rose-pale); }

.container { max-width: 1280px; margin: 0 auto; }

.section__header { margin-bottom: 4rem; }
.section__header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.section__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.section--dark  .section__eyebrow { color: var(--rose-light); }
.section--rose  .section__eyebrow { color: rgba(255,255,255,0.7); }
.section__title { margin-bottom: 1rem; }
.section--dark  .section__title,
.section--rose  .section__title { color: var(--white); }
.section__lead {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.85;
}
.section--dark .section__lead  { color: rgba(255,255,255,0.65); }
.section--rose .section__lead  { color: rgba(255,255,255,0.82); }


/* ================================================
   WELCOME SPLIT (Homepage)
   ================================================ */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.welcome__image { position: relative; }
.welcome__image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.welcome__image-accent {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -2.5rem; right: -2.5rem;
  border: 6px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.welcome__badge {
  position: absolute;
  top: 2.5rem; left: -1.8rem;
  background: var(--rose);
  color: var(--white);
  padding: 1.4rem 1.6rem;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.welcome__badge-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1; display: block;
}
.welcome__badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.welcome__text {
  font-size: 1.05rem;
  line-height: 1.92;
  margin-bottom: 2rem;
}
.welcome__signature {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 2rem;
}


/* ================================================
   GALLERY GRID
   ================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 0.875rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--wide  { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery__item:hover img { transform: scale(1.05); }


/* ================================================
   SERVICE CARDS
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-bottom-color: var(--rose);
}
.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  display: block;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}
.service-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.service-card__link {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.service-card__link:hover { gap: 1rem; }
.service-card__link::after { content: '→'; }


/* ================================================
   EVENT CARDS
   ================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.event-card__image-wrap { overflow: hidden; position: relative; }
.event-card__image {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.event-card:hover .event-card__image { transform: scale(1.05); }
.event-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--rose);
  color: var(--white);
  padding: 0.35rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
}
.event-card__body { padding: 2rem; }
.event-card__date {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.event-card__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}
.event-card__text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.event-card__meta span { display: flex; align-items: center; gap: 0.4rem; }

/* Full event entries on specials page */
.event-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}
.event-full__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: stretch;
}
.event-full__image {
  width: 100%; height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.event-full__body { padding: 3.5rem; }
.event-full__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.event-full__title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.event-full__text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.event-full__dates { margin-bottom: 2rem; }
.event-full__dates-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.event-full__date-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.event-full__date-item:last-child { border-bottom: none; }
.event-full__date-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.event-full__date-label { color: var(--text-light); font-size: 0.85rem; }
.event-full__date-time  { color: var(--dark); font-weight: 400; }

/* "Termin folgt" upcoming event card */
.event-coming {
  background: var(--rose-pale);
  border: 1px dashed var(--rose-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.event-coming__title { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 0.75rem; }
.event-coming__text  { color: var(--text-light); font-size: 0.95rem; }
.event-coming__badge {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}


/* ================================================
   QUOTE STRIP
   ================================================ */
.quote-strip { text-align: center; padding: 6rem 2.5rem; }
.quote-strip__text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  max-width: 850px;
  margin: 0 auto;
}
.section--rose .quote-strip__text { color: var(--white); }
.quote-strip__author {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
}


/* ================================================
   ABOUT PAGE
   ================================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5.5rem;
  align-items: start;
}
.about-sticky { position: sticky; top: 7rem; }
.about-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.about-caption {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose);
  text-align: center;
}
.about-body {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text);
}
.about-body p { margin-bottom: 1.6rem; }
.about-highlight {
  background: var(--rose-pale);
  border-left: 3px solid var(--rose);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--rose-light);
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  color: var(--rose);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.qualities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.quality-item__icon {
  width: 42px; height: 42px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.quality-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.quality-item__text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }


/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5.5rem;
  align-items: start;
}
.contact-info { position: sticky; top: 7rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-info__value { font-size: 0.98rem; color: var(--text); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--rose-light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 132, 122, 0.14);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 0.5rem; }
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-privacy input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--rose); flex-shrink: 0; }
.form-privacy a { color: var(--rose); }


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 5.5rem 2.5rem 2.5rem;
}
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2.5rem;
}
.footer__brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand-name span { color: var(--rose-light); }
.footer__brand-text {
  font-size: 0.88rem;
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 1.75rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer__social-link:hover {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}
.footer__col-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--rose); }
.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__legal { display: flex; gap: 2rem; }
.footer__legal a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer__legal a:hover { color: var(--rose); }


/* ================================================
   LEGAL / IMPRESSUM / AGB
   ================================================ */
.legal-page { padding: 5rem 2.5rem 6rem; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.9rem;
  margin: 3rem 0 1rem;
  color: var(--dark);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rose-pale);
}
.legal-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
  color: var(--dark);
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content a  { color: var(--rose); }

.placeholder {
  background: #fff3cd;
  border: 1px dashed #d4a017;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-weight: 700;
  color: #8a6914;
  font-style: normal;
}

/* Breadcrumb / back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2.5rem;
  transition: gap 0.3s;
}
.back-link:hover { gap: 1rem; }
.back-link::before { content: '←'; }


/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  text-align: center;
  padding: 6.5rem 2.5rem;
}
.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-banner__text {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  opacity: 0.82;
}


/* ================================================
   DIVIDER
   ================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rose-light);
}
.divider__icon { color: var(--rose); font-size: 0.8rem; }


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .welcome          { gap: 3.5rem; }
  .footer__grid     { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .events-grid      { grid-template-columns: 1fr 1fr; }
  .event-full__inner { grid-template-columns: 1fr; }
  .event-full__image { min-height: 320px; }
}

@media (max-width: 860px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Mobile nav overlay */
  .nav__links.open {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1050;
  }
  .nav__links.open a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85) !important;
    letter-spacing: 0.2em;
  }
  .nav__links.open .nav__cta {
    display: inline-block;
    border-color: var(--rose);
    color: var(--rose) !important;
    margin-top: 1rem;
  }

  .welcome             { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-content       { grid-template-columns: 1fr; gap: 3rem; }
  .about-sticky        { position: static; }
  .contact-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info        { position: static; }
  .services-grid       { grid-template-columns: 1fr; }
  .events-grid         { grid-template-columns: 1fr; }
  .about-stats         { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .qualities           { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom      { flex-direction: column; gap: 1rem; text-align: center; }
  .welcome__image-accent,
  .welcome__badge      { display: none; }
  .gallery             { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
}

@media (max-width: 560px) {
  .section  { padding: 4.5rem 1.5rem; }
  .gallery  { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery__item--tall,
  .gallery__item--wide { grid-row: span 1; grid-column: span 1; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr; }
  .nav__inner { padding: 1rem 1.5rem; }
}
