
:root{
  --brand:#7a2c7c; /* purple-ish */
  --brand-dark:#4f1e50;
  --accent:#e5a400; /* orange */
  --bg:#f3f1f2;
  --text:#2b2730;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
/* Header */
.site-header{background:#fff;border-bottom:1px solid #ddd}
.topbar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:22px 0}
.brand{font-size:46px;font-weight:800;color:#e78e1e;font-family: Georgia,'Times New Roman',serif;letter-spacing:.5px}
nav ul{display:flex;gap:20px;list-style:none;margin:0;padding:0}
nav a{padding:10px 14px;border-radius:4px}
nav a.active, nav a:hover{background:var(--accent);color:#fff;text-decoration:none}
/* Hero */
.hero{background:#fff;padding:30px 0 40px;border-bottom:1px solid #e7e2ea}
.hero-media{display:block;max-width:100%;height:auto;margin:0 auto;border:8px solid #fff;box-shadow:0 10px 28px rgba(0,0,0,.15)}
.hero-title{font-family: Georgia,'Times New Roman',serif;font-weight:800;font-size:54px;color:var(--brand);text-align:center;margin:26px 0 10px}
.hero-lead{max-width:840px;margin:0 auto;text-align:center;font-size:18px;opacity:.9}
/* Section title */
.section-title{font-family: Georgia,'Times New Roman',serif;color:var(--brand);font-size:44px;text-align:center;margin:40px 0 6px}
.rule{width:65%;height:1px;background:#ddd;margin:0 auto 18px}
/* Services grid */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:26px}
.card{background:#fff;border:1px solid #e3d9ea;box-shadow:0 6px 16px rgba(0,0,0,.08)}
.card figure{margin:0;position:relative}
.card img{display:block;width:100%;height:auto;border-bottom:1px solid #eee}
.card .caption{position:absolute;left:14px;top:12px;font-weight:900;color:#1e3a8a;background:rgba(255,255,0,.85);padding:6px 10px;border-radius:4px;border:2px solid #000;text-transform:uppercase;letter-spacing:.3px}
.card .content{padding:16px}
.card h3{font-family: Georgia,'Times New Roman',serif;color:var(--brand);margin:0 0 8px;font-size:26px}
.btn{display:inline-block;background:var(--brand);color:#fff;font-weight:700;padding:10px 14px;border-radius:6px;border:0;cursor:pointer}
.btn:hover{background:var(--brand-dark)}
.center{text-align:center}
/* Footer */
footer{padding:40px 0;color:#6e6674;text-align:center}
/* 1999 vibe: simple marquee & border */
.marquee{overflow:hidden;white-space:nowrap;background:#111;color:#fff;border-top:4px solid #ff0;border-bottom:4px solid #0ff}
.marquee span{display:inline-block;padding:10px 0;animation:scroll 14s linear infinite;font-weight:800}
@keyframes scroll{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}
/* Small screen tweaks */
@media (max-width:640px){
  .brand{font-size:36px}
  .hero-title{font-size:36px}
}
