/* ==========================================================================
   angekommen.art — Editorial Fine Art & Architecture Design System
   ========================================================================== */

:root {
  /* Editorial Palette */
  --bg-primary: #FAF7F2;
  --bg-secondary: #F4ECE1;
  --bg-card: #FFFFFF;
  --bg-dark: #1E2022;
  
  --text-primary: #1E2022;
  --text-secondary: #5A5D62;
  --text-muted: #8A8D93;
  --text-on-dark: #FAF7F2;

  /* Artistic Accent Pigments (Magenta Accent Palette #8E1F5C) */
  --accent-berry: #8E1F5C;
  --accent-berry-light: #AA3274;
  --accent-berry-subtle: rgba(142, 31, 92, 0.08);
  
  --accent-terracotta: #8E1F5C;
  --accent-terracotta-light: #AA3274;
  
  --accent-sage: #5B6E64;
  --accent-sage-light: #758B7F;

  --accent-teal: #8E1F5C;
  --accent-teal-light: #AA3274;
  --accent-teal-subtle: rgba(142, 31, 92, 0.12);

  --border-delicate: #E7DFD5;
  --border-light: #F0E9DF;
  --border-focus: #8E1F5C;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-signature: 'Caveat', cursive, sans-serif;

  /* Elevation & Shadows */
  --shadow-artwork: 0 20px 45px -15px rgba(30, 32, 34, 0.12), 0 0 1px rgba(30, 32, 34, 0.08);
  --shadow-card: 0 10px 30px -10px rgba(30, 32, 34, 0.06), 0 1px 3px rgba(30, 32, 34, 0.04);
  --shadow-elevated: 0 30px 60px -20px rgba(30, 32, 34, 0.18);
  
  /* Layout Transitions */
  --ease-editorial: cubic-bezier(0.25, 1, 0.5, 1);
  --radius-subtle: 4px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.editorial-body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  position: relative;
  overflow-x: hidden;
}

/* Subtle Cotton Texture Overlay */
.paper-texture-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: radial-gradient(var(--text-primary) 1px, transparent 0);
  background-size: 24px 24px;
}

/* Ambient Subtle Watercolor Washes in Background */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}

.glow-1 {
  top: 5%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-berry-subtle) 0%, rgba(250, 247, 242, 0) 70%);
}

.glow-2 {
  top: 35%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91, 110, 100, 0.06) 0%, rgba(250, 247, 242, 0) 70%);
}

.glow-3 {
  top: 70%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(196, 125, 92, 0.06) 0%, rgba(250, 247, 242, 0) 70%);
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
}

.italic-serif {
  font-style: italic;
  font-weight: 300;
}

.highlight-serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: inherit;
}

p.body-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

p.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s var(--ease-editorial);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-berry);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   BUTTONS & EDITORIAL CONTROLS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-subtle);
  cursor: pointer;
  transition: all 0.3s var(--ease-editorial);
  border: 1px solid transparent;
}

.btn-editorial-primary {
  background-color: #4B4B4D;
  color: #FFFFFF;
  font-weight: 500;
  border-color: #4B4B4D;
}

.btn-editorial-primary:hover {
  background-color: #8E1F5C;
  border-color: #8E1F5C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(142, 31, 92, 0.45);
}

.btn-editorial-outline {
  background-color: #4B4B4D;
  color: #FFFFFF;
  font-weight: 500;
  border-color: #4B4B4D;
}

.btn-editorial-outline:hover {
  background-color: #8E1F5C;
  border-color: #8E1F5C;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(142, 31, 92, 0.4);
}

.btn-editorial-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.9rem 1.2rem;
}

.btn-editorial-ghost:hover {
  color: var(--text-primary);
}

.btn-editorial-ghost .scroll-cue {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn-editorial-ghost:hover .scroll-cue {
  transform: translateY(3px);
}

.btn-large {
  padding: 1.1rem 2.2rem;
  font-size: 0.95rem;
}

.full-width {
  width: 100%;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 223, 213, 0.6);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(250, 247, 242, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}

.brand-logo .logo-text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent-teal);
}

.brand-logo .logo-dot {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--accent-teal);
}

.brand-logo .logo-tag {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent-teal);
  margin-left: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--accent-berry);
  transition: width 0.3s var(--ease-editorial);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle .bar {
  width: 100%;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-drawer {
  display: none;
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: 8.5rem;
  padding-bottom: 6rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-delicate);
}

.hero-brand-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.edition-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--accent-berry);
}

.edition-line {
  width: 30px;
  height: 1px;
  background-color: var(--border-delicate);
}

.edition-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1.8rem;
}

.hero-headline span {
  display: block;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-footnotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-delicate);
}

.footnote-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-berry);
  margin-bottom: 0.2rem;
}

.footnote-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: block;
}

/* Hero Showcase Frame */
.artwork-showcase-card {
  position: relative;
}

.passepartout-frame {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: var(--shadow-artwork);
  border: 1px solid #EBE4D8;
  position: relative;
  transition: transform 0.5s var(--ease-editorial);
}

.passepartout-frame:hover {
  transform: translateY(-4px);
}

.paper-canvas {
  background: #FAF6EE;
  overflow: hidden;
  position: relative;
  border: 1px solid #E5DDCF;
}

.hero-artwork-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-editorial);
}

.passepartout-frame:hover .hero-artwork-img {
  transform: scale(1.02);
}

.artwork-plaque {
  margin-top: 1rem;
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid #F0E8DC;
}

.plaque-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
}

.plaque-detail {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.floating-art-tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: var(--text-primary);
  color: #FAF7F2;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tag-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-terracotta-light);
  animation: pulseTag 2s infinite ease-in-out;
}

@keyframes pulseTag {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

/* ==========================================================================
   SECTION 2: DIE IDEE
   ========================================================================== */

.idea-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-delicate);
  border-bottom: 1px solid var(--border-delicate);
}

.editorial-quote-block {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 5rem;
  position: relative;
}

.quote-symbol {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-berry);
  opacity: 0.35;
  margin-bottom: 0.8rem;
  display: block;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.4;
  color: var(--text-primary);
  font-weight: 300;
}

.idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.idea-story-card {
  padding-right: 2rem;
}

.idea-visual-card .art-card-inner {
  background: #FFFFFF;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-delicate);
  box-shadow: var(--shadow-card);
  position: relative;
}

.stamp-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.card-subhead {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.concept-list {
  list-style: none;
}

.concept-list li {
  margin-bottom: 1.4rem;
  padding-left: 1.4rem;
  position: relative;
}

.concept-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-berry);
}

.concept-list li strong {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.concept-list li span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 3: VOM FOTO ZUM KUNSTWERK
   ========================================================================== */

.section-header-editorial {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-delicate);
}

.header-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-journey {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-delicate);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-editorial), box-shadow 0.3s var(--ease-editorial);
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-artwork);
}

.process-step-card.highlight-step {
  border-color: var(--accent-berry-light);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF6EE 100%);
}

.step-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.step-badge.badge-accent {
  color: var(--accent-berry);
}

.step-preview-box {
  background: #F5EFE6;
  border: 1px solid #EBE4D8;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-editorial);
}

.process-step-card:hover .process-step-img {
  transform: scale(1.03);
}

.photo-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(30, 32, 34, 0.75);
  backdrop-filter: blur(4px);
  color: #FAF7F2;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  letter-spacing: 0.03em;
}

.photo-tag.tag-gold {
  background: var(--accent-berry);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Material & Finish Options Banner */
.process-materials-banner {
  margin-top: 3.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-delicate);
  padding: 1.75rem 2.25rem;
  border-radius: var(--radius-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.materials-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid var(--border-delicate);
}

.materials-badge .badge-icon {
  color: var(--accent-berry);
  font-size: 1rem;
}

.materials-badge .badge-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
}

.materials-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.materials-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 4: FÜR IMMOBILIENMAKLER
   ========================================================================== */

.makler-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-delicate);
}

.makler-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}

.makler-benefits-editorial {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.benefit-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent-berry);
  line-height: 1;
  padding-top: 0.1rem;
}

.benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.benefit-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.makler-cta-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.makler-subnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.makler-curated-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-delicate);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.curated-badge {
  position: absolute;
  top: -12px;
  left: 2.5rem;
  background: var(--accent-berry);
  color: #FAF7F2;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  font-weight: 500;
}

.mockup-frame {
  background: #FFFFFF;
  padding: 1.25rem;
  box-shadow: var(--shadow-artwork);
  border: 1px solid #EBE3D7;
  margin-bottom: 2rem;
}

.mockup-matting {
  border: 1px solid #E5DDCF;
  background: #FAF6EE;
  overflow: hidden;
}

.makler-artwork-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-editorial);
}

.mockup-frame:hover .makler-artwork-img {
  transform: scale(1.02);
}

.makler-headline-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-berry);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.makler-quote-box {
  border-top: 1px solid var(--border-delicate);
  padding-top: 1.5rem;
}

.makler-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.makler-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 5: FÜR EIGENTÜMER & HERZENSORTE
   ========================================================================== */

.owners-section {
  background-color: var(--bg-primary);
}

.section-header-centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4.5rem;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.owners-occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.occasion-card {
  background: #FFFFFF;
  border: 1px solid var(--border-delicate);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-editorial);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.occasion-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-berry);
}

.occasion-index {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--accent-terracotta);
  margin-bottom: 1.25rem;
}

.occasion-title {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.occasion-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.occasion-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-berry);
  font-weight: 600;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

/* ==========================================================================
   SECTION 6: GALERIE / BEISPIELE
   ========================================================================== */

.gallery-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-delicate);
  border-bottom: 1px solid var(--border-delicate);
}

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-delicate);
}

.gallery-header-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.gallery-count {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-delicate);
  border-radius: 20px;
  background: #FAF7F2;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Asymmetric Editorial Grid */
.editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3.5rem 2.5rem;
}

.gallery-item {
  transition: transform 0.3s ease;
}

.gallery-item.item-large {
  grid-column: span 7;
}

.gallery-item.item-medium {
  grid-column: span 5;
}

.artwork-wrapper {
  background: #FFFFFF;
  padding: 1.2rem;
  border: 1px solid var(--border-delicate);
  box-shadow: var(--shadow-artwork);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-editorial);
}

.gallery-item:hover .artwork-wrapper {
  transform: translateY(-4px);
}

.artwork-matting-container {
  border: 1px solid #EBE4D8;
  background: #FAF6EE;
}

.gallery-svg,
.gallery-artwork-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-editorial);
}

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

.item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 32, 34, 0.4);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artwork-wrapper:hover .item-overlay {
  opacity: 1;
}

.zoom-btn {
  background: #FAF7F2;
  color: var(--text-primary);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-subtle);
  font-weight: 500;
}

/* Editorial Content Block Below Each Artwork */
.item-editorial-body {
  margin-top: 1.4rem;
}

.item-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.item-location {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-berry);
  font-weight: 600;
}

.item-dimensions {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.item-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.item-medium-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-delicate);
}

.item-story-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   SECTION 7: ÜBER MICH
   ========================================================================== */

.artist-section {
  background-color: var(--bg-primary);
}

.artist-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.artist-portrait-col {
  position: relative;
}

.artist-photo-frame {
  background: #FFFFFF;
  padding: 1.5rem;
  border: 1px solid var(--border-delicate);
  box-shadow: var(--shadow-artwork);
  position: relative;
}

.atelier-visual-box {
  background: #F4EDE4;
  border: 1px solid #E8DFD3;
  overflow: hidden;
}

.artist-portrait-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-editorial);
}

.artist-photo-frame:hover .artist-portrait-img {
  transform: scale(1.02);
}

.artist-badge-tag {
  position: absolute;
  bottom: -10px;
  right: 1rem;
  background: var(--text-primary);
  color: #FAF7F2;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
}

.artist-bio-prose {
  margin-bottom: 2rem;
}

.signature-container {
  margin: 2.5rem 0 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-delicate);
}

.signature-script {
  font-family: var(--font-signature);
  font-size: 2.4rem;
  color: var(--accent-berry);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.signature-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.craft-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.craft-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.craft-icon {
  color: var(--accent-berry);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.craft-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.craft-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ==========================================================================
   SECTION 8: ANFRAGEFORMULAR
   ========================================================================== */

.inquiry-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-delicate);
}

.inquiry-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-delicate);
  padding: 4.5rem 4rem;
  box-shadow: var(--shadow-artwork);
  position: relative;
}

.inquiry-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.inquiry-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.editorial-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group-full {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.inquiry-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.type-pill input {
  display: none;
}

.type-pill .pill-btn {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-delicate);
  background: #FAF7F2;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius-subtle);
  color: var(--text-secondary);
}

.type-pill input:checked + .pill-btn {
  background: var(--text-primary);
  color: #FAF7F2;
  border-color: var(--text-primary);
}

.editorial-input,
.editorial-select,
.editorial-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background-color: #FAF7F2;
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-subtle);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.editorial-input:focus,
.editorial-select:focus,
.editorial-textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--accent-berry);
}

.editorial-file-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: #FAF7F2;
  border: 1.5px dashed var(--border-delicate);
  border-radius: var(--radius-subtle);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s ease;
}

.editorial-file-input:hover,
.editorial-file-input:focus {
  border-color: var(--accent-berry);
  background-color: #FFFFFF;
  outline: none;
}

.file-help-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Photo Info Note Banner */
.photo-info-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background-color: #FAF5F8;
  border: 1px solid rgba(142, 31, 92, 0.18);
  border-left: 4px solid var(--accent-berry);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-subtle);
  margin: 0.5rem 0 1.5rem;
}

.photo-info-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.photo-info-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.photo-info-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.55;
  flex: 1;
}

.photo-info-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.banner-link {
  color: var(--accent-berry);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.banner-link:hover {
  color: var(--accent-berry-light);
}

.photo-info-action {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

/* Green WhatsApp Button Style */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background-color: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s var(--ease-editorial);
  text-decoration: none !important;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #FFFFFF !important;
}

.whatsapp-btn-banner {
  margin-left: auto;
}

.whatsapp-btn-footer {
  margin-top: 0.5rem;
  display: inline-flex;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

.footer-whatsapp-line {
  margin: 0.6rem 0 !important;
}

/* Upload Dropzone */
.dropzone-area {
  border: 1.5px dashed var(--border-delicate);
  background-color: #FAF7F2;
  padding: 2.2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: var(--radius-subtle);
}

.dropzone-area:hover,
.dropzone-area.dragover {
  border-color: var(--accent-berry);
  background-color: #FAF2F4;
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.dropzone-text {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.dropzone-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dropzone-preview-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #FFFFFF;
  padding: 1rem;
  border: 1px solid var(--accent-berry);
  border-radius: var(--radius-subtle);
  width: 100%;
  text-align: left;
}

.preview-img-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FAF7F2;
  border: 1px solid var(--border-delicate);
}

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

.preview-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-berry);
  font-weight: 600;
}

.btn-remove-preview {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s ease;
}

.btn-remove-preview:hover {
  color: var(--accent-berry);
}

.preview-file-name {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 600;
  word-break: break-all;
}

.preview-file-size {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.preview-notice {
  font-size: 0.8rem;
  color: var(--accent-berry);
  margin-top: 0.35rem;
  font-weight: 500;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.guarantee-icon {
  color: var(--accent-sage);
}

/* Success Overlay */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 10;
}

.success-box {
  text-align: center;
  max-width: 500px;
}

.success-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-berry-subtle);
  color: var(--accent-berry);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER & LEGAL MODALS
   ========================================================================== */

.site-footer {
  background-color: #4B4B4D;
  color: var(--text-on-dark);
  padding: 5rem 0 3.5rem;
}

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

.footer-logo .logo-text {
  color: var(--accent-teal);
}

.footer-tagline {
  font-size: 0.9rem;
  color: #A3A6AC;
  max-width: 380px;
  margin: 1.25rem 0 2rem;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #72757C;
}

.footer-heading {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-terracotta-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #C2C5CB;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #FAF7F2;
  padding-left: 4px;
}

.footer-contact-text {
  font-size: 0.88rem;
  color: #C2C5CB;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-link {
  color: var(--accent-terracotta-light);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #8A8D93;
}

.footer-legal-links a:hover {
  color: #FAF7F2;
}

/* Modals */
.lightbox-modal,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active,
.legal-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop,
.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 32, 34, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox-dialog,
.legal-dialog {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-subtle);
  box-shadow: var(--shadow-elevated);
  padding: 3rem;
}

.lightbox-close,
.legal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-primary);
  cursor: pointer;
}

.legal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.legal-content h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & SMARTPHONES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid,
  .makler-split-grid,
  .artist-layout-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-visual-col {
    max-width: 650px;
    margin: 0 auto;
  }

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

  .gallery-item.item-large,
  .gallery-item.item-medium {
    grid-column: span 1;
  }

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

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background-color: #FAF7F2;
    border-bottom: 1px solid var(--border-delicate);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease-editorial);
  }

  .mobile-drawer.active {
    transform: translateY(0);
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .mob-link {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-primary);
  }

  .hero-section {
    padding-top: 6.5rem;
  }

  .hero-footnotes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .idea-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-journey {
    grid-template-columns: 1fr;
  }

  .process-materials-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .materials-badge {
    border-right: none;
    border-bottom: 1px solid var(--border-delicate);
    padding-right: 0;
    padding-bottom: 0.75rem;
    width: 100%;
  }

  .owners-occasions-grid {
    grid-template-columns: 1fr;
  }

  .editorial-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .inquiry-card-wrapper {
    padding: 2.5rem 1.5rem;
  }

  .inquiry-type-selector {
    grid-template-columns: 1fr;
  }

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

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

  .craft-badges {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
