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

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --green-deep: #1B3A2D;
  --green-mid: #2D5441;
  --green-light: #3E6B54;
  --terracotta: #C17B5F;
  --terracotta-light: #D4957A;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
}

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

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

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 58, 45, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── Shared Section Styles ──────────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  margin-top: 12px;
  max-width: 540px;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 100px;
  background: var(--cream);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,123,95,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-2 {
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,45,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-3 {
  position: absolute;
  top: 40%;
  right: 25%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,107,84,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
}

/* Product Stack */
.hero-product-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 20px;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(27, 58, 45, 0.08);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 2px 16px rgba(27, 58, 45, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--green-deep);
}

.product-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(27, 58, 45, 0.1);
}

.product-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-mid);
}

.product-card span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}

/* Stagger the cards slightly */
.product-card-1 { transform: translateX(0px); }
.product-card-2 { transform: translateX(12px); }
.product-card-3 { transform: translateX(24px); }
.product-card-4 { transform: translateX(36px); }

/* ─── Manifesto ──────────────────────────────────────────── */
.manifesto {
  background: var(--green-deep);
  padding: 100px 32px;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terracotta-light);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* ─── Stats ──────────────────────────────────────────────── */
.stats {
  background: var(--cream-dark);
  padding: 72px 32px;
  border-top: 1px solid rgba(27, 58, 45, 0.06);
  border-bottom: 1px solid rgba(27, 58, 45, 0.06);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(27, 58, 45, 0.12);
  flex-shrink: 0;
}

/* ─── Products ───────────────────────────────────────────── */
.products {
  background: var(--cream);
  padding: 100px 32px;
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-type {
  background: var(--white);
  border: 1px solid rgba(27, 58, 45, 0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27, 58, 45, 0.1);
}

.product-type-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.product-type h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-type p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── Principles ────────────────────────────────────────── */
.principles {
  background: var(--cream-dark);
  padding: 100px 32px;
  border-top: 1px solid rgba(27, 58, 45, 0.06);
}

.principles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.principle-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.principle h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 14px;
  line-height: 1.25;
}

.principle p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── Closing ────────────────────────────────────────────── */
.closing {
  background: var(--green-deep);
  padding: 100px 32px;
  text-align: center;
}

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

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-vision {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--terracotta-light);
  line-height: 1.6;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--cream);
  padding: 60px 32px 32px;
  border-top: 1px solid rgba(27, 58, 45, 0.08);
}

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

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  display: block;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: right;
  padding-top: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(27, 58, 45, 0.06);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-product-stack {
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 0;
    gap: 10px;
  }

  .product-card-1,
  .product-card-2,
  .product-card-3,
  .product-card-4 { transform: none; }

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

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .manifesto { padding: 72px 20px; }
  .stats { padding: 56px 20px; }
  .products { padding: 72px 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .principles { padding: 72px 20px; }
  .closing { padding: 72px 20px; }
  .footer { padding: 48px 20px 24px; }

  .nav-inner { padding: 14px 20px; }
  .nav-tagline { display: none; }

  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
}

/* ─── Product Showcase (Standalone Page) ──────────────────── */
.showcase-page {
  min-height: 100vh;
  background: var(--cream);
}

.showcase-hero {
  background: var(--green-deep);
  padding: 80px 32px 72px;
  text-align: center;
}

.showcase-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta-light);
  margin-bottom: 16px;
}

.showcase-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 680px;
  margin: 0 auto 20px;
}

.showcase-hero p {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.72);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Tab Selector */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 32px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-tab {
  background: var(--white);
  border: 2px solid rgba(27, 58, 45, 0.1);
  border-radius: 14px 14px 0 0;
  padding: 18px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 6px;
}

.showcase-tab:hover {
  color: var(--green-deep);
  background: var(--cream);
}

.showcase-tab.active {
  background: var(--cream-dark);
  color: var(--green-deep);
  border-color: rgba(27, 58, 45, 0.15);
}

.showcase-tab-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  transition: all 0.2s ease;
}

.showcase-tab.active .showcase-tab-icon {
  background: var(--green-deep);
  color: var(--cream);
}

.showcase-tab:hover .showcase-tab-icon {
  background: rgba(27, 58, 45, 0.08);
}

/* Detail Panel */
.showcase-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 32px 100px;
  display: none;
}

.showcase-detail.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.showcase-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.showcase-detail-content { }

.showcase-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61, 107, 84, 0.1);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.showcase-detail-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.showcase-detail-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.showcase-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.showcase-benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Visual Panel */
.showcase-visual {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(27, 58, 45, 0.08);
  box-shadow: 0 4px 24px rgba(27, 58, 45, 0.08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.showcase-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--green-mid);
}

.showcase-visual-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-visual-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
}

.showcase-visual-sub {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  max-width: 200px;
  line-height: 1.6;
}

/* Back to home link */
.showcase-back {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
}

.showcase-back a {
  font-size: 0.875rem;
  color: var(--text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.showcase-back a:hover {
  color: var(--green-deep);
}

@media (max-width: 768px) {
  .showcase-tabs {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    padding: 0 20px;
  }

  .showcase-tab {
    padding: 12px 16px;
    font-size: 0.875rem;
    border-radius: 10px;
    margin: 0;
  }

  .showcase-detail-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .showcase-detail {
    padding: 32px 20px 80px;
  }

  .showcase-hero {
    padding: 60px 20px 56px;
  }

  .showcase-back { padding: 20px 20px 0; }
}