:root {
  --bg: #FAFAF7;
  --fg: #1A1A18;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --copper: #C2714F;
  --copper-light: #D4906E;
  --sand: #E8E4DA;
  --stone: #8C8680;
  --cream: #F5F2ED;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--sand);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--green);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.06em;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-left { display: flex; align-items: center; }
.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  width: 100%;
}
.hero-img-block { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-img-tall { grid-row: span 2; }
.hero-img-inner {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 140px;
}
.hero-img-inner svg { width: 100%; max-width: 100px; height: auto; }
.hero-img-label {
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-right {}
.hero-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-body {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hero-meta-label {
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 0.3rem;
}
.hero-meta-sep {
  width: 1px;
  height: 36px;
  background: var(--sand);
}

/* PHILOSOPHY */
.philosophy { background: var(--cream); }
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.philosophy-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
}
.philosophy-statement {
  max-width: 680px;
  margin-bottom: 4rem;
}
.philosophy-statement p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philosophy-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--sand);
}
.philosophy-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.25rem;
}
.philosophy-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.philosophy-card p { font-size: 0.9rem; color: var(--stone); line-height: 1.65; }

/* PRODUCTS */
.products { padding: 5rem 2rem; }
.products-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.products-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.products-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.products-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 460px;
}
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
}
.product-visual {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.product-visual svg { width: 100%; max-width: 160px; height: auto; }
.product-body { padding: 1.5rem; background: white; }
.product-category {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 0.75rem;
}
.product-desc { font-size: 0.9rem; color: var(--stone); line-height: 1.65; margin-bottom: 1.25rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.product-tag {
  font-size: 0.72rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--green-mid);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  font-weight: 500;
}

/* TRANSFORM */
.transform { background: var(--green); color: white; }
.transform-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.transform-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1.5rem;
}
.transform-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.5rem;
}
.transform-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.transform-stat {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.transform-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.transform-stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); max-width: 300px; line-height: 1.5; }
.transform-gallery { display: flex; flex-direction: column; gap: 1rem; }
.transform-img {
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transform-img svg { width: 100%; max-width: 200px; height: auto; }

/* PROCESS */
.process { padding: 5rem 2rem; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
}
.process-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.process-sub { font-size: 1rem; color: var(--stone); max-width: 480px; margin-bottom: 4rem; }
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  border-top: 1px solid var(--sand);
}
.process-step:nth-child(even) { border-left: 1px solid var(--sand); }
.process-step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sand);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}
.process-step-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.process-step-body p { font-size: 0.9rem; color: var(--stone); line-height: 1.65; }

/* CLOSING */
.closing { background: var(--fg); color: white; }
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}
.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--copper);
  margin: 0 auto 3rem;
  border-radius: 99px;
}
.closing-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 2rem;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.closing-punch {}
.closing-punch-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}
.closing-punch-sub {
  font-size: 0.85rem;
  color: var(--copper-light);
  letter-spacing: 0.08em;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--sand);
  padding: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.footer-tagline { font-size: 0.8rem; color: var(--stone); margin-bottom: 0.75rem; }
.footer-copy { font-size: 0.75rem; color: var(--stone); }

/* MOBILE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .hero-image-grid { max-width: 300px; margin: 0 auto; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .transform-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step:nth-child(even) { border-left: none; }
  .hero-meta { gap: 1.5rem; }
  .hero-meta-num { font-size: 1.25rem; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 2rem; }
  .philosophy-statement p { font-size: 1.25rem; }
  .process-step { padding: 1.75rem; }
  .process-step-num { font-size: 1.75rem; }
}