import Image from "next/image"; import { Reveal } from "./Reveal"; export function About() { return (
{/* Text content — relative + z-10 so it renders above the overlapping photo at lg+. Comes first in DOM at every breakpoint (no reorder here — unlike Hero, there's no conversion CTA at stake). sm:flex-[1.4_0_0] lg:flex-[1_0_0] — at Tablet the text column gets the wider 1.4:1 share (moved down from the old md:, not collapsed away as a first pass here tried): this isn't just compensation for the grid arriving before the fluid floor had room, it's also what the *inner* quote/divider/bio row (still lg:-only, see below) and the photo's own -ml-48 overlap actually need — collapsing straight to the 1:1.4 Desktop ratio at sm: left the text column too narrow and the photo overlapping too aggressively at real Tablet widths (reported 2026-07-29). Reverts to the real ratio from lg: up, where the overlap trick needs the image to have more room. */} {/* Large serif statement — width-constrained as per design */}

Ich glaube nicht, dass Menschen mehr Disziplin brauchen.

{/* Quote row: script quote / divider / author bio — side-by-side only from lg: (1024px), a deliberate exception to the site's sm: (640px) structural consolidation: quote + divider + the whitespace-nowrap bio ("Gründer von einfach-produktiv.") together need more room than the sm:-anchored text column has through the whole 640-1023px range, independent of the outer text/image ratio above. Stacked with a horizontal divider through that whole range instead, side-by-side (vertical divider) only once there's real room at lg:. */}
{/* Caveat script text with signature positioned below */}

Ich glaube,

sie brauchen 

weniger Reibung.

{/* Signature underline — hand-drawn organic stroke, sits just below the three Caveat lines (3 × 32px = 96px) */}
{/* Divider — horizontal full-width line below lg:, vertical gold line beside the author bio from lg: */}

Björn.

Führungskraft.

Familienmensch.

Gründer von einfach-produktiv.

{/* Author photo — plain side-by-side (no overlap) at Tablet, sharing the narrower 1:1.4 flex-basis with the text column above; overlaps the text column via -ml-48 only from lg+, where the text column has reverted to its narrower share and there's real room for the photo to bleed under it. Plain full-width photo below the text on true Mobile. */} Björn {/* Left gradient: wide enough to cover the text-column overlap — lg+ only, matching the overlap itself */}
); }