/* ===================================================================
   Andre Kesel — Portfolio
   Dark / Cinematic · Editorial Typografie · sanfte Animationen
   =================================================================== */

/* ---------- Selbst-gehostete Schriften (DSGVO-konform) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 300 700; font-display: swap;
  src: url('../fonts/space-grotesk-var.woff2') format('woff2');
}

/* ---------- Design Tokens ---------- */
:root {
  --bg:        #0a0a0b;
  --bg-soft:   #111114;
  --surface:   #16161a;
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.18);
  --text:      #f3f1ec;
  --text-soft: #b9b7b1;
  --text-mute: #797772;
  --accent:    #e8c9a0;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-disp: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h:  76px;
  --max-w:     1600px;
  --gap:       10px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
::selection { background: var(--accent); color: #1a1a1a; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 64px;
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.site-logo {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.site-logo span { color: var(--text-soft); font-weight: 300; }

.site-nav { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.site-nav a {
  position: relative;
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: '';
  position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.15rem;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--text); }

/* Instagram-Icon in der Top-Nav */
.site-nav a.nav-ig { display: flex; align-items: center; padding: 0.4rem 0.5rem 0.4rem 0.95rem; color: var(--text-soft); }
.site-nav a.nav-ig::after { display: none; }
.site-nav a.nav-ig:hover { color: var(--accent); }
.mobile-ig { margin-top: 1rem; color: var(--text-soft) !important; transition: color 0.3s var(--ease); }
.mobile-ig:hover { color: var(--accent) !important; }

/* ---------- Hamburger ---------- */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 200; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 150;
  flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-disp);
  font-size: 2rem; font-weight: 400;
  color: var(--text-soft);
  padding: 0.5rem 1rem;
  transition: color 0.3s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; background: #000; }
.hero img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s var(--ease);
}
.hero img.in { opacity: 1; transform: scale(1); }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.45) 0%, transparent 28%, transparent 55%, rgba(10,10,11,0.92) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: clamp(3rem, 9vh, 7rem);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.hero-title {
  font-family: var(--font-disp);
  font-weight: 500;
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.hero-tagline {
  display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.3rem);
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  font-weight: 400; letter-spacing: 0.005em;
  color: var(--text-soft);
  max-width: 46ch;
}
.hero-rule {
  width: clamp(36px, 5vw, 58px); height: 1px;
  background: var(--accent); flex: none;
  transform-origin: left;
}
.hero-tagline-text { transition: opacity 0.55s var(--ease); }
.hero-tagline-text.fade { opacity: 0; }

/* Gestaffelte Einblendung der Hero-Texte */
.hero-content > * { opacity: 0; transform: translateY(22px); animation: heroIn 1s var(--ease) forwards; }
.hero-eyebrow { animation-delay: 0.25s; }
.hero-title   { animation-delay: 0.4s; }
.hero-tagline { animation-delay: 0.62s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.scroll-hint {
  position: absolute; right: clamp(1.25rem, 4vw, 3rem); bottom: 1.6rem;
  z-index: 2; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mute);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
@media (max-width: 560px) { .scroll-hint { display: none; } }
.scroll-hint::after { content: ''; width: 1px; height: 38px; background: linear-gradient(var(--text-mute), transparent); animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero img { opacity: 1 !important; transform: none !important; transition: none; }
  .photo-item img { opacity: 1 !important; filter: none !important; transform: none !important; transition: opacity 0.3s; }
  .photo-item::before { animation: none !important; }
  .hero-content > * { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Galerie-Übersicht (Startseite) ---------- */
.galleries-section { padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem); max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-disp); font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 3rem; max-width: 18ch;
}
.gallery-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: var(--gap); }
.gallery-card {
  position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--surface);
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: transform 1.1s var(--ease), opacity 0.8s var(--ease);
  filter: brightness(0.82);
}
.gallery-card img.loaded { opacity: 1; }
.gallery-card:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(0,0,0,0.7));
  transition: opacity 0.5s var(--ease);
}
.gallery-card-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.5rem; z-index: 2; }
.gallery-card-label h3 {
  font-family: var(--font-disp); font-weight: 400;
  font-size: 1.7rem; line-height: 1; letter-spacing: 0.005em;
  transform: translateY(6px); transition: transform 0.5s var(--ease);
}
.gallery-card-label .meta {
  display: block; margin-top: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery-card:hover .gallery-card-label h3 { transform: translateY(0); }
.gallery-card:hover .gallery-card-label .meta { opacity: 1; transform: translateY(0); }

/* ---------- Galerie-Seiten ---------- */
.page-head {
  padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  max-width: var(--max-w); margin: 0 auto;
}
.page-head h1 {
  font-family: var(--font-disp); font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1.02; letter-spacing: -0.03em;
}
.page-head .lead { margin-top: 1.1rem; max-width: 52ch; color: var(--text-soft); font-size: 1.05rem; }
.page-head .count { margin-top: 1.4rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Foto-Grid (Masonry) ---------- */
.photo-grid {
  padding: 0 clamp(0.6rem, 2vw, 1.4rem) clamp(3rem, 8vw, 6rem);
  columns: 3; column-gap: var(--gap);
  max-width: var(--max-w); margin: 0 auto;
}
.photo-item {
  break-inside: avoid; margin-bottom: var(--gap); position: relative;
  overflow: hidden; background: var(--surface); cursor: pointer;
}
/* Sanfte Skeleton-Ladeanimation, solange das Bild lädt */
.photo-item::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, #141418 28%, rgba(255,255,255,0.05) 50%, #141418 72%);
  background-size: 220% 100%;
  animation: shimmer 1.8s linear infinite;
  transition: opacity 0.7s var(--ease);
}
.photo-item.is-loaded::before { opacity: 0; animation: none; }
@keyframes shimmer { 0% { background-position: 220% 0; } 100% { background-position: -220% 0; } }

.photo-item img {
  position: relative; z-index: 1;
  width: 100%; display: block;
  opacity: 0; filter: blur(14px); transform: scale(1.03);
  transition: opacity 0.8s var(--ease), filter 1s var(--ease), transform 1.1s var(--ease);
}
.photo-item img.loaded { opacity: 1; filter: blur(0); transform: scale(1); }
.photo-item:hover img.loaded { transform: scale(1.025); filter: brightness(1.06); }
.photo-item::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0); transition: box-shadow 0.4s var(--ease);
}
.photo-item:hover::after { box-shadow: inset 0 0 0 1px var(--border-2); }

/* ---------- Video-Seite (YouTube · Klick-zum-Laden) ---------- */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--gap);
  padding: 0 clamp(0.6rem, 2vw, 1.4rem) clamp(2rem, 5vw, 3.5rem);
  max-width: var(--max-w); margin: 0 auto;
}
.video-card { position: relative; }
.video-trigger, .video-frame {
  display: block; position: relative; width: 100%;
  aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--surface); border: none; padding: 0; border-radius: 2px;
}
.video-trigger { cursor: pointer; }
.video-trigger img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8);
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
}
.video-card:hover .video-trigger img { transform: scale(1.04); filter: brightness(0.95); }
.video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: color 0.3s var(--ease), transform 0.4s var(--ease);
}
.video-play svg { width: clamp(56px, 8vw, 76px); height: clamp(56px, 8vw, 76px); filter: drop-shadow(0 4px 18px rgba(0,0,0,0.5)); }
.video-card:hover .video-play { color: var(--accent); transform: scale(1.06); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-card figcaption {
  margin-top: 0.7rem; margin-bottom: 0.3rem; font-family: var(--font-disp); font-weight: 400;
  font-size: 1.02rem; letter-spacing: -0.01em; color: var(--text);
}
.video-note {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 6rem);
  font-size: 0.78rem; color: var(--text-mute); letter-spacing: 0.02em;
}
.video-note a { color: var(--text-soft); border-bottom: 1px solid var(--border); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.video-note a:hover { color: var(--text); border-bottom-color: var(--accent); }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }

/* ---------- SOG Tabs ---------- */
.sog-tabs {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  max-width: var(--max-w); margin: 0 auto;
}
.sog-tab {
  padding: 0.5rem 1.3rem; font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid var(--border);
  color: var(--text-soft); transition: all 0.3s var(--ease);
}
.sog-tab:hover { border-color: var(--border-2); color: var(--text); }
.sog-tab.active { background: var(--text); border-color: var(--text); color: var(--bg); }

/* ---------- Loading ---------- */
.loading { text-align: center; padding: 5rem 1rem; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,6,7,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 8vw, 7rem); }
.lightbox img {
  max-width: 100%; max-height: 100%; object-fit: contain; user-select: none;
  opacity: 0; transform: scale(0.97); transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox img.in { opacity: 1; transform: scale(1); }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 1.4rem; line-height: 1; padding: 0.6rem; color: var(--text-soft); transition: color 0.3s var(--ease); z-index: 10; }
.lightbox-close:hover { color: var(--text); }
.lightbox-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.2rem; line-height: 1; padding: 1.2rem; color: var(--text-mute); transition: color 0.3s var(--ease); z-index: 10; }
.lightbox-btn:hover { color: var(--text); }
.lightbox-prev { left: 0.4rem; } .lightbox-next { right: 0.4rem; }
.lightbox-counter { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--text-mute); }

/* ---------- Editorial Seiten (About/Contact) ---------- */
.editorial { max-width: 760px; margin: 0 auto; padding: calc(var(--header-h) + clamp(3rem, 9vw, 7rem)) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 10vw, 8rem); }
.editorial h1 { font-family: var(--font-disp); font-weight: 500; font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 2.5rem; }
.editorial p { font-size: 1.18rem; line-height: 1.85; color: var(--text-soft); margin-bottom: 1.5rem; }
.editorial p:first-of-type { font-size: 1.35rem; line-height: 1.6; color: var(--text); font-family: var(--font-disp); font-weight: 400; letter-spacing: -0.01em; }

.contact-meta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.95rem; color: var(--text-soft); }
.contact-meta a { color: var(--text); border-bottom: 1px solid var(--border); }
.text-link { color: var(--text); border-bottom: 1px solid var(--border-2); transition: border-color 0.3s var(--ease); }
.text-link:hover { border-color: var(--accent); }

/* ---------- About-Seite (zweispaltig, editorial) ---------- */
.about {
  max-width: var(--max-w); margin: 0 auto;
  padding: calc(var(--header-h) + clamp(3rem, 9vw, 7rem)) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 10vw, 8rem);
}
.about-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.about-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.about h1 {
  font-family: var(--font-disp); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.0; letter-spacing: -0.03em;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.about-grid.no-portrait { grid-template-columns: minmax(0, 1fr); max-width: 800px; }
.about-portrait { position: sticky; top: calc(var(--header-h) + 2rem); }
.about-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; background: var(--surface); }

.about-text p { font-size: 1.15rem; line-height: 1.85; color: var(--text-soft); margin-bottom: 1.5rem; }
.about-text p:first-of-type {
  font-size: clamp(1.35rem, 2.2vw, 1.6rem); line-height: 1.5; color: var(--text);
  font-family: var(--font-disp); font-weight: 400; letter-spacing: -0.015em;
  margin-bottom: 2rem;
}

/* Schwerpunkte */
.about-meta { margin-top: 2.8rem; padding-top: 2.2rem; border-top: 1px solid var(--border); }
.about-meta-label { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 1rem; }
.about-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.about-tags li {
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-soft);
  border: 1px solid var(--border-2); border-radius: 999px; padding: 0.4rem 1.1rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.about-tags li:hover { border-color: var(--accent); color: var(--text); }

/* CTAs (Kontakt + Instagram) */
.about-cta { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.8rem; align-items: center; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.7rem; position: relative;
  font-family: var(--font-disp); font-weight: 500; font-size: 1.15rem; letter-spacing: -0.01em;
  color: var(--text); padding-bottom: 0.4rem;
  transition: color 0.35s var(--ease);
}
.link-arrow::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--border-2); transition: background 0.4s var(--ease); }
.link-arrow svg { color: var(--accent); transition: transform 0.4s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { background: var(--accent); }
.link-arrow:hover svg { transform: translateX(6px); }
.link-ig:hover svg { transform: none; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait { position: static; max-width: 380px; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: baseline; justify-content: space-between;
}
.site-footer .brand { font-family: var(--font-disp); font-size: 1.3rem; font-weight: 400; }
.site-footer .links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.site-footer .links a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); transition: color 0.3s var(--ease); }
.site-footer .links a:hover { color: var(--text); }
.site-footer .footer-ig { color: var(--text-soft); display: inline-flex; transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.site-footer .footer-ig:hover { color: var(--accent); transform: translateY(-2px); }
.site-footer .copy { width: 100%; font-size: 0.72rem; color: var(--text-mute); letter-spacing: 0.04em; }
.legal-links { margin-left: 0.5rem; }
.legal-links a { color: var(--text-soft); margin-left: 0.9rem; border-bottom: 1px solid transparent; transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.legal-links a:hover { color: var(--text); border-bottom-color: var(--border-2); }

/* ---------- Rechtstexte (Impressum/Datenschutz) ---------- */
.legal h1 { margin-bottom: 1.8rem; }
.legal .legal-body p { font-family: var(--font-body); font-size: 0.98rem; line-height: 1.8; color: var(--text-soft); margin-bottom: 1.3rem; font-weight: 400; letter-spacing: 0; }
.legal .legal-body p:first-of-type { font-family: var(--font-body); font-size: 0.98rem; line-height: 1.8; color: var(--text-soft); font-weight: 400; letter-spacing: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) { .photo-grid { columns: 3; } }
@media (max-width: 900px)  {
  .photo-grid { columns: 2; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 560px)  {
  .photo-grid { columns: 1; }
  .gallery-cards { grid-template-columns: 1fr; }
  .lightbox-btn { font-size: 1.6rem; padding: 0.8rem; }
}

/* ---------- Kontaktformular (editorial) ---------- */
.contact-form { margin-top: 3.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; }
.form-row { margin-bottom: 2.6rem; }
.form-grid .form-row { margin-bottom: 2.6rem; }

.contact-form label {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 0.7rem;
  transition: color 0.3s var(--ease);
}
.contact-form .req { color: var(--accent); margin-left: 0.15em; }
.contact-form .opt { letter-spacing: 0.08em; text-transform: none; color: var(--text-mute); font-size: 0.66rem; }

/* Rahmenlose Felder mit feiner Haarlinie — passt zur Editorial-Bildsprache */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-2);
  color: var(--text);
  padding: 0.4rem 0 0.75rem;
  font-family: var(--font-disp);
  font-size: 1.25rem; font-weight: 400; letter-spacing: -0.01em;
  border-radius: 0;
  transition: border-color 0.4s var(--ease);
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-mute); font-family: var(--font-body);
  font-size: 1rem; font-weight: 400; letter-spacing: 0;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--accent); }
.form-row:focus-within label { color: var(--text-soft); }
.contact-form textarea { resize: vertical; min-height: 150px; line-height: 1.7; }

/* Honeypot unsichtbar machen — OFF-Screen, nicht display:none (Bots erkennen das) */
.hp-wrap {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
  pointer-events: none;
}

/* Senden-Button: editorialer Text-Button mit gold-werdender Unterlinie + gleitendem Pfeil */
.form-actions { margin-top: 3.2rem; }
.btn-contact {
  display: inline-flex; align-items: center; gap: 1rem;
  position: relative;
  background: transparent; color: var(--text);
  padding: 0.5rem 0 0.9rem;
  font-family: var(--font-disp); font-weight: 500;
  font-size: 1.3rem; letter-spacing: -0.01em;
  border: none; cursor: pointer;
  transition: color 0.35s var(--ease);
}
.btn-contact::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--border-2);
  transition: background 0.4s var(--ease);
}
.btn-contact svg { color: var(--accent); transition: transform 0.4s var(--ease); }
.btn-contact:hover { color: var(--accent); }
.btn-contact:hover::after { background: var(--accent); }
.btn-contact:hover svg { transform: translateX(7px); }
.btn-contact:active svg { transform: translateX(3px); }

/* Formular-Statusmeldungen — schlanke Akzentlinie statt Alert-Box */
.form-notice {
  padding: 0.3rem 0 0.3rem 1.5rem;
  border-left: 2px solid;
  margin-bottom: 2.5rem;
  font-size: 1.05rem; line-height: 1.7;
}
.form-success { border-color: #7fc99a; color: var(--text-soft); }
.form-success strong { display: block; margin-bottom: 0.2rem; color: #a6e3b4; font-weight: 500; font-family: var(--font-disp); font-size: 1.2rem; }
.form-error   { border-color: #d98a8a; color: #e6a8a8; }
.form-error a { color: #f0c0c0; border-bottom: 1px solid rgba(240, 180, 180, 0.4); }

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; gap: 0; }
}
