/* =====================
   FLAMESHINE — THEME CSS
   ===================== */

/* Variables */
:root {
  --bg: #FAF7F2;
  --bg-2: #F2EEE8;
  --bg-3: #E8E3D9;
  --fg: #1A1A18;
  --fg-muted: #666660;
  --fg-subtle: #999990;
  --accent: #2D6A4F;
  --accent-dim: rgba(45, 106, 79, 0.12);
  --accent-border: rgba(45, 106, 79, 0.25);
  --border: #DDD8D0;
  --border-light: #EAE5DD;
  --radius: 4px;
  --radius-lg: 8px;
}

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

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

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

.section-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  max-width: 600px;
}

/* Layout sections */
section {
  padding: 80px 24px;
  border-top: 1px solid var(--border-light);
}

/* =====================
   MANIFESTO / HERO
   ===================== */
.manifesto {
  border-top: none;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(45,106,79,0.06) 0%, transparent 70%),
    var(--bg);
}

.manifesto-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  border: 1px solid var(--accent-border);
  padding: 5px 12px;
  border-radius: 2px;
}

.manifesto-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--fg);
}

.manifesto-headline br { display: block; }

.manifesto-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.manifesto-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.manifesto-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Manifesto visual */
.manifesto-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grill-illustration {
  width: 100%;
  max-width: 420px;
}

.grill-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(249, 115, 22, 0.15));
}

/* =====================
   PROCESS
   ===================== */
.process {
  background: var(--bg-2);
}

.process-header {
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  padding: 24px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 70px;
}

.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-border), var(--border));
  margin-top: 28px;
}

.process-includes {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.includes-heading {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--fg-muted);
}

.includes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px 32px;
  list-style: none;
}

.includes-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* =====================
   PRICING
   ===================== */
.pricing {
  background: var(--bg);
}

.pricing-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 8px;
  max-width: 540px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: var(--accent-border);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg-3);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.card-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 600px;
}

.guarantee-icon {
  flex-shrink: 0;
  color: var(--accent);
  width: 28px;
  height: 28px;
}

.pricing-guarantee p {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-guarantee strong {
  color: var(--fg);
}

/* =====================
   SERVICE AREA
   ===================== */
.service-area {
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sa-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-top: 12px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.sa-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sa-region h4 {
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.sa-region span {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.sa-else {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--fg-subtle);
  font-style: italic;
}

/* SA visual */
.sa-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-placeholder {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-svg {
  width: 100%;
  display: block;
}

.map-label {
  background: var(--bg-3);
  padding: 10px 16px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.5px;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.25;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.signature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sig-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}

.sig-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-location {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-subtle);
}

.footer-sep {
  margin: 0 8px;
  color: var(--border);
}

.footer-legal {
  font-size: 0.75rem;
  color: #444;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .manifesto {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 24px 60px;
  }

  .manifesto-visual {
    order: -1;
  }

  .grill-illustration {
    max-width: 300px;
    margin: 0 auto;
  }

  .manifesto-meta {
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-connector {
    display: none;
  }

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

  .service-area {
    grid-template-columns: 1fr;
  }

  .sa-visual {
    order: -1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 20px;
  }

  .manifesto {
    padding: 60px 20px 48px;
  }

  .manifesto-headline {
    font-size: 2rem;
  }

  .manifesto-meta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .card-price {
    font-size: 2.2rem;
  }

  .closing-signature {
    flex-direction: column;
    text-align: center;
  }

  .signature-text {
    text-align: center;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .pricing-guarantee {
    flex-direction: column;
    align-items: flex-start;
  }
}