/* =====================================================
   SARAH-SOPHIE ISAAKSON — Künstler-Website
   Design: Weiß dominant · Cormorant Garamond + Inter
   Akzentfarben: RAL 2003 / RAL 3015 / RAL 1019
   ===================================================== */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  --white:        #ffffff;
  --off-white:    #faf9f7;
  --soft-grey:    #f4f3f0;
  --border:       #e8e5e0;

  /* RAL Akzentfarben */
  --orange:       #E8783C;   /* RAL 2003 Pastellorange */
  --rose:         #DFA0AE;   /* RAL 3015 Hellrosa */
  --greybeige:    #A69B8B;   /* RAL 1019 Graubeige */

  /* Typografie */
  --ink:          #1a1815;
  --ink-mid:      #4a4540;
  --ink-light:    #8a837a;

  /* Schriften */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Abstände */
  --section-pad:  6rem 0;
  --container:    1200px;
  --radius:       4px;

  /* Schatten */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 24px 60px rgba(0,0,0,0.14);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { font-size: 1rem; line-height: 1.75; color: var(--ink-mid); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--greybeige);
  margin-bottom: 1.2rem;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); }

.btn-danger {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #c0392b;
  color: #fff;
  font-size: 0.82rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.btn-danger:hover { background: #a93226; }

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-mid);
}
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.btn-cookie-accept {
  padding: 0.6rem 1.4rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--orange); }
.btn-cookie-link { font-size: 0.82rem; color: var(--greybeige); text-decoration: underline; }
.cookie-banner.hidden { display: none; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { display: block; }
@media (max-width: 480px) {
  .nav-logo svg { width: 180px; height: 27px; }
}
.logo-img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--orange); }

.nav-artvision { display: flex; align-items: center; }
.nav-artvision-logo { height: 22px; width: auto; opacity: 0.85; transition: opacity 0.2s; }
.nav-artvision-logo:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.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); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  padding-top: 68px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}
.hero-image-col {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.15));
}
.hero-text-col {
  display: flex;
  align-items: center;
  padding: 4rem 3rem 4rem 4rem;
  background: var(--white);
}
.hero-content { max-width: 520px; }

.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}
.hero-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}
.hero-tagline {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-artvision {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-artvision-label {
  font-size: 0.75rem;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}
.hero-artvision-img { height: 24px; width: auto; opacity: 0.7; transition: opacity 0.2s; }
.hero-artvision-img:hover { opacity: 1; }

/* =====================================================
   ÜBER SARAH
   ===================================================== */
.section-ueber {
  padding: var(--section-pad);
  background: var(--white);
}
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ueber-images {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.ueber-img-main img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.ueber-img-secondary img {
  width: 60%;
  margin-left: auto;
  border-radius: 2px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}

.ueber-text h2 { margin-bottom: 2rem; color: var(--ink); }
.ueber-text p { margin-bottom: 1.5rem; }

.ueber-background {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.background-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tag {
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  background: var(--soft-grey);
  border-radius: 20px;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
}
.background-note { font-size: 0.9rem; color: var(--ink-light); font-style: italic; }

/* =====================================================
   ATELIER GALERIE
   ===================================================== */
.section-atelier {
  padding: 0;
  background: var(--off-white);
}
.atelier-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 320px;
  gap: 3px;
}
/* Obere Reihe: 3 gleichmäßige Felder */
.atelier-cell--md {
  overflow: hidden;
}
/* Untere Reihe: 2 breitere Felder */
.atelier-cell--lg {
  overflow: hidden;
  grid-column: span 1;
}
/* Die 2 unteren sollen 1.5 Spalten breit sein */
.atelier-cell--lg:nth-child(4) {
  grid-column: 1 / span 2;
}
.atelier-cell--lg:nth-child(5) {
  grid-column: 3 / span 1;
}
.atelier-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.atelier-cell:hover img { transform: scale(1.04); }

.atelier-caption {
  text-align: center;
  padding: 1rem 0 0.5rem;
  background: var(--off-white);
}
.atelier-caption p {
  font-size: 0.82rem;
  color: var(--greybeige);
  font-style: italic;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .atelier-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .atelier-cell--lg:nth-child(4) { grid-column: 1 / span 2; }
  .atelier-cell--lg:nth-child(5) { grid-column: 1 / span 2; }
}
@media (max-width: 480px) {
  .atelier-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .atelier-cell--lg:nth-child(4),
  .atelier-cell--lg:nth-child(5) { grid-column: 1; }
}

/* =====================================================
   KÜNSTLERISCHER ANSATZ
   ===================================================== */
.section-kunst {
  padding: var(--section-pad);
  background: var(--white);
}
.kunst-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.kunst-inner h2 { margin-bottom: 1.5rem; color: var(--ink); }
.kunst-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 640px;
  margin: 0 auto 4rem;
}
.kunst-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}
.pillar {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pillar:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--rose);
}
.pillar-icon {
  font-size: 1rem;
  color: var(--rose);
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.pillar p { font-size: 0.875rem; color: var(--ink-light); line-height: 1.65; }

/* =====================================================
   TECHNIK
   ===================================================== */
.section-technik {
  padding: var(--section-pad);
  background: var(--off-white);
}
.technik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.technik-text h2 { margin-bottom: 1.5rem; }
.technik-text > p { margin-bottom: 2rem; }
.technik-list { display: flex; flex-direction: column; gap: 1.5rem; }
.technik-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.technik-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 0.4rem;
}
.technik-list strong { display: block; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
.technik-list p { font-size: 0.875rem; margin: 0; }

.technik-image img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .technik-image img {
    aspect-ratio: 4/3;
    object-position: right 10%;
  }
}

/* =====================================================
   WERKE / GALERIE
   ===================================================== */
.section-werke {
  padding: var(--section-pad);
  background: var(--white);
}
.werke-header {
  text-align: center;
  margin-bottom: 4rem;
}
.werke-header h2 { margin-bottom: 1rem; }
.werke-header p { max-width: 500px; margin: 0 auto; color: var(--ink-mid); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.gallery-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.2s;
}
.gallery-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .card-image img { transform: scale(1.04); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,21,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .card-overlay { opacity: 1; }
.btn-lightbox {
  background: var(--white);
  color: var(--ink);
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-lightbox:hover { background: var(--orange); color: var(--white); }

.card-info { padding: 1.5rem; }
.card-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.card-size, .card-technique {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 0.2rem;
}
.card-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--orange);
  margin: 0.5rem 0 1rem;
}
.btn-inquiry {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-inquiry:hover { color: var(--orange); border-color: var(--orange); }

.werke-artvision {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--soft-grey);
  border-radius: var(--radius);
}
.werke-artvision p { margin-bottom: 1.5rem; }
.btn-artvision-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s;
}
.btn-artvision-shop:hover { box-shadow: var(--shadow-sm); }
.btn-artvision-logo { height: 28px; width: auto; }
.btn-artvision-shop span { font-size: 0.85rem; font-weight: 500; color: var(--ink-mid); }

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }
.lightbox-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}
#lightboxImg {
  max-height: 80vh;
  max-width: 60%;
  object-fit: contain;
  border-radius: 2px;
}
@media (max-width: 480px) {
  .lightbox { padding: 1rem; }
  #lightboxImg { max-width: 100%; max-height: 45vh; }
  .lightbox-info h3 { font-size: 1.4rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}
.lightbox-info { color: var(--white); max-width: 300px; }
.lightbox-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.8rem;
}
.lightbox-info p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-bottom: 2rem; }
.lightbox-info .btn-primary { background: var(--white); color: var(--ink); }
.lightbox-info .btn-primary:hover { background: var(--orange); color: var(--white); }

/* =====================================================
   KONTAKT
   ===================================================== */
.section-kontakt {
  padding: var(--section-pad);
  background: var(--off-white);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.kontakt-text h2 { margin-bottom: 1.5rem; }
.kontakt-text p { margin-bottom: 1.5rem; }
.kontakt-direct {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.kontakt-direct a {
  font-size: 0.9rem;
  color: var(--orange);
  transition: color 0.2s;
}
.kontakt-direct a:hover { color: var(--ink); }
.kontakt-img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  box-shadow: var(--shadow-sm);
}

/* Kontaktformular */
.kontakt-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
}
.optional { color: var(--ink-light); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }
/* Custom Checkbox */
.form-checkbox-wrap { margin-top: 0.5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.6;
  position: relative;
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.checkbox-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #c8c4be;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 1px;
}
.checkbox-box::after {
  content: '';
  display: none;
  width: 6px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.checkbox-label input:checked ~ .checkbox-box {
  background: var(--orange);
  border-color: var(--orange);
}
.checkbox-label input:checked ~ .checkbox-box::after {
  display: block;
}
.checkbox-label:hover .checkbox-box {
  border-color: var(--orange);
}
.checkbox-text { font-size: 0.82rem; color: var(--ink-mid); }
.checkbox-text a { color: var(--orange); text-decoration: underline; pointer-events: all; }
.form-success { color: #2d7a4a; font-size: 0.9rem; margin-top: 0.5rem; }
.form-error { color: #c0392b; font-size: 0.9rem; margin-top: 0.5rem; }

/* =====================================================
   LEGAL SECTIONS
   ===================================================== */
.section-legal {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.section-legal h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--ink);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2rem 0 0.5rem;
}
.legal-content p, .legal-content li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-mid);
}
.legal-content a { color: var(--orange); text-decoration: underline; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo { height: auto; width: auto; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-artvision { display: inline-block; margin-top: 1.5rem; }
.footer-artvision img { height: 24px; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity 0.2s; }
.footer-artvision img:hover { opacity: 0.9; }

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a, .footer-links p, .footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links li a:hover, .footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* =====================================================
   ADMIN DASHBOARD
   ===================================================== */
.admin-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 7000;
  box-shadow: var(--shadow-md);
  opacity: 0.35;
  transition: opacity 0.2s;
}
.admin-trigger:hover { opacity: 1; }

.admin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.admin-overlay[hidden] { display: none; }
.admin-modal {
  background: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.admin-header h2 { font-size: 1.4rem; font-family: var(--font-display); }
.admin-close {
  background: none;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-section { padding: 2rem; }
.admin-section h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1.2rem; }
#adminPassword {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  width: 280px;
  margin-right: 0.75rem;
}
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-actions { display: flex; gap: 0.75rem; }
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.admin-table th {
  background: var(--soft-grey);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--ink-mid);
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-table tr:hover td { background: var(--soft-grey); }
.btn-delete-row {
  background: none;
  border: none;
  color: #c0392b;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}
.admin-hint {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fffbf0;
  border: 1px solid #f0e0a0;
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: #7a6020;
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 1fr; }
  .ueber-grid { gap: 3rem; }
  .technik-grid { gap: 3rem; }
  .kontakt-grid { gap: 3rem; }
  .kunst-pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }
  .nav-artvision { padding: 0.75rem 2rem; }
  .nav-toggle { display: flex; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-image-col { height: 55vw; min-height: 280px; }
  .hero-text-col { padding: 3rem 1.5rem; }
  .hero-buttons { flex-direction: column; }

  .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ueber-img-secondary img { width: 50%; }

  .atelier-strip { grid-template-columns: repeat(3, 1fr); }
  .atelier-item:nth-child(4),
  .atelier-item:nth-child(5) { display: none; }

  .kunst-pillars { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .technik-grid { grid-template-columns: 1fr; }
  .technik-image { order: -1; }

  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-img { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .lightbox-content { flex-direction: column; }
  #lightboxImg { max-width: 100%; max-height: 50vh; }

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

  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .atelier-strip { grid-template-columns: repeat(2, 1fr); }
  .atelier-item:nth-child(3) { display: none; }
  .kunst-pillars { grid-template-columns: 1fr; }
  .hero-image-col { height: 70vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .hero-name { font-size: 2rem; }
  .hero-tagline { font-size: 0.9rem; }
  .hero-buttons { gap: 0.75rem; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; text-align: center; padding: 1rem; }
  .container { padding: 0 1.25rem; }
  .section-ueber { padding: 3rem 0; }
  .cookie-banner { left: 0; right: 0; bottom: 0; border-radius: 12px 12px 0 0; }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .atelier-item img, .card-image img { transition: none; }
}

.footer-legal-link {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: rgba(255,255,255,0.7); }

/* =====================================================
   LEGAL MODALS — Impressum & Datenschutz
   ===================================================== */
.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}
.legal-modal[hidden] { display: none !important; }

.legal-modal-inner {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e8e5e0;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.legal-modal-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1815;
  margin: 0;
}
.legal-modal-close {
  background: none;
  border: 1px solid #e8e5e0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  color: #1a1815;
}
.legal-modal-close:hover { background: #f4f3f0; }
.legal-modal-body {
  overflow-y: auto;
  padding: 2rem;
  flex: 1;
}
.legal-modal-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1815;
  margin: 1.5rem 0 0.4rem;
}
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #4a4540;
  margin-bottom: 0.5rem;
}
.legal-modal-body a { color: #E8783C; text-decoration: underline; }
.legal-note {
  font-size: 0.82rem;
  color: #c0392b;
  background: #fdf2f0;
  border: 1px solid #f5b8b0;
  padding: 0.65rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

/* =====================================================
   INSTAGRAM LINK
   ===================================================== */
.insta-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.insta-link:hover { color: #E1306C; }

.footer-insta {
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  font-size: 0.82rem;
}
.footer-insta:hover { color: #E1306C; }
.footer-insta span {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* Mobile Instagram nav */
@media (max-width: 768px) {
  .nav-links .insta-link {
    padding: 0.85rem 2rem;
    color: var(--ink-mid);
  }
  .footer-insta { margin-top: 0.75rem; }
}

/* =====================================================
   ACCESSIBILITY & SEO
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0 0 4px 4px;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* =====================================================
   FOCUS STYLES - Keyboard Navigation
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
  .navbar, .cookie-banner, .admin-trigger, #adminOverlay,
  .hero-buttons, .btn-inquiry, .lightbox { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
  .container { max-width: 100%; }
}

/* =====================================================
   LINK-STYLE BUTTONS (Modal-Trigger)
   ===================================================== */
.link-btn {
  background: none;
  border: none;
  color: var(--orange);
  text-decoration: underline;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: inherit;
  padding: 0;
  display: inline;
}
.link-btn:hover { color: var(--ink); }

button.footer-legal-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  padding: 0;
  transition: color 0.2s;
}
button.footer-legal-link:hover { color: rgba(255,255,255,0.7); }

button.btn-cookie-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--greybeige);
  text-decoration: underline;
  padding: 0;
}
