
:root{--brand:#b8892b;--dark:#1f2937;--muted:#6b7280}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#f9fafb;color:var(--dark)}
.container{max-width:1100px;margin:0 auto;padding:0 1rem}

/* HEADER on top */
header{position:sticky;top:0;z-index:50;background:#ffffffcc;backdrop-filter:saturate(180%) blur(6px);border-bottom:1px solid #e5e7eb}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.6rem 0}
.nav .brand{display:flex;align-items:center;gap:.5rem}
.nav .brand img{height:28px;width:auto} /* small brand in header (privacy fix) */
.nav a{color:var(--dark);text-decoration:none;font-weight:600;padding:.35rem .6rem;border-radius:6px}
.nav a:hover{background:#f3f4f6}

/* HERO with large logo above badge */
.hero{background:radial-gradient(80% 80% at 50% 0%, #fff7e6 0%, #ffffff 60%);padding:2.2rem 0 2.2rem;text-align:center}
.logo-wrap{display:flex;justify-content:center;align-items:center;margin:0 0 .6rem}
.logo-wrap img{height:180px;width:auto;max-width:85vw;display:block} /* 180px as requested */
.badge{display:inline-block;background:rgba(255,255,255,.85);color:#111827;border-radius:8px;padding:.28rem .5rem;margin:.25rem 0 .5rem;font-size:.9rem;border:1px solid #e5e7eb}
.hero h1{font-size:clamp(1.7rem,3.2vw+1rem,3rem);margin:.35rem 0}
.hero p{max-width:800px;margin:0 auto 1.1rem;color:var(--muted);font-size:1.05rem}
.actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn{display:inline-block;padding:.85rem 1.1rem;border-radius:10px;text-decoration:none;font-weight:700}
.btn.primary{background:var(--brand);color:#1b1410;border:1px solid #a8731f}
.btn.secondary{background:#1f2937;color:#fff}

.section{padding:3rem 0}
.section h2{font-size:2rem;margin:0 0 .75rem}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:1rem}
.card p{color:var(--muted)}
.feature{display:flex;gap:.8rem;align-items:flex-start}
.feature i{width:28px;height:28px;border-radius:999px;background:var(--brand);display:inline-flex;align-items:center;justify-content:center;color:#1b1410;font-weight:900}
.grid.grid-two-centered{grid-template-columns:repeat(2,1fr);justify-items:center;justify-content:center;gap:1.2rem}
.grid.grid-two-centered .card{width:100%;max-width:520px}

footer{background:#111827;color:#9ca3af;padding:2rem 0}
footer a{color:#e5b255}

@media(max-width:900px){
  .grid{grid-template-columns:1fr 1fr}
  .grid.grid-two-centered{grid-template-columns:1fr}
}
@media(max-width:640px){
  .grid{grid-template-columns:1fr}
  .hero{padding:1.8rem 0 1.8rem}
  .logo-wrap img{height:160px}
}
