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

:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --green: #1a3a2a;
  --green-light: #243d32;
  --amber: #e8a838;
  --amber-dark: #c98a1f;
  --text: #1a1a18;
  --text-muted: #6b6b63;
  --border: #e2e0d8;
}

html { font-size: 16px; }

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

/* Navigation */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-cta-label {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Score card hero */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.score-card-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  width: 340px;
  box-shadow: 0 8px 40px rgba(26,58,42,0.1);
}

.score-card-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.score-badge {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.score-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.score-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.score-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 0.75rem;
}

.bar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 99px;
}

.bar-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.score-card-cta {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-dark);
  padding: 0.65rem;
  border: 1.5px solid var(--amber);
  border-radius: 8px;
}

/* Proof section */
.proof-section {
  background: var(--green);
  color: #fff;
  padding: 2.5rem 2rem;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
}

.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.3;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Dimensions */
.dimensions {
  padding: 6rem 2rem;
  background: var(--surface);
}

.dimensions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

.dim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dim-card {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.dim-icon {
  margin-bottom: 1.25rem;
}

.dim-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.dim-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Store section */
.store {
  padding: 6rem 2rem;
  background: var(--bg);
}

.store-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.store-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.store-example {
  margin-top: 1.5rem;
}

.example-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.ex-dim {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.ex-arrow {
  color: var(--amber);
  font-size: 1.1rem;
}

.ex-rec {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.ex-rec em {
  color: var(--text-muted);
  font-style: normal;
  font-weight: 400;
}

.store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,58,42,0.08);
}

.store-card-header {
  background: var(--green);
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.store-recs {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rec-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg);
  border-radius: 10px;
}

.rec-score {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.rec-score.low { background: #fde8e8; color: #c0392b; }
.rec-score.mid { background: #fef3e2; color: var(--amber-dark); }
.rec-score.high { background: #e8f5e9; color: #2e7d32; }

.rec-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rec-dim {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.rec-product {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.rec-reason {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  background: var(--green);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
}

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

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .score-card-hero {
    width: 100%;
    max-width: 340px;
  }

  .dim-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }

  .proof-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .dim-grid {
    grid-template-columns: 1fr;
  }

  .proof-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}