:root{
  --bg:#FBF7F2;
  --ink:#2A2A2A;
  --muted:#6B635E;

  --card:#FFFFFF;
  --border:rgba(32,24,18,.10);
  --shadow:0 18px 50px rgba(21,16,12,.06);
  --radius:20px;

  /* boho palette */
  --peach:#F6B59A;
  --coral:#F28C7B;
  --sun:#F7C86A;
  --sand:#EAD9C6;
  --clay:#B98262;

  --btn:#2A2A2A;
  --btnText:#ffffff;
}

/* ---------- Base ---------- */

*{box-sizing:border-box}

html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--ink);
  background:var(--bg);
}

a{
  color:inherit;
  text-decoration:none;
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:32px 20px 60px;
}

/* ---------- Header ---------- */

.top{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}

.top-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand-logo{
  height:46px;
  width:auto;
  display:block;
}

@media (max-width:600px){
  .brand-logo{height:38px;}
}

.nav{
  display:flex;
  gap:18px;
}

.nav a{
  font-size:14px;
  font-weight:600;
  color:var(--muted);
  padding:6px 8px;
  border-radius:10px;
  transition:.15s ease;
}

.nav a:hover{
  background:var(--sand);
  color:var(--ink);
}

/* ---------- Cards ---------- */

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* ---------- Hero ---------- */

.hero{
  padding:28px 32px;
  max-width: 860px;
margin: 0 auto;
}

.hero-copy{
  max-width:720px;
}

.hero-grid{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.pill{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:var(--clay);
  background:var(--sand);
  margin-bottom:14px;
}

.hero-logo{
  max-width:460px;
  height:auto;
  display:block;
}

.lead{
  font-size:18px;
  line-height:1.6;
  color:var(--muted);
  max-width:620px;
}

/* ---------- Buttons ---------- */

.cta-row{
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  border:1px solid var(--border);
  background:#fff;
  transition:.15s ease;
}

.btn.primary{
  background:var(--btn);
  color:var(--btnText);
  border-color:rgba(0,0,0,.25);
}

.btn.primary:hover{
  opacity:.9;
}

.btn.ghost:hover{
  background:var(--sand);
}

.btn.small{
  padding:8px 14px;
  font-size:13px;
}

/* ---------- Mini blocks ---------- */

.mini{
  display:flex;
  gap:14px;
  margin-top:24px;
  flex-wrap:wrap;
}

.mini-item{
  padding:14px 16px;
  border-radius:14px;
  background:var(--sand);
}

.mini-k{
  font-weight:800;
  font-size:14px;
}

.mini-v{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

/* ---------- Featured Grid ---------- */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:28px;
}

@media (max-width:900px){
  .grid{grid-template-columns:1fr;}
}

.hubcard{
  padding:24px;
}

.tag{
  font-size:11px;
  font-weight:800;
  padding:5px 10px;
  border-radius:999px;
  background:var(--sand);
  color:var(--clay);
  margin-right:6px;
}

/* ---------- Directory ---------- */

.hubwrap{
  padding:30px;
  margin-bottom:28px;
}

.hubhead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:22px;
  flex-wrap:wrap;
  gap:12px;
}

.hubsearch input{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  outline:none;
  min-width:260px;
}

.hubsearch input:focus{
  border-color:var(--clay);
}

/* Icon grid */

.hubgrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

@media (max-width:760px){
  .hubgrid{grid-template-columns:1fr;}
}

.hubitem{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  transition:.15s ease;
}

.hubitem:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

/* Icon container */

.hubicon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(234,217,198,.28);
  flex-shrink:0;

  overflow:hidden; /* ✅ IMPORTANT */
}

.hubicon-img{
  max-width:30px;
  max-height:30px;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
}

/* Text */

.hubname{
  font-weight:800;
}

.hubmeta{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

.hubgo{
  margin-left:auto;
  font-weight:800;
  color:var(--clay);
  opacity: .6;
}

/* ---------- Callout ---------- */

.callout{
  padding:32px;
}

.callout-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.studio{
  padding:28px 30px;
  margin: 0 0 28px;
}

.studio h2{
  margin:0 0 10px;
  font-size:20px;
}

.studio p{
  margin:0 0 10px;
  line-height:1.6;
  color: var(--ink);
}

.studio p.muted{
  margin:0;
  color: var(--muted);
}
/* ---------- Footer ---------- */

.footer{
  border-top:1px solid var(--border);
  background:#fff;
}

.footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:20px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}