:root{
  --bg: #17120f;
  --bg-elev: #1f1915;
  --text: #eae1d7;
  --muted: #bda893;
  --brand: #e3a23a;
  --brand-2: #f5c76a;
  --stroke: #2c241f;
  --glow: 0 0 0 0 rgba(0,0,0,0);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(243, 185, 90, .08), transparent 60%),
    radial-gradient(900px 600px at -10% 10%, rgba(227, 162, 58, .08), transparent 60%),
    var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}

.container{max-width:1100px;margin:0 auto;padding:0 20px}

.site-header{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px;
  background:rgba(23,18,15,.7); backdrop-filter: blur(8px);
  border-bottom:1px solid var(--stroke);
}
.brand{display:flex; align-items:center; gap:.6rem; font-weight:700; color:var(--text); text-decoration:none}
.logo{width:34px; height:34px; border-radius:50%; box-shadow:0 0 0 2px #3a2d24}
.nav{display:flex; gap:1rem; align-items:center}
.nav a{color:var(--muted); text-decoration:none; font-weight:500}
.nav a:hover{color:var(--text)}

.menu{display:none; flex-direction:column; gap:4px; background:none; border:0; cursor:pointer}
.menu span{width:24px;height:2px;background:var(--text);display:block}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.62rem .9rem; border-radius:12px; border:1px solid var(--stroke);
  color:var(--text); text-decoration:none; transition:transform .15s ease, background .2s ease, border-color .2s ease;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.2));
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{background:linear-gradient(180deg, var(--brand-2), var(--brand)); color:#3a2414; border-color:#5a3b1f; box-shadow:0 8px 30px rgba(227,162,58,.25)}
.btn.ghost{background:transparent}
.btn.small{padding:.45rem .7rem; border-radius:10px; font-size:.92rem}

.hero{padding:90px 0 60px; text-align:center}
.eyebrow{letter-spacing:.12em; text-transform:uppercase; color:var(--muted); font-size:.8rem}
h1{font-family:Outfit, Inter, sans-serif; font-weight:700; font-size:clamp(2rem, 1.4rem + 2.5vw, 3.2rem); margin:.5rem 0 1rem}
.lede{max-width:760px; margin:0 auto 1.2rem; color:var(--muted)}
.cta{display:flex; justify-content:center; gap:.8rem; margin-top:.8rem}

.section{padding:70px 0}
.section-title{font-family:Outfit, Inter, sans-serif; font-size:1.6rem; margin:0 0 1rem}

.grid{display:grid; grid-template-columns:repeat(12,1fr); gap:18px}
.card{
  display:flex;
  flex-direction:column;
  grid-column:span 12;
  border:1px solid var(--stroke); border-radius:16px; overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.1));
  box-shadow:0 10px 40px rgba(0,0,0,.25);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-4px); box-shadow:0 16px 60px rgba(0,0,0,.35)}
.card-media{height:220px; background:#2b201a; border-bottom:1px solid var(--stroke)}
.card-body{display:flex; flex-direction:column; flex:1; padding:18px}
.card-actions{margin-top:auto; display:flex; gap:.6rem}

@media (min-width:700px){
  .card{grid-column:span 6}
}
@media (min-width:1040px){
  .card{grid-column:span 4}
}

.about{display:grid; grid-template-columns:1fr; gap:18px}
.about-card{
  border:1px solid var(--stroke); border-radius:16px; padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.08));
}
.tags{display:flex; flex-wrap:wrap; gap:.5rem}
.tags span{background:#2a201a; border:1px solid var(--stroke); padding:.35rem .55rem; border-radius:999px; color:var(--brand-2)}

@media (min-width:900px){
  .about{grid-template-columns:1.2fr .8fr}
}

.contact-cards{display:grid; gap:12px; grid-template-columns:1fr}
.contact-card{
  display:flex; justify-content:space-between; padding:14px 16px;
  border:1px solid var(--stroke); border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.08));
  text-decoration:none; color:var(--text);
}
.contact-card:hover{border-color:#3b2c22}
.label{color:var(--muted)}
.value{font-weight:600}

.site-footer{border-top:1px solid var(--stroke); padding:20px 0; background:rgba(23,18,15,.5)}
.site-footer .container{display:flex; justify-content:space-between; align-items:center}
.site-footer .top{color:var(--muted); text-decoration:none}
.site-footer .top:hover{color:var(--text)}

.reveal{opacity:0; transform:translateY(12px); transition:opacity .7s ease, transform .7s ease}
.reveal.in{opacity:1; transform:none}

.shimmer{
  position:relative; overflow:hidden;
}
.shimmer::after{
  content:""; position:absolute; inset:0; transform:translateX(-100%);
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 20%, transparent 40%);
  animation:shimmer 2.5s infinite;
}
@keyframes shimmer{ 100%{ transform:translateX(100%)} }

@media (prefers-reduced-motion: reduce){
  .reveal{transition:none}
  .card, .btn{transition:none}
  .shimmer::after{display:none}
}
