:root {
  --bg: #FFF8F0;
  --bg-alt: #FDF0E6;
  --fg: #2A1F1A;
  --fg-muted: #7A6558;
  --accent: #E8624A;
  --accent-dark: #C94E35;
  --surface: #FFFFFF;
  --border: rgba(42, 31, 26, 0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 80px;
}
.hero-content {
  max-width: 560px;
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-stat {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 15px;
  color: var(--fg-muted);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
}
.hero-paint-swatch {
  width: 100%;
  height: 260px;
  border-radius: 24px;
  background: linear-gradient(135deg, #E8624A 0%, #F4A261 40%, #2A9D8F 70%, #E9C46A 100%);
  opacity: 0.9;
}
.hero-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-tag {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}

/* SECTION LABELS */
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

/* EXPERIENCES */
.experiences {
  background: var(--bg-alt);
  padding: 96px 48px;
}
.experiences-header {
  margin-bottom: 64px;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.exp-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
}
.exp-card--featured {
  grid-column: span 2;
  background: var(--accent);
  color: white;
  border: none;
}
.exp-card--featured .exp-card-desc,
.exp-card--featured .exp-card-title,
.exp-card--featured .exp-card-icon {
  color: white;
}
.exp-card--featured .exp-card-includes span {
  background: rgba(255,255,255,0.2);
  color: white;
}
.exp-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.exp-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.exp-card-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.exp-card-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-card-includes span {
  padding: 5px 12px;
  background: var(--bg-alt);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
}
.experiences-note {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--fg-muted);
}

/* PROOF */
.proof {
  background: var(--fg);
  color: white;
  padding: 96px 48px;
}
.proof .section-label { color: #F4A261; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.proof-quote {
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border-left: 3px solid var(--accent);
}
.proof-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #FFF8F0;
}
.proof-quote cite {
  font-size: 12px;
  color: rgba(255,248,240,0.5);
  font-style: normal;
  letter-spacing: 0.05em;
}
.proof-counter {
  text-align: center;
}
.proof-counter-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
}
.proof-counter-label {
  font-size: 16px;
  color: rgba(255,248,240,0.6);
  margin-top: 8px;
}

/* STORY */
.story {
  padding: 96px 48px;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.manifesto-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.manifesto-item:last-child { border-bottom: none; }
.manifesto-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 3px;
  min-width: 28px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg);
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 96px 48px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}
.closing-locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}
.closing-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--fg);
  color: white;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,248,240,0.5);
  display: block;
  margin-top: 4px;
}
.footer-meta p {
  font-size: 13px;
  color: rgba(255,248,240,0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-visual { padding: 0; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card--featured { grid-column: span 1; }
  .proof-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .nav { padding: 20px 24px; }
  .experiences, .proof, .story, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .closing-headline { font-size: 28px; }
  .proof-counter-num { font-size: 52px; }
}