/* ======================================================
   GRETES TRAUM — Redesign 2026
   Cormorant Garamond + Inter · Burgunder + Gold
   Mobile-first · CSS Custom Properties · Grid/Flexbox
   ====================================================== */

/* Google Fonts werden jetzt per <link> im HTML-Head geladen (kein @import = schneller) */

/* ── Custom Properties ────────────────────────────── */
:root {
  --color-bg:          #f8f6f2;
  --color-bg-alt:      #f0ece4;
  --color-surface:     #ffffff;
  --color-text:        #1e1c19;
  --color-text-muted:  #7a7670;
  --color-accent:      #8b1a2e;
  --color-accent-lt:   #a01f33;
  --color-gold:        #c9a96e;
  --color-border:      #e0dbd3;
  --color-nav-bg:      rgba(14, 12, 10, 0.97);

  --font-display:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:         'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Legacy alias – verwendet in älteren Bereichen */
  --font-serif:        var(--font-display);
  --font-sans:         var(--font-body);

  --space-xs:   0.4rem;
  --space-sm:   0.8rem;
  --space-md:   1.6rem;
  --space-lg:   3.2rem;
  --space-xl:   6.4rem;

  --nav-h:       72px;
  --radius-sm:   3px;
  --radius-md:   6px;
  --transition:  0.28s ease;
  --shadow-card: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-lift: 0 10px 40px rgba(0,0,0,0.14);
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body), sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-accent-lt); }

h1, h2, h3, h4 {
  font-family: var(--font-display), serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }

/* ── Skip Link ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

/* ── Navigation ───────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  transition: background var(--transition);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Brand */
.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  gap: 3px;
}
.nav-brand__title {
  font-family: var(--font-display), serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.nav-brand__sub {
  font-family: var(--font-body), sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Desktop Links */
.nav-links {
  display: none;
  list-style: none;
  gap: 0;
  align-items: center;
}
.nav-links a {
  display: block;
  padding: 0.35rem 0.75rem;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-body), sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-links a:hover { color: rgba(255,255,255,0.95); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }

/* CTA-Button in Nav */
.nav-cta {
  padding: 0.38rem 1rem !important;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 2px;
  color: var(--color-gold) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.12em;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(201,169,110,0.12) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
  transition: transform 0.32s ease, opacity 0.22s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--color-nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  z-index: 999;
  padding: var(--space-sm) var(--space-lg) var(--space-md);
}
.nav-drawer.open { display: block; }

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav-drawer a {
  display: block;
  padding: 0.7rem 0;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body), sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--color-gold); padding-left: 8px; }

/* Etsy-Link im Drawer */
.nav-drawer .nav-drawer-cta {
  margin-top: var(--space-sm);
  padding: 0.6rem 0;
  color: var(--color-gold) !important;
  border-bottom: none !important;
  border-top: 1px solid rgba(201,169,110,0.2) !important;
  font-weight: 400;
}

/* Desktop Nav einblenden */
@media (min-width: 960px) {
  .nav-links { display: flex; align-items: center; }
  .nav-toggle { display: none; }
  .nav-inner { padding: 0 var(--space-xl); }
}

/* ── Page Wrapper ─────────────────────────────────── */
.page-body {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ── Content Container ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 960px) {
  .container { padding: 0 var(--space-xl); }
}

.container--narrow { max-width: 820px; }

/* ── Page Header ──────────────────────────────────── */
.page-header {
  padding: var(--space-lg) 0 var(--space-md);
}
.page-header__eyebrow {
  font-family: var(--font-body), sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  display: block;
}
.page-header h1 {
  color: var(--color-text);
  font-style: italic;
}
.page-header__divider {
  width: 36px;
  height: 1px;
  background: var(--color-gold);
  margin-top: var(--space-sm);
  border: none;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 520px;
  max-height: 1000px;
  overflow: hidden;
  background: #0a0908;
}

.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.72) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--space-lg) var(--space-xl);
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-body), sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.hero__title {
  font-family: var(--font-display), serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.02;
  margin: 0 0 var(--space-sm);
  text-shadow: 0 2px 32px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-family: var(--font-body), sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Scroll-Indikator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body), sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
  50%     { opacity: 0.9; transform: scaleY(0.55); transform-origin: top; }
}

@media (max-width: 640px) {
  .hero__content { padding: 0 var(--space-md) var(--space-xl); }
  .hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__scroll-line { animation: none; }
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-body), sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-lt);
  border-color: var(--color-accent-lt);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ── Section ──────────────────────────────────────── */
.section { padding: var(--space-xl) 0; }
.section--sm { padding: var(--space-lg) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: #0e0c0a;
  color: rgba(240,237,232,0.9);
}
.section--dark .section-title { color: rgba(240,237,232,0.9); }

/* Section Titles */
.section-eyebrow {
  display: block;
  font-family: var(--font-body), sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}
.section-title {
  font-family: var(--font-display), serif;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.section-title--ruled {
  position: relative;
  padding-bottom: var(--space-md);
}
.section-title--ruled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1px;
  background: var(--color-gold);
}

/* ── Intro Split (Startseite) ─────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 760px) {
  .intro-split { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .intro-split {
    grid-template-columns: 5fr 7fr;
    gap: calc(var(--space-xl) * 1.4);
  }
}

.intro-split__image {
  position: relative;
}
.intro-split__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
}
.intro-split__image::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  pointer-events: none;
}

/* ── Gallery Grid ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.08); opacity: 0.85; }
.gallery-item__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  background: rgba(139,26,46,0.28);
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

/* Masonry */
.gallery-masonry {
  columns: 2;
  column-gap: 3px;
}
@media (min-width: 600px) { .gallery-masonry { columns: 3; } }
@media (min-width: 900px) { .gallery-masonry { columns: 4; } }

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  aspect-ratio: unset;
}
.gallery-masonry .gallery-item img { height: auto; width: 100%; }

/* ── Bag Card (Taschen mit Name + Kauflink) ──────── */
.bag-card {
  break-inside: avoid;
  margin-bottom: 3px;
}
.gallery-masonry .bag-card .gallery-item {
  break-inside: auto;
  margin-bottom: 0;
  aspect-ratio: unset;
}
.gallery-item__footer {
  background: var(--color-surface);
  padding: 0.5rem 0.7rem 0.6rem;
  border: 1px solid var(--color-border);
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.gallery-item__name {
  font-family: var(--font-display), serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.3;
}
.buy-btn {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: var(--font-body), sans-serif;
  text-decoration: none;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition);
  width: fit-content;
}
.buy-btn:hover {
  background: var(--color-accent-lt);
  transform: translateY(-1px);
}

/* ── Exhibition Grid ──────────────────────────────── */
.exhibition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) {
  .exhibition-grid { grid-template-columns: repeat(2, 1fr); }
}

.exhibition-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  position: relative;
}
.exhibition-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.exhibition-item:hover img { transform: scale(1.04); }

/* ── News Cards ───────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 560px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.news-card__img-wrap {
  overflow: hidden;
}
.news-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.news-card:hover .news-card__img { transform: scale(1.05); }
.news-card__body { padding: var(--space-md); }
.news-card__date {
  font-family: var(--font-body), sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  display: block;
}
.news-card__title {
  font-family: var(--font-display), serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 6px;
}
.news-card__excerpt {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Legacy News Photos (news.html) */
.news-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.news-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.news-photo:hover img { transform: scale(1.03); }

/* ── Link Cards (Shop & Links) ────────────────────── */
.link-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 500px) {
  .link-cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.link-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(139,26,46,0.18);
  color: var(--color-text);
}
.link-card:hover::before { transform: scaleX(1); }

.link-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: var(--space-xs);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.link-card__platform {
  font-family: var(--font-body), sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.link-card__name {
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
}
.link-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.link-card__arrow {
  margin-top: auto;
  padding-top: var(--space-sm);
  font-family: var(--font-body), sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Prose / Article ──────────────────────────────── */
.prose {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-text);
}
.prose p { margin-bottom: 1.25em; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 500; }
.prose em { font-style: italic; }
.prose a { color: var(--color-accent); }
.prose a:hover { color: var(--color-accent-lt); }

/* ── Bio Layout ───────────────────────────────────── */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (min-width: 700px) {
  .bio-layout { grid-template-columns: 260px 1fr; }
}

.bio-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.bio-photo img { width: 100%; height: auto; display: block; }

/* ── Press Article ────────────────────────────────── */
.press-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (min-width: 700px) {
  .press-layout { grid-template-columns: 1fr 220px; }
}

.press-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  order: -1;
}
@media (min-width: 700px) {
  .press-image { order: 0; }
}

.press-meta {
  font-family: var(--font-body), sans-serif;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

/* ── Contact Card ─────────────────────────────────── */
.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  max-width: 520px;
}
.contact-card h2 {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}
.contact-row__icon {
  font-size: 1rem;
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}
.contact-map-preview {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: var(--space-md);
  border: 1px solid var(--color-border);
}

/* ── Impressum ────────────────────────────────────── */
.impressum-block {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
}
.impressum-block h2 {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-sm);
}
.impressum-block h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  font-family: var(--font-body), sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

/* ── Video Section ────────────────────────────────── */
.video-section { margin-bottom: var(--space-xl); }
.video-section__intro {
  max-width: 680px;
  margin-bottom: var(--space-lg);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 700px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}
.video-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.video-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  object-fit: cover;
}
.video-card__caption {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display), serif;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

/* ── Section Divider ──────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-xl) 0 var(--space-lg);
}
.section-heading {
  font-family: var(--font-display), serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 300;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

/* ── Lightbox ─────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--space-md);
}
.lightbox.open { display: flex; }

.lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 64px rgba(0,0,0,0.7);
  display: block;
  transition: opacity 0.25s;
  user-select: none;
}
.lightbox__close {
  position: absolute;
  top: var(--space-sm); right: var(--space-sm);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 2001;
}
.lightbox__close:hover { background: var(--color-accent); border-color: var(--color-accent); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 2001;
}
.lightbox__nav:hover { background: var(--color-accent); border-color: var(--color-accent); }
.lightbox__prev { left: -56px; }
.lightbox__next { right: -56px; }

@media (max-width: 600px) {
  .lightbox__prev { left: 4px; }
  .lightbox__next { right: 4px; }
  .lightbox__img { max-height: 74vh; }
}

.lightbox__counter {
  margin-top: var(--space-sm);
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ── Page Preloader ───────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #f8f6f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s ease;
}
#page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}
#page-loader__brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: #1e1c19;
  letter-spacing: 0.04em;
}
#page-loader__bar {
  width: 48px;
  height: 1px;
  background: #e0dbd3;
  position: relative;
  overflow: hidden;
}
#page-loader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #c9a96e;
  transform: translateX(-100%);
  animation: loaderSlide 1.4s ease-in-out infinite;
}
@keyframes loaderSlide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ── Scroll Reveal ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: #0e0c0a;
  color: rgba(255,255,255,0.42);
  padding: var(--space-xl) 0 var(--space-lg);
  font-family: var(--font-body), sans-serif;
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr; }
}

.footer-brand {
  font-family: var(--font-display), serif;
  font-size: 1.7rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-sm);
  display: block;
  text-decoration: none;
}
.footer-brand:hover { color: #fff; }

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body), sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col a {
  color: rgba(255,255,255,0.42);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.88); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}
.footer-bottom a {
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── Utilities ────────────────────────────────────── */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-gold  { color: var(--color-gold); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
