:root {
  --bg: #f5f0eb;
  --fg: #1a1a1a;
  --accent: #c45d3e;
  --muted: #8a7f76;
  --cream: #ede6de;
  --dark: #1a1a1a;
  --card-bg: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6rem;
  background: var(--dark);
  color: #fff;
}

.hero-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.125rem;
  color: #a09890;
  max-width: 420px;
  line-height: 1.7;
}

.hero-right {
  background: linear-gradient(135deg, var(--accent) 0%, #d4785e 40%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 20%;
  right: -50px;
}

.hero-right::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: 15%;
  left: -30px;
}

.hero-visual-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: center;
  user-select: none;
}

/* Hero CTA */
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.hero-btn-primary:hover {
  background: #b04e30;
  transform: translateY(-1px);
}

/* Manifesto */
.manifesto {
  padding: 8rem 6rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--fg);
}

.manifesto-text em {
  font-style: normal;
  color: var(--accent);
}

/* Pillars */
.pillars {
  padding: 6rem 4rem;
  background: var(--dark);
  color: #fff;
}

.pillars-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pillars-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillars-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}

.pillar-card:hover {
  border-color: var(--accent);
}

.pillar-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(196,93,62,0.3);
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: #a09890;
  line-height: 1.65;
}

/* Editorial */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.editorial-visual {
  background: linear-gradient(180deg, var(--cream) 0%, #d8cfc5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.editorial-pattern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

.pattern-block {
  aspect-ratio: 1;
  border: 1px solid rgba(26,26,26,0.1);
  transition: background 0.3s;
}

.pattern-block:nth-child(odd) {
  background: rgba(196,93,62,0.15);
}

.pattern-block:nth-child(even) {
  background: rgba(26,26,26,0.04);
}

.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}

.editorial-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.editorial-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.editorial-text {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

/* Closing */
.closing {
  padding: 8rem 4rem;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--accent);
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
footer {
  padding: 3rem 4rem;
  background: var(--dark);
  color: #a09890;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-left {
    padding: 4rem 2rem;
    min-height: 70vh;
  }
  
  .hero-right {
    min-height: 40vh;
  }
  
  .manifesto {
    padding: 5rem 2rem;
  }
  
  .pillars {
    padding: 4rem 2rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .editorial {
    grid-template-columns: 1fr;
  }
  
  .editorial-content {
    padding: 3rem 2rem;
  }
  
  .closing {
    padding: 5rem 2rem;
  }
  
  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 2rem;
  }
}