/* Flare — Food Truck Social Media Agency Theme */
:root {
  --bg: #FFFBF5;
  --bg-alt: #FEF3E8;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #E86A33;
  --accent-light: #FFF0E6;
  --border: #E8DDD4;
  --card: #FFFFFF;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Section label */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 0%, #FDE8D8 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, #FEF3E8 0%, transparent 50%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding-right: 3rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.3;
  max-width: 140px;
}
.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-right: 3rem;
  flex-shrink: 0;
}

/* Problem */
.problem {
  background: var(--fg);
  color: white;
  padding: 6rem 2rem;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-header {
  margin-bottom: 3.5rem;
}
.problem-header .section-label {
  color: var(--accent);
  margin-bottom: 1rem;
}
.problem-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
}
.problem-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}
.problem-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Approach */
.approach {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.approach-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.approach-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.approach-pillar {}
.pillar-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.approach-pillar h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.approach-pillar p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Services */
.services {
  padding: 6rem 2rem;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 3rem;
  max-width: 560px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Testimonial */
.testimonial {
  background: var(--accent);
  padding: 5rem 2rem;
}
.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin-bottom: 2.5rem;
}
.testimonial-credit {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
}
.testimonial-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* Closing */
.closing {
  background: var(--fg);
  color: white;
  padding: 7rem 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}
.closing-vibe {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.closing-vibe span {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #111010;
  color: rgba(255,255,255,0.4);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 7rem 1.5rem 4rem;
  }
  .hero-stat-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-stat {
    padding-right: 0;
  }
  .problem, .approach, .services, .closing {
    padding: 4rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}