/* ============================================================
   Bear Fruit With Christ — Cinematic Brand Styles
   Option B: Offset Logo • Holy Glow • Vineyard Sunrise
   ============================================================ */

/* ---------- THEME ---------- */
:root{
  /* Environment */
  --bg:#0b1210;        /* vineyard night */
  --bg2:#0f1a16;       /* deep shadow */
  --card:rgba(255,255,255,.045);
  --line:rgba(255,255,255,.10);

  /* Light */
  --gold:#f4c15d;      /* sunrise */
  --gold-soft:#f7d27c;
  --sky:#4f7f8a;

  /* Text */
  --text:#f3f1ec;
  --muted:#b9c1b5;
  --faint:#8e9a93;

  --radius:18px;
  --shadow:0 30px 80px rgba(0,0,0,.55);
}

/* ---------- RESET ---------- */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

/* ---------- BODY ---------- */
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(800px 500px at 70% 10%, rgba(244,193,93,.18), transparent 60%),
    radial-gradient(600px 400px at 20% 20%, rgba(79,127,138,.18), transparent 65%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.55;
}

/* ---------- UTIL ---------- */
.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }
.fine{ font-size:13px; color:var(--muted); }
.note{ opacity:.9; }
.lead{ font-size:18px; color:var(--muted); max-width:64ch; }
.accent{
  color:var(--gold);
  text-shadow:0 0 18px rgba(244,193,93,.25);
}
.divider{ height:1px; background:var(--line); margin:18px 0; }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease;
}
.btn:hover{ background:rgba(255,255,255,.10); }
.btn:active{ transform:translateY(1px); }
.btn--full{ width:100%; }

.btn--primary{
  background:linear-gradient(135deg, rgba(244,193,93,.95), rgba(244,193,93,.75));
  border-color:rgba(244,193,93,.45);
  color:#1a1407;
}
.btn--secondary{
  background:linear-gradient(135deg, rgba(79,127,138,.35), rgba(79,127,138,.18));
  border-color:rgba(79,127,138,.45);
}
.btn--ghost{ background:transparent; }

/* ---------- TOPBAR ---------- */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(10,14,18,.65);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:-.02em;
}
.brand__mark{
  width:36px;
  height:36px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(244,193,93,.25), rgba(0,0,0,.4));
  border:1px solid rgba(244,193,93,.35);
  box-shadow:
    0 0 22px rgba(244,193,93,.25),
    inset 0 0 18px rgba(0,0,0,.45);
}
.brand__name{ font-size:14px; }

.nav{
  display:flex;
  gap:14px;
  font-size:13px;
  color:var(--muted);
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{ background:rgba(255,255,255,.06); }

.topbar__actions{ display:flex; gap:10px; align-items:center; }

.hamburger{
  display:none;
  width:44px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.hamburger span{
  display:block;
  height:2px;
  margin:7px 10px;
  background:var(--text);
}

.mobileMenu{
  background:rgba(10,14,18,.92);
  border-top:1px solid var(--line);
}
.mobileMenu__inner{
  display:grid;
  gap:10px;
  padding:16px 0;
}
.mobileMenu__inner a{
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:70px 0 40px;
  overflow:hidden;
}
.hero__inner{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:28px;
}
.hero h1{
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.03em;
  max-width:20ch;
  margin:14px 0 12px;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }

.hero__proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:20px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  border-radius:16px;
  padding:14px;
}
.stat__num{ font-size:22px; font-weight:900; }
.stat__label{ font-size:12px; color:var(--muted); margin-top:6px; }

.hero__bg{
  position:absolute;
  inset:-220px -120px auto -120px;
  height:480px;
  background:
    radial-gradient(520px 260px at 75% 65%, rgba(244,193,93,.30), transparent 60%),
    radial-gradient(420px 240px at 30% 55%, rgba(79,127,138,.24), transparent 65%);
  filter:blur(22px);
  opacity:.85;
  pointer-events:none;
}

/* ---------- SECTIONS ---------- */
.section{ padding:60px 0; }
.section--alt{
  background:rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__header h2{
  font-size:28px;
  letter-spacing:-.02em;
  margin:0 0 8px;
}
.section__header p{
  color:var(--muted);
  max-width:80ch;
}
/* ---------- BRAND LOGO ---------- */
.brand__mark{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(244,193,93,.35);
  box-shadow:
    0 0 24px rgba(244,193,93,.20),
    0 12px 28px rgba(0,0,0,.45);
  background: rgba(0,0,0,.25);
  flex: 0 0 auto;
}


/* ---------- CARDS ---------- */
.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.glow{
  box-shadow:
    0 25px 80px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(244,193,93,.12);
}

/* ---------- LAYOUT ---------- */
.grid3{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.grid4{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.split{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* ---------- KPI ---------- */
.kpi{ padding:18px; }
.kpi__num{ font-size:28px; font-weight:900; }
.kpi__label{ font-size:13px; color:var(--muted); margin-top:6px; }
.kpi__meta{ font-size:12px; color:var(--faint); margin-top:8px; }

/* ---------- FORMS ---------- */
.form{ display:grid; gap:12px; }
label{ font-size:13px; color:var(--muted); display:grid; gap:6px; }
input,textarea{
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.3);
  color:var(--text);
}
input:focus,textarea:focus{
  border-color:rgba(244,193,93,.45);
  box-shadow:0 0 0 4px rgba(244,193,93,.15);
}

/* ---------- FOOTER ---------- */
.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background:rgba(10,14,18,.65);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
}
.footer__brand{ font-weight:900; }
.footer__cols{ display:flex; gap:14px; font-size:13px; color:var(--muted); }
.footer__legal{
  display:flex;
  justify-content:center;
  gap:10px;
  padding-top:14px;
  color:var(--faint);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px){
  .nav{ display:none; }
  .hamburger{ display:block; }
  .hero__inner{ grid-template-columns:1fr; }
  .hero h1{ font-size:36px; }
  .hero__proof{ grid-template-columns:1fr; }
  .grid3,.grid4,.split{ grid-template-columns:1fr; }
  .footer__inner{ flex-direction:column; }
}
