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

:root {
  --sage: #7a9e7e;
  --sage-dark: #5c7e60;
  --sage-light: #e8f0e9;
  --cream: #faf8f4;
  --warm-brown: #6b5244;
  --warm-brown-light: #8a7060;
  --text: #3a3a3a;
  --text-light: #6a6a6a;
  --white: #ffffff;
  --border: #e2ddd5;
  --red-light: #fef2f2;
  --red: #b91c1c;
  --green-light: #f0fdf4;
  --green: #166534;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header / Nav ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--sage-dark);
}

.logo svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sage-dark);
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1415369629372-26f2fe60c467?w=1400&h=600&fit=crop') center/cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(232,240,233,0.92) 0%, rgba(250,248,244,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sage-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}

.btn-outline:hover {
  background: var(--sage-light);
  text-decoration: none;
}

/* ===== Photo Strip ===== */
.photo-strip {
  overflow: hidden;
  background: var(--white);
  padding: 0;
}

.photo-strip-inner {
  display: flex;
  gap: 0;
}

.photo-strip img {
  width: 20%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== About ===== */
.about {
  padding: 80px 24px;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.about-visual {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Products ===== */
.products {
  padding: 80px 24px;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 940px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.product-img {
  height: 240px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
}

.product-badge {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text);
}

.product-info > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 4px;
}

.product-specs li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 4px 0;
  line-height: 1.5;
}

.product-specs li strong {
  color: var(--text);
}

/* ===== Why Natural (Comparison) ===== */
.why-natural {
  padding: 80px 24px;
  background: var(--white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comparison-card.highlight {
  border-color: var(--sage);
  background: var(--sage-light);
}

.comparison-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-light);
}

.comparison-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.comparison-list.bad li::before {
  content: "\2717";
  color: var(--red);
}

.comparison-list.good li::before {
  content: "\2713";
  color: var(--green);
}

/* ===== Values ===== */
.values {
  padding: 80px 24px;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== How to Order ===== */
.how-to-order {
  padding: 80px 24px;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.step-card {
  text-align: center;
  padding: 24px 16px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.order-note {
  background: var(--sage-light);
  border-radius: 12px;
  padding: 24px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.order-note p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 24px;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--sage);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 24px 18px;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== Coming Soon ===== */
.coming-soon {
  padding: 80px 24px;
  background: var(--white);
}

.coming-soon .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coming-soon-content h2 {
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.coming-soon-lead {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.coming-soon-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.cs-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 500;
}

.cs-feature svg {
  flex-shrink: 0;
}

.coming-soon-visual {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.coming-soon-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Contact ===== */
.contact {
  padding: 80px 24px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--sage-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-card p,
.contact-card address {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: normal;
}

.contact-note {
  font-size: 0.82rem !important;
  margin-top: 8px;
  opacity: 0.7;
}

/* ===== Footer ===== */
footer {
  padding: 48px 24px;
  background: #2c2c2c;
  color: #b0b0b0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #b0b0b0;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #b0b0b0;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* ===== Legal Pages ===== */
.legal-page {
  padding: 60px 24px 80px;
  background: var(--white);
  min-height: 80vh;
}

.legal-page h1 {
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    padding: 64px 24px;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .photo-strip-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .photo-strip img {
    width: 50%;
    height: 140px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-visual {
    height: 250px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .coming-soon .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coming-soon-visual {
    height: 250px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  footer .container {
    flex-direction: column;
  }
}
