:root {
  --clay: #C4622D;
  --clay-dark: #A34E22;
  --clay-light: #D4845A;
  --mustard: #D4A843;
  --mustard-dark: #B8902F;
  --olive: #6B7340;
  --olive-light: #8A9454;
  --cream: #F7F2E8;
  --cream-dark: #EDE7D6;
  --parchment: #FAF6EE;
  --ink: #2C2416;
  --ink-mid: #4A3D2C;
  --ink-light: #7A6A52;
  --ink-faint: #A89880;
  --white-warm: #FEFCF8;
  --rust: #8B3A1E;

  --shadow-sm: 0 1px 3px rgba(44,36,22,0.08), 0 1px 2px rgba(44,36,22,0.06);
  --shadow-md: 0 4px 6px rgba(44,36,22,0.07), 0 2px 4px rgba(44,36,22,0.06);
  --shadow-lg: 0 10px 25px rgba(44,36,22,0.1), 0 4px 10px rgba(44,36,22,0.07);
  --shadow-xl: 0 20px 40px rgba(44,36,22,0.12), 0 8px 16px rgba(44,36,22,0.08);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body.canvas {
  font-family: var(--font-body);
  background-color: var(--parchment);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

a { color: var(--clay); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--clay-dark); }

ul { list-style: none; }

address { font-style: normal; }

/* ============================================
   TYPOGRAPHY SCALE
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--ink);
}

.stage-headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.page-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--space-xs);
}

.section-eyebrow.light { color: var(--mustard); }

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 60ch;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--clay);
  color: var(--white-warm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--clay);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  min-height: 48px;
}

.btn-primary:hover {
  background-color: var(--clay-dark);
  border-color: var(--clay-dark);
  color: var(--white-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--ink-faint);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  min-height: 48px;
}

.btn-ghost:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-2px);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--white-warm);
  color: var(--clay);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--white-warm);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  min-height: 48px;
}

.btn-light:hover {
  background-color: var(--cream);
  color: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION — NAV RAIL
   ============================================ */

.nav-rail {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--parchment);
  border-bottom: 1.5px solid var(--cream-dark);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo img { display: block; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-warm);
  background-color: var(--clay);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-cta:hover {
  background-color: var(--clay-dark);
  color: var(--white-warm);
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.drawer {
  display: flex;
  flex-direction: column;
  background-color: var(--cream);
  border-top: 1.5px solid var(--cream-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 var(--space-md);
}

.drawer.open {
  max-height: 480px;
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.drawer-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.drawer-link:last-of-type { border-bottom: none; }
.drawer-link:hover, .drawer-link.active { color: var(--clay); }

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-warm);
  background-color: var(--clay);
  padding: 0.75rem var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.2s ease;
  min-height: 48px;
}

.drawer-cta:hover { background-color: var(--clay-dark); color: var(--white-warm); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .drawer { display: none !important; }
}

/* ============================================
   HERO — STAGE
   ============================================ */

.stage {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 60%, var(--cream-dark) 100%);
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .stage {
    flex-direction: row;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-xl);
    max-width: 100%;
  }
}

.stage-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape { position: absolute; }

.shape-circle-lg {
  width: 480px;
  height: 480px;
  background: var(--clay);
  top: -140px;
  right: -100px;
  border-radius: 50%;
  opacity: 0.09;
}

.shape-rect {
  width: 200px;
  height: 200px;
  background: var(--mustard);
  bottom: 8%;
  left: -50px;
  border-radius: var(--radius-lg);
  opacity: 0.12;
  transform: rotate(18deg);
}

.shape-circle-sm {
  width: 120px;
  height: 120px;
  background: var(--olive);
  top: 38%;
  left: 4%;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-dot {
  width: 56px;
  height: 56px;
  background: var(--clay);
  bottom: 22%;
  right: 12%;
  border-radius: 50%;
  opacity: 0.16;
}

.stage-content {
  flex: 1;
  max-width: 580px;
  z-index: 1;
  width: 100%;
}

.stage-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(196,98,45,0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.stage-headline { margin-bottom: var(--space-md); }

.stage-sub {
  font-size: 1.1rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

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

.stage-visual {
  flex: 0 0 auto;
  max-width: 480px;
  width: 100%;
  z-index: 1;
}

.stage-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.stage-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.stage-img-wrap:hover .stage-img { transform: scale(1.03); }

.stage-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(250,246,238,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(196,98,45,0.2);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--clay);
  box-shadow: var(--shadow-md);
}

.stage-img-badge i { font-size: 1rem; }

/* ============================================
   BAND INTRO
   ============================================ */

.band-intro {
  background-color: var(--clay);
  padding: var(--space-xl) var(--space-md);
}

.band-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.band-text {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--white-warm);
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
}

/* ============================================
   GALLERY — GRID SECTIONS
   ============================================ */

.gallery {
  padding: var(--space-3xl) var(--space-md);
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.gallery-header .section-sub {
  margin: var(--space-sm) auto 0;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits-gallery { background-color: var(--parchment); }

.benefits-shelf {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .benefits-shelf { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .benefits-shelf { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-card.spotlight {
  background: var(--clay);
  border-color: var(--clay-dark);
}

.benefit-card.spotlight .benefit-icon i { color: var(--mustard); }
.benefit-card.spotlight h3 { color: var(--white-warm); }
.benefit-card.spotlight p { color: rgba(254,252,248,0.85); }

.benefit-icon { margin-bottom: var(--space-sm); }

.benefit-icon i {
  font-size: 1.5rem;
  color: var(--clay);
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
  background-color: var(--cream);
  padding: var(--space-3xl) var(--space-md);
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.process-header .section-sub { margin: var(--space-sm) auto 0; }

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media (min-width: 900px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  padding: var(--space-lg);
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--cream-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 280px;
  width: 100%;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.process-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clay-light), var(--mustard));
  margin: 0 auto;
  border-radius: 2px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .process-connector {
    width: 48px;
    height: 2px;
    margin: 0;
    align-self: center;
    background: linear-gradient(to right, var(--clay-light), var(--mustard));
  }

  .process-step { max-width: none; }
}

.step-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clay);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.step-icon { margin-bottom: var(--space-sm); }

.step-icon i {
  font-size: 1.75rem;
  color: var(--clay);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ============================================
   SPLIT SECTIONS
   ============================================ */

.split-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-3xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .split-section { flex-direction: row; align-items: center; }
  .split-section.reversed { flex-direction: row-reverse; }
}

.split-visual { flex: 1; min-width: 0; }

.split-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.split-img:hover { transform: scale(1.02); }

.split-content { flex: 1; min-width: 0; }

.split-content .section-eyebrow { margin-bottom: 0.5rem; }
.split-content .section-headline { margin-bottom: var(--space-md); }

.split-content p {
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.split-content .btn-primary { margin-top: var(--space-sm); }

/* ============================================
   SERVICES GALLERY
   ============================================ */

.services-gallery { background-color: var(--cream); }

.services-shelf {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .services-shelf { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .services-shelf { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cream-dark);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card-inner { padding: var(--space-lg); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,98,45,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background-color 0.2s ease;
}

.service-card:hover .service-icon { background: rgba(196,98,45,0.18); }

.service-icon i { font-size: 1.35rem; color: var(--clay); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clay);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.card-link:hover { gap: 0.6rem; color: var(--clay-dark); }

/* ============================================
   ANIMATED BORDER CARD (CSS-only draw effect)
   ============================================ */

.animated-border-card {
  position: relative;
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  overflow: hidden;
  isolation: isolate;
}

.animated-border-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    var(--clay) 0deg,
    var(--mustard) 90deg,
    var(--clay) 180deg,
    transparent 200deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.animated-border-card:hover::after {
  opacity: 1;
  animation: spin-border 1.4s linear infinite;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-border {
  to { --angle: 360deg; }
}

/* ============================================
   PHOTO BAND
   ============================================ */

.photo-band {
  background-color: var(--parchment);
  padding: var(--space-xl) var(--space-md);
}

.photo-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .photo-band-inner { grid-template-columns: repeat(3, 1fr); }
}

.photo-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.photo-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-item:hover .photo-img { transform: scale(1.06); }

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--clay) 0%, var(--clay-dark) 60%, var(--rust) 100%);
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(212,168,67,0.12);
  top: -160px;
  right: -120px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(254,252,248,0.04);
  bottom: -80px;
  left: 10%;
  pointer-events: none;
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white-warm);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(254,252,248,0.85);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ============================================
   FULL WIDTH TEXTURE SECTION
   ============================================ */

.full-width-texture {
  background-color: var(--ink);
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.full-width-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.texture-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.texture-inner .section-headline.light {
  color: var(--white-warm);
  margin-bottom: var(--space-xl);
}

.texture-inner .section-sub.light {
  color: rgba(247,242,232,0.72);
  margin-bottom: var(--space-xl);
}


.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 600px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .industry-grid { grid-template-columns: repeat(6, 1fr); }
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding: var(--space-md);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background-color 0.25s ease, transform 0.2s ease;
  cursor: default;
}

.industry-item:hover {
  background: rgba(196,98,45,0.18);
  transform: translateY(-3px);
}

.industry-item i {
  font-size: 1.5rem;
  color: var(--mustard);
}

.industry-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(247,242,232,0.78);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: var(--space-3xl) var(--space-md) var(--space-2xl);
  border-bottom: 1.5px solid var(--cream-dark);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-headline {
  margin-bottom: var(--space-md);
  margin-top: 0.5rem;
}

.page-sub {
  font-size: 1.1rem;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 56ch;
}

/* ============================================
   SITUATION CARDS
   ============================================ */

.situation-gallery { background-color: var(--parchment); }

.situation-shelf {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .situation-shelf { grid-template-columns: repeat(2, 1fr); }
}

.situation-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.situation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.situation-num {
  width: 44px;
  height: 44px;
  background: var(--clay);
  color: var(--white-warm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.situation-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.situation-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ============================================
   WORKSHOPS PAGE
   ============================================ */

.workshop-formats {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--parchment);
}

.workshop-intro {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.workshop-intro p {
  font-size: 1.1rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

.workshop-shelf {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .workshop-shelf { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .workshop-shelf { grid-template-columns: repeat(3, 1fr); }
}

.workshop-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.workshop-card-inner { padding: var(--space-lg); }

.workshop-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(196,98,45,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.workshop-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.workshop-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.workshop-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.workshop-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-mid);
}

.workshop-details li i { color: var(--clay); font-size: 0.85rem; }


.workshop-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.flow-time {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mustard);
  flex-shrink: 0;
  width: 60px;
  padding-top: 0.15rem;
}

.flow-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 0.3rem;
}

.flow-content p {
  font-size: 0.875rem;
  color: rgba(247,242,232,0.68);
  line-height: 1.6;
}

/* ============================================
   MESSBARKEIT PAGE
   ============================================ */

.content-section {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--parchment);
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .content-inner { flex-direction: row; align-items: flex-start; }
}

.content-text { flex: 1.5; }

.content-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.content-text p {
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.content-aside { flex: 1; }

.aside-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--clay);
  box-shadow: var(--shadow-md);
}

.aside-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--clay);
}

.aside-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.aside-card p:last-child { margin-bottom: 0; }


.principles-gallery { background-color: var(--cream); }

.principles-shelf {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .principles-shelf { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .principles-shelf { grid-template-columns: repeat(4, 1fr); }
}

.principle-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.principle-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(196,98,45,0.1), rgba(212,168,67,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.principle-icon i { font-size: 1.4rem; color: var(--clay); }

.principle-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.principle-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-xl);
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.faq-item[open] { background: rgba(255,255,255,0.09); }

.faq-question {
  cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white-warm);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s ease;
  min-height: 48px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '\002B';
  font-size: 1.2rem;
  color: var(--mustard);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after { content: '\2212'; }

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
  font-size: 0.9rem;
  color: rgba(247,242,232,0.72);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--parchment);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.6fr 1fr; }
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.req { color: var(--clay); }

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white-warm);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.12);
}


.contact-form:has(:focus) {
  --form-accent: var(--clay);
}

.form-group:has(.form-input:focus) .form-label {
  color: var(--clay);
}

.form-group:has(input:invalid:not(:placeholder-shown)) .form-input {
  border-color: #c0392b;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A3D2C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea { min-height: 130px; resize: vertical; }

.form-privacy {
  flex-direction: row;
  align-items: flex-start;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

.privacy-check {
  min-width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--clay);
  cursor: pointer;
}

.form-error {
  font-size: 0.875rem;
  color: #c0392b;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  display: none;
  border: 1px solid rgba(192,57,43,0.15);
}

.form-error.visible { display: block; }

.contact-info-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
  height: fit-content;
}

@media (min-width: 900px) {
  .contact-info-card {
    position: sticky;
    top: calc(var(--nav-h) + var(--space-md));
  }
}

.contact-info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-details li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,98,45,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { font-size: 0.9rem; color: var(--clay); }

.contact-details strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-details span,
.contact-details a {
  font-size: 0.9rem;
  color: var(--ink-mid);
  text-decoration: none;
  line-height: 1.45;
}

.contact-details a:hover { color: var(--clay); }

.contact-hours { border-top: 1px solid var(--cream-dark); padding-top: var(--space-md); }

.contact-hours h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.contact-hours p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.5;
}


.map-section { background-color: var(--cream-dark); }

.map-inner iframe {
  display: block;
  filter: sepia(0.12) contrast(0.96);
}


.news-section {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--cream);
}

.news-inner { max-width: 1200px; margin: 0 auto; }

.news-inner .section-headline { margin-bottom: var(--space-xl); }

.news-shelf {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .news-shelf { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .news-shelf { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1.5px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.6rem;
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.news-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  flex: 1;
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-main {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--parchment);
  min-height: 80vh;
}

.thanks-container {
  max-width: 680px;
  margin: 0 auto;
}

.thanks-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.thanks-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clay), var(--mustard));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 8px 28px rgba(196,98,45,0.28), 0 2px 8px rgba(196,98,45,0.15);
}

.thanks-icon-wrap i {
  font-size: 2rem;
  color: var(--white-warm);
}

.thanks-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.thanks-sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--ink-mid);
}

.timeline { display: flex; flex-direction: column; }

.timeline-connector {
  width: 2px;
  height: 40px;
  background: var(--cream-dark);
  margin-left: 27px;
}

.timeline-connector.done { background: var(--clay); }

.timeline-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-marker i { font-size: 1.1rem; color: var(--ink-faint); }

.timeline-item.done .timeline-marker {
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 4px 12px rgba(196,98,45,0.2);
}

.timeline-item.done .timeline-marker i { color: var(--white-warm); }

.timeline-item.highlighted .timeline-marker {
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 0 0 6px rgba(196,98,45,0.14), 0 4px 12px rgba(196,98,45,0.2);
}

.timeline-item.upcoming .timeline-marker {
  background: var(--cream);
  border-color: var(--cream-dark);
  border-style: dashed;
}

.timeline-item.upcoming .timeline-marker i { color: var(--ink-faint); }

.timeline-content { padding-top: 0.8rem; }

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timeline-item.upcoming .timeline-content h3 { color: var(--ink-faint); }

.timeline-content p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

.timeline-item.upcoming .timeline-content p { color: var(--ink-faint); }

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-main {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
  background-color: var(--parchment);
}

.legal-layout {
  display: flex;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  align-items: flex-start;
}

.legal-sidebar {
  display: none;
  flex-direction: column;
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + var(--space-md));
  max-height: calc(100vh - var(--nav-h) - var(--space-xl));
  overflow-y: auto;
}

@media (min-width: 900px) {
  .legal-sidebar { display: flex; }
}

.sidebar-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: var(--space-sm);
  padding: 0 0.6rem;
}

.legal-toc { display: flex; flex-direction: column; gap: 0.2rem; }

.toc-link {
  font-size: 0.83rem;
  color: var(--ink-light);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  line-height: 1.4;
}

.toc-link:hover {
  color: var(--clay);
  background: rgba(196,98,45,0.06);
}

.toc-link.active {
  color: var(--clay);
  border-left-color: var(--clay);
  background: rgba(196,98,45,0.08);
  font-weight: 600;
}

.legal-content { flex: 1; min-width: 0; }

.legal-header { margin-bottom: var(--space-xl); }

.legal-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.legal-content section {
  margin-bottom: var(--space-xl);
  scroll-margin-top: calc(var(--nav-h) + var(--space-md));
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--ink);
  padding-top: var(--space-md);
  border-top: 1px solid var(--cream-dark);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: var(--space-md);
  color: var(--clay);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.legal-content a { color: var(--clay); text-decoration: underline; }
.legal-content a:hover { color: var(--clay-dark); }

.legal-content address {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
  background: var(--cream);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clay);
  margin-top: var(--space-sm);
}


.legal-mobile-toc {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md) 0;
}

@media (min-width: 900px) {
  .legal-mobile-toc { display: none; }
}

.legal-toc-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-mid);
  cursor: pointer;
  width: 100%;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.legal-toc-toggle:hover { border-color: var(--clay); color: var(--clay); }

.legal-toc-mobile {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: var(--space-sm);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.legal-toc-mobile.open { display: flex; }

.legal-toc-mobile a {
  font-size: 0.875rem;
  color: var(--ink-mid);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.legal-toc-mobile a:hover { color: var(--clay); background: rgba(196,98,45,0.06); }

/* ============================================
   IMPRESSUM
   ============================================ */

.impressum-main { background-color: var(--parchment); }

.impressum-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.impressum-section {
  margin-bottom: var(--space-xl);
}

.impressum-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--clay);
  border-bottom: 1.5px solid var(--cream-dark);
  padding-bottom: 0.5rem;
}

.impressum-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: var(--space-md);
  color: var(--ink);
}

.impressum-section p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.impressum-table th,
.impressum-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: top;
  line-height: 1.5;
}

.impressum-table th {
  font-weight: 600;
  color: var(--ink-mid);
  width: 38%;
  background: var(--cream);
}

.impressum-table td { color: var(--ink); }

.impressum-table a { color: var(--clay); text-decoration: underline; }

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-md);
}

.compliance-list li {
  font-size: 0.9rem;
  color: var(--ink-mid);
  padding-left: 1.5rem;
  position: relative;
}

.compliance-list li::before {
  content: '§';
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}


.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: var(--space-sm);
  overflow-x: auto;
  display: block;
}

.cookie-table thead th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: var(--cream);
  font-weight: 600;
  color: var(--ink-mid);
  border-bottom: 2px solid var(--cream-dark);
  white-space: nowrap;
}

.cookie-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--ink);
  vertical-align: top;
}

/* ============================================
   MEGA FOOTER
   ============================================ */

.mega-footer {
  background-color: var(--ink);
  color: var(--cream);
  margin-top: auto;
}

.footer-newsletter {
  background-color: var(--clay);
  padding: var(--space-xl) var(--space-md);
}

.footer-nl-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

@media (min-width: 700px) {
  .footer-nl-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
  }
}

.footer-nl-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 0.25rem;
}

.footer-nl-text p {
  font-size: 0.875rem;
  color: rgba(254,252,248,0.78);
  line-height: 1.5;
}

.footer-nl-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.nl-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.13);
  color: var(--white-warm);
  min-width: 220px;
  min-height: 44px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nl-input::placeholder { color: rgba(255,255,255,0.58); }

.nl-input:focus {
  outline: none;
  border-color: var(--white-warm);
  background: rgba(255,255,255,0.2);
}

.nl-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--white-warm);
  background: var(--white-warm);
  color: var(--clay);
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nl-btn:hover {
  background: var(--cream);
  color: var(--clay-dark);
  transform: translateY(-1px);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 600px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-col-about .footer-logo-link {
  display: block;
  margin-bottom: var(--space-md);
}

.footer-about-text {
  font-size: 0.875rem;
  color: rgba(247,242,232,0.62);
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mustard);
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(247,242,232,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.2rem 0;
}

.footer-links a:hover { color: var(--mustard); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--mustard);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.875rem;
  color: rgba(247,242,232,0.65);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover { color: var(--mustard); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bar p {
  font-size: 0.8rem;
  color: rgba(247,242,232,0.4);
}

.footer-bar-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-bar-legal a {
  font-size: 0.8rem;
  color: rgba(247,242,232,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bar-legal a:hover { color: var(--mustard); }

/* ============================================
   INTERSECTION OBSERVER ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }


.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ============================================
   COOKIE CONSENT WIDGET
   ============================================ */

#cookieConsentContainer {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 480px;
  pointer-events: none;
}

.cookie-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(44,36,22,0.18), 0 2px 8px rgba(44,36,22,0.1);
  border: 1.5px solid var(--cream-dark);
  overflow: hidden;
  pointer-events: all;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-compact {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-compact-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.5;
  min-width: 180px;
}

.cookie-compact-text strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.cookie-compact-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  border: none;
  background: var(--clay);
  color: var(--white-warm);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-height: 40px;
}

.cookie-btn-accept:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
}

.cookie-btn-settings {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  color: var(--ink-mid);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 40px;
}

.cookie-btn-settings:hover {
  border-color: var(--clay);
  color: var(--clay);
}


.cookie-expanded {
  display: none;
  padding: 1.25rem;
  border-top: 1.5px solid var(--cream-dark);
}

.cookie-expanded.open { display: block; }

.cookie-expanded-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.cookie-expanded-desc {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.cookie-category:last-of-type { border-bottom: none; }

.cookie-category-info { flex: 1; }

.cookie-category-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.cookie-category-desc {
  font-size: 0.8rem;
  color: var(--ink-mid);
  line-height: 1.45;
}


.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--cream-dark);
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white-warm);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--clay); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-expanded-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-save {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  background: var(--clay);
  color: var(--white-warm);
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-height: 40px;
}

.cookie-btn-save:hover { background: var(--clay-dark); }

.cookie-btn-reject-all {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  color: var(--ink-mid);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 40px;
}

.cookie-btn-reject-all:hover {
  border-color: var(--ink-light);
  color: var(--ink);
}

/* ============================================
   UTILITY & SCROLL STATES
   ============================================ */

.nav-rail.scrolled-sm {
  box-shadow: 0 2px 8px rgba(44,36,22,0.06);
}

.nav-rail.scrolled-md {
  box-shadow: 0 4px 16px rgba(44,36,22,0.1), 0 2px 6px rgba(44,36,22,0.06);
}

.nav-rail.scrolled-lg {
  box-shadow: 0 8px 28px rgba(44,36,22,0.14), 0 3px 8px rgba(44,36,22,0.08);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 599px) {
  .stage-img { height: 280px; }
  .split-img { height: 280px; }

  .process-step { max-width: 100%; }

  .footer-nl-form { width: 100%; }
  .nl-input { min-width: 0; width: 100%; }
  .nl-btn { width: 100%; justify-content: center; }

  .stage-actions { flex-direction: column; }
  .stage-actions .btn-primary,
  .stage-actions .btn-ghost { width: 100%; justify-content: center; }

  .contact-compact-actions { flex-direction: column; }
}

@media (min-width: 600px) and (max-width: 899px) {
  .stage { padding: var(--space-2xl) var(--space-md); }
}

/* ============================================
   :has() RELATIONAL STYLING
   ============================================ */


.service-card:has(img) {
  box-shadow: var(--shadow-md);
}


.gallery:has(.spotlight) {
  background-color: var(--parchment);
}


.contact-form:has(:focus-within) {
  --form-state: active;
}


.nav-rail:has(.drawer.open) {
  border-bottom-color: var(--clay);
}


.benefits-shelf:has(.spotlight) .benefit-card:not(.spotlight) {
  border-color: var(--cream-dark);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .nav-rail,
  .mega-footer,
  #cookieConsentContainer,
  .cta-banner { display: none; }

  body.canvas { background: white; color: black; }

  .stage { min-height: auto; }
}