/* ========================
   LAWNSET — CUSTOM THEME
   ======================== */

/* Custom properties for this brand */
:root {
  --lawn-green: #1A2E1A;
  --lawn-green-light: #243D24;
  --lawn-amber: #D4A843;
  --lawn-amber-dark: #B8882E;
  --lawn-cream: #FAF8F3;
  --lawn-sand: #EDE8D8;
  --lawn-stone: #9A9282;
  --lawn-text: #2C2C2C;
  --lawn-text-light: #5A5754;
}

/* Base resets */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: var(--lawn-text); background: var(--lawn-cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Fraunces', serif; font-weight: 700; line-height: 1.15; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 46, 26, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900; color: var(--lawn-amber); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: rgba(250,248,243,0.6); font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding: 120px 2.5rem 0; 
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-lawn-texture {
  position: absolute; inset: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      #1F331F 0px, #1F331F 1px,
      transparent 1px, transparent 22px
    );
  opacity: 0.35;
}
.hero-lawn-texture--2 {
  background: 
    repeating-linear-gradient(
      0deg,
      #233623 0px, #233623 1px,
      transparent 1px, transparent 22px
    );
  opacity: 0.2;
}
.hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lawn-amber); margin-bottom: 1.25rem; }
.hero-headline { font-size: clamp(4rem, 9vw, 9rem); font-weight: 900; color: var(--lawn-cream); line-height: 0.92; letter-spacing: -0.03em; margin-bottom: 1.75rem; }
.hero-lede { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(250,248,243,0.8); max-width: 520px; font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-pricing-note { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-price { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--lawn-amber); }
.hero-pricing-sub { font-size: 0.85rem; color: rgba(250,248,243,0.5); }

/* Hero stats row */
.hero-stats {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 4rem auto 0; width: 100%;
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid rgba(212, 168, 67, 0.2); padding-top: 2.5rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.35rem; }
.hero-stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; color: var(--lawn-amber); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(250,248,243,0.5); letter-spacing: 0.03em; }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(212,168,67,0.2); margin: 0 3rem; }

/* Proof section */
.proof { background: var(--lawn-cream); padding: 6rem 2.5rem; }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lawn-stone); margin-bottom: 2rem; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.proof-item { display: flex; flex-direction: column; gap: 0.75rem; }
.proof-icon { width: 44px; height: 44px; }
.proof-title { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; color: var(--lawn-green); }
.proof-desc { font-size: 0.88rem; color: var(--lawn-text-light); line-height: 1.65; font-weight: 300; }

/* Promise section */
.promise { background: var(--lawn-green); padding: 7rem 2.5rem; }
.promise-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 5rem; align-items: center; }
.promise-quote { display: flex; flex-direction: column; gap: 1.5rem; }
.promise-text { font-family: 'Fraunces', serif; font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-weight: 400; font-style: italic; color: var(--lawn-cream); line-height: 1.5; }
.promise-cite { display: flex; flex-direction: column; gap: 0.25rem; }
.promise-author { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lawn-amber); }
.promise-role { font-size: 0.82rem; color: rgba(250,248,243,0.5); }
.promise-divider { background: rgba(212,168,67,0.2); align-self: stretch; min-height: 200px; }
.promise-facts { display: flex; flex-direction: column; gap: 2.5rem; }
.promise-fact { display: flex; flex-direction: column; gap: 0.35rem; }
.promise-fact-num { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 900; color: var(--lawn-amber); line-height: 1; }
.promise-fact-desc { font-size: 0.88rem; color: rgba(250,248,243,0.65); font-weight: 300; line-height: 1.5; }

/* Process section */
.process { background: var(--lawn-sand); padding: 7rem 2.5rem; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lawn-stone); margin-bottom: 1rem; }
.process-heading { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--lawn-green); margin-bottom: 4rem; max-width: 500px; }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.process-step { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.process-step-num { font-family: 'Fraunces', serif; font-size: 0.75rem; font-weight: 700; color: var(--lawn-amber); letter-spacing: 0.08em; }
.process-step-title { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; color: var(--lawn-green); margin-bottom: 0.5rem; }
.process-step-desc { font-size: 0.88rem; color: var(--lawn-text-light); line-height: 1.65; font-weight: 300; }
.process-step-connector { flex: 0 0 60px; height: 1px; background: linear-gradient(to right, rgba(26,46,26,0.2), rgba(212,168,67,0.3)); align-self: 2.5rem; margin: 0 1.5rem; }

/* Closing section */
.closing { background: var(--lawn-cream); padding: 8rem 2.5rem; text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-heading { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--lawn-green); line-height: 1.15; margin-bottom: 1.5rem; }
.closing-sub { font-size: 1.05rem; color: var(--lawn-text-light); font-weight: 300; line-height: 1.7; margin-bottom: 3rem; }
.closing-vision { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.closing-vision-line { width: 48px; height: 2px; background: var(--lawn-amber); }
.closing-vision-text { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--lawn-stone); font-style: italic; max-width: 480px; line-height: 1.6; }

/* Footer */
.footer { background: var(--lawn-green); padding: 3.5rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 900; color: var(--lawn-amber); display: block; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.82rem; color: rgba(250,248,243,0.5); max-width: 260px; line-height: 1.5; }
.footer-meta { text-align: right; }
.footer-copy { font-size: 0.78rem; color: rgba(250,248,243,0.4); margin-bottom: 0.35rem; }
.footer-note { font-size: 0.72rem; color: rgba(250,248,243,0.3); }

/* Responsive */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .promise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .promise-divider { display: none; }
  .process-steps { flex-direction: column; gap: 2.5rem; }
  .process-step-connector { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }
  .hero-stat-divider { margin: 0 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 100px 1.5rem 0; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .proof, .promise, .process, .closing { padding: 4rem 1.5rem; }
}