:root{
  --accent:#c40000;
  --bg:#f7f7f7;
  --text:#222;
  --muted:#666;
  --max-width:1100px;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial; color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased; background-image: url("/WhatsApp Image 2025-11-15 at 01.29.58_d4a2c1ec.jpg"); background-size: cover; background-position: center; background-repeat: no-repeat; }
header{position:fixed;top:0;left:0;width:100%;padding:12px 20px;background:#000;color:#fff;display:flex;align-items:center;justify-content:space-between;z-index:60;height:64px}
.logo{font-weight:700;font-size:1.15rem}
.logo span{color:var(--accent)}
nav ul{display:flex;gap:18px;align-items:center;list-style:none}
nav a{color:#fff;text-decoration:none;font-weight:600;font-size:0.95rem}
main{padding-top:64px;max-width:var(--max-width);margin:0 auto}

/* Hero */
.hero{height:calc(100vh - 64px);display:flex;align-items:center;justify-content:center;background-image:linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url("/WhatsApp Image 2025-11-15 at 01.29.58_d4a2c1ec.jpg");background-size:cover;background-position:center;padding:24px}
.hero-content{background:rgba(0,0,0,0.62);padding:28px;border-radius:12px;text-align:center;color:#fff;max-width:880px}
.hero-content h1{font-size:2rem;margin-bottom:6px}
.hero-content p{font-size:1rem;margin-bottom:14px;color:#e9e9e9}

/* Buttons */
.btn{background:var(--accent);color:#fff;padding:10px 18px;border-radius:8px;text-decoration:none;display:inline-block;font-weight:700;border:none;cursor:pointer}
.btn:active{transform:translateY(1px)}

/* Sections */
section{padding:64px 20px;border-bottom:0}
section h2{font-size:1.5rem;margin-bottom:16px}
.bio{
  background: rgba(0,0,0,0.65);
  padding:28px;
  border-radius:12px;
  color:#fff;
  max-width:900px;
}
.bio p{max-width:900px;line-height:1.6;font-size:1rem;color:#eee}

.news-grid{display:flex;flex-wrap:wrap;gap:22px}
.news-card{width:320px;border-radius:10px;background:#fff;overflow:hidden;box-shadow:0 6px 22px rgba(0,0,0,0.08);display:flex;flex-direction:column}
.news-card img{width:100%;height:190px;object-fit:cover}
.news-card h3{padding:14px 16px 0;font-size:1.05rem}
.news-card p{padding:10px 16px 18px;color:var(--muted);line-height:1.5;flex:1}

/* Gallery */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px}
.gallery-grid img{width:100%;height:100%;object-fit:cover;border-radius:10px}

/* Pricing */
.pricing-sub{color:var(--muted);margin-bottom:14px}
.billing-toggle{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.toggle{position:relative;width:52px;height:28px}
.toggle input{opacity:0;width:0;height:0}
.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background:#ccc;border-radius:28px;transition:0.2s}
.slider:before{content:"";position:absolute;height:22px;width:22px;left:3px;top:3px;background:#fff;border-radius:50%;transition:0.2s;box-shadow:0 2px 6px rgba(0,0,0,0.12)}
.toggle input:checked + .slider{background:#444}
.toggle input:checked + .slider:before{transform:translateX(24px)}
.billing-labels{font-weight:600;color:var(--muted);font-size:0.95rem}

/* Pricing grid */
.pricing-grid{display:flex;gap:18px;flex-wrap:wrap;margin-bottom:16px}
.tier-card{flex:1 1 240px;background:#fff;padding:18px;border-radius:12px;box-shadow:0 8px 26px rgba(0,0,0,0.06);position:relative;display:flex;flex-direction:column;align-items:flex-start}
.tier-card.popular{border:2px solid rgba(196,0,0,0.12)}
.badge{position:absolute;top:12px;right:12px;background:var(--accent);color:#fff;padding:6px 8px;border-radius:8px;font-weight:700;font-size:0.78rem}
.tier-card h3{margin-bottom:6px}
.tier-card .price{font-size:1.25rem;font-weight:800;margin-bottom:8px}
.tier-card ul{margin-left:14px;color:var(--muted);margin-bottom:12px}
.tier-card .select-tier{align-self:stretch}

/* Checkout summary */
.checkout{background:#fff;padding:16px;border-radius:10px;box-shadow:0 8px 20px rgba(0,0,0,0.06);max-width:420px}
.summary-lines{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
.checkout-status{color:var(--accent);font-weight:700;margin-top:8px}

/* Contact */
form{max-width:520px;display:flex;flex-direction:column;gap:12px}
input,textarea{padding:12px;border-radius:8px;border:1px solid #d7d7d7;font-size:0.98rem}
textarea{min-height:110px;resize:vertical}
.form-status{color:var(--accent);font-weight:600;margin-top:6px}

/* Footer */
footer{background:#000;color:#fff;text-align:center;padding:16px;font-size:0.95rem}

/* Responsive tweaks */
@media (max-width:900px){
  .pricing-grid{flex-direction:column}
}
@media (max-width:720px){
  nav ul{gap:12px}
  .hero-content h1{font-size:1.5rem}
  .news-card{width:100%}
  header{padding:10px 14px;height:56px}
  main{padding-top:56px}
}