:root {
  --bg: #F7F3EC;
  --fg: #111009;
  --accent: #D4621A;
  --accent-2: #7C5C2E;
  --muted: #8A8278;
  --card: #EDE8DE;
  --card-border: #D6CFC0;
  --nav-bg: #1C1A16;
  --nav-fg: #F7F3EC;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  background: var(--nav-bg);
  color: var(--nav-fg);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #F7F3EC;
}

.nav__tagline {
  font-size: 13px;
  color: #8A8278;
  font-style: italic;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 64px 80px;
  min-height: 85vh;
  background: var(--bg);
  max-width: 1280px;
  margin: 0 auto;
}

.hero__headline {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero__sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

/* MANIFESTO */
.manifesto {
  background: #1C1A16;
  color: #F7F3EC;
  padding: 80px 64px;
  text-align: center;
}

.manifesto__text {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.manifesto__text--accent {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 32px);
  color: #F0C080;
}

/* FEATURES */
.features {
  padding: 80px 64px;
  background: var(--bg);
  max-width: 1280px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 56px;
}

.features__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.features__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* WORKLOAD */
.workload {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 64px;
  background: #EDE8DE;
}

.workload__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.workload__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.workload__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.workload__list {
  list-style: none;
  margin-bottom: 28px;
}

.workload__list li {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg);
}

.workload__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.workload__note {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-2);
}

/* CLOSING */
.closing {
  padding: 100px 64px;
  text-align: center;
  background: var(--bg);
}

.closing__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing__body {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* FOOTER */
.footer {
  background: #1C1A16;
  color: #8A8278;
  padding: 40px 64px;
  text-align: center;
}

.footer__brand {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #F7F3EC;
  margin-bottom: 8px;
}

.footer__sub {
  font-size: 14px;
  margin-bottom: 24px;
  font-style: italic;
}

.footer__copy {
  font-size: 12px;
  color: #5A5550;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 40px;
  }

  .hero__text { order: 1; }
  .hero__visual { order: 2; }

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

  .workload {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 40px;
  }

  .manifesto, .closing {
    padding: 60px 32px;
  }

  .nav { padding: 14px 24px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__headline { font-size: 36px; }
}
