/* ZeppelinOS — warm editorial, Italian precision */

:root {
  --bg: #FAF8F5;
  --bg-warm: #F3EEE8;
  --fg: #1A1714;
  --fg-muted: #6B635A;
  --accent: #C49A5C;
  --accent-dark: #A07B42;
  --border: #E2DAD1;
  --card-bg: #FDFCF9;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== MANIFESTO ===== */
.manifesto {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px 80px;
  position: relative;
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.manifesto__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 900px;
}

.manifesto__line { display: block; }
.manifesto__line--italic { font-style: italic; color: var(--fg-muted); }

.manifesto__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.manifesto__dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== WHAT ===== */
.what {
  padding: 120px 64px;
  background: var(--fg);
  color: var(--bg);
}

.what__inner { max-width: 1100px; margin: 0 auto; }

.what__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.what__label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.what__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.what__col-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.what__col-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.what__col-body {
  font-size: 15px;
  color: rgba(250,248,245,0.6);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== COMMAND ===== */
.command {
  padding: 120px 64px;
  background: var(--bg-warm);
}

.command__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.command__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.command__heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 32px;
}

.command__heading em {
  font-style: italic;
  color: var(--fg-muted);
}

.command__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.command__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.command__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease;
}

.command__card:hover { transform: translateX(4px); }

.command__card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.command__card-value {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}

.command__card-sub {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ===== CREATORS ===== */
.creators {
  padding: 120px 64px;
  background: var(--bg);
}

.creators__inner { max-width: 1100px; margin: 0 auto; }

.creators__header { margin-bottom: 64px; }

.creators__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.creators__heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--fg);
  max-width: 560px;
  line-height: 1.2;
}

.creators__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.creators__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.creators__item-icon {
  color: var(--accent);
  width: 32px;
  height: 32px;
}

.creators__item-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.creators__item-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== STATEMENT ===== */
.statement {
  padding: 120px 64px;
  background: var(--fg);
}

.statement__inner { max-width: 860px; margin: 0 auto; }

.statement__quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--bg);
  line-height: 1.5;
  margin-bottom: 40px;
}

.statement__attribution {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.statement__dash {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 64px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
  font-weight: 300;
}

.footer__meta {
  text-align: right;
}

.footer__company {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

.footer__polsia {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  font-weight: 300;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .manifesto, .what, .command, .creators, .statement, .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .manifesto { min-height: 80vh; padding-top: 60px; }
  .manifesto__headline { font-size: clamp(32px, 9vw, 56px); }

  .what__columns { grid-template-columns: 1fr; gap: 40px; }

  .command__inner { grid-template-columns: 1fr; gap: 48px; }
  .command__heading { font-size: 36px; }

  .creators__grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer__meta { text-align: center; }
}