/* ── Lunch Fire LLC — Warm, Human, Connected ─────────────────────────────── */

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

:root {
  --green:       #586B4E;
  --green-dark:  #3D4F35;
  --green-light: #EAF0E6;
  --cream:       #F1E0C6;
  --cream-dark:  #E8D0AD;
  --fire:        #E8501A;
  --fire-light:  #FDF0EB;
  --ink:         #1A1208;
  --stone:       #5C5044;
  --ash:         #9A8F84;
  --fog:         #EDE8E2;
  --white:       #FFFDF9;
}

*, *::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 ── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
}
h2 {
  font-family: 'Playfair Display', 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;
}
p { color: var(--stone); line-height: 1.8; }

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

.eyebrow--green { color: var(--green); }

/* ── 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(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

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

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

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

.nav-cta {
  background: var(--fire) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,80,26,0.12) 0%, transparent 60%);
  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 h1 em {
  font-style: italic;
  color: var(--fire);
}

.hero-lead {
  font-size: 19px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spark-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s, border-color 0.2s;
}

.spark-card:hover {
  transform: translateX(6px);
  border-color: rgba(232,80,26,0.4);
}

.spark-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 6px;
}

.spark-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.spark-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.spark-card--coming {
  opacity: 0.5;
}

/* ── 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-fire    { background: var(--fire); color: white; box-shadow: 0 4px 16px rgba(232,80,26,0.3); }
.btn-fire:hover { background: #D4410F; }
.btn-green   { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-ghost   { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: var(--green-light); }

/* ── Section header ── */
.section-header {
  max-width: 600px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-header p { margin-top: 16px; font-size: 18px; }
.divider { width: 48px; height: 3px; background: var(--cream-dark); margin: 20px auto 0; border-radius: 2px; }

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

.mantra::before {
  content: '🔥';
  position: absolute;
  font-size: 300px;
  opacity: 0.04;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mantra-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.3;
  position: relative;
}

.mantra-quote em { color: var(--fire); font-style: normal; }
.mantra-attr { font-size: 14px; color: var(--ash); letter-spacing: 1px; }

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

.value-card {
  background: var(--white);
  padding: 48px 36px;
  transition: background 0.2s;
}

.value-card:hover { background: var(--green-light); }

.value-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 { margin-bottom: 12px; color: var(--ink); }

/* ── Products ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1.5px solid var(--fog);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: var(--cream-dark);
}

.product-card--flagship {
  border-color: var(--fire);
  background: linear-gradient(135deg, var(--white) 0%, var(--fire-light) 100%);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.badge-live    { background: #E6F7EF; color: #1A7A4A; }
.badge-coming  { background: var(--fog); color: var(--ash); }

.product-emoji { font-size: 40px; margin-bottom: 16px; display: block; }
.product-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink); }
.product-card p  { margin-bottom: 24px; }

/* ── Founder ── */
.founder-section {
  background: var(--ink);
  padding: 100px 32px;
}

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

.founder-section h2 { color: white; margin-bottom: 24px; }
.founder-section p  { color: rgba(255,255,255,0.65); margin-bottom: 20px; font-size: 18px; line-height: 1.8; }

.founder-quote {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--fire);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin-top: 32px;
}

.founder-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.5;
}

.founder-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.match-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.match-icon { font-size: 28px; flex-shrink: 0; }
.match-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.match-text strong { color: white; display: block; margin-bottom: 2px; }

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

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-band h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-band p  { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 19px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Contact ── */
.contact-card {
  background: var(--ink);
  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.6); margin-bottom: 32px; font-size: 17px; }

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

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

/* ── Footer ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  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 img { height: 28px; width: auto; opacity: 0.8; }

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

.footer-links a {
  color: rgba(255,255,255,0.4);
  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.25); text-align: right; }

/* ── 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; }
  .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-visual { display: none; }
  .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; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
