/* ---------- Tokens ---------- */
:root {
  --bg: #F2EFE8;
  --bg-2: #E9E5DC;
  --ink: #0E0E0E;
  --ink-60: rgba(14, 14, 14, 0.62);
  --ink-30: rgba(14, 14, 14, 0.28);
  --ink-12: rgba(14, 14, 14, 0.12);
  --paper: #FBFAF6;
  --accent: #FF4D1F;
  --accent-ink: #FFFFFF;
  --night: #0E0E0E;
  --night-2: #181818;
  --on-night: #F2EFE8;
  --on-night-60: rgba(242, 239, 232, 0.6);
  --on-night-15: rgba(242, 239, 232, 0.15);

  --f-display: "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-display);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  font-synthesis: none; /* Verhindert synthetische Italic/Bold — Bricolage hat kein echtes Italic */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02";
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Layout ---------- */
.app { min-height: 100vh; overflow-x: hidden; }
.section { padding: clamp(64px, 8vw, 128px) var(--pad-x); position: relative; }
.section--tight { padding: clamp(48px, 6vw, 96px) var(--pad-x); }
.section--dark { background: var(--night); color: var(--on-night); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section--dark .eyebrow { color: var(--on-night-60); }
.eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 9.2vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h-display em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}
.h-section {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.lead {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--ink-60);
  max-width: 56ch;
  text-wrap: pretty;
}
.section--dark .lead { color: var(--on-night-60); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(242, 239, 232, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--ink-12);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  font-size: 19px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.nav__wordmark {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.nav__dot {
  width: 0.34em;
  height: 0.34em;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--f-mono);
  font-size: 13px;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-60);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--ink);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex; align-items: center;
  border: 1px solid var(--ink-12);
  border-radius: var(--r-pill);
  padding: 3px;
  font-family: var(--f-mono);
  font-size: 12px;
}
.lang-toggle button {
  padding: 5px 11px;
  border-radius: var(--r-pill);
  color: var(--ink-60);
  letter-spacing: 0.04em;
}
.lang-toggle button.is-active {
  background: var(--ink);
  color: var(--bg);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: var(--bg); }
.btn--ink:hover { background: var(--accent); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { background: var(--ink); }
.btn--ghost { border: 1px solid var(--ink-12); }
.btn--ghost:hover { border-color: var(--ink); }
.btn .arrow {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: currentColor; color: var(--ink);
}
.btn--ink .arrow { color: var(--ink); background: var(--bg); }
.btn--accent .arrow { color: var(--accent); background: #fff; }
.btn .arrow svg { width: 12px; height: 12px; }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 6vw, 92px) var(--pad-x) clamp(40px, 5vw, 72px); position: relative; }
.hero__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: clamp(48px, 7vw, 96px);
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-60);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__title { margin: 0 0 clamp(36px, 5vw, 72px); }
.hero__title .line { display: block; }
.hero__title .accent { color: var(--accent); }
.hero__title .with-mark {
  display: inline-flex; align-items: center; gap: 0.18em;
}
.hero__title .mark {
  width: 0.78em; height: 0.78em; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  vertical-align: -0.04em;
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.hero__bottom .lead { max-width: 38ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__strip {
  margin-top: clamp(48px, 6vw, 96px);
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-60);
}
.hero__strip > div {
  padding: 18px 0;
  border-right: 1px solid var(--ink-12);
  padding-right: 18px;
}
.hero__strip > div:last-child { border-right: 0; }
.hero__strip strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}

@media (max-width: 760px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .hero__strip > div:nth-child(2) { border-right: 0; }
  .hero__strip > div:nth-child(1), .hero__strip > div:nth-child(2) {
    border-bottom: 1px solid var(--ink-12);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 48px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
}
.marquee__item .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Manifesto ---------- */
.manifesto {
  background: var(--bg-2);
  padding: clamp(80px, 10vw, 160px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.manifesto__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.manifesto__big {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 8.2vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.manifesto__big em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
  color: var(--accent);
}
.manifesto__intro {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--ink-60);
  max-width: 56ch;
  margin: 0 0 clamp(40px, 5vw, 64px);
  text-wrap: pretty;
}
.manifesto__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-12);
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}
.principle {
  background: var(--bg-2);
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s ease;
}
.principle:hover { background: var(--paper); }
.principle__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.principle__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-60);
  letter-spacing: 0.06em;
}
.principle__mark {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.principle__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.principle__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .manifesto__head { grid-template-columns: 1fr; }
  .manifesto__principles { grid-template-columns: 1fr; }
}

/* ---------- Section header ---------- */
.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section__head .meta { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 760px) {
  .section__head { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.about__intro p {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
  margin: 0;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}
.about__intro p + p { margin-top: 1.1em; color: var(--ink-60); font-size: clamp(16px, 1.4vw, 19px); }
@media (max-width: 760px) {
  .about__intro { grid-template-columns: 1fr; }
}

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  border-top: 1px solid var(--ink-12);
  padding-top: clamp(32px, 4vw, 56px);
}
.founder__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 0 var(--ink-12);
}
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.founder__photo::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--ink-12);
  pointer-events: none;
}
.founder__photo span {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-60);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}
.founder__meta {
  display: flex; flex-direction: column;
  padding: 8px 0;
}
.founder__meta .eyebrow { margin-bottom: 24px; }
.founder__name {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 12px;
}
.founder__role {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.founder__location {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-60);
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-12);
  letter-spacing: 0.02em;
}
.founder__bio {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 48ch;
  text-wrap: pretty;
}
.founder__traits {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.trait {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink-12);
  color: var(--ink);
  text-transform: uppercase;
  background: var(--paper);
}
@media (max-width: 760px) {
  .founder { grid-template-columns: 1fr; }
  .founder__photo { max-width: 360px; }
}

/* ---------- (legacy team styles removed) ---------- */

/* ---------- Services ---------- */
.services { display: flex; flex-direction: column; }
.service {
  border-top: 1px solid var(--on-night-15);
  padding: clamp(28px, 3.2vw, 44px) 0;
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 100px;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
  cursor: pointer;
  transition: padding .25s ease;
}
.service:last-child { border-bottom: 1px solid var(--on-night-15); }
.service:hover { padding-left: 16px; padding-right: 16px; }
.service__num {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--on-night-60);
  padding-top: 6px;
}
.service__title {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  transition: color .2s ease;
}
.service:hover .service__title { color: var(--accent); }
.service__title em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}
.service__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-night-60);
  margin: 0 0 14px;
  text-wrap: pretty;
  max-width: 48ch;
}
.service__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--on-night-15);
  color: var(--on-night);
}
.service__cta {
  justify-self: end;
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--on-night-15);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.service:hover .service__cta {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
}
.service__cta svg { width: 16px; height: 16px; }
@media (max-width: 760px) {
  .service { grid-template-columns: 40px 1fr; }
  .service__right { grid-column: 1 / -1; }
  .service__cta { display: none; }
}

/* ---------- Partners callout (inside dark services section) ---------- */
.partners {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--on-night-15);
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(255, 77, 31, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.partners::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(circle at center, rgba(255,77,31,0.18), transparent 70%);
  pointer-events: none;
}
.partners__head { position: relative; z-index: 1; }
.partners__body { position: relative; z-index: 1; }
.partners__title {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--on-night);
}
.partners__title em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
  color: var(--accent);
}
.partners__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-night-60);
  margin: 0 0 18px;
  max-width: 56ch;
  text-wrap: pretty;
}
.partners__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.partners__chip {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  border: 1px dashed var(--on-night-15);
  color: var(--on-night-60);
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .partners { grid-template-columns: 1fr; }
}

/* ---------- Process band ---------- */
.process {
  background: var(--bg-2);
  padding: clamp(64px, 8vw, 128px) var(--pad-x);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process__step {
  background: var(--bg);
  padding: 28px 24px 32px;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 24px;
  position: relative;
  transition: background .2s ease;
}
.process__step:hover { background: var(--paper); }
.process__step .num {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-60);
}
.process__step h4 {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.process__step p {
  font-size: 14px; line-height: 1.5; color: var(--ink-60);
  margin: 0;
}
@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--on-night); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact__head h2 { margin-bottom: 24px; }
.contact__head .accent { color: var(--accent); font-style: normal; font-weight: 500; }
.h-section em { font-style: normal; font-weight: 500; color: var(--accent); }
.contact__list {
  margin-top: 40px;
  display: grid; gap: 18px;
  font-family: var(--f-mono); font-size: 13px;
}
.contact__list .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--on-night-15);
}
.contact__list .row span:first-child { color: var(--on-night-60); }
.contact__list .row span:last-child { color: var(--on-night); }

.form {
  background: var(--night-2);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  display: grid; gap: 16px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-night-60);
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--on-night-15);
  color: var(--on-night);
  padding: 10px 0;
  outline: none;
  transition: border-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(242,239,232,0.35);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select option { background: var(--ink); color: var(--on-night); }
.field--invalid input, .field--invalid textarea { border-color: var(--accent); }
.field__error {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--accent);
}

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.chip {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--on-night-15);
  color: var(--on-night-60);
  cursor: pointer;
  transition: all .15s ease;
  text-transform: uppercase;
}
.chip:hover { color: var(--on-night); }
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.form__submit {
  margin-top: 8px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.form__submit .note {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--on-night-60);
}
.btn--submit {
  background: var(--accent); color: var(--accent-ink);
  padding: 14px 20px;
  border-radius: var(--r-pill);
}
.btn--submit:hover { background: var(--bg); color: var(--ink); }
.btn--submit .arrow { background: #fff; color: var(--accent); }
.btn--submit:hover .arrow { background: var(--accent); color: var(--bg); }

.form__success {
  background: var(--night-2);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid; gap: 16px;
}
.form__success .h-section { color: var(--accent); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--on-night);
  padding: clamp(64px, 6vw, 96px) var(--pad-x) 24px;
  border-top: 1px solid var(--on-night-15);
}
.footer__big {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 8.4vw, 168px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 48px;
  display: flex;
  align-items: center;
  gap: 0.12em;
  white-space: nowrap;
}
.footer__big .dot {
  width: 0.18em; height: 0.18em; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex: 0 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--on-night-15);
  font-family: var(--f-mono); font-size: 13px;
}
.footer__col h5 {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-night-60);
  margin: 0 0 14px;
  font-weight: 400;
}
.footer__col a, .footer__col p {
  color: var(--on-night);
  display: block;
  padding: 4px 0;
  margin: 0;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--accent); }
.footer__legal {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--on-night-15);
  padding-top: 20px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--on-night-60);
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
