/* ————————————————————————————————
   ÜBER / MEISTER section
   ———————————————————————————————— */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}
.about-visual .photo-main {
  position: absolute;
  inset: 0 30% 30% 0;
  background: var(--bg-cream) center/cover no-repeat;
}
.about-visual .photo-detail {
  position: absolute;
  inset: 40% 0 0 35%;
  background: var(--bg-cream) center/cover no-repeat;
  border-left: 8px solid var(--bg);
  border-top: 8px solid var(--bg);
}
.about-visual .sig {
  position: absolute;
  bottom: 12%;
  left: -12px;
  z-index: 3;
  font-family: var(--ff-italic); font-style: italic;
  font-size: clamp(40px, 4vw, 64px);
  color: var(--brand);
  line-height: 1;
  transform: rotate(-5deg);
  pointer-events: none;
}

.about-copy { padding-top: 12px; }
.about-copy h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 0 0;
}
.about-copy h2 .italic {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--brand);
  display: block;
}
.about-copy .lead {
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  margin: 40px 0 24px 0;
  max-width: 38ch;
  text-wrap: pretty;
  font-weight: 400;
}
.about-copy p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 20px 0;
}
.about-copy .signature {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.about-copy .signature .who {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-copy .signature .role {
  font-family: var(--ff-italic); font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ————————————————————————————————
   LEISTUNGEN — asymmetric stacked
   ———————————————————————————————— */
.leistungen { background: var(--bg-sand); padding-block: clamp(100px, 12vw, 180px); }

.leistungen-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.leistungen-head h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 0 0;
  max-width: 14ch;
}
.leistungen-head h2 .italic {
  font-family: var(--ff-italic); font-style: italic;
  font-weight: 400; text-transform: none; letter-spacing: -0.01em;
  color: var(--brand);
}
.leistungen-head .intro {
  max-width: 32ch;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
}

.leistung {
  display: grid;
  grid-template-columns: 80px 1.05fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(48px, 6vw, 96px);
  border-top: 1px solid var(--line);
  position: relative;
}
.leistung:last-of-type { border-bottom: 1px solid var(--line); }

.leistung .num {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.01em;
}

.leistung .left h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
.leistung .left h3 .italic {
  font-family: var(--ff-italic); font-style: italic;
  font-weight: 400; text-transform: none; letter-spacing: -0.01em;
  color: var(--brand);
  display: block;
}
.leistung .left p {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 28px 0;
}
.leistung .left ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.leistung .left ul li {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--line-strong);
}
.leistung .left ul li::before {
  content: "+"; color: var(--brand); font-family: var(--ff-mono); font-size: 14px;
  flex-shrink: 0;
}

/* asymmetric image pair on the right */
.leistung .visual {
  position: relative;
  min-height: 540px;
}
.leistung .visual .img-a, .leistung .visual .img-b {
  position: absolute;
  background: var(--bg-cream) center/cover no-repeat;
  cursor: pointer;
}
.leistung .visual .img-a {
  inset: 0 25% 30% 0;
  z-index: 2;
}
.leistung .visual .img-b {
  inset: 35% 0 0 30%;
  z-index: 1;
  border-left: 12px solid var(--bg-sand);
  border-top: 12px solid var(--bg-sand);
}
.leistung:nth-of-type(even) .visual .img-a { inset: 0 0 30% 25%; }
.leistung:nth-of-type(even) .visual .img-b { inset: 35% 30% 0 0; border-left: 0; border-right: 12px solid var(--bg-sand); }

@media (max-width: 960px) {
  .leistung { grid-template-columns: 48px 1fr; }
  .leistung .visual { grid-column: 1 / 3; min-height: 360px; margin-top: 24px; }
}

/* ————————————————————————————————
   PROZESS — 4 steps
   ———————————————————————————————— */
.prozess {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.prozess-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.prozess-head h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 0 0;
  max-width: 14ch;
}
.prozess-head h2 .italic {
  font-family: var(--ff-italic); font-style: italic;
  font-weight: 400; text-transform: none; letter-spacing: -0.01em;
  color: var(--brand);
}
.prozess-head p {
  max-width: 38ch;
  font-size: 17px; color: var(--ink-soft); line-height: 1.55;
  margin: 0;
}

.prozess-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  background: var(--bg);
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2vw, 32px);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 360px;
  position: relative;
  transition: background 0.4s ease;
}
.step:hover { background: var(--bg-cream); }
.step .step-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(88px, 9vw, 140px);
  line-height: 0.85;
  color: var(--brand);
  letter-spacing: -0.02em;
  opacity: 0.18;
  margin: 0;
}
.step h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}
.step p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
  margin: auto 0 0 0;
}
.step .marker {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex; align-items: center; gap: 10px;
}
.step .marker::before {
  content: ""; width: 28px; height: 1px; background: var(--brand);
}
@media (max-width: 880px) {
  .prozess-steps { grid-template-columns: 1fr 1fr; }
}

/* ————————————————————————————————
   GALERIE — asymmetric masonry
   ———————————————————————————————— */
.galerie {
  background: var(--bg-cream);
  padding-block: clamp(80px, 10vw, 160px);
}
.galerie-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.galerie-head h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 0 0;
}
.galerie-head h2 .italic {
  font-family: var(--ff-italic); font-style: italic;
  font-weight: 400; text-transform: none; letter-spacing: -0.01em;
  color: var(--brand);
}

.gallery-filters {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.gallery-filters button {
  padding: 10px 18px;
  font-family: var(--ff-display); font-weight: 500;
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.gallery-filters button:hover { color: var(--ink); border-color: var(--ink); }
.gallery-filters button.active { background: var(--brand); color: white; border-color: var(--brand); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 8px;
}
.g {
  position: relative;
  overflow: hidden;
  background: var(--bg) center/cover no-repeat;
  cursor: pointer;
}
.g::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0% 0 0 / 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.g:hover::after { opacity: 1; }
.g .gtxt {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: white;
  display: flex; justify-content: space-between; gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}
.g:hover .gtxt { opacity: 1; transform: none; }
.g.hidden { display: none; }
.g .img { position: absolute; inset: 0; transition: transform 0.7s cubic-bezier(0.2,0,0.1,1); }
.g:hover .img { transform: scale(1.05); }

/* asymmetric layout — tile spans + row spans */
.g.t1 { grid-column: span 7; grid-row: span 3; } /* huge */
.g.t2 { grid-column: span 5; grid-row: span 2; }
.g.t3 { grid-column: span 5; grid-row: span 1; }
.g.t4 { grid-column: span 4; grid-row: span 2; }
.g.t5 { grid-column: span 4; grid-row: span 2; }
.g.t6 { grid-column: span 4; grid-row: span 2; }
.g.t7 { grid-column: span 8; grid-row: span 2; }
.g.t8 { grid-column: span 4; grid-row: span 2; }
.g.t9 { grid-column: span 3; grid-row: span 2; }
.g.t10 { grid-column: span 3; grid-row: span 2; }
.g.t11 { grid-column: span 6; grid-row: span 2; }

@media (max-width: 900px) {
  .gallery { grid-auto-rows: 200px; gap: 4px; }
  .g.t1, .g.t7, .g.t11 { grid-column: span 12; }
  .g.t2, .g.t3 { grid-column: span 6; }
  .g.t4, .g.t5, .g.t6, .g.t8 { grid-column: span 6; }
  .g.t9, .g.t10 { grid-column: span 6; }
}

/* ————————————————————————————————
   WARUM — full-bleed blue
   ———————————————————————————————— */
.warum {
  background: var(--bg-blue);
  color: var(--ink-inv);
  position: relative;
  overflow: hidden;
}
.warum::before {
  content: "ERGEN";
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(200px, 28vw, 480px);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: oklch(50% 0.22 265);
  opacity: 0.25;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
.warum .wrap { position: relative; z-index: 2; }

.warum-head {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.warum-head .eyebrow { color: oklch(80% 0.1 265); }
.warum-head .eyebrow::before { background: oklch(80% 0.1 265); }
.warum-head h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px auto 0 auto;
  max-width: 16ch;
  color: white;
}
.warum-head h2 .italic {
  font-family: var(--ff-italic); font-style: italic;
  font-weight: 400; text-transform: none;
  color: oklch(80% 0.1 265);
}

.warum-list {
  display: flex; flex-direction: column;
  border-top: 1px solid oklch(70% 0.13 265 / 0.4);
}
.warum-item {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-block: clamp(28px, 4vw, 56px);
  border-bottom: 1px solid oklch(70% 0.13 265 / 0.4);
  transition: padding-left 0.4s cubic-bezier(0.2,0,0.1,1), background 0.4s ease;
  cursor: default;
}
.warum-item:hover { padding-left: 24px; background: oklch(40% 0.18 265); }
.warum-item .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  color: oklch(80% 0.1 265);
  line-height: 1;
}
.warum-item h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: white;
}
.warum-item p {
  font-family: var(--ff-italic); font-style: italic;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.45;
  color: oklch(90% 0.05 265);
  margin: 0;
}
@media (max-width: 880px) {
  .warum-item { grid-template-columns: 60px 1fr; }
  .warum-item p { grid-column: 2; }
}

/* ————————————————————————————————
   INSTAGRAM
   ———————————————————————————————— */
.insta {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 140px);
}
.insta-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.insta-head h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 0 0;
}
.insta-head h2 .at {
  font-family: var(--ff-italic); font-style: italic;
  font-weight: 400; text-transform: none;
  color: var(--brand);
  font-size: 0.7em;
  display: block;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-tile {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-cream) center/cover no-repeat;
  overflow: hidden;
  cursor: pointer;
}
.insta-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: oklch(40% 0.18 265 / 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.insta-tile:hover::after { opacity: 1; }
.insta-tile .iicon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.insta-tile:hover .iicon { opacity: 1; }
@media (max-width: 880px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ————————————————————————————————
   KONTAKT
   ———————————————————————————————— */
.kontakt {
  background: var(--bg-sand);
  padding-block: clamp(80px, 10vw, 160px);
}
.kontakt-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.kontakt-head h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 0 0;
}
.kontakt-head h2 .italic {
  font-family: var(--ff-italic); font-style: italic;
  font-weight: 400; text-transform: none; letter-spacing: -0.01em;
  color: var(--brand);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 960px) { .kontakt-grid { grid-template-columns: 1fr; } }

.kontakt-left {
  display: flex; flex-direction: column; gap: 28px;
}
.wa-card {
  background: var(--whatsapp);
  color: white;
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.wa-card:hover { transform: translateY(-3px); }
.wa-card .label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: oklch(96% 0.05 145);
  display: flex; align-items: center; gap: 12px;
}
.wa-card h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: white;
}
.wa-card p {
  font-size: 15px; line-height: 1.5;
  color: oklch(96% 0.04 145);
  margin: 0;
  max-width: 36ch;
}
.wa-card .number {
  font-family: var(--ff-display);
  font-weight: 600; font-size: clamp(28px, 2.4vw, 36px);
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 8px;
}
.wa-card .wa-icon {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  opacity: 0.18;
  color: white;
}

.contact-rows {
  display: flex; flex-direction: column;
}
.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .label {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-row .value {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: 0;
  color: var(--ink);
}
.contact-row .value a:hover { color: var(--brand); }

.kontakt-right {
  display: flex; flex-direction: column; gap: 24px;
}
.form {
  background: var(--bg);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--line);
}
.form h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  letter-spacing: 0;
}
.form .sub {
  font-family: var(--ff-italic); font-style: italic;
  color: var(--ink-soft); font-size: 16px;
  margin: 0 0 18px 0;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.2s ease;
  font-family: var(--ff-body);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand);
}
.field textarea { min-height: 110px; resize: vertical; font-family: var(--ff-body); }

.map {
  position: relative;
  height: 320px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(1.05); }
.map-card {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 18px;
  font-family: var(--ff-display);
  z-index: 2;
  box-shadow: 0 8px 24px oklch(0% 0 0 / 0.1);
}
.map-card .l {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 4px;
}
.map-card .v {
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* ————————————————————————————————
   FOOTER
   ———————————————————————————————— */
.foot {
  background: var(--ink);
  color: var(--ink-inv);
  padding: clamp(64px, 8vw, 120px) 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid oklch(30% 0.01 250);
}
@media (max-width: 720px) { .foot-top { grid-template-columns: 1fr 1fr; } }

.foot .brand .wordmark .name { color: white; }
.foot .brand .wordmark .sub { color: oklch(70% 0.005 85); }
.foot-tag {
  font-family: var(--ff-italic); font-style: italic;
  font-size: 18px; color: oklch(80% 0.01 85);
  max-width: 32ch;
  margin-top: 20px;
  line-height: 1.45;
}

.foot h5 {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(65% 0.005 85);
  font-weight: 500;
  margin: 0 0 18px 0;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul a, .foot ul li {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: oklch(90% 0.005 85);
  transition: color 0.2s ease;
}
.foot ul a:hover { color: var(--brand-bright); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 28px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(55% 0.005 85);
}
.foot-bottom a:hover { color: white; }

.foot-socials { display: flex; gap: 10px; }
.foot-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid oklch(30% 0.01 250);
  color: oklch(80% 0.005 85);
  transition: all 0.2s ease;
}
.foot-socials a:hover { background: var(--brand); border-color: var(--brand); color: white; }

/* ————————————————————————————————
   LIGHTBOX
   ———————————————————————————————— */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: oklch(10% 0.01 250 / 0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  width: 100%; max-width: 1100px; aspect-ratio: 4/3;
}
.lightbox-inner .img { position: absolute; inset: 0; }
.lightbox .caption {
  position: absolute; left: 0; right: 0; bottom: -36px;
  font-family: var(--ff-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: oklch(90% 0.005 85);
  display: flex; justify-content: space-between;
}
.lightbox .close {
  position: absolute; top: -40px; right: 0;
  font-family: var(--ff-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(90% 0.005 85);
}
.lightbox .nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid oklch(90% 0.005 85 / 0.4);
  color: oklch(90% 0.005 85);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 18px;
  transition: all 0.2s ease;
}
.lightbox .nav-btn:hover { background: oklch(90% 0.005 85); color: var(--ink); }
.lightbox .prev { left: -72px; }
.lightbox .next { right: -72px; }
@media (max-width: 900px) {
  .lightbox .prev { left: 8px; }
  .lightbox .next { right: 8px; }
}

/* ————————————————————————————————
   FLOATING WHATSAPP BUTTON
   ———————————————————————————————— */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  width: 64px; height: 64px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px oklch(64% 0.18 145 / 0.4);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 32px; height: 32px; }

/* ————————————————————————————————
   LEGAL PAGES (Impressum / Datenschutz)
   ———————————————————————————————— */
.legal {
  background: var(--bg);
  padding-top: clamp(140px, 14vw, 220px);
}
.legal-head {
  max-width: 880px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.legal-head h1 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 16px 0 0;
  color: var(--ink);
}
.legal-head h1 .italic {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--brand);
  letter-spacing: 0;
}
.legal-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  max-width: 1180px;
}
@media (max-width: 960px) {
  .legal-body { grid-template-columns: 1fr; gap: 32px; }
}
.legal-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.legal-toc a {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.legal-toc a:hover { color: var(--brand); border-bottom-color: var(--brand); }
@media (max-width: 960px) {
  .legal-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 12px 18px; }
}
.legal-content { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.legal-content h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 56px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-content h3 {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 32px 0 8px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content a { color: var(--brand); border-bottom: 1px solid currentColor; }
.legal-content a:hover { color: var(--brand-deep); }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content .addr {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--bg-cream);
  padding: 18px 22px;
  margin: 6px 0 16px;
  border-left: 3px solid var(--brand);
  white-space: pre-line;
}
.legal-content .hint {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--brand-tint);
  border-left: 3px solid var(--brand);
  padding: 10px 16px;
  margin: 6px 0 16px;
}
