/* 05 boutique-warm · style.css
 * Breakpoints: 360 · 768 · 1024 · 1280
 * Display: Boska (Fontshare; weights 400 / 500 / 600 / 700, italic 400)
 * Body:    General Sans (Fontshare; weights 300 / 400 / 500 / 600)
 * Palette: cream #F6F1E7 · ink #1C1A17 · brass #A08456 · soft-rule #D9CFBA
 * Vibe: refined boutique / architecture-practice. Thin rules, generous
 *        left margins, small caps, labelled plates, brass accent.
 */

:root {
  --cream: #F6F1E7;
  --cream-2: #EFE7D6;
  --paper: #FBF7EE;
  --ink: #1C1A17;
  --ink-2: #3D3934;
  --muted: #7D746A;
  --brass: #A08456;
  --brass-deep: #7E6638;
  --rule: #D9CFBA;
  --rule-strong: #B9AB8A;

  --pad-x: clamp(20px, 5vw, 96px);
  --max: 1280px;

  --serif: "Boska", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "General Sans", system-ui, sans-serif;
}

* { 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(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
}

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

.serif { font-family: var(--serif); }
.smallcaps {
  font-family: var(--sans); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 11.5px;
  color: var(--muted);
}

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

/* Header --------------------------------------------------------------- */
.site-header {
  padding: 32px 0 0;
  background: var(--cream);
}
.site-header .shell {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  padding-bottom: 22px; border-bottom: 1px solid var(--rule);
}
.brand {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.005em;
  color: var(--ink); justify-self: start;
}
.brand .mark { color: var(--brass); }
.nav {
  display: flex; gap: 32px; justify-self: center;
}
.nav a {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}
.nav a:hover { color: var(--brass-deep); }
.nav a[aria-current="page"] { color: var(--brass-deep); border-bottom-color: var(--brass); }
.nav a:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
.header-meta {
  justify-self: end;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted);
}

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px;
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid var(--ink);
  transition: background 200ms ease, color 200ms ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.btn--brass { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--brass:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.btn .arrow { transition: transform 220ms ease; font-family: var(--serif); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero ----------------------------------------------------------------- */
.hero {
  padding: clamp(72px, 12vw, 168px) 0 clamp(80px, 11vw, 144px);
  position: relative;
}
.hero .marker {
  font-family: var(--sans); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 36px;
  display: flex; align-items: center; gap: 16px;
}
.hero .marker::before, .hero .marker::after {
  content: ""; flex: 1; max-width: 64px; height: 1px; background: var(--rule-strong);
}
.hero .marker .sep { color: var(--ink-2); font-style: italic; font-family: var(--serif); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  max-width: 18ch; text-wrap: balance;
  text-align: center;
}
.hero h1 em {
  font-style: italic; color: var(--brass-deep); font-weight: 400;
}
.hero .sub {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55;
  color: var(--ink-2); margin: 0 auto 40px;
  max-width: 52ch; text-align: center;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero .ornament {
  margin: 56px auto 0;
  width: 60px; height: 30px;
  color: var(--brass);
}

/* Section -------------------------------------------------------------- */
.section { padding: clamp(80px, 10vw, 144px) 0; border-top: 1px solid var(--rule); }
.section--paper { background: var(--paper); }
.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(48px, 7vw, 96px);
  align-items: baseline;
}
.section-head .label {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-deep);
  display: flex; align-items: baseline; gap: 14px;
}
.section-head .label .num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px; letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.4vw, 64px); line-height: 1; letter-spacing: -0.015em;
  margin: 0; text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.section-head .lede {
  grid-column: 2; font-family: var(--serif); font-weight: 400;
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  max-width: 56ch; margin: 16px 0 0;
}

/* Services teaser (Home) ---------------------------------------------- */
.services-teaser {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
.svc-row-teaser {
  display: grid; grid-template-columns: 220px 1fr 1.4fr;
  align-items: baseline; gap: clamp(20px, 3vw, 56px);
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--rule);
}
.svc-row-teaser .plate {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: baseline; gap: 12px;
}
.svc-row-teaser .plate .num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--ink); letter-spacing: 0;
  text-transform: none;
}
.svc-row-teaser h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -0.015em; line-height: 1;
  margin: 0;
}
.svc-row-teaser h3 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.svc-row-teaser .kicker {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 19px; color: var(--brass-deep); margin: 8px 0 0;
}
.svc-row-teaser .body {
  font-size: 16px; color: var(--ink-2); margin: 0; line-height: 1.65;
}

/* Services full (Leistungen) ------------------------------------------ */
.svc-detailed { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.svc-detailed > article {
  padding: clamp(56px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.svc-detailed > article:last-child { border-bottom: 0; }
.svc-detailed .head .plate {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 12px;
}
.svc-detailed .head h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em; line-height: 1; margin: 0;
}
.svc-detailed .head .kicker {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--brass-deep); margin: 12px 0 0;
}
.svc-detailed .body {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6;
  color: var(--ink-2); margin: 0 0 32px;
}
.svc-detailed .bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
}
.svc-detailed .bullets li {
  display: grid; grid-template-columns: 80px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--rule);
  align-items: baseline; font-size: 16px;
}
.svc-detailed .bullets li:first-child { border-top: 1px solid var(--rule); }
.svc-detailed .bullets li::before {
  content: "—";
  color: var(--brass); font-family: var(--serif);
  font-size: 22px; letter-spacing: 0;
}

/* Portfolio (labelled plates) ----------------------------------------- */
.portfolio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px var(--pad-x);
}
.work {
  display: grid; gap: 14px;
}
.work .plate {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-deep);
}
.work .plate .num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px; color: var(--ink); letter-spacing: 0;
  text-transform: none; margin-right: 6px;
}
.work .thumb {
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  color: var(--ink);
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  position: relative;
}
.work:nth-child(1) .thumb { background: #EAE0CC; }
.work:nth-child(2) .thumb { background: #E4D8BD; }
.work:nth-child(3) .thumb { background: var(--cream); }
.work:nth-child(4) .thumb { background: #ECE2CB; }
.work:nth-child(5) .thumb { background: #DDD0B0; }
.work:nth-child(6) .thumb { background: var(--cream-2); }
.work .thumb img { width: 52%; }
.work h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.005em; line-height: 1.15;
  margin: 4px 0 0;
}
.work h3 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.work .cat {
  font-family: var(--sans); font-size: 12.5px;
  color: var(--muted); letter-spacing: 0.06em;
  font-style: italic;
}

/* Team ---------------------------------------------------------------- */
.team-wrap {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.team-wrap .member { display: grid; gap: 14px; }
.team-wrap .portrait {
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  color: var(--ink);
  border: 1px solid var(--brass);
  padding: 16px;
  position: relative;
}
.team-wrap .portrait::after {
  content: ""; position: absolute; inset: 6px; border: 1px solid var(--rule);
  pointer-events: none;
}
.team-wrap .portrait img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.team-wrap h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 24px; letter-spacing: -0.005em; margin: 8px 0 0;
}
.team-wrap h3 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.team-wrap .role {
  font-family: var(--sans); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass-deep);
}
.team-wrap .bio {
  font-family: var(--serif); font-weight: 400; font-size: 16.5px;
  line-height: 1.55; color: var(--ink-2); margin: 4px 0 0;
}

/* CTA ----------------------------------------------------------------- */
.cta-quiet {
  text-align: center;
  padding: clamp(72px, 10vw, 144px) 0;
  border-top: 1px solid var(--ink);
}
.cta-quiet .label {
  font-family: var(--sans); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 24px;
}
.cta-quiet h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 auto 36px; max-width: 24ch; text-wrap: balance;
}
.cta-quiet h2 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.cta-quiet .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-quiet .note {
  margin-top: 28px; font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: 16px;
}

/* Page intro ---------------------------------------------------------- */
.page-intro {
  padding: clamp(96px, 12vw, 168px) 0 clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--rule);
}
.page-intro .label {
  font-family: var(--sans); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-deep);
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px;
}
.page-intro .label .num {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--ink); letter-spacing: 0; text-transform: none;
}
.page-intro h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95; letter-spacing: -0.025em;
  margin: 0; max-width: 16ch; text-wrap: balance;
}
.page-intro h1 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.page-intro .lede {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  color: var(--ink-2); margin: 28px 0 0; max-width: 56ch; line-height: 1.55;
}

/* Contact form ------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(64px, 9vw, 128px) 0;
}
.contact-form {
  display: grid; gap: 28px;
}
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass-deep);
}
.field input, .field textarea {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  padding: 12px 0;
  background: transparent; color: var(--ink);
  border: 0; border-bottom: 1px solid var(--ink);
  width: 100%; outline: none; border-radius: 0;
  transition: border-color 160ms ease;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--muted); font-style: italic;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--brass-deep); }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.4; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-slot {
  border: 1px solid var(--rule-strong);
  padding: 12px 14px; background: var(--paper);
  font-size: 12px; color: var(--muted);
  font-family: var(--sans);
}
.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 8px;
}
.form-footer .privacy {
  font-size: 12.5px; color: var(--muted); max-width: 50ch;
  font-style: italic; font-family: var(--serif);
}
.form-notice {
  border-left: 2px solid var(--brass); background: var(--paper);
  padding: 16px 20px; color: var(--ink-2);
  font-family: var(--serif); font-style: italic; font-size: 17px;
}

.contact-aside {
  border-left: 1px solid var(--rule-strong);
  padding-left: clamp(20px, 3vw, 36px);
  display: grid; gap: 28px; align-content: start;
}
.contact-aside .row { display: grid; gap: 4px; }
.contact-aside .row .label {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass-deep);
}
.contact-aside .row .value {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  letter-spacing: -0.005em; color: var(--ink);
}
.contact-aside .row .value a { border-bottom: 1px solid var(--brass); }
.contact-aside .ornament {
  width: 48px; height: 1px; background: var(--brass);
  margin: 4px 0;
}

/* Footer ------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 72px 0 36px;
}
.foot-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px;
  margin-bottom: 56px;
}
.foot-brand {
  display: grid; gap: 14px; max-width: 36ch;
}
.foot-brand .brand-mark {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 26px; letter-spacing: -0.005em; color: var(--ink);
}
.foot-brand .brand-mark .mark { color: var(--brass); }
.foot-brand p {
  font-family: var(--serif); color: var(--ink-2); font-size: 16.5px;
  margin: 0; line-height: 1.5;
}
.foot-col h4 {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass-deep); margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a {
  font-family: var(--serif); font-size: 17px; color: var(--ink-2);
}
.foot-col a:hover { color: var(--brass-deep); }
.foot-legal {
  border-top: 1px solid var(--rule); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11px; color: var(--muted);
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .lede { grid-column: 1; }
  .svc-row-teaser { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .svc-detailed > article { grid-template-columns: 1fr; gap: 24px; }
  .portfolio { grid-template-columns: 1fr 1fr; }
  .team-wrap { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule-strong); padding-top: 28px; }
  .foot-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .site-header .shell { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .brand, .nav, .header-meta { justify-self: center; }
  .nav { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .header-meta { display: none; }
  .portfolio { grid-template-columns: 1fr; }
  .foot-row { grid-template-columns: 1fr; gap: 32px; }
}
