/* ==============================
   GorganOS — Warm Editorial Brand OS
   ============================== */

:root {
  --bg: #F7F2EA;
  --bg-alt: #EDE7DB;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #B8562A;
  --accent-warm: #D4813A;
  --border: #D6CFC2;
  --white: #FDFAF5;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  background: rgba(247, 242, 234, 0.88);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.nav__tag {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 100px;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__eyebrow {
  margin-bottom: 32px;
}

.hero__tag {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
}

.hero__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero__left {}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__right {
  padding-top: 12px;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 56px;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--white);
  padding: 72px 48px;
}

.manifesto__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__rule {
  width: 48px;
  height: 1px;
  background: var(--accent-warm);
  margin: 0 auto 32px;
}

.manifesto__rule:last-child { margin: 32px auto 0; }

.manifesto__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: #E8E0D5;
  quotes: none;
}

/* PILLARS */
.pillars {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars__header {
  margin-bottom: 64px;
  max-width: 560px;
}

.pillars__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.pillars__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s;
}

.pillar:hover { background: var(--white); }

.pillar__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fg);
  color: var(--white);
  border-radius: 10px;
  margin-bottom: 24px;
}

.pillar__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.pillar__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg-alt);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.outcomes__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.outcomes__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}

.outcomes__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

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

.outcome {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 400;
}

.outcome__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--fg);
  color: var(--white);
}

.closing__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
}

.closing__sub {
  font-size: 1rem;
  color: #A8A09A;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

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

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer__meta {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero__body { grid-template-columns: 1fr; gap: 32px; }
  .hero__headline { font-size: 3rem; }
  .manifesto { padding: 56px 24px; }
  .manifesto__quote { font-size: 1.2rem; }
  .pillars { padding: 64px 24px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .outcomes { padding: 64px 24px; }
  .outcomes__inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
}