/* ══════════════════════════════════════════
   P. Schumacher – Kunst Atelier
   Gemeinsames Stylesheet für alle Seiten
   ══════════════════════════════════════════ */

/* ── RESET & CUSTOM PROPERTIES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:   #F5F0E8;
  --warm:   #EDE6D8;
  --text:   #1E1A16;
  --muted:  #7A7168;
  --accent: #3D2B1A;
  --accent_custom:#163333;
  --line:   rgba(30,26,22,0.15);
  --nav-h:  68px;
  --page-max: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--sand);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}


/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--sand);
  border-bottom: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, calc((100vw - var(--page-max)) / 2 + 3rem));
  z-index: 200;
}

nav .logo img { height: 38px; display: block; }

nav ul { list-style: none; display: flex; gap: 2rem; }

nav ul a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active { color: var(--text); }


nav ul a {
  position: relative;
  display: inline-block;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

nav ul a:hover::after,
nav ul a.active::after {
  transform: scaleX(1);
}



.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s;
}


/* ── SHARED SECTION STYLES ── */
section {
  padding: 7rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw);
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--line);
}

.gallery-bg   { background: var(--warm); }
.services-bg  { background: var(--warm); }


/* ── SHARED BUTTON ── */
.btn-outline {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 0.5px solid var(--accent);
  padding: 0.85rem 2rem;
  transition: background 0.25s, color 0.25s;
  width: fit-content;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--sand);
}


/* ── SHARED FOOTER ── */
footer {
  background: var(--accent_custom);
  color: rgba(245,240,232,0.7);
  padding: 5rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw) 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

footer h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
}

footer address {
  font-style: normal;
  font-size: 14px;
  line-height: 2;
}

footer a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  font-size: 14px;
  line-height: 2.2;
  display: block;
  transition: color 0.2s;
}

footer a:hover { color: var(--sand); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(245,240,232,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245,240,232,0.4);
}


/* ════════════════════════════════
   INDEX – spezifische Stile
   ════════════════════════════════ */

/* Hero */
.hero {
  margin-top: var(--nav-h);
  height: 55vh;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 3rem;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-title em { font-style: italic; }

.hero-sub {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
  display: flex;
  gap: 1.5rem;
}

.hero-sub span::after { content: '·'; margin-left: 1.5rem; }
.hero-sub span:last-child::after { content: ''; margin: 0; }

.hero-image { position: relative; overflow: hidden; }

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-header-custom {
  margin-top: var(--nav-h);
  padding: 5rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw) 3rem;
  background: var(--warm);
  border-bottom: 0.5px solid var(--line);
}

.teamevent-header-custom h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--accent);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.teamevent-header-custom h1 em { font-style: italic; }

.teamevent-header-custom .lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 15px;
}

.about-content .btn-outline { margin-top: 2rem; }

/* Gallery preview (Startseite) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

.gallery-item:hover img { transform: scale(1.04); }

/* Inspiration */
.insp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.insp-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--sand);
  padding: 3rem 2.5rem;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: background 0.25s;
}

.service-card:hover { background: var(--accent); color: var(--sand); }
.service-card:hover .service-num,
.service-card:hover h3,
.service-card:hover p { color: inherit; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.25s;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: color 0.25s;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.25s;
}


/* ════════════════════════════════
   GALERIE – spezifische Stile
   ════════════════════════════════ */

.page-header {
  margin-top: var(--nav-h);
  padding: 5rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw) 3rem;
  background: var(--warm);
  border-bottom: 0.5px solid var(--line);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--accent);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.page-header h1 em { font-style: italic; }

.intro-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.intro-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.intro-toggle:hover { color: var(--text); }

.intro-toggle::after { content: '↓'; transition: transform 0.3s; }
.intro-toggle.open::after { transform: rotate(180deg); }

.intro-long {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  display: none;
}

.intro-long.open { display: block; }

/* Artwork list */
.gallery-section { padding: 4rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw) 6rem; }

.paintings-list { display: flex; flex-direction: column; gap: 0; }

.artwork {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--line);
  padding: 4rem 0;
}

.artwork:nth-child(even) { direction: rtl; }
.artwork:nth-child(even) > * { direction: ltr; }

.artwork-images {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.artwork-main {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: left top;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

.artwork-thumbnails {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.artwork-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  border: 0.5px solid transparent;
}

.artwork-thumbnails img:hover,
.artwork-thumbnails img.active { opacity: 1; border-color: var(--accent); }

.artwork-info {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artwork-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1rem;
}

.artwork-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artwork-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.artwork-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--line);
}

.artwork-meta span { display: flex; gap: 0.75rem; }
.artwork-meta strong { color: var(--text); font-weight: 400; }

.artwork-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
}

.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
  border: none;
}

.badge-sold    { color: #8B3A2A; }
.badge-reserve { color: #5A6B3A; }
.badge-nfs     { color: var(--muted); }

.btn-contact {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 0.5px solid var(--accent);
  padding: 0.85rem 2rem;
  transition: background 0.25s, color 0.25s;
  width: fit-content;
  margin-top: 0.5rem;
}

.btn-contact:hover { background: var(--accent); color: var(--sand); }


/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 768px) {

  nav { padding: 0 1.5rem; }

  nav ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--sand);
    padding: 0 1.5rem;
    border-bottom: 0.5px solid var(--line);
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  nav ul.open {
    max-height: 400px;
    opacity: 1;
    padding: 2rem 1.5rem;
  }
  .nav-toggle { display: block; }

  section { padding: 5rem 1.5rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 50vw; order: -1; }
  .hero-text { padding: 3rem 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }

  .insp-grid { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; gap: 2rem; }

  .page-header { padding: 4rem 1.5rem 2.5rem; }
  .gallery-section { padding: 2rem 1.5rem 4rem; }

  .artwork {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }

  .artwork:nth-child(even) { direction: ltr; }
  .artwork-info { padding: 1.5rem 0 0; }
  .artwork-number { font-size: 3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}


/* ════════════════════════════════
   TEAMEVENTS – spezifische Stile
   ════════════════════════════════ */

.teamevent-header {
  margin-top: var(--nav-h);
  padding: 5rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw) 3rem;
  background: var(--warm);
  border-bottom: 0.5px solid var(--line);
}

.teamevent-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--accent);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.teamevent-header h1 em { font-style: italic; }

.teamevent-header .lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
}

.content-section { padding: 6rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw); }
.content-section.alt { background: var(--warm); }

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-block img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

.content-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 1rem;
}

.content-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-text h2 em { font-style: italic; }

.content-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.content-text p:last-child { margin-bottom: 0; }

.content-text .rule {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.info-bar {
  background: var(--accent);
  padding: 4rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw);
}

.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.info-item .info-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(245,240,232,0.3);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.info-item h3 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.info-item p {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
}

.info-item a {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.info-item a:hover { color: var(--sand); }

.photo-pair { padding: 0 clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw) 6rem; }

.photo-pair-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.photo-pair-inner img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

.cta-section {
  padding: 6rem clamp(1.5rem, calc((100vw - var(--page-max)) / 2 + 3rem), 50vw);
  text-align: center;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-section h2 em { font-style: italic; }

.cta-section p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.cta-section .btn-outline { margin: 0 auto; }

@media (max-width: 768px) {
  .teamevent-header { padding: 4rem 1.5rem 2.5rem; }
  .content-section { padding: 4rem 1.5rem; }
  .content-block,
  .content-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .info-bar { padding: 3rem 1.5rem; }
  .info-bar-inner { grid-template-columns: 1fr; gap: 2rem; }
  .photo-pair { padding: 0 1.5rem 4rem; }
  .photo-pair-inner { grid-template-columns: 1fr; }
  .cta-section { padding: 4rem 1.5rem; }
}


/* ════════════════════════════════
   WORKSHOPS – spezifische Stile
   ════════════════════════════════ */

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.workshop-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.workshop-grid img:hover { opacity: 0.85; }

.cta-section[style] { background: var(--warm); }

@media (max-width: 768px) {
  .workshop-grid { grid-template-columns: 1fr 1fr; }
}



.workshop-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.workshop-grid-3 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

.workshop-grid-3 img:hover { opacity: 0.85; }

.cta-section[style] { background: var(--warm); }

@media (max-width: 768px) {
  .workshop-grid-3 { grid-template-columns: 1fr 1fr; }
}


/* ════════════════════════════════
   KONTAKT – spezifische Stile
   ════════════════════════════════ */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--line);
  font-size: 14px;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-details a:hover { opacity: 0.7; }

.contact-details span { color: var(--muted); }

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.contact-strip img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(30,26,22,0.25));
}

.exhibitions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.exhibition-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exhibition-year {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid var(--line);
}

.exhibition-year:last-child { border-bottom: none; }

.ex-year-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  padding-top: 2px;
}

.ex-entries {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ex-entry {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 14px;
}

.ex-title { color: var(--text); }

.ex-place {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-strip { grid-template-columns: 1fr; gap: 0.75rem; }

  .exhibition-year { grid-template-columns: 70px 1fr; gap: 1rem; }

  .ex-entry { flex-direction: column; gap: 0.1rem; }

  .ex-place { font-size: 12px; }
}


/* ════════════════════════════════
   AKTUELL – spezifische Stile
   ════════════════════════════════ */

.aktuell-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.event-empty {
  padding: 5rem 0;
  text-align: center;
  border: 0.5px solid var(--line);
}

.event-empty-icon {
  font-size: 2rem;
  color: var(--line);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.event-empty p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.event-empty .btn-outline {
  display: inline-block;
  margin: 0 auto;
}

.event-card {
  padding: 3rem 0;
  border-bottom: 0.5px solid var(--line);
}

.event-card:last-child { border-bottom: none; }

.event-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-date {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.event-status {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 0.5px solid currentColor;
}

.event-status--live   { color: #4A6B3A; }
.event-status--past   { color: var(--muted); }
.event-status--soon   { color: #8B5A2A; }

.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.event-location {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.event-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 680px;
  margin-bottom: 2rem;
}

.event-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.past-list {
  display: flex;
  flex-direction: column;
}

.past-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--line);
  align-items: baseline;
}

.past-item:last-child { border-bottom: none; }

.past-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--accent);
}

.past-details {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.past-title  { color: var(--text);  font-size: 14px; }
.past-location { color: var(--muted); font-size: 13px; white-space: nowrap; flex-shrink: 0; }

@media (max-width: 768px) {
  .past-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .past-details { flex-wrap: wrap; }
  .past-title, .past-location { order: unset; }
  .event-images { grid-template-columns: 1fr 1fr; }
}


/* ════════════════════════════════
   AGB / RECHTLICHE SEITEN
   ════════════════════════════════ */

.agb-inner {
  max-width: 740px;
  margin: 0 auto;
}

.agb-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 0.5px solid var(--line);
}

.agb-block:last-of-type { border-bottom: none; }

.agb-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.agb-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.agb-block p:last-child { margin-bottom: 0; }

.agb-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.agb-meta span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .agb-meta { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════
   SCROLL TO TOP BUTTON
   ════════════════════════════════ */

#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent_custom);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 300;
}

#scrollTopBtn svg {
  width: 18px;
  height: 18px;
  color: var(--sand);
}

#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background: var(--accent);
}

