:root {
  --bg: #f9f7f4;
  --bg-alt: #f0ece6;
  --fg: #1b2a4a;
  --fg-muted: #5a6480;
  --accent: #c05c2f;
  --accent-warm: #d4825a;
  --navy: #1b2a4a;
  --teal: #4a7c6f;
  --gold: #d4a853;
  --purple: #7a6a8a;
  --border: #e0dbd5;
  --card-bg: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 100px;
  background: var(--bg);
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-paint-strip {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strip-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  font-weight: 500;
}
.strip-swatches {
  display: flex;
  gap: 8px;
}
.swatch {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Dashboard card stack */
.hero-visual {
  position: relative;
  height: 360px;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.dash-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(27,42,74,0.08), 0 1px 4px rgba(27,42,74,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-card-1 {
  top: 0;
  right: 20px;
  width: 200px;
}
.dash-card-2 {
  top: 100px;
  left: 10px;
  width: 220px;
  border-left: 4px solid var(--accent);
}
.dash-card-3 {
  bottom: 20px;
  right: 40px;
  width: 190px;
  border-left: 4px solid var(--teal);
}
.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  font-weight: 600;
}
.card-value {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}
.card-sub {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── FEATURES ── */
.features {
  background: var(--bg-alt);
  padding: 100px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy);
  margin-bottom: 60px;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 4px;
}
.feature h3 {
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}
.feature p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 100px 48px;
  background: var(--navy);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-quote blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  color: #f9f7f4;
  line-height: 1.4;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 13px;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.philosophy-detail p {
  font-size: 16px;
  color: rgba(249,247,244,0.7);
  line-height: 1.8;
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  background: var(--bg);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}
.step h3 {
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
  justify-content: center;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--border);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--bg-alt);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 52px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: #f9f7f4;
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(249,247,244,0.5);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-url {
  font-size: 13px;
  color: rgba(249,247,244,0.6);
}
.footer-tag {
  font-size: 11px;
  color: rgba(249,247,244,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 280px; }
  .hero-headline { font-size: 36px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .philosophy { padding: 60px 24px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .process { padding: 60px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-card-stack { display: none; }
}