:root {
  --text: #111111;
  --muted: #66615b;
  --soft: #f4f1ec;
  --line: #ded8cf;
  --dark: #111111;
  --white: #ffffff;
  --accent: #9c6b3d;
  --max: 1180px;
  --wide: 1320px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 44px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  color: var(--text);
}

.site-logo span {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-logo small {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.2s ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Global */

main {
  overflow: hidden;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-dark {
  background: rgba(17,17,17,0.74);
  color: var(--white);
  border-color: rgba(255,255,255,0.52);
}

.button-dark:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid var(--accent);
}

.text-link:hover {
  color: var(--accent);
}

.text-link.light {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

/* Hero */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.50), rgba(0,0,0,0.10)),
    linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 96px;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero p {
  max-width: 670px;
  margin: 32px 0 0;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
}

/* Statement */

.statement {
  padding: 110px 0 96px;
  background: var(--white);
}

.statement-inner {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
}

.statement p {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

/* Editorial Baustelle */

.editorial-block {
  padding: 90px 0 120px;
  background: var(--white);
}

.editorial-inner {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 64px;
  align-items: center;
}

.editorial-image {
  width: 100%;
  min-width: 0;
}

.editorial-image img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-text {
  min-width: 0;
}

.editorial-text h2,
.showcase-item h2,
.wide-image-text h2,
.target-section h2,
.process-section h2,
.seo-text h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.editorial-text p,
.showcase-item p,
.wide-image-text p,
.target-grid p,
.process-list p,
.seo-text p,
.final-cta p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.editorial-text p {
  max-width: 520px;
}

/* Large Type */

.large-type {
  padding: 140px 0;
  background: var(--soft);
}

.large-type-inner {
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
}

.large-type h2 {
  margin: 0;
  font-size: clamp(54px, 9vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

/* Split Showcase */

.split-showcase {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  margin-bottom: 36px;
}

.showcase-item-offset {
  margin-top: 160px;
}

.showcase-item h2 {
  font-size: clamp(48px, 7vw, 118px);
}

.showcase-item p {
  max-width: 560px;
}

/* Wide Image */

.wide-image-section {
  position: relative;
  min-height: 720px;
  color: var(--white);
  background: var(--dark);
  display: flex;
  align-items: flex-end;
}

.wide-image-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.68), rgba(0,0,0,0.08)),
    linear-gradient(90deg, rgba(0,0,0,0.44), rgba(0,0,0,0.08));
}

.wide-image-text {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 86px;
}

.wide-image-text p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
}

/* Target */

.target-section {
  padding: 130px 0;
  background: var(--white);
}

.target-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.target-section h2 {
  max-width: 980px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 76px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.target-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.target-grid p {
  margin: 0;
  font-size: 16px;
}

/* Process */

.process-section {
  padding: 130px 0;
  background: var(--soft);
}

.process-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.process-section h2 {
  max-width: 980px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 78px;
}

.process-list div {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.process-list span {
  display: block;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.process-list h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 0;
  font-size: 16px;
}

/* SEO Text */

.seo-text {
  padding: 110px 0;
  background: var(--white);
}

.seo-inner {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.seo-text h2 {
  font-size: clamp(36px, 4.8vw, 74px);
}

.seo-text p {
  margin: 26px 0 0;
}

/* CTA */

.final-cta {
  padding: 140px 0;
  color: var(--white);
  background: var(--dark);
  text-align: center;
}

.final-cta-inner {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(255,255,255,0.72);
}

.cta-mail {
  margin-top: 22px !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.78) !important;
}

/* Footer */

.site-footer {
  padding: 46px 0;
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.62);
}

.footer-contact {
  margin-top: 14px !important;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-nav {
  display: flex;
  gap: 22px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--white);
}

/* Legal Pages */

.page-hero {
  padding: 170px 0 80px;
}

.page-hero-light {
  background: var(--soft);
  color: var(--text);
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.legal-section {
  padding: 80px 0 120px;
  background: var(--white);
}

.legal-inner {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
}

.legal-inner h2 {
  margin: 46px 0 14px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-inner p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.legal-inner strong {
  color: var(--text);
}

.legal-inner a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.legal-inner a:hover {
  color: var(--accent);
}

/* Tablet */

@media (max-width: 980px) {
  .site-nav {
    gap: 18px;
  }

  .editorial-inner,
  .split-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .editorial-image img {
    aspect-ratio: 16 / 10;
  }

  .showcase-item-offset {
    margin-top: 0;
  }

  .target-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 32px, var(--max));
    min-height: 68px;
  }

  .site-logo span {
    font-size: 17px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 22px 22px;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 72px);
    letter-spacing: -0.06em;
  }

  .hero p {
    font-size: 18px;
  }

  .statement {
    padding: 78px 0;
  }

  .statement-inner,
  .editorial-inner,
  .split-showcase,
  .target-inner,
  .process-inner,
  .seo-inner,
  .final-cta-inner,
  .wide-image-text,
  .large-type-inner,
  .footer-inner,
  .page-hero-inner,
  .legal-inner {
    width: min(100% - 32px, var(--max));
  }

  .statement p {
    text-align: left;
  }

  .editorial-block,
  .target-section,
  .process-section,
  .seo-text,
  .final-cta {
    padding: 82px 0;
  }

  .editorial-image img {
    aspect-ratio: 4 / 3;
  }

  .large-type {
    padding: 90px 0;
  }

  .large-type h2 {
    font-size: clamp(52px, 16vw, 86px);
  }

  .split-showcase {
    padding: 82px 0;
  }

  .wide-image-section {
    min-height: 620px;
  }

  .wide-image-text {
    padding-bottom: 58px;
  }

  .target-grid,
  .process-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 52px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .legal-section {
    padding: 60px 0 90px;
  }
}