/* ===== Holy Fire Digital — shared styles ===== */
:root {
  --bg: #14181f;
  --bg-elev: #1f242d;
  --card: #1f242d;
  --fg: #f4f3f1;
  --muted-fg: rgba(244, 243, 241, 0.7);
  --primary: #f4c025;
  --primary-fg: #14181f;
  --border: rgba(244, 243, 241, 0.1);
  --border-hover: rgba(244, 192, 37, 0.5);
  --radius: 6px;
  --radius-lg: 12px;
  --container: 1280px;
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

/* Display headings use Sora; body/UI stays Inter */
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 24, 31, 0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; }
.brand .flame {
  height: 46px; display: inline-flex; align-items: center; justify-content: center;
}
/* Flame logo image — soft ember glow */
.brand-logo {
  height: 46px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(244, 120, 30, 0.4));
}
.eyebrow-logo {
  height: 17px; width: auto; display: block;
  filter: drop-shadow(0 0 5px rgba(244, 120, 30, 0.5));
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--muted-fg); font-size: 0.95rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--primary); }
.menu-btn { display: none; background: none; border: none; color: var(--fg); cursor: pointer; padding: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 1rem;
  border-radius: var(--radius); cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-md { padding: 12px 24px; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: #f6cb45; box-shadow: 0 8px 30px rgba(244, 192, 37, 0.25); transform: translateY(-1px); }
.btn-outline { background: var(--bg); color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: rgba(244, 192, 37, 0.08); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-hover); color: var(--primary); }

/* ---------- Home hero ---------- */
.hero {
  min-height: 680px; display: flex; align-items: center;
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(ellipse 65% 55% at 50% -8%, rgba(244, 192, 37, 0.16), transparent 62%),
    radial-gradient(ellipse 45% 40% at 78% 14%, rgba(240, 120, 30, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 38% at 20% 22%, rgba(244, 192, 37, 0.07), transparent 60%),
    radial-gradient(ellipse 70% 55% at 50% 118%, rgba(31, 36, 45, 0.75), transparent 72%);
}
/* film grain for depth */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* animated ember glow */
.hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  left: 50%; top: -14%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244, 192, 37, 0.14), transparent 60%);
  filter: blur(30px); animation: emberDrift 12s ease-in-out infinite;
}
@keyframes emberDrift {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.85; }
  50% { transform: translateX(-46%) translateY(16px) scale(1.08); opacity: 1; }
}
.hero .container { position: relative; z-index: 1; }

/* Two-column hero: copy left, product mockup right */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; text-align: left;
}
.hero-grid .eyebrow { margin-bottom: 24px; }
.hero-grid p.lead { margin-left: 0; margin-right: 0; }
.hero-grid .hero-actions { justify-content: flex-start; }
.hero-grid .hero-stats { justify-content: flex-start; margin-top: 40px; }

/* Browser-window mockup — a DIFFERENT, light-theme sample church site.
   Deliberately unlike Holy Fire: cream canvas, sage-teal accent, serif headline. */
.hero-visual { perspective: 1400px; }
.mockup {
  border-radius: 14px; overflow: hidden;
  background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(240, 120, 30, 0.10);
  transform: rotateY(-6deg) rotateX(2deg); transform-origin: left center;
  animation: mockupFloat 8s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}
/* light browser chrome */
.mockup-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: #eceef1; border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; background: #c7ccd3; }
.mockup-dot:nth-child(1) { background: #ec6a5e; }
.mockup-dot:nth-child(2) { background: #f4bf4f; }
.mockup-dot:nth-child(3) { background: #61c554; }
.mockup-url {
  flex: 1; margin-left: 10px; padding: 5px 14px;
  background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 999px;
  font-size: 0.72rem; color: #8a9099; text-align: center;
}
/* light site canvas */
.mockup-screen {
  padding: 15px 17px 18px; color: #262b31;
  background:
    radial-gradient(ellipse 65% 45% at 100% 0%, rgba(35, 138, 120, 0.10), transparent 62%),
    #f7f5f0;
}
.m-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.m-brand { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: #262b31; }
.m-mark { width: 15px; height: 15px; border-radius: 5px; background: linear-gradient(140deg, #34b39a, #1f7a6b); }
.m-nav-right { display: flex; align-items: center; gap: 11px; }
.m-links { display: flex; gap: 8px; }
.m-links i { width: 20px; height: 5px; border-radius: 3px; background: rgba(38, 43, 49, 0.16); }
.m-pill { font-size: 0.6rem; font-weight: 700; color: #fff; background: #1f7a6b; padding: 5px 11px; border-radius: 999px; }
/* two-column light hero with a soft photo block */
.m-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 14px; align-items: center; padding: 6px 0 14px; }
.m-eyebrow {
  display: inline-block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: #1f7a6b;
  background: rgba(31, 122, 107, 0.12); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px;
}
.m-title { font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.06; color: #20262c; }
.m-sub { font-size: 0.7rem; color: #6b7280; margin: 8px 0 12px; max-width: 190px; }
.m-actions { display: flex; gap: 7px; flex-wrap: wrap; }
.m-btn { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 7px 13px; border-radius: 6px; background: #1f7a6b; color: #fff; }
.m-btn.ghost { background: transparent; color: #1f7a6b; border: 1px solid rgba(31, 122, 107, 0.4); }
.m-photo {
  height: 104px; border-radius: 10px;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(158deg, #7fc9b8 0%, #bfe0d3 46%, #f3d9a8 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
/* info strip */
.m-strip { display: flex; gap: 8px; }
.m-chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.62rem; font-weight: 600; color: #3a4046;
  background: #fff; border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 10px; border-radius: 8px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.m-chip i { width: 12px; height: 12px; border-radius: 4px; background: rgba(31, 122, 107, 0.25); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(244, 192, 37, 0.1); border: 1px solid rgba(244, 192, 37, 0.25);
  color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.6rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 24px;
}
/* "Shine." — fire rendered as color, not a novelty font */
.hero h1 .accent {
  font-weight: 700;
  background: linear-gradient(135deg, #ffd970 0%, #f4c025 42%, #f0781e 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 16px rgba(240, 120, 30, 0.35));
}
.hero p.lead { max-width: 640px; margin: 0 auto 40px; font-size: 1.2rem; color: var(--muted-fg); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero credibility stat band */
.hero-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 24px; margin-top: 48px; flex-wrap: wrap;
  color: var(--muted-fg); font-size: 0.95rem;
}
.hero-stats .stat { display: inline-flex; align-items: baseline; gap: 7px; }
.hero-stats .stat strong { color: var(--fg); font-weight: 700; font-size: 1.15rem; }
.hero-stats .stat strong .accent { color: var(--primary); }
.hero-stats .divider { width: 1px; height: 22px; background: var(--border); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: 96px 0 64px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 50% 0%, rgba(244, 192, 37, 0.10), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px;
}
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.2rem; color: var(--muted-fg); }

/* ---------- Sections ---------- */
section.block { padding: 80px 0; }
section.muted { background: rgba(31, 36, 45, 0.5); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.5rem); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--muted-fg); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { border-color: var(--border-hover); box-shadow: 0 12px 40px rgba(244, 192, 37, 0.08); transform: translateY(-4px); }
.icon-box {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(244, 192, 37, 0.1);
  display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted-fg); font-size: 0.98rem; }

/* ---------- Bento grid (Why Choose) ---------- */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(150px, auto); gap: 20px;
  max-width: 1040px; margin: 0 auto;
}
.bento .card { display: flex; flex-direction: column; }
.bento .card--feature { grid-row: span 2; }
.bento .card--wide { grid-column: span 2; }
/* Feature tile: warm wash + big giving stat */
.card--feature {
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(240, 120, 30, 0.14), transparent 60%),
    var(--card);
  border-color: var(--border-hover);
}
.card--feature p { flex: 1; }
.feature-stat { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
.feature-stat .accent {
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #ffd970, #f0781e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.feature-stat small { color: var(--muted-fg); font-size: 0.95rem; font-weight: 500; }
.services-cta { text-align: center; margin-top: 48px; }

/* ---------- Process / How it works ---------- */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative; max-width: 1040px; margin: 0 auto;
}
.process-step { position: relative; text-align: center; padding: 0 8px; }
/* connector line running between the numbered badges */
.process-step:not(:last-child)::after {
  content: ""; position: absolute; top: 31px; left: 50%;
  width: calc(100% + 24px); height: 2px; z-index: 0;
  background: linear-gradient(90deg, rgba(244, 192, 37, 0.45), rgba(244, 192, 37, 0.12));
}
.process-num {
  position: relative; z-index: 1;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--primary); background: var(--card);
  border: 1px solid var(--border-hover);
  box-shadow: 0 0 0 6px rgba(244, 192, 37, 0.05), 0 10px 30px rgba(244, 192, 37, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .process-num {
  transform: translateY(-4px);
  box-shadow: 0 0 0 6px rgba(244, 192, 37, 0.08), 0 14px 38px rgba(244, 192, 37, 0.18);
}
.process-step h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.process-step p { color: var(--muted-fg); font-size: 0.95rem; }

/* ---------- Services rows ---------- */
.svc-list { display: flex; flex-direction: column; gap: 28px; max-width: 900px; margin: 0 auto; }
.svc-row {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 72px 1fr; gap: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc-row:hover { border-color: var(--border-hover); box-shadow: 0 12px 40px rgba(244, 192, 37, 0.08); }
.svc-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: rgba(244, 192, 37, 0.1);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.svc-row h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; }
.svc-price {
  display: inline-block; margin: 8px 0 14px;
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  background: rgba(244, 192, 37, 0.1); padding: 4px 12px; border-radius: 999px;
}
.svc-row > div > p { color: var(--muted-fg); margin-bottom: 18px; }
.benefits-label { font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.benefits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.benefits li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted-fg); font-size: 0.95rem; }
.benefits li svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }

/* ---------- Prose / scripture (pricing) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--muted-fg); font-size: 1.08rem; margin-bottom: 22px; }
.scripture {
  max-width: 760px; margin: 40px auto 0; padding: 32px 40px;
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--primary); border-radius: var(--radius-lg);
  font-size: 1.2rem; font-style: italic; line-height: 1.6;
}
.scripture cite { display: block; margin-top: 14px; font-style: normal; font-size: 0.95rem; color: var(--primary); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  color: var(--fg); font-family: inherit; font-size: 1.05rem; font-weight: 600;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q:hover { color: var(--primary); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s ease; color: var(--primary); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted-fg); }

/* ---------- Checklist (about) ---------- */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; }
.checklist li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.checklist strong { display: block; font-weight: 600; margin-bottom: 2px; }
.checklist span { color: var(--muted-fg); font-size: 0.95rem; }
.closing-note { max-width: 760px; margin: 48px auto 0; text-align: center; color: var(--muted-fg); font-size: 1.08rem; }

/* ---------- Our Story (About) ---------- */
.story-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; max-width: 1000px; margin: 0 auto; }
.story-aside { position: sticky; top: 96px; }
.story-photo-frame { position: relative; margin-bottom: 22px; }
.story-photo-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  transform: translate(15px, 15px); border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #f4c025, #f0781e); opacity: 0.9;
}
.story-photo {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid rgba(244, 192, 37, 0.4);
  background: var(--card);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 34px rgba(244, 192, 37, 0.12);
  display: block;
}
.story-quote {
  margin-top: 20px; padding-left: 16px; border-left: 3px solid var(--primary);
  color: var(--fg); font-size: 1.08rem; font-style: italic; line-height: 1.5;
}
.story-body h2 { font-size: clamp(1.7rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 20px; }
.story-body p { color: var(--muted-fg); font-size: 1.05rem; margin-bottom: 18px; }
.story-body .story-closing { color: var(--fg); font-weight: 500; }
.story-body .story-sign { color: var(--primary); font-weight: 600; font-style: italic; margin-top: 22px; }
@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-aside { position: static; max-width: 200px; margin: 0 auto; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; max-width: 1040px; margin: 0 auto; }
.form-card, .info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-card h2, .info-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--bg); color: var(--fg);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; font-family: inherit; font-size: 0.98rem; transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.field textarea { resize: vertical; min-height: 130px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.info-item .icon-box { margin-bottom: 0; width: 46px; height: 46px; }
.info-item .label { font-size: 0.85rem; color: var(--muted-fg); }
.info-item .value { font-weight: 600; }
.info-note { color: var(--muted-fg); font-size: 0.92rem; border-top: 1px solid var(--border); padding-top: 20px; margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 96px 0; background: linear-gradient(180deg, #14181f, rgba(31, 36, 45, 0.5)); text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.8vw, 3rem); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 20px; }
.cta-band p { max-width: 600px; margin: 0 auto 36px; font-size: 1.2rem; color: var(--muted-fg); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted-fg); max-width: 340px; margin-top: 16px; font-size: 0.95rem; }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span { color: var(--muted-fg); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; color: var(--muted-fg); font-size: 0.9rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-step:not(:last-child)::after { display: none; }
  /* Stack hero: copy on top, mockup below */
  .hero { min-height: auto; padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-grid p.lead { margin-left: auto; margin-right: auto; }
  .hero-grid .hero-actions { justify-content: center; }
  .hero-grid .hero-stats { justify-content: center; }
  .hero-visual { max-width: 440px; width: 100%; margin: 0 auto; }
  .mockup { transform: none; animation: none; }
  /* Bento: 2-up, reset spans */
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card--feature { grid-row: span 1; }
  .bento .card--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; max-width: 340px; }
  .bento { grid-template-columns: 1fr; }
  .bento .card--wide { grid-column: span 1; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--bg-elev);
    border-bottom: 1px solid var(--border); padding: 12px 24px; gap: 4px;
  }
  .nav-links.open a { padding: 12px 8px; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-stats { gap: 14px; }
  .hero-stats .divider { display: none; }
  .svc-row { grid-template-columns: 1fr; padding: 28px; }
  .benefits { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::after { animation: none; }
  .mockup { animation: none; }
  html { scroll-behavior: auto; }
}
