/* ==========================================
   FastFront — Custom Theme
   ========================================== */

:root {
  --bg: #F8F6F2;
  --bg-alt: #EFEDE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #0D5C63;
  --accent-light: #1A7A84;
  --gold: #D4A843;
  --success: #0D9488;
  --white: #FFFFFF;
  --border: #D9D5CE;
}

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

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

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

/* ---- Layout helpers ---- */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
}

/* ---- Buttons ---- */
a.btn-primary, a.btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}

a.btn-primary {
  background: var(--accent);
  color: #fff;
}
a.btn-primary:hover { background: var(--accent-light); }

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

a.btn-large { font-size: 16px; padding: 16px 32px; }

/* ---- HERO ---- */
.hero {
  padding: 80px 24px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero cards */
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hero-card--booked { border-left: 3px solid var(--success); }
.hero-card--lead { border-left: 3px solid var(--accent); }
.hero-card--review { border-left: 3px solid var(--gold); }
.card-label { font-size: 11px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.card-time { font-size: 11px; color: var(--fg-muted); display: block; margin-top: 2px; }
.card-icon { width: 40px; height: 40px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-source { font-size: 13px; font-weight: 500; color: var(--fg); }

/* ---- PROBLEM ---- */
.problem {
  padding: 80px 24px;
  background: var(--fg);
  color: var(--bg);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.stat-label { font-size: 15px; color: rgba(248,246,242,0.65); line-height: 1.5; }
.problem-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--bg);
  margin-bottom: 28px;
  margin-top: 16px;
}
.problem-body { font-size: 17px; color: rgba(248,246,242,0.8); line-height: 1.75; margin-bottom: 16px; }

/* ---- FEATURES ---- */
.features { padding: 80px 24px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* ---- PROCESS ---- */
.process {
  padding: 80px 24px;
  background: var(--bg-alt);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-inner .section-eyebrow { margin-bottom: 16px; }
.process-inner .section-headline { margin-bottom: 56px; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step { flex: 1; }
.step-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.4;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.step-connector {
  width: 80px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin: 0 24px;
  align-self: flex-start;
  margin-top: 28px;
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 80px 24px; background: var(--fg); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-header .section-headline { color: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial-card { background: rgba(248,246,242,0.06); border: 1px solid rgba(248,246,242,0.12); border-radius: 12px; padding: 36px; }
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-quote { font-size: 17px; color: var(--bg); line-height: 1.75; margin-bottom: 24px; font-style: italic; font-family: 'Fraunces', serif; }
.testimonial-name { display: block; font-weight: 600; font-size: 15px; color: var(--bg); margin-bottom: 4px; }
.testimonial-role { font-size: 13px; color: rgba(248,246,242,0.5); }

/* ---- CLOSING ---- */
.closing { padding: 96px 24px; background: var(--gold); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline { font-size: clamp(32px, 4.5vw, 52px); color: var(--fg); margin-bottom: 24px; }
.closing-body { font-size: 18px; color: rgba(26,26,26,0.75); line-height: 1.75; margin-bottom: 40px; }
.btn-primary.btn-large { background: var(--fg); color: var(--gold); }
.btn-primary.btn-large:hover { background: #2A2A2A; }

/* ---- FOOTER ---- */
.footer { padding: 56px 24px 40px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--fg); display: block; margin-bottom: 10px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-link { font-size: 14px; color: var(--fg-muted); text-decoration: none; font-weight: 500; }
.footer-link:hover { color: var(--fg); }
.footer-legal { font-size: 13px; color: var(--fg-muted); line-height: 1.6; width: 100%; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-sub { max-width: 100%; }
  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 72px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px 48px; }
  .features, .process, .testimonials { padding: 60px 20px; }
  .problem { padding: 60px 20px; }
  .closing { padding: 72px 20px; }
}