/* ======================================================================
   BALANCEDSPIRITGALLERY.STORE — Unique Theme (2026-03)
   Look: gallery-clean + calm blues + soft sand accents
   Fonts: Fraunces (display) + Manrope (body)
======================================================================== */

:root{
  --bg:#f4f8ff;
  --bg2:#eef5ff;
  --surface:#ffffff;
  --surface2:#f8fbff;
  --ink:#091532;
  --muted:#3b4f7a;
  --muted2:#6a7fa9;
  --line:rgba(9,21,50,.12);

  --primary:#2b6cf6;      /* cobalt */
  --primary2:#7cc7ff;     /* sky */
  --accent:#f6d58f;       /* sand */
  --good:#10b981;

  --shadow: 0 10px 30px rgba(9,21,50,.10);
  --shadow2: 0 18px 45px rgba(9,21,50,.16);
  --radius: 18px;
  --radius2: 28px;

  --max: 1220px;
  --media-max: 1040px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(43,108,246,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(124,199,255,.16), transparent 55%),
    radial-gradient(1000px 700px at 50% 100%, rgba(246,213,143,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

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

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

.topbar{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: rgba(244,248,255,.72);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:42px; height:42px}
.brand .name{font-weight:900; letter-spacing:-.02em}
.brand .tag{font-size:12px; color:var(--muted2)}
.links{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.links a{font-weight:700; font-size:14px; color:var(--muted)}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background: rgba(255,255,255,.75);
  border:1px solid var(--line);
  box-shadow: 0 6px 18px rgba(9,21,50,.06);
}
.pill b{font-weight:900}
.dot{width:8px; height:8px; border-radius:999px; background:var(--accent)}

.hero{padding:48px 0 22px}
.hero-grid{
  display:grid; gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:stretch;
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
}
.h-title{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 10px 0 12px;
}
.h-sub{color:var(--muted); font-size:16px; line-height:1.55; max-width:60ch}
.hero-card{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 260px at 20% 0%, rgba(43,108,246,.18), transparent 55%),
              radial-gradient(380px 240px at 100% 20%, rgba(124,199,255,.22), transparent 55%);
  pointer-events:none;
}
.hero-card > *{position:relative}
.hero-media{
  border-radius: 22px;
  border:1px solid var(--line);
  overflow:hidden;
}
.hero-media img{width:100%; aspect-ratio: 16/10; object-fit:cover}

.kpis{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.kpi{
  padding:10px 12px; border-radius: 14px;
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  color: var(--muted);
  font-weight:700; font-size:13px;
}
.kpi span{color:var(--ink); font-weight:900}

.section{padding:34px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
  margin-bottom:14px;
}
.section h2{
  margin:0;
  font-size: 20px;
  letter-spacing: -.01em;
}
.section p.lead{margin:6px 0 0; color:var(--muted); max-width:70ch}

.grid3{display:grid; gap:16px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 980px){
  .grid3{grid-template-columns: 1fr}
}

.card{
  background: rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(9,21,50,.07);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
.card .media{border-bottom:1px solid var(--line)}
.card .media img{aspect-ratio: 16/10; object-fit:cover}
.card .pad{padding:14px 14px 16px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:800; font-size:12px;
  color: var(--muted);
}
.badge i{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 3px rgba(43,108,246,.12);
}
.card h3{margin:10px 0 6px; font-size:16px; letter-spacing:-.01em}
.card p{margin:0; color:var(--muted); line-height:1.5}

.split{
  display:grid; gap:16px;
  grid-template-columns: 1.1fr .9fr;
  align-items:start;
}
@media (max-width: 980px){ .split{grid-template-columns:1fr} }

.panel{
  background: rgba(255,255,255,.8);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:18px;
}
.callout{
  border-left:4px solid var(--accent);
  padding:12px 14px;
  background: rgba(246,213,143,.18);
  border-radius: 14px;
  color: var(--muted);
}
.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  font-weight:800;
  font-size:12px;
  color: var(--muted);
}
.chip b{color:var(--ink)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:white; font-weight:900;
  border: none;
}
.btn:hover{filter: brightness(1.03)}
.btn.secondary{
  background: rgba(255,255,255,.8);
  border:1px solid var(--line);
  color: var(--ink);
}

.post{padding:32px 0 52px}
.breadcrumb{color:var(--muted2); font-size:13px; font-weight:800}
.post h1{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 44px;
  line-height: 1.05;
  margin:10px 0 10px;
  letter-spacing: -.02em;
}
.meta{color:var(--muted2); font-weight:700; font-size:13px; display:flex; gap:10px; flex-wrap:wrap}
.prose{
  background: rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.prose h2{margin:18px 0 8px; font-size:18px}
.prose p{color:var(--muted); line-height:1.65; margin:0 0 12px}
.prose strong{color:var(--ink)}
.bullets{margin:10px 0 12px; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}
.steps{display:grid; gap:10px; margin:10px 0 14px}
.step{display:flex; gap:10px; align-items:flex-start}
.step span{
  width:28px; height:28px; border-radius: 10px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(43,108,246,.12);
  border:1px solid rgba(43,108,246,.25);
  font-weight:900; color: var(--primary);
}

.footer{
  padding:30px 0;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.62);
}
.footer .cols{display:grid; gap:18px; grid-template-columns: 1.3fr .7fr}
@media(max-width:980px){.footer .cols{grid-template-columns:1fr}}
.footer h3{margin:0 0 8px}
.small{color:var(--muted); line-height:1.6}
.footer a{color:var(--muted); font-weight:800}
