
/* =============================
   NEW STYLESHEET (drop-in)
   Goal: Larger hero logo above badge, header on top, sane mobile behavior
   ============================= */

: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)}

/* Layout container */
.container{max-width:1100px;margin:0 auto;padding:0 1rem}

/* ================= HEADER (kept 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}
.nav a{color:var(--dark);text-decoration:none;font-weight:600;padding:.35rem .6rem;border-radius:6px}
.nav a:hover{background:#f3f4f6}

/* ================= HERO (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}
/* Larger hero logo */
.logo-wrap{display:flex;justify-content:center;align-items:center;margin:0 0 .6rem}
.logo-wrap img{height:160px;width:auto;max-width:90vw;display:block}
/* Badge line */
.badge{display:inline-block;background:rgba(255,255,255,.88);color:#111827;border-radius:8px;padding:.32rem .6rem;margin:.25rem 0 .55rem;font-size:.95rem;border:1px solid #e5e7eb}
/* Hero text */
.hero h1{font-size:clamp(1.8rem,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}

/* ================= SECTIONS ================= */
.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}

/* Second row: two centered cards */
.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}

/* Bottom emblem (if present elsewhere) */
.logo-row{display:flex;justify-content:center;gap:1rem;align-items:center;margin-top:1rem}
.logo-row img{height:96px;width:auto;max-width:85vw}

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

/* ================= RESPONSIVE ================= */
@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:130px;max-width:92vw}
  .hero h1{font-size:clamp(1.5rem,5.2vw+0.6rem,2.2rem)}
  .hero p{font-size:1rem}
}
