/* ── Food Truck Beacon — Warm Editorial Design ──────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --green:        #586B4E;
  --green-dark:   #3D4F35;
  --green-light:  #EAF0E6;
  --green-pale:   #F3F7F1;
  --cream:        #F1E0C6;
  --cream-dark:   #E8D0AD;
  --ink:          #1A1208;
  --stone:        #5C5044;
  --ash:          #9A8F84;
  --fog:          #EDE8E2;
  --white:        #FFFDF9;
  --red:          #CC2200;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ───────────────────────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

p { color: var(--stone); line-height: 1.8; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container        { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 740px;  margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* ── Header ───────────────────────────────────────────────────────────────── */
header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.15s;
}

.nav-links a:hover { color: white; text-decoration: none; }

.nav-cta {
  background: var(--cream) !important;
  color: var(--green-dark) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--green);
  padding: 120px 32px 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero h1 { color: var(--white); margin-bottom: 24px; }

.hero-lead {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

.hero-visual {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.hero-stat {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child { border-bottom: none; }

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--green); color: var(--white); box-shadow: 0 2px 8px rgba(88,107,78,0.35); }
.btn-primary:hover  { background: var(--green-dark); }

.btn-cream    { background: var(--cream); color: var(--green-dark); }
.btn-cream:hover { background: var(--cream-dark); }

.btn-outline  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.btn-ghost    { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: var(--green-light); }

/* ── Section headers ──────────────────────────────────────────────────────── */
.section-header {
  max-width: 600px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-header p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--stone);
}

/* ── Divider ──────────────────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--cream-dark);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── Audience split ───────────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.audience-card {
  padding: 56px 48px;
  background: var(--white);
}

.audience-card--green {
  background: var(--green);
}

.audience-card--green h2,
.audience-card--green h3 { color: var(--white); }
.audience-card--green p  { color: rgba(255,255,255,0.72); }

.audience-icon {
  font-size: 52px;
  margin-bottom: 28px;
}

.steps { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 4px; }

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.audience-card:not(.audience-card--green) .step {
  border-bottom-color: var(--fog);
  color: var(--stone);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.audience-card:not(.audience-card--green) .step-num {
  background: var(--green-light);
  color: var(--green);
}

.audience-card--green .btn { margin-top: 36px; }
.audience-card:not(.audience-card--green) .btn { margin-top: 36px; }

/* ── Feature grid ─────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--fog);
  border-radius: 20px;
  overflow: hidden;
}

.feature-tile {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-tile:hover { background: var(--green-pale); }

.feature-emoji {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.feature-tile h3 { margin-bottom: 10px; }

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16% + 36px);
  right: calc(16% + 36px);
  height: 2px;
  background: var(--cream-dark);
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--cream-dark);
}

.step-item h3 { margin-bottom: 10px; }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--fog);
  border-radius: 24px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.pricing-left {
  background: var(--green);
  padding: 56px 48px;
  color: white;
}

.pricing-right {
  background: var(--white);
  padding: 56px 48px;
}

.price-display {
  margin: 24px 0;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -2px;
}

.price-period {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.6;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fog);
  font-size: 15px;
  color: var(--stone);
}

.price-features li:last-child { border-bottom: none; }

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--cream);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '🚚';
  position: absolute;
  font-size: 200px;
  opacity: 0.06;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-band h2 { margin-bottom: 16px; }
.cta-band p  { margin-bottom: 36px; font-size: 19px; max-width: 480px; margin-left: auto; margin-right: auto; }

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--white);
  padding: 28px 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item:first-child { border-radius: 16px 16px 0 0; }
.faq-item:last-child  { border-radius: 0 0 16px 16px; }

.faq-item:hover {
  border-left-color: var(--green);
  background: var(--green-pale);
}

.faq-item h3 { margin-bottom: 10px; font-size: 17px; }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-card {
  background: var(--green);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-card h2 { color: white; margin-bottom: 12px; }
.contact-card p  { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 17px; }

.contact-email-display {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-email-display:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
  color: white;
}

/* ── Legal ────────────────────────────────────────────────────────────────── */
.legal-body { padding: 72px 0 100px; }
.legal-body h1 { color: var(--green); margin-bottom: 8px; }
.legal-body .effective { color: var(--ash); font-size: 14px; margin-bottom: 48px; display: block; }
.legal-body h2 { font-size: 20px; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-top: 40px; margin-bottom: 12px; color: var(--ink); }
.legal-body p  { margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px 20px; color: var(--stone); }
.legal-body ul li { margin-bottom: 8px; line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 56px 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.footer-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-links a:hover { color: white; text-decoration: none; }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1    { animation: fadeUp 0.6s ease both; }
.hero-lead  { animation: fadeUp 0.6s ease 0.1s both; }
.hero-btns  { animation: fadeUp 0.6s ease 0.2s both; }
.hero-meta  { animation: fadeUp 0.6s ease 0.3s both; }
.hero-visual { animation: fadeUp 0.6s ease 0.15s both; }

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .container, .container--narrow { padding: 0 20px; }

  .hero { padding: 72px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }

  .nav-links { display: none; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 40px 28px; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }

  .pricing-wrap { grid-template-columns: 1fr; }
  .pricing-left, .pricing-right { padding: 40px 32px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .contact-card { padding: 40px 24px; }

  h1 { font-size: clamp(32px, 8vw, 52px); }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .price-amount { font-size: 56px; }
}
