:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --navy-mid: #162036;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --gray-lightest: #F1F5F9;
  --white: #FFFFFF;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --cream: #FAFAF8;
  --gold: #B8976A;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 4px;
}
.logo-text {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: var(--gray-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  cursor: default;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--white); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(184, 151, 106, 0.3);
  border-radius: 2px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15,23,42,1) 0%, transparent 100%);
  z-index: 1;
}

/* SECTIONS COMMON */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}
.section-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* PRODUCTS */
.products {
  background: var(--cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(15,23,42,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15,23,42,0.08);
}
.card-icon {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.product-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}
.product-card-large {
  grid-column: span 1;
  background: var(--navy);
  border-color: transparent;
}
.product-card-large h3 { color: var(--white); }
.product-card-large p { color: var(--gray-light); }
.product-card-large .card-icon { color: var(--gold); }
.product-card-accent {
  background: var(--green);
  border-color: transparent;
}
.product-card-accent h3 { color: var(--white); }
.product-card-accent p { color: rgba(255,255,255,0.75); }
.product-card-accent .card-icon { color: rgba(255,255,255,0.6); }

/* TRUST */
.trust {
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
}
.trust-item {}
.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(15,23,42,0.08);
  margin-bottom: 0.75rem;
}
.trust-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.trust-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ABOUT */
.about {
  background: var(--navy);
  color: var(--white);
}
.about .section-eyebrow { color: var(--gold); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-top: 0.5rem;
}
.about-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-text:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  background: var(--cream);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem;
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.closing-title em {
  font-style: italic;
  color: var(--green);
}
.closing-sub {
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
.closing-contact {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(15,23,42,0.15);
  border-radius: 3px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: var(--gray);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { padding: 7rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-large { grid-column: span 1; }
  .trust-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .section-inner { padding: 5rem 1.5rem; }
  .closing-inner { padding: 5rem 1.5rem; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}