:root{
  --gold:#c9a34a;
  --gold-2:#e6c76e;
  --ink:#0b0b0c;
  --panel:rgba(20,20,22,.58);
  --panel-strong:rgba(16,16,18,.74);
  --ring:rgba(201,163,74,.30);
  --text:#2a1c0f;   /* match your problems section color */
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--ink) url("images/STS_Background.png") no-repeat center/cover fixed;
  min-height:100svh;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
body::before{
  content:""; position:fixed; inset:0; pointer-events:none; z-index:-1;
  background:
    radial-gradient(1200px 600px at 0% 0%, rgba(255,215,120,.18), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, rgba(201,163,74,.10), transparent 55%),
    linear-gradient(to bottom, rgba(255,255,255,.035), transparent 280px);
}

/* Nav */
.nav{
  position:sticky; top:0; z-index:1000;
  background:rgba(255,255,255,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(201,163,74,.35);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.nav-inner{
  max-width:1200px; margin:0 auto; padding:10px 18px;
  display:flex; align-items:center; gap:18px;
}
.brand{ height:34px; width:auto; display:block; }
.nav-links{ margin-left:auto; display:flex; gap:10px; flex-wrap:wrap; }
.nav a{
  color:#2a1c0f; text-decoration:none; font-weight:700; letter-spacing:.25px;
  padding:9px 12px; border-radius:8px;
  transition: color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.nav a:hover{
  color:#1d130a; transform:translateY(-1px);
  box-shadow: inset 0 -2px 0 var(--gold);
}
.nav a.active{
  box-shadow: inset 0 -2px 0 var(--gold);
  color:#1d130a;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 18px; border-radius:12px; border:1px solid var(--gold);
  color:#111; background:var(--gold); font-weight:800; text-decoration:none;
  box-shadow:0 6px 16px rgba(0,0,0,.25), 0 0 0 5px var(--ring);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{ transform:translateY(-2px); background:var(--gold-2) }
.btn.ghost{ background:transparent; color:#2a1c0f; border-color:rgba(201,163,74,.5) }
.btn.ghost:hover{ box-shadow: inset 0 -2px 0 var(--gold) }

/* Layout helpers */
.container{ max-width:1200px; margin:0 auto; padding:0 18px; }
.sp-1{ margin-top:12px } .sp-2{ margin-top:20px } .sp-3{ margin-top:34px } .sp-4{ margin-top:46px }

/* Hero */
.hero{
  margin:40px auto 20px;
  display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; align-items:center;
}
.hero .logo{ width:min(400px,60vw); height:auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.hero h1{
  margin:0 0 10px; color:var(--gold);
  font-weight:900; font-size:clamp(28px,4.8vw,48px); letter-spacing:.4px;
}
.hero p{
  margin:0;
  color: var(--text);  /* now matches your problems section */
  font-size:clamp(16px,2.1vw,18px);
  line-height:1.65;
}
.hero .cta{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap }

/* Sections */
.section h2{
  color:var(--gold); font-size:clamp(22px,3.6vw,30px); margin:6px 0 14px; letter-spacing:.3px;
}

/* Cards / grids */
.card{
  position:relative; overflow:hidden;
  background:var(--panel);
  border:1px solid rgba(201,163,74,.45);
  border-radius:16px; padding:20px 18px 18px;
  box-shadow:0 12px 28px rgba(0,0,0,.35), 0 0 0 6px var(--ring);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::before{
  content:""; position:absolute; inset:-1px;
  background: radial-gradient(400px 160px at 0% 0%, rgba(201,163,74,.18), transparent 55%);
  pointer-events:none;
}
.card:hover{ transform: translateY(-6px); box-shadow:0 18px 36px rgba(0,0,0,.44), 0 0 0 6px var(--ring); border-color: rgba(201,163,74,.7) }
.icon{
  width:44px; height:44px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color:#111; font-weight:900; font-size:22px;
  box-shadow:0 6px 14px rgba(0,0,0,.25);
  margin-bottom:10px;
}
.card h3{ margin:6px 0 8px; color:var(--gold); font-size:1.5rem }
.card p{ margin:0; color:#f1efe9; opacity:.95 }
.card a{ display:inline-block; margin-top:12px; color:var(--gold); font-weight:800; text-decoration:none }
.card a:hover{ color:var(--gold-2) }

/* Content panels */
.panel{
  background: rgba(200,200,200,.15);
  border:1px solid rgba(201,163,74,.4);
  border-radius:16px; padding:18px 18px 20px;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
}

/* Global grids (default behavior elsewhere) */
.grid-3{ display:grid; grid-template-columns: repeat(3, minmax(240px,1fr)); gap:18px }
.grid-2{ display:grid; grid-template-columns: repeat(2, minmax(240px,1fr)); gap:18px }
.grid-1{ display:grid; grid-template-columns: 1fr; gap:18px }

/* SPECIFIC: lock the layout for the "What we focus on" section */
#pillars .grid-3{
  grid-template-columns: repeat(3, 1fr);   /* 3 across on desktop */
}
@media (max-width: 980px){
  #pillars .grid-3{ grid-template-columns: repeat(2, 1fr); }  /* 2 across on tablet */
}
@media (max-width: 560px){
  #pillars .grid-3{ grid-template-columns: 1fr; }             /* 1 across on phone */
}

/* Breadcrumbs */
.breadcrumbs{ font-size:.95rem; opacity:.9; margin-bottom:10px }
.breadcrumbs a{ color:var(--gold); text-decoration:none }
.breadcrumbs a:hover{ color:var(--gold-2) }

/* Footer */
footer{
  margin-top:34px; padding:24px 18px; text-align:center;
  background: rgba(10,10,10,.55);
  border-top:1px solid rgba(201,163,74,.28);
}
footer .contact{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:6px }
.link{ color:var(--gold); text-decoration:none; font-weight:800 }
.link:hover{ color:var(--gold-2) }

/* Responsive */
@media (max-width:980px){
  .hero{ grid-template-columns:1fr; text-align:center }
  .hero .cta{ justify-content:center }
}
@media (max-width:880px){
  .grid-3{ grid-template-columns:1fr 1fr }
}
@media (max-width:560px){
  .grid-3, .grid-2{ grid-template-columns:1fr }
  .brand{ height:30px }
}
  /* bottom CTA */
  .cta-band{
    max-width:1200px; margin:40px auto; padding:0 18px;
  }
  .cta-panel{
    background: linear-gradient(135deg, rgba(201,163,74,.22), rgba(255,255,255,.12));
    border:1px solid rgba(201,163,74,.45);
    border-radius:18px; padding:20px;
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    box-shadow:0 10px 26px rgba(0,0,0,.3);
    flex-wrap:wrap;
  }