/* ─── Variables ─── */
:root {
  --bg: #F7F3EC;
  --bg-alt: #EDE8DD;
  --fg: #1A1714;
  --fg-muted: #6B6560;
  --accent: #2D5C3B;
  --accent-warm: #A07840;
  --accent-sage: #7A9E7E;
  --border: #D4CFC6;
  --card-bg: #FFFFFF;
  --shadow: rgba(26,23,20,0.08);
  --radius: 8px;
}

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

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;
}

/* ─── Shared ─── */
.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 64px;
}

.hero-inner {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-sage);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero .lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 400px;
  line-height: 1.7;
}

/* ─── Hero Visual ─── */
.hero-visual {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
}

/* Tea Jar Shelf */
.shelf {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px 16px;
  width: 100%;
}

.jar {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
}

.jar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.jar-label {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.jar-1 { height: 80px; background: linear-gradient(180deg, #5C8A5A 0%, #3D6B3C 100%); }
.jar-2 { height: 100px; background: linear-gradient(180deg, #8A7A5C 0%, #6B5E3C 100%); }
.jar-3 { height: 65px; background: linear-gradient(180deg, #C4A882 0%, #A0885E 100%); }
.jar-4 { height: 88px; background: linear-gradient(180deg, #6B7A8A 0%, #4A5A6B 100%); }
.jar-5 { height: 72px; background: linear-gradient(180deg, #7A5C5C 0%, #5E3C3C 100%); }

/* Dashboard Card */
.dashboard-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 24px var(--shadow);
}

.dc-header {
  background: var(--fg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dc-dot.red { background: #FF5F57; }
.dc-dot.yellow { background: #FEBC2E; }
.dc-dot.green { background: #28C840; }

.dc-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-left: 6px;
}

.dc-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.dc-label { color: var(--fg-muted); }
.dc-val { font-weight: 500; }
.dc-val.good { color: var(--accent); }

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

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 56px;
  margin-top: 0.5rem;
  color: var(--fg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.problem-item h3 {
  font-size: 1.05rem;
  margin: 16px 0 10px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
}

.problem-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.problem-icon {
  color: var(--accent-warm);
  opacity: 0.8;
}

/* ─── Features ─── */
.features {
  padding: 96px 48px;
  background: var(--bg);
}

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

.features h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 56px;
  margin-top: 0.5rem;
  max-width: 500px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Promise ─── */
.promise {
  background: var(--accent);
  padding: 96px 48px;
  color: #fff;
}

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

.promise .section-tag { color: rgba(255,255,255,0.6); }

.promise h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
  color: #fff;
}

.promise-body {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 40px;
}

.promise-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
}

.stat-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 160px;
  line-height: 1.4;
}

.promise-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 4px;
}

.promise-card-inner {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  opacity: 0.9;
}

.pc-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pc-icon.green { background: #28C840; color: #fff; }

/* ─── Closing ─── */
.closing {
  background: var(--bg);
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

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

.closing h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
  color: var(--fg);
}

.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── Footer ─── */
footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 40px 48px;
}

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 300;
}

.footer-tagline { font-size: 0.75rem; opacity: 0.5; }

.footer-copy { font-size: 0.75rem; opacity: 0.4; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 60px 24px; gap: 40px; }
  .hero-visual { align-items: flex-start; width: 100%; }
  .problem, .features, .promise, .closing { padding: 72px 24px; }
  .promise-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .shelf { gap: 8px; padding: 16px 16px 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}