/* ============================================
   LENI'S WORLD - Premium Design System
   ============================================ */

/* --- Self-hosted Fonts --- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/playfair-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/playfair-variable-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/inter-variable.woff2') format('woff2');
}

/* --- Design Tokens --- */
:root {
  /* Palette */
  --color-bg: #FAF9F6;
  --color-bg-warm: #F5F0EB;
  --color-surface: #FFFFFF;
  --color-dark: #1B1B1B;
  --color-dark-soft: #2D2D2D;
  --color-accent: #C8956C;
  --color-accent-hover: #B07D56;
  --color-accent-light: rgba(200, 149, 108, 0.12);
  --color-text: #3A3A3A;
  --color-text-muted: #7A7A7A;
  --color-text-light: #A0A0A0;
  --color-border: #E8E4DF;
  --color-border-light: #F0ECE7;

  /* Typography */
  --font-headline: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-accent-hover);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  color: var(--color-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Section spacing --- */
.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--color-bg-warm);
}

.section--dark {
  background: var(--color-dark);
  color: #fff;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--color-dark);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-dark-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0.875rem 0;
}
.btn--ghost:hover {
  color: var(--color-accent-hover);
}
.btn--ghost svg, .btn--ghost::after {
  transition: transform var(--transition-fast);
}
.btn--ghost:hover svg, .btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 1rem var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-dark);
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.nav__logo-text {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-dark);
  background: var(--color-accent-light);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition-fast);
  border-radius: 2px;
}
.nav__hamburger span + span {
  margin-top: 5px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -5px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-lg) var(--space-lg);
    gap: 0.25rem;
    transition: right var(--transition-normal);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav__links.active {
    right: 0;
  }

  .nav__links a {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: var(--border-radius);
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
  }
  .mobile-overlay.active {
    display: block;
  }
}

/* Header spacer */
.header-spacer {
  height: 72px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  color: #fff;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: block;
}

.hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero .btn--primary {
  background: var(--color-accent);
}
.hero .btn--primary:hover {
  background: var(--color-accent-hover);
}

.hero .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero .btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- Photo Highlights (Home) --- */
.photo-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.photo-highlights__item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--color-bg-warm);
}

.photo-highlights__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.photo-highlights__item:hover img {
  transform: scale(1.06);
}

.photo-highlights__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.photo-highlights__item:hover .photo-highlights__overlay {
  opacity: 1;
}

.photo-highlights__overlay span {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Video Spotlight (Home) --- */
.video-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.video-spotlight__card {
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.video-spotlight__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-spotlight__thumb {
  position: relative;
  aspect-ratio: 9/16;
  cursor: pointer;
  overflow: hidden;
  background: var(--color-dark);
}

.video-spotlight__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-normal);
}

.video-spotlight__card:hover .video-spotlight__thumb img {
  transform: scale(1.05);
  opacity: 0.85;
}

.video-spotlight__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.video-spotlight__play svg {
  width: 20px;
  height: 20px;
  fill: var(--color-dark);
  margin-left: 3px;
}

.video-spotlight__card:hover .video-spotlight__play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.video-spotlight__info {
  padding: var(--space-sm) var(--space-md);
}

.video-spotlight__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

/* --- About Leni (Home) --- */
.about-leni {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-leni__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-leni__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-leni__text {
  max-width: 500px;
}

.about-leni__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* --- Timeline (Home) --- */
.timeline__list {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline__list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline__item {
  position: relative;
  padding: 0 0 var(--space-xl) var(--space-lg);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent);
  transform: translateX(-50%);
  margin-left: 1px;
}

.timeline__date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.timeline__title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}

.timeline__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Community / Stats (Home) --- */
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.stat-card {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.stat-card__number {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Guestbook preview (Home) */
.guestbook-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.guestbook-preview__card {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
}

.guestbook-preview__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guestbook-preview__card blockquote {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.guestbook-preview__footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.guestbook-preview__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.guestbook-preview__author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-lg);
}

.footer__brand .nav__logo-text {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}
.footer__social a:hover {
  color: #fff;
}

/* --- Photo Gallery Page --- */
.page-header {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  background: var(--color-bg);
}

.page-header .section-label {
  margin-bottom: var(--space-xs);
}

.page-header .section-subtitle {
  margin: var(--space-sm) auto 0;
}

/* Masonry Grid */
.gallery-grid {
  columns: 3;
  column-gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.gallery-grid__item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-warm);
}

.gallery-grid__item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.04);
}

.gallery-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.gallery-grid__item:hover .gallery-grid__overlay {
  opacity: 1;
}

.gallery-grid__title {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Heart button */
.heart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0.6rem;
  border-radius: var(--border-radius-full);
  transition: all var(--transition-fast);
}

.heart-btn:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
}

.heart-btn.liked {
  color: #e74c3c;
}

.heart-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.heart-btn:hover svg {
  transform: scale(1.15);
}

.heart-btn.liked svg {
  fill: #e74c3c;
}

.heart-btn.animate {
  animation: heartPop 0.4s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Gallery heart position */
.gallery-grid__heart {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border-radius: var(--border-radius-full);
  padding: 0.35rem 0.65rem;
  backdrop-filter: blur(8px);
}

/* --- Lightbox (Photos) --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
  padding: var(--space-lg);
}

.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius);
  box-shadow: 0 16px 64px rgba(0,0,0,0.4);
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
  z-index: 10001;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
  z-index: 10001;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

.lightbox__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.85rem;
  z-index: 10001;
}

.lightbox__heart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
}

.lightbox__heart .heart-btn {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.lightbox__heart .heart-btn:hover {
  color: #e74c3c;
  background: rgba(255,255,255,0.1);
}

/* --- Video Page --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.video-card {
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border-light);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 9/16;
  cursor: pointer;
  overflow: hidden;
  background: var(--color-dark-soft);
}

/* Subtle gradient so play button is visible on dark thumbnails */
.video-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-normal);
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.05);
  opacity: 0.85;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.video-card__play svg {
  width: 18px;
  height: 18px;
  fill: var(--color-dark);
  margin-left: 2px;
}

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__info {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-card__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Video Lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.video-lightbox__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-lightbox video {
  aspect-ratio: 9/16;
  width: 380px;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--border-radius-lg);
  background: #000;
  box-shadow: 0 16px 64px rgba(0,0,0,0.4);
}

.video-lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.video-lightbox__close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.video-lightbox__title {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  font-family: var(--font-body);
}

.video-lightbox__tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.video-lightbox__tiktok:hover {
  color: rgba(255,255,255,0.8);
}

/* --- Guestbook Page --- */
.guestbook-form {
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.guestbook-form .form-group {
  margin-bottom: var(--space-md);
}

.guestbook-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.guestbook-form input,
.guestbook-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.guestbook-form input:focus,
.guestbook-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.guestbook-form textarea {
  resize: vertical;
  min-height: 120px;
}

.guestbook-form .form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  cursor: pointer;
  line-height: 1.5;
}

.guestbook-form .form-privacy input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  margin-top: 1px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  background: #fff;
}

.guestbook-form .form-privacy input[type="checkbox"]:checked {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.guestbook-form .form-privacy input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.guestbook-form .form-privacy input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.guestbook-form .form-privacy label {
  display: inline;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}

/* Honeypot */
.guestbook-form .form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.guestbook-entries {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto;
}

.guestbook-entry {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  border-left: 3px solid var(--color-accent);
  transition: all var(--transition-normal);
}

.guestbook-entry:hover {
  box-shadow: var(--shadow-md);
}

.guestbook-entry__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.guestbook-entry__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.guestbook-entry__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.guestbook-entry__name {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.guestbook-entry__date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.2;
}

.guestbook-entry__message {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.guestbook-entry__delete {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--border-radius);
  margin-top: 0.5rem;
  transition: all var(--transition-fast);
}

.guestbook-entry__delete:hover {
  background: rgba(231, 76, 60, 0.08);
  color: #e74c3c;
}

/* --- Legal Pages (Impressum / Datenschutz) --- */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.legal-content h2 {
  margin-bottom: var(--space-lg);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-dark);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.legal-content a {
  color: var(--color-accent);
}

.legal-content strong {
  color: var(--color-dark);
}

/* --- Toast Messages --- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-dark);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10100;
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast--success {
  background: #059669;
}

.toast--error {
  background: #dc2626;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .photo-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-spotlight__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-leni {
    gap: var(--space-lg);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    text-align: center;
  }

  .hero__scroll {
    display: none;
  }

  .photo-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .video-spotlight__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .about-leni {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-leni__image {
    aspect-ratio: 16/10;
    max-height: 300px;
  }

  .community-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .stat-card {
    padding: var(--space-sm);
  }

  .stat-card__number {
    font-size: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-lg);
  }

  .footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .footer__brand p {
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }

  .footer__heading {
    margin-bottom: 0.4rem;
  }

  .footer__links {
    gap: 0.3rem;
  }

  .footer__links a {
    font-size: 0.85rem;
  }

  .site-footer {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
  }

  .footer__bottom p {
    font-size: 0.75rem;
  }

  .gallery-grid {
    columns: 2;
    column-gap: var(--space-sm);
  }

  .gallery-grid__item {
    margin-bottom: var(--space-sm);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    padding: 0 var(--space-sm);
  }

  .guestbook-form {
    padding: var(--space-lg);
    margin: 0 var(--space-sm) var(--space-xl);
  }

  .lightbox__nav--prev { left: 0.75rem; }
  .lightbox__nav--next { right: 0.75rem; }

  .video-lightbox video {
    width: 95vw;
    max-height: 80vh;
  }
}

@media (max-width: 480px) {
  .photo-highlights__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .photo-highlights__item {
    aspect-ratio: 3/4;
  }

  .video-spotlight__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .community-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    columns: 2;
    column-gap: 0.5rem;
    padding: 0 0.75rem;
  }

  .gallery-grid__item {
    margin-bottom: 0.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .guestbook-preview {
    grid-template-columns: 1fr;
  }

  .header-spacer {
    height: 64px;
  }
}

/* --- Visitor Stats Inline --- */
.visitor-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.visitor-inline svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* --- Über Leni Page (standalone) --- */
.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.about-page__hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-xl);
}

.about-page h2 {
  margin-bottom: var(--space-md);
}

.about-page p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* Admin button (discreet) */
.admin-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition-fast);
}

.admin-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Form feedback */
.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  color: var(--color-text-light);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.empty-state__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.empty-state p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Moderation hint */
.moderation-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--color-accent-light);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.moderation-hint__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.3;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg-warm) 25%, var(--color-bg) 50%, var(--color-bg-warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--border-radius);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Gallery skeleton loading state */
.gallery-grid__item--loading {
  background: linear-gradient(90deg, var(--color-bg-warm) 25%, #EDE9E4 50%, var(--color-bg-warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  min-height: 200px;
}

.gallery-grid__item--loading img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-grid__item img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.gallery-grid__skeleton {
  break-inside: avoid;
  margin-bottom: var(--space-md);
}

/* Gallery error fallback - paw icon placeholder */
.gallery-grid__item--error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: var(--color-bg-warm);
}

.gallery-grid__item--error::before {
  content: '\1F43E';
  font-size: 2.5rem;
  opacity: 0.3;
}

/* Video card loading state */
.video-card--loading .video-card__thumb {
  background: linear-gradient(90deg, var(--color-bg-warm) 25%, #EDE9E4 50%, var(--color-bg-warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.video-card--loading .video-card__thumb img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-card--loading .video-card__play {
  opacity: 0;
}

.video-card__thumb img {
  transition: opacity 0.4s ease, transform var(--transition-slow);
}

/* Video card error fallback */
.video-card--error .video-card__thumb {
  background: var(--color-dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card--error .video-card__play {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  opacity: 0.5;
}

/* --- Top Momente (Video Page Featured) --- */
.top-momente-section {
  display: none;
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
  padding-bottom: var(--space-xl) !important;
  border-bottom: 1px solid var(--color-border-light);
}

.top-momente-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.top-moment {
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border-light);
}

.top-moment:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.top-moment__thumb {
  position: relative;
  aspect-ratio: 9/16;
  cursor: pointer;
  overflow: hidden;
  background: var(--color-dark-soft);
}

.top-moment__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-normal);
}

.top-moment:hover .top-moment__thumb img {
  transform: scale(1.05);
  opacity: 0.85;
}

.top-moment__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  z-index: 2;
}

.top-moment__play svg {
  width: 24px;
  height: 24px;
  fill: var(--color-dark);
  margin-left: 3px;
}

.top-moment:hover .top-moment__play {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.top-moment__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--border-radius-full);
  z-index: 2;
}

.top-moment__info {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.top-moment__title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-momente-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    padding: 0 var(--space-sm);
  }

  .top-moment__play {
    width: 48px;
    height: 48px;
  }

  .top-moment__play svg {
    width: 18px;
    height: 18px;
  }

  .top-moment__title {
    font-size: 0.9rem;
  }

  .top-moment__badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .top-momente-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .top-moment__info {
    padding: var(--space-xs) var(--space-sm);
  }

  .top-moment__title {
    font-size: 0.8rem;
  }
}

/* Neueste Videos section */
.neueste-section {
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: var(--space-xl) !important;
}

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-md) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}
