/* =========================================================
   Klimbim & Kokolores — Atelier für Kunst & Kreatives
   Brand: Coral #F26E8E · Orange #F4A52F · Teal #5DA8B5
========================================================= */

:root {
  --coral:        #F26E8E;
  --coral-soft:   #FBD9E0;
  --orange:       #F4A52F;
  --orange-soft:  #FCE7C6;
  --teal:         #5DA8B5;
  --teal-soft:    #D5E9EC;
  --ink:          #2A2730;
  --ink-soft:     #5C5963;
  --paper:        #FBF7F2;
  --paper-warm:   #F5EFE6;
  --line:         rgba(42, 39, 48, .12);

  --radius:       18px;
  --radius-lg:    28px;
  --shadow-sm:    0 2px 8px rgba(42,39,48,.06);
  --shadow-md:    0 12px 40px -12px rgba(42,39,48,.18);
  --shadow-lg:    0 30px 80px -30px rgba(42,39,48,.30);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script:  "Caveat", "Brush Script MT", cursive;

  --max:          1240px;
  --max-narrow:   780px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--coral); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 500; }
p  { margin: 0 0 1em; }

em { font-style: italic; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-narrow); }

/* ---------- Eyebrows / accents ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.2rem;
}
.accent { color: var(--coral); }
.script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 500;
  color: var(--coral);
  font-size: 1.15em;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  letter-spacing: .01em;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  border: 0;
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(242,110,142,.55);
}
.btn--primary:hover {
  background: #e85b7e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(242,110,142,.7);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, padding .2s;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  padding: 10px 24px;
}
.nav__brand img {
  height: 44px;
  width: auto;
  display: block;
}
.nav.is-scrolled .nav__brand img { height: 36px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-size: .95rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav__menu a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__menu a:not(.nav__cta):hover::after {
  transform: scaleX(1);
}
.nav__cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
}
.nav__cta:hover {
  background: var(--coral);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  min-height: calc(100vh - 80px);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-soft), transparent 70%);
  opacity: .7;
  pointer-events: none;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(28px, 6vw, 90px);
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.4rem;
}
.hero__title em {
  color: var(--coral);
  font-style: italic;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 32em;
  margin-top: 2.2em;
}
.hero__lede--soft {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  margin-top: 1.4em;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 2.4em;
  flex-wrap: wrap;
}
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
}
.section--haltung {
  background: var(--paper-warm);
  text-align: center;
}
.section--haltung .lede { margin-top: 1.6em; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 7vw, 80px);
}
.section__head .lede { margin-top: 1.6em; }
.section__title {
  margin-bottom: 0;
}

/* ---------- Haltung values ---------- */
.values {
  list-style: none;
  padding: 0;
  margin: clamp(40px, 6vw, 70px) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: left;
  max-width: 980px;
}
.values li {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.values li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.values__dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dot, var(--coral));
  margin-bottom: 16px;
}
.values h3 { margin-bottom: 6px; }
.values p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Workshops ---------- */
.workshops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}
.workshop {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.workshop:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.workshop__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--paper-warm);
}
.workshop__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.workshop:hover .workshop__media img {
  transform: scale(1.05);
}
.workshop__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.workshop__body {
  padding: 26px 28px 32px;
}
.workshop__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}
.workshop__body h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.workshop__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .97rem;
}

.workshops__more {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.workshops__more strong {
  color: var(--ink);
  font-weight: 500;
}
.workshops__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Termine / Events ---------- */
.section--termine { background: var(--paper-warm); }

.events {
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 60px;
}
.event {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.event:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.event__date {
  background: var(--coral);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 12px;
  text-align: center;
  line-height: 1;
}
.event__day {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  display: block;
}
.event__month {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 6px;
}
.event__year {
  font-size: .78rem;
  opacity: .8;
  margin-top: 8px;
  letter-spacing: .08em;
}
.event__body {
  padding: 28px 32px 32px;
}
.event__type {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin: 0 0 6px;
}
.event__body h3 {
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 14px;
}
.event__body > p {
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.event__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 6px;
  font-size: .94rem;
  color: var(--ink-soft);
}
.event__meta strong {
  color: var(--ink);
  font-weight: 600;
  display: inline-block;
  min-width: 100px;
}

.event-form {
  max-width: 880px;
  margin: 0 auto;
  scroll-margin-top: 90px;
}
.event-form__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 24px;
  color: var(--ink);
}
.event-form__event {
  display: block;
  font-style: italic;
  color: var(--coral);
  font-size: .92em;
  margin-top: 4px;
}

/* ---------- Anfrage / Formular ---------- */
.section--anfragen { background: var(--paper); }
.anfragen__meta {
  margin-top: 18px;
  font-size: .8rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 22px;
  background: #fff;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field label {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.form__req { color: var(--coral); font-weight: 700; }
.form__opt {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: .82rem;
}
.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  font-size: 1rem;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--ink-soft);
  opacity: .7;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(242, 110, 142, 0.15);
}
.form__field input:user-invalid,
.form__field select:user-invalid,
.form__field textarea:user-invalid {
  border-color: rgba(213, 68, 68, .6);
}
.form__field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
  font-family: inherit;
}
.form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235C5963' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

.form__field--check {
  background: var(--paper-warm);
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 4px;
}
.form__check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  font-weight: 400;
  font-size: .92rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1.55;
}
.form__check input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--coral);
  flex-shrink: 0;
}
.form__check a {
  color: var(--coral);
  text-decoration: underline;
}

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form__hint {
  margin: 0;
  font-size: .85rem;
  color: var(--ink-soft);
}

/* Formular innerhalb eines Modals */
.modal__inner--form {
  padding: 32px clamp(24px, 4vw, 44px) 36px;
}
.modal__lede {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: -6px 0 22px;
}
.form--in-modal {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.form__notice {
  background: var(--paper-warm);
  border-left: 4px solid var(--coral);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 4px;
}
.form__notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.55;
}
.form__notice p + p {
  margin-top: 10px;
}
.form__notice strong {
  color: var(--ink);
  font-weight: 600;
}
.form__notice-title {
  color: var(--ink) !important;
  font-weight: 600 !important;
  font-size: .95rem !important;
  margin-bottom: 8px !important;
}

.form__success,
.form__error {
  padding: 18px 22px;
  border-radius: 12px;
  font-size: .98rem;
  line-height: 1.55;
}
.form__success {
  background: var(--teal-soft);
  color: var(--ink);
  border-left: 4px solid var(--teal);
}
.form__error {
  background: #fbe9e9;
  color: var(--ink);
  border-left: 4px solid #d54;
}
.form__success a,
.form__error a {
  color: var(--coral);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
  .form__actions { flex-direction: column-reverse; align-items: stretch; }
  .form__actions .btn { width: 100%; }
  .form__hint { text-align: center; }
  .event { grid-template-columns: 1fr; }
  .event__date { flex-direction: row; gap: 12px; padding: 18px; }
  .event__day { font-size: 2.2rem; }
  .event__month { margin-top: 0; }
  .event__year { margin-top: 0; }
  .event__body { padding: 24px 22px 28px; }
  .event__meta strong { display: block; min-width: 0; }
}

/* ---------- Gallery ---------- */
.section--gallery {
  background: var(--paper-warm);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
  grid-auto-flow: dense;
}
.gallery__item {
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
  position: relative;
  transition: transform .3s;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .3s;
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(.95);
}
.gallery__item--tall   { grid-row: span 2; }
.gallery__item--wide   { grid-column: span 2; }
.gallery__item--big    { grid-row: span 2; grid-column: span 2; }

/* ---------- Vision ---------- */
.section--vision {
  text-align: center;
  background:
    radial-gradient(ellipse at top, var(--coral-soft) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, var(--orange-soft) 0%, transparent 60%),
    var(--paper);
}
.section--vision .section__title em {
  display: inline-block;
  transform: rotate(-2deg);
}
.vision__pull {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 2.5em;
  padding-top: 2.5em;
  border-top: 1px solid var(--line);
}
.vision__pull strong {
  font-style: normal;
  font-weight: 500;
  color: var(--coral);
}

/* ---------- Über Anna ---------- */
.section--anna {
  background: var(--paper);
}
.anna {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.anna__media {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.anna__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.anna__body p { color: var(--ink-soft); margin-top: 1.2em; }
.anna__body .lede {
  color: var(--ink);
  margin-top: 1.6em;
}
.anna__lead-out {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  margin-top: 1.4em !important;
}
.anna__subhead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2.2em;
  margin-bottom: .4em;
}
.anna__principles {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
  display: grid;
  gap: 14px;
}
.anna__principles li {
  color: var(--ink-soft);
  padding-left: 1.2em;
  position: relative;
  line-height: 1.6;
}
.anna__principles li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.anna__principles li strong {
  color: var(--ink);
  font-weight: 600;
}

.anna { align-items: start; }
.anna__media { position: sticky; top: 90px; }
@media (max-width: 900px) {
  .anna__media { position: static; }
}

.anna__signature {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--coral);
  margin-top: 1.5em;
}

/* ---------- Kontakt ---------- */
.section--kontakt {
  background: var(--paper-warm);
}
.kontakt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.kontakt__card {
  background: #fff;
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.kontakt__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.kontakt__card--cta {
  background: var(--ink);
  color: var(--paper);
}
.kontakt__card--cta .kontakt__label { color: var(--coral); }
.kontakt__card--cta p { color: rgba(251, 247, 242, .8); }
.kontakt__card--cta .btn { margin-top: .5rem; }
.kontakt__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.kontakt__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
}
.kontakt__hint {
  margin-top: 14px;
  font-size: .87rem;
  color: var(--ink-soft);
  font-style: italic;
}
.kontakt__value a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.kontakt__value a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(251, 247, 242, .8);
  padding: 56px 0 30px;
  font-size: .92rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(251, 247, 242, .12);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper);
  margin: 0 0 4px;
}
.footer__inner p { margin: 0; }
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  color: rgba(251, 247, 242, .7);
  text-decoration: none;
}
.footer__links a:hover { color: var(--coral); }
.footer__credit {
  text-align: center;
  margin: 24px 0 0;
  font-size: .85rem;
  color: rgba(251, 247, 242, .5);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 24, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255,255,255,.25);
  transform: scale(1.06);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- Modals ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 24, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__inner {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px clamp(28px, 5vw, 50px);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal__inner h2 {
  margin-top: 0;
  font-size: 1.7rem;
}
.modal__inner p { color: var(--ink-soft); }
.modal__small { font-size: .88rem; opacity: .85; }
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: 0;
  font-size: 28px;
  color: var(--ink-soft);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.modal__close:hover { background: var(--paper-warm); }

/* ---------- Cookie-Hinweis ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.cookie.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie__text {
  margin: 0;
  flex: 1 1 320px;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(251, 247, 242, .9);
}
.cookie__text strong {
  color: var(--paper);
  font-weight: 600;
}
.cookie__text a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie__btn {
  flex-shrink: 0;
  padding: 11px 22px;
  font-size: .92rem;
}
@media (max-width: 640px) {
  .cookie {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px;
  }
  .cookie__btn { width: 100%; }
}

/* Modal — wide variant for Datenschutz */
.modal__inner--wide {
  max-width: 720px;
}
.modal__inner h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.6em;
  margin-bottom: .4em;
  color: var(--ink);
}
.modal__inner ul {
  padding-left: 1.4em;
  color: var(--ink-soft);
}
.modal__inner ul li {
  margin-bottom: 4px;
}
.modal__updated {
  margin-top: 2em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__media {
    order: -1;
    aspect-ratio: 4 / 3;
  }
  .hero__content {
    padding: 50px 28px 70px;
  }
  .anna {
    grid-template-columns: 1fr;
  }
  .anna__media {
    aspect-ratio: 4 / 3;
    max-width: 480px;
    margin: 0 auto;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--big { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a {
    padding: 14px 28px;
    border-radius: 0;
  }
  .nav__menu a:not(.nav__cta)::after { display: none; }
  .nav__cta {
    margin: 8px 28px 0;
    text-align: center;
  }

  .gallery {
    grid-auto-rows: 140px;
    gap: 8px;
  }
  .lightbox__close,
  .lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .lightbox__close { top: 16px; right: 16px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
