/* ============================================================
   YARDI Brand Styles
   Colors: Dark Olive #3d4a2a | Moss #5a6e3a | Sage #8a9e6a
            Cream #f5f0e8 | Earth #c4a882 | Off-White #fafaf7
   Font: Montserrat (headings) + Lora (accent)
   ============================================================ */

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

:root {
  --olive:    #3d4a2a;
  --moss:     #5a6e3a;
  --sage:     #8a9e6a;
  --cream:    #f5f0e8;
  --earth:    #c4a882;
  --offwhite: #fafaf7;
  --charcoal: #1e1e1e;
  --mid:      #6b6b6b;
  --nav-h:    72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================ TYPOGRAPHY */

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
p  { font-size: 1rem; color: var(--mid); line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--moss);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-header.light h2,
.section-header.light .section-sub { color: white; }
.section-header.light .eyebrow { color: var(--earth); }
.section-sub { margin-top: 1rem; font-size: 1.05rem; }

/* ============================================================ BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--moss);
  color: white;
  border-color: var(--moss);
}
.btn-primary:hover { background: var(--olive); border-color: var(--olive); }
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-dark {
  background: var(--olive);
  color: white;
  border-color: var(--olive);
}
.btn-dark:hover { background: #2a3319; }
.btn-product {
  background: transparent;
  color: var(--moss);
  border-color: var(--moss);
  font-size: 0.8rem;
  padding: 0.65rem 1.4rem;
  margin-top: 1.2rem;
}
.btn-product:hover { background: var(--moss); color: white; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.78rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================ NAVBAR */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--olive);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--moss);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
}
.nav-cta:hover { background: #4a5e2a !important; }
.nav-logo img {
  height: 36px;
  width: auto;
}

/* ============================================================ HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,40,15,0.72) 0%,
    rgba(20,30,10,0.55) 50%,
    rgba(30,40,15,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 780px;
}
.hero-logo {
  height: 72px;
  margin: 0 auto 2rem;
}
.hero-headline {
  color: white;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================ WHY SECTION */

.why-section {
  padding: 7rem 0;
  background: var(--offwhite);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .eyebrow { color: var(--moss); }
.why-text h2 { color: var(--olive); margin-bottom: 1.2rem; }
.why-text p { margin-bottom: 1rem; }
.why-text strong { color: var(--olive); }
.why-text .btn { margin-top: 1.5rem; }
.video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-thumb:hover img { transform: scale(1.03); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
}
.video-thumb:hover .play-btn { background: rgba(0,0,0,0.5); }
.play-btn svg { width: 64px; height: 64px; }

/* ============================================================ PRODUCTS */

.products-section {
  padding: 7rem 0;
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.product-image-wrap {
  background: var(--cream);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.product-img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-formula {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(90,110,58,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.product-body h3 { color: var(--olive); margin-bottom: 0.4rem; }
.product-tagline {
  font-style: italic;
  font-family: 'Lora', serif;
  color: var(--moss);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.product-desc { font-size: 0.9rem; margin-bottom: 1rem; }
.product-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-benefits li {
  font-size: 0.82rem;
  color: var(--mid);
  padding-left: 1.1rem;
  position: relative;
}
.product-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 700;
}

/* ============================================================ GARDEN STRIP */

.garden-strip {
  height: 340px;
  background: url('assets/images/outdoor-garden-3.png') center 40% / cover no-repeat;
  position: relative;
}
.garden-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(61,74,42,0.15), rgba(61,74,42,0.45));
}

/* ============================================================ HOW IT WORKS */

.how-section {
  padding: 7rem 0;
  background: var(--olive);
}
.how-section h2,
.how-section h4 { color: white; }
.how-section p { color: rgba(255,255,255,0.75); }
.how-section strong { color: var(--earth); }
.steps-flow {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: background 0.2s, transform 0.2s;
}
.step:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.step-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--earth);
  margin-bottom: 0.75rem;
}
.step-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.step h4 { margin-bottom: 0.6rem; font-size: 1rem; }
.step p { font-size: 0.85rem; }
.step-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.25);
  align-self: center;
  flex-shrink: 0;
}
.how-cta {
  text-align: center;
  margin-top: 3rem;
}
.pro-tip {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1rem 2rem;
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.9rem;
  max-width: 600px;
}
.pro-tip strong { color: var(--earth) !important; }

/* ============================================================ LINEUP HERO */

.lineup-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.lineup-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.lineup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,40,15,0.85) 0%, rgba(30,40,15,0.5) 60%, rgba(30,40,15,0.4) 100%);
}
.lineup-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: white;
  padding: 4rem 2rem;
}
.lineup-content h2 { color: white; margin-bottom: 1rem; }
.lineup-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ============================================================ FAQ */

.faq-section {
  padding: 7rem 0;
  background: var(--offwhite);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #e0ddd6;
}
.faq-item {
  border-bottom: 1px solid #e0ddd6;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--olive);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--moss);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--moss); }
.faq-a {
  display: none;
  padding: 0 1rem 1.4rem;
}
.faq-a p { font-size: 0.9rem; }
.faq-item.open .faq-a { display: block; }

/* ============================================================ CREATORS */

.creators-section {
  padding: 7rem 0;
  background: var(--cream);
}
.creators-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.creators-text h2 { color: var(--olive); margin-bottom: 1rem; }
.creators-text p { margin-bottom: 1.5rem; }
.creator-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.creator-perks li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
}
.creators-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.creators-form h3 { color: var(--olive); margin-bottom: 1.5rem; font-size: 1.2rem; }
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.signup-form input,
.signup-form textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  color: var(--charcoal);
  background: var(--offwhite);
}
.signup-form input:focus,
.signup-form textarea:focus { border-color: var(--moss); }
.signup-form textarea { resize: vertical; min-height: 100px; }
.eyebrow.light { color: var(--earth); }

/* ============================================================ FOOTER */

.footer {
  background: var(--olive);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand { }
.footer-logo { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.social-links a:hover { color: white; }
.footer-col h5 {
  color: white;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-email-desc { font-size: 0.82rem; margin-bottom: 0.75rem; }
.footer-email-form { display: flex; gap: 0.5rem; }
.footer-email-form input {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
  transition: border-color 0.2s;
}
.footer-email-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-email-form input:focus { border-color: rgba(255,255,255,0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.safety-note { font-size: 0.75rem !important; color: rgba(255,255,255,0.4); }

/* ============================================================ RESPONSIVE */

@media (max-width: 900px) {
  .why-grid,
  .creators-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .steps-flow { gap: 1.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  h1 { font-size: 2.4rem; }
  .hero-logo { height: 52px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-email-form { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
}
