/* ── CSS Variables ── */
:root {
  --soil: #2C1A0E;
  --earth: #5C3D1E;
  --terracotta: #C1603A;
  --harvest: #D4A853;
  --sage: #7A9E7E;
  --cream: #F5EFE0;
  --mist: #EDE8DC;
  --white: #FDFAF4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--soil);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(253,250,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92,61,30,0.12);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 4px 20px rgba(44,26,14,0.08); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--soil);
  text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--terracotta); font-style: italic; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--earth);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links .nav-cta {
  background: var(--terracotta); color: var(--white) !important;
  padding: 0.6rem 1.4rem; border-radius: 2px;
  transition: background 0.3s !important;
}
.nav-links .nav-cta:hover { background: var(--earth) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--soil); transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 5rem; overflow: hidden; position: relative;
}
.hero-left {
  padding: 6rem 4rem 4rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1; font-weight: 700; color: var(--soil); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { color: var(--terracotta); font-style: italic; display: block; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; line-height: 1.7;
  color: var(--earth); max-width: 440px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  background: var(--soil); color: var(--cream);
  padding: 0.9rem 2rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--earth); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--earth); color: var(--earth);
  padding: 0.9rem 2rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { background: var(--earth); color: var(--white); }
.hero-right { position: relative; overflow: hidden; background: var(--earth); }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
  transform: scale(1.05); animation: zoomOut 1.2s 0.3s forwards; display: block;
}
.hero-badge {
  position: absolute; bottom: 3rem; left: -2rem;
  background: var(--harvest); padding: 1.5rem 2rem; color: var(--soil);
  box-shadow: 0 8px 40px rgba(44,26,14,0.2);
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}
.hero-badge .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; display: block; }
.hero-badge .label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--soil); color: var(--harvest);
  padding: 1rem 0; overflow: hidden;
  border-top: 3px solid var(--terracotta);
}
.marquee-track {
  display: flex; gap: 3rem; align-items: center;
  animation: marquee 20s linear infinite; white-space: nowrap;
}
.marquee-item { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; opacity: 0.8; flex-shrink: 0; }
.marquee-dot { color: var(--terracotta); }

/* ── ABOUT ── */
.about {
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: center; background: var(--cream);
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 60%; aspect-ratio: 1/1; object-fit: cover;
  border: 6px solid var(--cream); box-shadow: 0 12px 40px rgba(44,26,14,0.15);
}
.section-tag {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1rem; display: block;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; color: var(--soil); margin-bottom: 1.5rem;
}
.about-text h2 em { color: var(--terracotta); font-style: italic; }
.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300; line-height: 1.8; color: var(--earth); margin-bottom: 1.2rem;
}
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(92,61,30,0.2);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--terracotta); display: block; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--earth); opacity: 0.7; }

/* ── PRODUCTS ── */
.products { padding: 8rem 6rem; background: var(--white); }
.products-header { text-align: center; margin-bottom: 4rem; }
.products-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--soil); }
.products-header h2 em { color: var(--terracotta); font-style: italic; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card { background: var(--mist); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,26,14,0.12); }
.product-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.5s; }
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-body { padding: 1.5rem; }
.product-tag { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: 0.5rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--soil); margin-bottom: 0.5rem; }
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--terracotta); }
.product-desc { font-size: 0.88rem; color: var(--earth); line-height: 1.6; opacity: 0.8; }

/* ── FEATURES ── */
.features {
  background: var(--soil); color: var(--cream);
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 6rem; align-items: center;
}
.features-text .section-tag { color: var(--harvest); }
.features-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; margin-bottom: 2rem; }
.features-text h2 em { color: var(--terracotta); font-style: italic; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(245,239,224,0.1); }
.feature-item:last-child { border-bottom: none; }
.feature-icon { width: 2.5rem; height: 2.5rem; background: var(--terracotta); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.feature-content h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--cream); }
.feature-content p { font-size: 0.88rem; color: rgba(245,239,224,0.6); line-height: 1.6; }
.features-visual { position: relative; }
.features-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.features-quote { position: absolute; bottom: 2rem; left: -3rem; right: 1rem; background: var(--harvest); color: var(--soil); padding: 1.5rem 2rem; }
.features-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; line-height: 1.5; }
.features-quote cite { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 0.5rem; display: block; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 8rem 6rem; background: var(--mist); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--soil); }
.testimonials-header h2 em { color: var(--terracotta); font-style: italic; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--white); padding: 2rem; border-top: 3px solid var(--terracotta); transition: box-shadow 0.3s; }
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(44,26,14,0.08); }
.testimonial-stars { color: var(--harvest); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; line-height: 1.7; color: var(--earth); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 600; color: var(--white); }
.testimonial-name { font-size: 0.85rem; font-weight: 500; color: var(--soil); }
.testimonial-location { font-size: 0.75rem; color: var(--earth); opacity: 0.6; }

/* ── CTA ── */
.cta-section {
  padding: 8rem 6rem; background: var(--terracotta);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,83,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(44,26,14,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,250,244,0.7); margin-bottom: 1rem; display: block; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 1rem; line-height: 1.1; }
.cta-section h2 em { font-style: italic; }
.cta-section p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(253,250,244,0.8); margin-bottom: 2.5rem; font-weight: 300; }
.btn-white { background: var(--white); color: var(--terracotta); padding: 1rem 2.5rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s; }
.btn-white:hover { background: var(--soil); color: var(--white); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer { background: var(--soil); color: var(--cream); padding: 4rem 6rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,239,224,0.1); }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 1rem; display: block; }
.footer-brand .logo span { color: var(--harvest); font-style: italic; }
.footer-brand p { font-size: 0.88rem; color: rgba(245,239,224,0.5); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--harvest); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(245,239,224,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(245,239,224,0.35); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomOut { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 2rem 2rem; border-bottom: 2px solid var(--terracotta); gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .hero-right { height: 50vw; min-height: 280px; }
  .hero-badge { left: 1rem; }
  .about, .features { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .products, .testimonials, .cta-section { padding: 5rem 1.5rem; }
  .products-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 3rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-accent { display: none; }
  .features-quote { left: 0; }
}
