/* ============================================
   NAFF-CHUCHI — Editorial Cooking Magazine
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --naff-blue: #3272AD;
  --naff-blue-dark: #235683;
  --naff-blue-light: #5B96CE;
  --naff-blue-pale: #E8F0F8;

  --cream: #FAF6F0;
  --cream-warm: #F4ECE0;
  --paper: #FFFEFB;
  --ink: #1A1A1A;
  --ink-soft: #2C2C2C;
  --muted: #6B6B6B;
  --line: #E5DDD0;

  --accent-warm: #C8741A;
  --accent-red: #B23A3A;

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --body: 'Lora', Georgia, serif;

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 24px 48px rgba(26, 26, 26, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--naff-blue); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--naff-blue-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--naff-blue);
  display: inline-block;
}

.italic { font-style: italic; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  min-width: 0;
}
.brand img { height: 44px; width: auto; flex-shrink: 0; }
.brand-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--ink);
  display: inline;
  white-space: nowrap;
}
@media (min-width: 720px) { .brand-text { font-size: 1.05rem; } }

/* ============ Burger Toggle ============ */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .65rem;
  z-index: 110;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
  display: block;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Mobile Nav (default) ============ */
.main-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  z-index: 105;
  padding: 4rem 2rem 2rem;
  visibility: hidden;
}
.main-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}
.main-nav a {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  position: relative;
  padding: .25rem .5rem;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--naff-blue); }
.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 30px;
  height: 2px;
  background: var(--naff-blue);
  transform: translateX(-50%);
}

/* ============ Desktop Nav ============ */
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    transform: none;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 1.85rem;
    width: auto;
    height: auto;
    visibility: visible;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .main-nav a {
    font-size: 0.95rem;
    font-family: var(--body);
    font-weight: 500;
    padding: 0;
    white-space: nowrap;
  }
  .main-nav a.is-active::after { bottom: -8px; }
  .brand img { height: 52px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .35) 0%,
    rgba(0, 0, 0, .55) 60%,
    rgba(0, 0, 0, .75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  color: rgba(255, 255, 255, .85);
  border-left: 2px solid var(--naff-blue-light);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  font-style: italic;
  font-weight: 400;
  max-width: 14ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}
.hero h1 strong {
  font-style: normal;
  font-weight: 900;
  display: block;
  color: #fff;
}
.hero__sub {
  font-size: 1.15rem;
  max-width: 50ch;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 2.5rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.4s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.85rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--naff-blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--naff-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(50, 114, 173, .3);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: #fff;
}
.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover { background: var(--ink-soft); color: #fff; transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

/* ============================================
   INTRO SECTION (Manifest)
   ============================================ */
.intro {
  background: var(--paper);
  position: relative;
}
.intro::before {
  content: 'NAFF';
  position: absolute;
  top: -.05em;
  right: -.1em;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(15rem, 30vw, 28rem);
  color: var(--cream-warm);
  z-index: 0;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}
.intro__inner { position: relative; z-index: 1; }
.intro__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  max-width: 26ch;
  margin-bottom: 3rem;
}
.intro__lead .blue { color: var(--naff-blue); font-style: normal; font-weight: 700; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 800px) {
  .intro__grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
}
.intro__text p { margin-bottom: 1.25rem; color: var(--ink-soft); }
.intro__text p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 900;
  float: left;
  line-height: .85;
  margin: .15em .15em 0 0;
  color: var(--naff-blue);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.fact__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--naff-blue);
  line-height: 1;
}
.fact__label {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .5rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head { margin-bottom: 3.5rem; max-width: 700px; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================
   KÖCHE GRID
   ============================================ */
.koeche {
  background: var(--cream-warm);
}
.koeche-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding: 0;
}
.koeche-list li {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-left: 1.5rem;
}
.koeche-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .8em;
  width: .8rem;
  height: 2px;
  background: var(--naff-blue);
}
.koeche-photo {
  margin-top: 3rem;
  position: relative;
}
.koeche-photo img {
  width: 100%;
  height: auto;
  filter: contrast(1.05) saturate(.95);
}
.koeche-photo__caption {
  font-style: italic;
  color: var(--muted);
  margin-top: 1rem;
  font-size: .95rem;
  text-align: center;
}

/* ============================================
   IMPRESSIONS GRID (responsive — keine Bildbeschneidung)
   ============================================ */
.koeche-impressions {
  background: var(--paper);
}
.impressions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .impressions-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (min-width: 1000px) {
  .impressions-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.impressions-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--cream-warm);
}
.impressions-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.impressions-grid figure:hover img {
  transform: scale(1.03);
}

/* ============================================
   KOCHABENDE PREVIEW (Home)
   ============================================ */
.kochabende-preview {
  background: var(--paper);
}
.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 720px) { .preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .preview-grid { grid-template-columns: repeat(3, 1fr); } }

.kochabend-card {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
}
.kochabend-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.kochabend-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #2C5F8E 0%, #3272AD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kochabend-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .8s ease;
}
.kochabend-card:hover .kochabend-card__img img { transform: scale(1.04); }
.kochabend-card__body { padding: 1.75rem; }
.kochabend-card__date {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--naff-blue);
  font-weight: 600;
  margin-bottom: .75rem;
  display: block;
}
.kochabend-card h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.kochabend-card__desc {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kochabend-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--naff-blue-pale);
}

/* ============================================
   YEAR NAV (Kochabende-Übersicht)
   ============================================ */
.year-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.year-btn {
  padding: .55rem 1.1rem;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  transition: all .25s ease;
}
.year-btn:hover { border-color: var(--naff-blue); color: var(--naff-blue); }
.year-btn.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.month-group {
  margin-bottom: 4rem;
}
.month-group h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
  margin-bottom: 2rem;
}

.empty-state {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--cream-warm);
  border: 1px dashed var(--line);
}
.empty-state h3 { margin-bottom: .5rem; }
.empty-state p { color: var(--muted); }

/* ============================================
   KOCHABEND DETAIL
   ============================================ */
.detail-hero {
  padding: 3rem 0 2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.detail-back {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: inline-block;
}
.detail-back:hover { color: var(--naff-blue); }
.detail-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .95rem;
}
.detail-meta__date {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--naff-blue);
}
.detail-desc {
  font-size: 1.15rem;
  max-width: 65ch;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.menu-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.5rem;
  background: var(--naff-blue);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s ease;
}
.menu-pdf-btn:hover {
  background: var(--naff-blue-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Gallery — Bilder behalten natürliche Proportionen */
.gallery {
  padding: 4rem 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.gallery-item {
  overflow: hidden;
  background: var(--cream-warm);
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.lightbox.is-open { display: flex; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background .25s;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; transform: none; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .25); color: #fff; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  letter-spacing: .1em;
}

/* ============================================
   GESCHICHTE / TEXT PAGES
   ============================================ */
.page-hero {
  padding: 5rem 0 3rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { max-width: 780px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

.prose {
  max-width: 680px;
  margin: 0 auto;
}
.prose p { margin-bottom: 1.5rem; font-size: 1.1rem; line-height: 1.75; color: var(--ink-soft); }
.prose h2 { margin: 3rem 0 1.25rem; }
.prose h3 { margin: 2rem 0 1rem; }
.prose blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--naff-blue);
  border-left: 3px solid var(--naff-blue);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
}
.prose img { margin: 2rem 0; }
.prose figure { margin: 2.5rem 0; }
.prose figcaption {
  font-size: .9rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-block h3 {
  font-size: 1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 600;
  color: var(--naff-blue);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}
.contact-block p { margin-bottom: .5rem; font-size: 1.1rem; }
.contact-block a { color: var(--ink); border-bottom: 1px solid var(--naff-blue); }
.contact-block a:hover { color: var(--naff-blue); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 {
  font-family: var(--body);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--naff-blue-light);
  margin-bottom: 1rem;
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--naff-blue-light); }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .5rem; }
.site-footer__brand p {
  margin-top: 1rem;
  color: rgba(250, 246, 240, .7);
  font-size: .95rem;
  max-width: 40ch;
}
.site-footer__brand img {
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(250, 246, 240, .5);
  font-size: .85rem;
}

/* ============================================
   ANIMATIONS / REVEAL
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity .8s ease;
}
.fade-in.is-visible { opacity: 1; }

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .15s; }
.stagger > *:nth-child(3) { transition-delay: .25s; }
.stagger > *:nth-child(4) { transition-delay: .35s; }
.stagger > *:nth-child(5) { transition-delay: .45s; }
.stagger > *:nth-child(6) { transition-delay: .55s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up, .fade-in { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--naff-blue);
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--naff-blue);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 200;
}
.skip-link:focus { top: 0; color: #fff; }

/* ============================================
   NEWS BLOCK (Home, zwischen Hero und Intro)
   ============================================ */
.news-block {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.news-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 800px) {
  .news-card {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
}
.news-card__media {
  background: var(--cream-warm);
  overflow: hidden;
  min-height: 240px;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__body {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-card__body .eyebrow { margin-bottom: 1rem; }
.news-card__body h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.news-card__text {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}
.news-card__text p { margin-bottom: 1rem; }
.news-card__text p:last-child { margin-bottom: 0; }

/* ============================================
   NAFF CHOCHSTUDIO (Video-Grid)
   ============================================ */
.chochstudio {
  background: var(--cream-warm);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 560px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
}
@media (min-width: 1080px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); max-width: 840px; }
}
.video-grid__item {
  background: #000;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 9/16;
  border-radius: 8px;
  max-height: 70vh;
}
.video-grid__item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.chochstudio__empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
}
