/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --green-deep: #0b2012;
  --green-rich: #143a22;
  --green-mid: #1e5232;
  --green-bright: #2d8c4e;
  --gold: #f0a500;
  --gold-light: #f7c948;
  --orange: #e05a1a;
  --orange-warm: #f07138;
  --cream: #fffbf2;
  --cream-dark: #f5ede0;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
}

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

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

a { color: inherit; text-decoration: none; }

/* Section label */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_149919/761814c0-0c38-4c86-82f9-79827545368b.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,32,18,0.92) 0%, rgba(11,32,18,0.75) 50%, rgba(200,84,10,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 8% 6rem;
  text-align: center;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.brand-badge-icon { color: var(--gold); font-size: 0.8rem; }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,251,242,0.72);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.cta-primary:hover { background: var(--orange-warm); }

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,251,242,0.35);
  transition: border-color 0.2s, background 0.2s;
}

.cta-secondary:hover {
  border-color: rgba(255,251,242,0.7);
  background: rgba(255,251,242,0.07);
}

/* MISSION */
.mission {
  background: var(--green-deep);
  padding: 7rem 8%;
  text-align: center;
}

.mission-inner { max-width: 680px; margin: 0 auto; }

.mission-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.mission-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.mission-body {
  font-size: 1.1rem;
  color: rgba(255,251,242,0.65);
  line-height: 1.75;
}

/* SHOP */
.shop {
  background: var(--cream);
  padding: 6rem 8%;
}

.shop-header { text-align: center; margin-bottom: 4rem; }

.shop-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.shop-sub { font-size: 1rem; color: var(--text-mid); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}

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

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

.product-body { padding: 1.5rem; }

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
}

.price-unit { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }

.product-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.tag-organic {
  background: rgba(45,140,78,0.12);
  color: var(--green-bright);
}

.shop-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
}

.shop-note a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-full-link {
  color: var(--orange);
  font-weight: 500;
  font-size: 1rem;
}

.shop-full-link:hover { text-decoration: underline; }

/* ORIGIN */
.origin {
  background: var(--cream-dark);
  padding: 7rem 8%;
}

.origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.origin-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.origin-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.origin-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
}

.origin-stat {
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border-left: 4px solid var(--gold);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* JOIN */
.join {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-rich) 100%);
  padding: 7rem 8%;
  text-align: center;
}

.join-inner { max-width: 600px; margin: 0 auto; }

.join-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.join-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.join-body {
  font-size: 1rem;
  color: rgba(255,251,242,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.join-form { text-align: left; }

.form-row { display: flex; gap: 0.75rem; }

.form-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,251,242,0.2);
  background: rgba(255,251,242,0.08);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-input::placeholder { color: rgba(255,251,242,0.4); }

.form-input:focus {
  border-color: var(--gold);
  background: rgba(255,251,242,0.12);
}

.form-submit {
  padding: 0.9rem 1.8rem;
  background: var(--orange);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.form-submit:hover { background: var(--orange-warm); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-footnote {
  font-size: 0.78rem;
  color: rgba(255,251,242,0.35);
  margin-top: 0.8rem;
  text-align: center;
}

.form-success {
  color: var(--gold-light);
  font-size: 1.05rem;
  text-align: center;
  padding: 1rem;
}

/* FOOTER */
.site-footer {
  background: var(--green-deep);
  padding: 3rem 8%;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.3rem;
}

.footer-tagline { font-size: 0.82rem; color: rgba(255,251,242,0.45); }

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255,251,242,0.45);
}

.footer-meta a { color: var(--gold-light); }
.footer-meta a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .origin-inner { grid-template-columns: 1fr; gap: 3rem; }
  .origin-aside { flex-direction: row; flex-wrap: wrap; padding-top: 0; }
  .origin-stat { flex: 1; min-width: 180px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 6rem 6% 4rem; }
  .hero-headline { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-primary, .cta-secondary { text-align: center; width: 100%; max-width: 320px; }
  .mission { padding: 5rem 6%; }
  .shop { padding: 5rem 6%; }
  .shop-grid { grid-template-columns: 1fr; }
  .origin { padding: 5rem 6%; }
  .join { padding: 5rem 6%; }
  .form-row { flex-direction: column; }
  .form-submit { text-align: center; }
  .site-footer { padding: 2.5rem 6%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .origin-aside { flex-direction: column; }
  .origin-stat { min-width: auto; }
}