/* Church Livestream-as-a-Service — warm, trustworthy, mobile-first.
   No horizontal overflow at 380px. Light theme (churches, not crypto). */
:root {
  --bg: #fbf6ee;          /* warm parchment */
  --bg-2: #f4ebdd;        /* deeper cream */
  --panel: #ffffff;
  --panel-2: #fbf7f0;
  --line: #e7dccb;
  --line-2: #ded0ba;
  --ink: #2b2016;         /* warm near-black */
  --ink-2: #5a4b3a;
  --muted: #857463;
  --brand: #c07a1e;       /* warm amber/gold */
  --brand-2: #a8611a;     /* deeper amber (text-safe on cream) */
  --accent: #1f5d57;      /* trustworthy deep teal */
  --accent-2: #17453f;
  --ok: #2f7d5b;
  --err: #b23b3b;
  --shadow: 0 1px 2px rgba(43,32,22,.05), 0 8px 24px rgba(43,32,22,.06);
  --radius: 16px;
  --maxw: 1000px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(1200px 520px at 82% -8%, rgba(192,122,30,.12), transparent 60%),
    radial-gradient(900px 480px at -10% 6%, rgba(31,93,87,.08), transparent 55%),
    var(--bg);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
a { color: var(--brand-2); }
img, svg { max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.4px; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 16px 0; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--serif); font-weight: 700; font-size: 19px; }
.logo .mark {
  width: 30px; height: 30px; min-width: 30px; border-radius: 9px; display: flex;
  align-items: center; justify-content: center; font-size: 16px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.logo .sub { font-family: var(--sans); font-weight: 600; font-size: 11px; color: var(--muted); letter-spacing: .4px; }
.nav-cta { font-size: 14px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  appearance: none; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid var(--line-2); background: var(--panel); color: var(--ink);
  font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 12px 18px;
  border-radius: 12px; cursor: pointer; text-decoration: none; max-width: 100%;
  transition: transform .06s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn.primary {
  border: none; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 18px rgba(168,97,26,.28);
}
.btn.ghost { background: transparent; }
.btn.wide { width: 100%; }

/* ── Section scaffolding ─────────────────────────────────── */
section { padding: 34px 0; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--accent);
  background: rgba(31,93,87,.09); border-radius: 999px; padding: 5px 12px;
}
.sec-title { font-size: clamp(23px, 6.5vw, 34px); line-height: 1.12; margin: 12px 0 8px; }
.sec-sub { color: var(--ink-2); max-width: 56ch; margin: 0; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 22px 0 8px; }
.hero .kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .8px;
  color: var(--brand-2); background: rgba(192,122,30,.1);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 13px;
}
.hero h1 {
  font-size: clamp(32px, 9.5vw, 60px); line-height: 1.04; margin: 16px 0 14px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: var(--ink-2); font-size: clamp(16px, 4.3vw, 20px); max-width: 50ch; margin: 0; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.trust-strip .chip {
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
}
.trust-strip .chip::before { content: "✓ "; color: var(--ok); font-weight: 800; }

/* ── Card grids ──────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.card .ic { font-size: 26px; line-height: 1; }
.card h3 { font-size: 19px; margin: 12px 0 6px; }
.card p { color: var(--ink-2); margin: 0; font-size: 14.5px; }

/* steps get a number chip */
.step .n {
  display: inline-flex; width: 30px; height: 30px; border-radius: 999px;
  align-items: center; justify-content: center; font-family: var(--serif);
  font-size: 15px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* ── Pricing ─────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
.plan {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.plan.featured { border-color: var(--brand); box-shadow: 0 10px 30px rgba(168,97,26,.16); }
.plan .badge {
  position: absolute; top: -11px; right: 18px; font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 999px; padding: 4px 11px;
}
.plan .pname { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.plan .blurb { color: var(--muted); font-size: 13.5px; margin: 6px 0 14px; min-height: 2.6em; }
.plan .price { display: flex; align-items: baseline; gap: 4px; }
.plan .price .amt { font-family: var(--serif); font-size: 40px; font-weight: 600; letter-spacing: -1px; }
.plan .price .cur { font-size: 20px; font-weight: 700; color: var(--ink-2); }
.plan .price .per { color: var(--muted); font-size: 14px; }
.plan ul { list-style: none; margin: 16px 0 20px; padding: 0; display: grid; gap: 9px; }
.plan li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink-2); }
.plan li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-2); font-weight: 800;
}
.plan .btn { margin-top: auto; }
.pricing-note {
  margin: 20px auto 0; max-width: 62ch; text-align: center; color: var(--muted);
  font-size: 13.5px;
}

/* ── Proof ───────────────────────────────────────────────── */
.proof-band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.quote p { font-family: var(--serif); font-size: 17px; line-height: 1.45; color: var(--ink); margin: 0 0 12px; }
.quote .who { color: var(--muted); font-size: 13px; font-weight: 600; }
.proof-note { margin-top: 16px; font-size: 12px; color: var(--muted); text-align: center; }

/* ── Booking form ────────────────────────────────────────── */
.book-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 6px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field label .req { color: var(--brand-2); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 11px;
  padding: 12px 13px; width: 100%; max-width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(192,122,30,.15);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--err); }
.field .err { color: var(--err); font-size: 12.5px; min-height: 1em; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { margin-top: 18px; }
.form-note { color: var(--muted); font-size: 12.5px; margin: 10px 0 0; }
.form-status {
  margin-top: 14px; padding: 13px 15px; border-radius: 12px; font-size: 14px;
  border: 1px solid var(--line);
}
.form-status[data-kind="ok"]  { border-color: rgba(47,125,91,.4); background: rgba(47,125,91,.09); color: #205e44; }
.form-status[data-kind="err"] { border-color: rgba(178,59,59,.4); background: rgba(178,59,59,.08); color: #8f2f2f; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { display: grid; gap: 10px; margin-top: 22px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 4px 16px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 14px 0; font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-2); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); margin: 0 0 16px; font-size: 14.5px; }

/* ── CTA band + Footer ───────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #f4efe6; border-radius: 22px; padding: 30px 22px; text-align: center; margin: 8px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(22px, 6vw, 32px); margin: 0 0 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0 auto 18px; max-width: 46ch; }
.cta-band .btn.primary { background: #fff; color: var(--accent-2); box-shadow: none; }

.foot { border-top: 1px solid var(--line); padding: 26px 0 42px; color: var(--muted); font-size: 13px; }
.foot .row { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; justify-content: space-between; }
.foot a { color: var(--ink-2); text-decoration: none; }
.foot .fine { margin-top: 12px; font-size: 12px; }

/* ── Tablet / desktop ────────────────────────────────────── */
@media (min-width: 680px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 900px) {
  .hero h1 { max-width: 15ch; }
  section { padding: 44px 0; }
}
