/* Zeichenfabrik -- Gestaltungsaufträge-Landingpage (Studio & Agentur).
   Nutzt die Farb-/Schrift-Variablen aus basis.css. Vollflächiges Layout (56px Rand, kein
   zentrierter Inhaltsbereich) -- wie die Kontaktseite (kontakt.css) und die Design-Vorlage.
   Die Formular-Optik selbst kommt aus buchung.css/teamevent.css (identische Eingabefelder wie
   überall auf der Website); hier nur, was für diese Seite neu ist.
   Textur (leerer Bildbereich): dasselbe diagonale Schraffur-Muster wie in den anderen
   Bild-Platzhaltern der Website. */

.ga-textur {
  background: #F1EEE8;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, .045) 0 9px, transparent 9px 18px);
}

/* ---- Hero ---- */
.ga-hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  border-bottom: 1px solid var(--farbe-rand);
}
.ga-hero-text { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.ga-h1 { margin: 16px 0 0; font-size: 56px; line-height: 1.02; font-weight: 800; letter-spacing: -.02em; }
.ga-akzent { position: relative; display: inline-block; }
.ga-akzent svg { position: absolute; left: 0; right: 0; bottom: -.1em; width: 100%; height: .34em; overflow: visible; }
.ga-lead { margin: 24px 0 0; font-size: 19px; line-height: 1.55; color: #4a463f; max-width: 32em; }
.ga-hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.ga-hero-bild {
  position: relative; min-height: 480px; border-left: 1px solid var(--farbe-rand);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ga-hero-bild-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ga-hero-rahmen {
  position: absolute; top: 22px; left: 22px; width: calc(100% - 44px); height: calc(100% - 44px);
  overflow: visible; pointer-events: none;
}
.ga-hero-bild-platzhalter {
  position: relative; font-family: var(--schrift-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: #8A8377;
}
.ga-hero-bild-label {
  position: absolute; top: 50%; right: 30px; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-family: var(--schrift-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(250, 249, 246, .82); text-shadow: 0 1px 3px rgba(20, 15, 10, .45);
  pointer-events: none;
}

/* ---- Sektionen (Leistungen, Showcase, Ablauf) ---- */
.ga-sektion { padding: 56px 56px 60px; border-bottom: 1px solid var(--farbe-rand); }
.ga-h2 { margin: 0 0 8px; font-size: 30px; font-weight: 800; }
.ga-sektion-lead { margin: 0 0 34px; font-size: 16px; line-height: 1.55; color: #6B665E; max-width: 42em; }
/* Falls die Sektion-Intro aus dem admin-gepflegten Markdown-Feld (seite.beschreibung) kommt,
   erzeugt render_markdown <p>-Absätze -- deren Standard-Ränder hier zurücksetzen. */
.ga-sektion-lead p { margin: 0; }
.ga-sektion-lead p + p { margin-top: 12px; }

/* Leistungsspektrum: gerahmtes 3er-Raster (Rahmen an Container + je Zelle rechts/unten) */
.ga-leistungen {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--farbe-rand); border-left: 1px solid var(--farbe-rand);
}
.ga-leistung {
  border-right: 1px solid var(--farbe-rand); border-bottom: 1px solid var(--farbe-rand);
  padding: 28px 26px; background: #fff; display: flex; flex-direction: column; min-height: 180px;
}
.ga-leistung-num { font-family: var(--schrift-mono); font-size: 12px; color: var(--farbe-teal); font-weight: 600; margin-bottom: 14px; }
.ga-leistung h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.ga-leistung p { margin: 0; font-size: 14px; line-height: 1.55; color: #6B665E; }

/* Showcase (Portfolio-Bilder) */
.ga-projekte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.ga-projekt { background: #fff; border: 1px solid var(--farbe-rand); display: flex; flex-direction: column; }
.ga-projekt-bild {
  position: relative; aspect-ratio: 4 / 3; border-bottom: 1px solid var(--farbe-rand); overflow: hidden;
  background: #F1EEE8; background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, .045) 0 8px, transparent 8px 16px);
}
.ga-projekt-bild img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ga-projekt-tag {
  position: absolute; top: 12px; left: 12px; font-family: var(--schrift-mono); font-size: 10px;
  letter-spacing: .05em; text-transform: uppercase; background: var(--farbe-teal-hell); color: #22403F; padding: 3px 8px;
}
.ga-projekt-text { padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.ga-projekt-text h3 { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.2; }
.ga-projekt-meta { font-size: 14px; color: #6B665E; }
.ga-showcase-leer { margin: 20px 0 0; font-size: 16px; line-height: 1.6; color: var(--farbe-muted); max-width: 40em; }

/* ---- Haltung (dunkler Manifest-Block) ---- */
.ga-philosophie { padding: 66px 56px 74px; background: var(--farbe-footer); color: #EFE9DE; }
.ga-philosophie-inner { max-width: 1020px; display: flex; gap: 30px; align-items: flex-start; }
.ga-philosophie-zeichen { font-family: var(--schrift-hand); font-size: 120px; line-height: .62; color: var(--farbe-terrakotta); flex: 0 0 auto; }
.ga-kicker-hell { color: var(--farbe-footer-label); margin-bottom: 18px; }
.ga-philosophie-quote {
  margin: 0; font-size: 34px; line-height: 1.32; font-weight: 700; color: #fff; letter-spacing: -.01em;
}
.ga-philosophie-quote .ga-akzent svg { stroke: var(--farbe-terrakotta); }

/* ---- Arbeitsweise ---- */
.ga-ablauf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 34px; }
.ga-ablauf-schritt { border-top: 2px solid var(--farbe-footer); padding-top: 16px; }
.ga-ablauf-num { font-family: var(--schrift-mono); font-size: 13px; color: var(--farbe-teal); font-weight: 600; margin-bottom: 10px; }
.ga-ablauf-schritt h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.ga-ablauf-schritt p { margin: 0; font-size: 14px; line-height: 1.5; color: #6B665E; }

/* ---- Projektanfrage (dunkles Info-Panel + Formular) ---- */
.ga-anfrage { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; border-bottom: 1px solid var(--farbe-rand); }
.ga-anfrage-info { padding: 56px; background: var(--farbe-footer); color: #EFE9DE; display: flex; flex-direction: column; justify-content: center; }
.ga-anfrage-info .kicker { color: var(--farbe-footer-label); }
.ga-anfrage-titel { margin: 16px 0 14px; font-size: 30px; font-weight: 800; color: #fff; }
.ga-anfrage-text { margin: 0 0 24px; font-size: 16px; line-height: 1.6; color: var(--farbe-footer-text); max-width: 26em; }
.ga-anfrage-punkte { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--farbe-footer-text); }
.ga-anfrage-punkte li { display: flex; gap: 10px; align-items: center; }
.ga-anfrage-punkte span { font-weight: 800; color: var(--farbe-teal-hell); }

.ga-anfrage-formular { padding: 52px 56px; }
.ga-anfrage-danke { display: flex; flex-direction: column; align-items: flex-start; }
.ga-anfrage-danke h3 { margin: 0 0 10px; font-size: 24px; font-weight: 800; }
.ga-anfrage-danke p { margin: 0 0 20px; font-size: 16px; line-height: 1.6; color: #4a463f; max-width: 34em; }

/* ---- Responsiv ---- */
@media (max-width: 900px) {
  .ga-hero { grid-template-columns: 1fr; }
  .ga-hero-bild { min-height: 320px; border-left: none; border-top: 1px solid var(--farbe-rand); order: -1; }
  .ga-anfrage { grid-template-columns: 1fr; }
  .ga-leistungen { grid-template-columns: 1fr 1fr; }
  .ga-projekte { grid-template-columns: 1fr 1fr; }
  .ga-ablauf { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .ga-hero-text { padding: 40px 24px; }
  .ga-h1 { font-size: 38px; }
  .ga-lead { font-size: 17px; }
  .ga-sektion { padding: 40px 24px 44px; }
  .ga-philosophie { padding: 44px 24px 50px; }
  .ga-philosophie-inner { gap: 14px; }
  .ga-philosophie-zeichen { font-size: 76px; }
  .ga-philosophie-quote { font-size: 25px; }
  .ga-leistungen { grid-template-columns: 1fr; }
  .ga-projekte { grid-template-columns: 1fr; }
  .ga-ablauf { grid-template-columns: 1fr; }
  .ga-anfrage-info { padding: 40px 24px; }
  .ga-anfrage-formular { padding: 36px 24px; }
}
