/* 02 editorial-bold · style.css
 * Breakpoints: 360 · 768 · 1024 · 1280
 * Display: Fraunces (variable opsz, ital, SOFT axis tuned for warmth)
 * Body:    IBM Plex Sans (weights 300 / 400 / 500 / 600)
 * Palette: paper #F5F1EA · ink #111 · ochre accent #C58A2E
 * Vibe: magazine. Oversized serif H1 bleeding past margins. Drop caps.
 *        Section numerals. Asymmetric grid. Italic kickers.
 */

:root {
  --paper: #F5F1EA;
  --paper-2: #EFEAE0;
  --ink: #111111;
  --ink-soft: #2A2622;
  --muted: #6E665C;
  --accent: #C58A2E;
  --accent-deep: #8E5D14;
  --rule: #D8D1C2;
  --rule-strong: #1A1714;

  --pad-x: clamp(20px, 4vw, 80px);
  --max: 1440px;
  --col-gap: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--paper); }

.serif {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-weight: 600;
}

.shell { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); position: relative; }

/* Header — top rule line, big number "Ausgabe 01 · 2026" feel ----------- */
.site-header {
  border-bottom: 1px solid var(--rule-strong);
  background: var(--paper);
  position: relative;
}
.masthead {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 18px 0 14px;
  gap: 24px;
}
.masthead .edition,
.masthead .nav-wrap {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.masthead .nav-wrap { text-align: right; }
.masthead .brand {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 700; font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em; text-align: center;
  line-height: 1;
}
.masthead .brand .amp {
  font-style: italic; color: var(--accent); font-weight: 500;
  padding: 0 4px;
}
.subnav {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule-strong);
  padding: 12px 0;
}
.subnav .shell {
  display: flex; align-items: center; justify-content: space-between;
}
.subnav nav { display: flex; gap: 28px; }
.subnav nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.subnav nav a[aria-current="page"] { color: var(--accent-deep); }
.subnav nav a:hover { color: var(--accent-deep); }
.subnav nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.subnav .date {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-size: 14px; color: var(--muted);
}

/* Hero -------------------------------------------------------------------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 120px); position: relative; }
.hero .kicker {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600;
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero .kicker::before, .hero .kicker::after {
  content: ""; width: 32px; height: 1px; background: var(--accent-deep);
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 700;
  font-weight: 700;
  font-size: clamp(56px, 13vw, 192px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 -0.04em;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic; color: var(--accent-deep); font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
}
.hero-body {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px; margin-top: clamp(40px, 5vw, 72px);
  align-items: end;
}
.hero-body .sub {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 80;
  font-size: clamp(20px, 1.6vw, 24px); line-height: 1.35;
  color: var(--ink-soft); margin: 0;
  border-left: 2px solid var(--ink); padding-left: 20px;
}
.hero-body .cta-row { display: flex; flex-direction: column; gap: 12px; justify-self: end; }
.hero-body .cta-row .meta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Section ---------------------------------------------------------------- */
.section {
  padding: clamp(72px, 10vw, 144px) 0;
  border-top: 1px solid var(--rule-strong);
  position: relative;
}
.section::before {
  content: ""; position: absolute; top: 4px; left: 0; right: 0;
  height: 1px; background: var(--rule-strong);
}
.section-mast {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: baseline; margin-bottom: clamp(48px, 6vw, 88px);
}
.section-num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(72px, 10vw, 144px);
  line-height: 0.85;
  color: var(--accent-deep);
  letter-spacing: -0.04em;
}
.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 600;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 0.95; letter-spacing: -0.025em;
  margin: 0; max-width: 18ch; text-wrap: balance;
}
.section-lede {
  font-style: italic; color: var(--muted); max-width: 56ch;
  margin: 24px 0 0; font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-size: 18px;
}

/* Services teaser (Home) ------------------------------------------------- */
.services-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.svc-card {
  padding: 32px 28px 28px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--rule);
  position: relative;
}
.svc-card:last-child { border-right: 0; }
.svc-card .n {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-size: 56px; line-height: 0.8; color: var(--accent-deep);
  margin-bottom: 16px; letter-spacing: -0.04em;
}
.svc-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 80, "SOFT" 80, "wght" 600;
  font-weight: 600; font-size: 32px; letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.svc-card .kicker {
  font-style: italic; color: var(--accent-deep);
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 24, "SOFT" 70;
  margin: 0 0 16px; font-size: 18px;
}
.svc-card .body { color: var(--ink-soft); font-size: 15.5px; margin: 0; }
.svc-card .body::first-letter {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-weight: 700; font-size: 3.4em; line-height: 0.85; float: left;
  padding: 4px 8px 0 0; color: var(--ink);
}

/* Services full (Leistungen) -------------------------------------------- */
.svc-block {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  padding: clamp(56px, 7vw, 112px) 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.svc-block:first-of-type { border-top: 2px solid var(--ink); }
.svc-block .head {
  position: sticky; top: 24px; align-self: start;
}
.svc-block .n {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
  font-weight: 500; font-size: clamp(96px, 14vw, 200px);
  line-height: 0.8; color: var(--accent-deep);
  letter-spacing: -0.05em; margin-bottom: 16px;
}
.svc-block h2 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 700;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.03em; line-height: 0.95;
  margin: 0;
}
.svc-block .kicker {
  font-style: italic; color: var(--accent-deep);
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 36, "SOFT" 70;
  font-size: 22px; margin: 8px 0 0;
}
.svc-block .body {
  font-size: 18px; line-height: 1.55; color: var(--ink-soft);
  margin: 0 0 28px;
}
.svc-block .body::first-letter {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-weight: 700; font-size: 4.2em; line-height: 0.8; float: left;
  padding: 6px 12px 0 0; color: var(--ink);
}
.svc-block .bullets {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--rule);
}
.svc-block .bullets li {
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 36px 1fr; gap: 12px;
  align-items: baseline; font-size: 16.5px;
}
.svc-block .bullets li::before {
  content: "—"; color: var(--accent-deep); font-family: "Fraunces", serif;
  font-weight: 500;
}

/* Portfolio -------------------------------------------------------------- */
.portfolio {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 32px var(--col-gap); row-gap: 56px;
}
.work {
  position: relative;
}
.work:nth-child(1) { grid-column: 1 / span 7; }
.work:nth-child(2) { grid-column: 8 / span 5; padding-top: 64px; }
.work:nth-child(3) { grid-column: 1 / span 5; }
.work:nth-child(4) { grid-column: 6 / span 7; padding-top: 32px; }
.work:nth-child(5) { grid-column: 1 / span 6; padding-top: 24px; }
.work:nth-child(6) { grid-column: 7 / span 6; }

.work .thumb {
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.work .thumb img { width: 50%; }
.work:nth-child(1) .thumb { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.work:nth-child(3) .thumb { background: var(--ink); color: var(--paper); }
.work:nth-child(4) .thumb { background: #E8DDC9; }
.work:nth-child(5) .thumb { background: var(--ink); color: var(--paper); }
.work:nth-child(6) .thumb { background: var(--accent-deep); color: var(--paper); border-color: var(--accent-deep); }

.work .year {
  position: absolute; top: 12px; right: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-variation-settings: "opsz" 36, "SOFT" 100;
  font-size: 24px; padding: 4px 10px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--ink);
}
.work h3 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 80, "SOFT" 80, "wght" 600;
  font-weight: 600; font-size: 26px; letter-spacing: -0.02em;
  margin: 20px 0 4px;
}
.work .cat {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* About / Team --------------------------------------------------------- */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: end;
}
.about-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 600;
  font-weight: 600; font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.025em; line-height: 0.95;
  margin: 16px 0 24px; text-wrap: balance;
}
.about-copy p { color: var(--ink-soft); font-size: 17px; margin: 0; max-width: 48ch; }
.team-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.team-strip .member { display: grid; gap: 12px; }
.team-strip .portrait {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--ink);
  overflow: hidden; position: relative;
}
.team-strip .portrait img { width: 100%; height: 100%; object-fit: cover; }
.team-strip h3 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 80, "wght" 600;
  font-weight: 600; font-size: 22px; letter-spacing: -0.015em;
  margin: 4px 0 -4px;
}
.team-strip .role {
  font-style: italic; color: var(--accent-deep); font-size: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 24, "SOFT" 70;
}
.team-strip .bio { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; margin: 0; }

/* CTA strip ------------------------------------------------------------- */
.cta-strip {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--accent);
}
.cta-strip .wrap-cta {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end;
}
.cta-strip h2 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 600;
  font-weight: 600; font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92; letter-spacing: -0.035em;
  margin: 0; max-width: 18ch;
}
.cta-strip h2 em {
  font-style: italic; color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
  font-weight: 500;
}
.cta-strip .btn {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.cta-strip .btn:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }

/* Footer --------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--rule-strong);
  padding: 56px 0 32px;
}
.foot-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.foot-brand { display: grid; gap: 12px; max-width: 36ch; }
.foot-brand .brand-mark {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-weight: 700; font-size: 36px; letter-spacing: -0.02em; line-height: 0.9;
}
.foot-brand .brand-mark .amp { font-style: italic; color: var(--accent-deep); }
.foot-brand p { color: var(--muted); font-size: 14px; margin: 0; }
.foot-links { display: grid; gap: 8px; font-size: 14px; }
.foot-links a { color: var(--ink-soft); }
.foot-links a:hover { color: var(--accent-deep); }
.foot-contact { display: grid; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.foot-contact a { color: var(--ink); border-bottom: 1px solid var(--accent-deep); }
.foot-legal {
  margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* Page intro (Leistungen, Kontakt) -------------------------------------- */
.page-intro {
  padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: end;
  border-bottom: 1px solid var(--rule-strong);
}
.page-intro .kicker {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600;
}
.page-intro h1 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 700;
  font-weight: 700; font-size: clamp(48px, 9vw, 144px);
  line-height: 0.9; letter-spacing: -0.04em; margin: 0;
  text-wrap: balance;
}
.page-intro h1 em {
  font-style: italic; color: var(--accent-deep); font-weight: 500;
}
.page-intro .lede {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-variation-settings: "opsz" 36, "SOFT" 70;
  font-size: 20px; color: var(--ink-soft); margin: 0 0 8px;
  max-width: 56ch; border-left: 2px solid var(--ink); padding-left: 20px;
}

/* Contact form --------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding: clamp(64px, 9vw, 112px) 0;
}
.contact-form { display: grid; gap: 24px; }
.contact-aside {
  border-left: 1px solid var(--ink); padding-left: 28px;
  display: grid; gap: 24px; align-content: start;
}
.contact-aside dt {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 6px;
}
.contact-aside dd {
  margin: 0; font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 36, "SOFT" 80;
  font-size: 20px;
}
.contact-aside dd a { border-bottom: 1px solid var(--accent-deep); }

.field { display: grid; gap: 8px; }
.field label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.field input, .field textarea {
  font: inherit; font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  font-size: 22px;
  padding: 10px 0 12px;
  background: transparent; color: var(--ink);
  border: 0; border-bottom: 1px solid var(--ink);
  border-radius: 0; outline: none; width: 100%;
  transition: border-color 140ms ease;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--muted); font-style: italic;
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.45; }
.field input:focus, .field textarea:focus { border-color: var(--accent-deep); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-slot {
  border: 1px dashed var(--rule-strong);
  padding: 12px 14px; font-size: 12px; color: var(--muted);
  font-style: italic;
}
.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.form-footer .privacy { font-size: 12px; color: var(--muted); max-width: 56ch; }
.form-notice {
  border: 1px solid var(--accent-deep); background: rgba(197,138,46,0.1);
  padding: 16px 18px; font-style: italic; font-size: 15.5px;
}

/* Responsive ----------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-body { grid-template-columns: 1fr; gap: 28px; }
  .hero-body .cta-row { justify-self: start; }
  .svc-block { grid-template-columns: 1fr; gap: 24px; }
  .svc-block .head { position: static; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-aside { border-left: 0; border-top: 1px solid var(--ink); padding-left: 0; padding-top: 28px; }
  .page-intro { grid-template-columns: 1fr; gap: 24px; }
  .portfolio { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .work:nth-child(1), .work:nth-child(2), .work:nth-child(3),
  .work:nth-child(4), .work:nth-child(5), .work:nth-child(6) {
    grid-column: auto; padding-top: 0;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .masthead { grid-template-columns: 1fr 1fr; }
  .masthead .nav-wrap { display: none; }
  .masthead .brand { text-align: left; grid-column: 1 / -1; }
  .masthead .edition { grid-column: 1 / -1; }
  .subnav .shell { gap: 12px; }
  .subnav nav { gap: 16px; flex-wrap: wrap; }
  .services-teaser { grid-template-columns: 1fr; }
  .svc-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .svc-card:last-child { border-bottom: 0; }
  .section-mast { grid-template-columns: 1fr; gap: 4px; }
  .portfolio { grid-template-columns: 1fr; }
  .team-strip { grid-template-columns: 1fr; gap: 36px; }
  .cta-strip .wrap-cta { grid-template-columns: 1fr; gap: 28px; }
  .foot-row { grid-template-columns: 1fr; gap: 28px; }
}
