/* Christina Barringer LLC — lightweight, cPanel-ready */
:root{
  --bg:#0b0f14;
  --card:#0f1620;
  --card2:#0d141d;
  --text:#e8eef6;
  --muted:#a8b3c2;
  --line:#203041;
  --accent:#7dd3fc;
  --accent2:#a78bfa;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 0%, rgba(125,211,252,.12), transparent 60%),
              radial-gradient(1000px 700px at 90% 10%, rgba(167,139,250,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a:hover{ color:var(--accent); }
img{ max-width:100%; display:block; }

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.header{
  padding: 18px 0 44px;
  border-bottom: 1px solid rgba(32,48,65,.45);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.logo{ width:42px; height:42px; }
.logo.small{ width:34px; height:34px; }

.menu{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--muted);
  font-weight:600;
}
.menu a{ padding:10px 10px; border-radius:12px; }
.menu a:hover{ background: rgba(125,211,252,.10); color: var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(125,211,252,.35);
  background: linear-gradient(180deg, rgba(125,211,252,.18), rgba(125,211,252,.06));
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-weight:800;
  letter-spacing:.2px;
}
.btn:hover{ transform: translateY(-1px); }
.btn.ghost{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow:none;
}
.btn.small{ padding:10px 12px; border-radius:12px; font-weight:800; }

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  margin:4px auto;
  border-radius:2px;
  opacity:.9;
}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  padding: 38px 0 0;
  align-items:stretch;
}
.kicker{
  color:var(--muted);
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.78rem;
}
h1{
  margin:10px 0 10px;
  font-size: clamp(2.0rem, 3.6vw, 3.1rem);
  line-height:1.08;
}
.lead{
  color:var(--muted);
  font-size:1.05rem;
  max-width: 62ch;
}
.cta{ display:flex; gap:12px; margin:18px 0 18px; flex-wrap:wrap; }

.trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.pill{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight:700;
  font-size:.88rem;
}

.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.hero-card img{ width:100%; height:100%; object-fit:cover; min-height: 360px; }

.section{ padding: 64px 0; }
.section.alt{
  border-top:1px solid rgba(32,48,65,.45);
  border-bottom:1px solid rgba(32,48,65,.45);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
h2{
  margin:0 0 8px;
  font-size: clamp(1.5rem, 2.2vw, 2.0rem);
}
.subhead{
  margin:0 0 24px;
  color:var(--muted);
  max-width: 70ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border-radius: var(--radius);
  padding:18px 18px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.card h3{ margin:10px 0 6px; }
.card p{ color:var(--muted); margin:0 0 10px; }
.card ul{ margin:0; padding-left:18px; color: var(--muted); }
.card li{ margin:6px 0; }
.icon{
  width:38px; height:38px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(125,211,252,.35);
  background: rgba(125,211,252,.10);
  font-weight:900;
}

.banner{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(167,139,250,.25);
  background: radial-gradient(700px 220px at 20% 20%, rgba(167,139,250,.18), transparent 60%),
              rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.banner h3{ margin:0 0 2px; }
.banner p{ margin:0; color: var(--muted); }

.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}

.about-media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.about-media img{ width:100%; height:380px; object-fit:cover; }
.caption{
  padding:12px 14px;
  color: var(--muted);
  border-top:1px solid rgba(255,255,255,.08);
}

.stats{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.stat{
  min-width: 150px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:12px 12px;
}
.stat-num{ font-size:1.2rem; font-weight:900; }
.stat-label{ color:var(--muted); font-weight:700; font-size:.9rem; }

.contact-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:14px;
}
.contact-row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:14px;
  padding:12px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.contact-row:last-child{ border-bottom:none; }
.label{ color: var(--muted); font-weight:800; }
.value{ font-weight:700; }

.note{
  margin-top:12px;
  color: var(--muted);
  font-size:.95rem;
}

.form{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:14px;
}
label{
  display:block;
  font-weight:800;
  color: var(--muted);
  margin-bottom:12px;
}
input, textarea{
  margin-top:6px;
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: var(--text);
  padding:12px 12px;
  font-size:1rem;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(125,211,252,.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,.12);
}
.fineprint{
  margin:10px 0 0;
  color: var(--muted);
  font-size:.85rem;
}

.map{
  margin-top:14px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 16px 38px rgba(0,0,0,.20);
}
.map iframe{ width:100%; height:260px; border:0; }

.footer{
  border-top:1px solid rgba(32,48,65,.45);
  padding: 22px 0;
}
.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.foot-left{
  display:flex;
  align-items:center;
  gap:10px;
}
.foot-title{ font-weight:900; }
.foot-sub{ color: var(--muted); font-weight:700; font-size:.95rem; }
.foot-right{ display:flex; gap:14px; color: var(--muted); font-weight:800; }
.legal{
  margin-top:14px;
  color: var(--muted);
  font-weight:700;
  font-size:.9rem;
}

@media (max-width: 880px){
  .hero{ grid-template-columns: 1fr; }
  .hero-card img{ min-height: 300px; }
  .grid3{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr; }
  .menu{ display:none; }
  .hamburger{ display:block; }
  .menu.mobile{
    display:flex;
    position:absolute;
    right:4vw;
    top:72px;
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    background: rgba(15,22,32,.95);
    border:1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    box-shadow: var(--shadow);
    width: min(260px, 92vw);
    z-index: 50;
  }
  .menu.mobile a{ padding:12px 12px; }
}
