/* ===== EARNYARD THEME ===== */

/* Colors */
:root {
  --bg: #F7F4EE;
  --fg: #1A1A18;
  --green: #2D5A27;
  --green-light: #3D7A37;
  --amber: #C97B1A;
  --amber-light: #E09528;
  --warm-gray: #8A8578;
  --light-gray: #E5E1D8;
  --card-bg: #FFFFFF;
  --border: #D9D4CA;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  background: var(--green);
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--warm-gray);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  padding: 80px 32px 100px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 60px);
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 460px;
  line-height: 1.7;
}

/* Asset card stack */
.asset-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.asset-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(26,26,24,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.asset-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26,26,24,0.1);
}
.asset-card-boat { border-top: 3px solid var(--green); }
.asset-card-land { border-top: 3px solid var(--amber); }
.asset-card-tools { border-top: 3px solid var(--warm-gray); }
.asset-card-extras { border-top: 3px solid var(--green-light); }

.asset-icon {
  color: var(--green);
  width: 40px;
  height: 40px;
}
.asset-card-boat .asset-icon { color: var(--green); }
.asset-card-land .asset-icon { color: var(--amber); }
.asset-card-tools .asset-icon { color: var(--warm-gray); }
.asset-card-extras .asset-icon { color: var(--green-light); }

.asset-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

/* ===== SECTIONS ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 56px;
  color: var(--fg);
}

/* How it works */
.how-it-works {
  padding: 100px 32px;
  background: #EFEBE3;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { }
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* What you can rent */
.what-you-can-rent {
  padding: 100px 32px;
  background: var(--bg);
}
.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rental-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}
.rental-icon-wrap {
  color: var(--green);
  margin-bottom: 20px;
}
.rental-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--fg);
}
.rental-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* Testimonial */
.testimonial-section {
  padding: 100px 32px;
  background: var(--green);
  color: #fff;
}
.testimonial-section .section-label { color: #A8D49A; }
.testimonial-section .section-headline { color: #fff; }
.testimonial-quote {
  margin-bottom: 64px;
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  line-height: 0.5;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.testimonial-section cite {
  font-size: 14px;
  font-style: normal;
  color: rgba(255,255,255,0.6);
}
.earnings-highlight {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid rgba(255,255,255,0.15);
}
.highlight-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rate-row:last-child { border-bottom: none; }
.rate-item {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.rate-value {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: #A8D49A;
}

/* FAQ / Closing CTA */
.closing-cta {
  padding: 100px 32px;
  background: #EFEBE3;
}
.closing-body {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 64px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.faq-item h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--fg);
}
.faq-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 60px 32px;
  background: var(--fg);
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-brand .logo-mark {
  background: #fff;
  color: var(--green);
}
.footer-brand .logo-text {
  color: #fff;
}
.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .asset-card-stack {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .assets-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 48px 20px 64px; }
  .how-it-works, .what-you-can-rent, .closing-cta { padding: 64px 20px; }
  .testimonial-section { padding: 64px 20px; }
  .assets-grid { grid-template-columns: 1fr; }
  .asset-card-stack { grid-template-columns: 1fr; }
  .section-headline { margin-bottom: 36px; }
}