@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;600;800&display=swap");

:root{
  /* Theme: Light Gold + Brown (Legal Premium) */
  --bg:#fff9ea;
  --bg2:#fff2cf;

  --surface:#ffffff;
  --surface2:#fffdf6;

  --text:#2f2113;
  --muted:#6a4b2c;

  --accent:#c8a24a;
  --accent2:#f5de9a;

  --line: rgba(47,33,19,.14);
  --shadow: 0 16px 45px rgba(47,33,19,.10);
  --radius:16px;

  --font-body:"Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans";
  --font-head:"Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font-body);
  background:
    radial-gradient(900px 650px at 16% 10%, rgba(200,162,74,.20), transparent 60%),
    radial-gradient(900px 650px at 86% 24%, rgba(47,33,19,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

h1,h2,h3{
  font-family: var(--font-head);
  letter-spacing:-.2px;
}
p{line-height:1.7}

/* HEADER */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255, 249, 234, .88);
  border-bottom: 1px solid rgba(200,162,74,.35);
}
.topbar-inner{
  display:flex; align-items:center; gap:14px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

.logo{
  width:74px;
  height:74px;
  border-radius:16px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(200,162,74,.45);
  object-fit:contain;
  padding:8px;
  box-shadow: 0 10px 26px rgba(47,33,19,.08);
}

.brand-name{
  font-size:22px;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1;
  color:var(--text);
}

/* NAV desktop */
.nav{display:flex; gap:18px; margin-left:auto}
.nav a{
  color:var(--muted);
  font-weight:800;
  letter-spacing:.2px;
}
.nav a:hover{color:var(--text)}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(47,33,19,.10);
}
.btn:active{transform: translateY(0)}
.btn-primary{
  border: 1px solid rgba(200,162,74,.60);
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color:#2a1d10;
  box-shadow: 0 12px 28px rgba(200,162,74,.20);
}
.btn-primary:hover{
  border-color: rgba(200,162,74,.85);
  box-shadow: 0 14px 34px rgba(200,162,74,.24);
}
.btn-ghost{
  background: rgba(255,255,255,.45);
}
.btn-small{padding:10px 14px; font-weight:900}

/* BURGER */
.burger{
  display:none;
  width:44px; height:40px;
  border-radius:14px;
  border:1px solid rgba(200,162,74,.40);
  background: rgba(255,255,255,.70);
  margin-left:6px;
}
.burger span{
  display:block; height:2px; width:18px; margin:5px auto;
  background: rgba(47,33,19,.88);
  border-radius:2px;
}

/* MOBILE NAV */
.mobile-nav{
  display:none;
  width:100%;
  padding:10px 18px 14px;
  box-sizing:border-box;
  border-top:1px solid rgba(200,162,74,.35);
  background: rgba(255, 249, 234, .95);
}
.mobile-nav a{
  display:block;
  width:100%;
  padding:12px 0;
  color:var(--muted);
  font-weight:900;
}
.mobile-nav a:hover{color:var(--text)}
.mobile-nav .btn{margin-top:10px; width:100%}

/* HERO */
.hero{padding:68px 0 40px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(200,162,74,.50);
  background: rgba(255,255,255,.65);
  color:var(--muted);
  font-weight:900;
}

.hero-text h1{
  font-size: clamp(36px, 4.4vw, 56px);
  margin:14px 0 10px;
  line-height:1.08;
}
.lead{
  color:var(--muted);
  font-size: 18px;
  line-height:1.7;
  margin:0 0 18px;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 22px}

/* STATS */
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px
}
.stat{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(200,162,74,.25);
  background: rgba(255,255,255,.65);
}
.stat-num{font-weight:900}
.stat-label{color:var(--muted); font-size:13px; margin-top:4px}

/* CARDS */
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface2));
  box-shadow: var(--shadow);
}
.muted{color:var(--muted)}
.tiny{font-size:12px}

/* FORM */
.form{display:grid; gap:12px; margin-top:12px}
label{
  display:grid;
  gap:6px;
  color:var(--muted);
  font-weight:900;
  font-size:13px
}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(47,33,19,.18);
  background: rgba(255,255,255,.90);
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(200,162,74,.85);
  box-shadow: 0 0 0 4px rgba(200,162,74,.18);
}

/* SECTIONS */
.section{padding:56px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.06));
  border-top:1px solid rgba(200,162,74,.20);
  border-bottom:1px solid rgba(200,162,74,.20);
}
.section h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.15;
}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}

.checklist{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted)
}
.checklist li{margin:8px 0}

.info-box{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(200,162,74,.22);
  background: rgba(255,255,255,.65);
}
.divider{
  height:1px;
  background:rgba(200,162,74,.22);
  margin:14px 0
}

/* TILES */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.tile{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(200,162,74,.22);
  background: rgba(255,255,255,.65);
}
.tile h3{margin:0 0 8px}
.tile p{margin:0; color:var(--muted); line-height:1.7}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact-cards{display:grid; gap:10px; margin-top:14px}
.contact-card{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(200,162,74,.22);
  background: rgba(255,255,255,.65);
}
.contact-card .k{color:var(--muted); font-weight:900; font-size:12px}
.contact-card .v{font-weight:900; margin-top:6px}

/* FOOTER */
.footer{
  border-top:1px solid rgba(200,162,74,.20);
  padding:18px 0;
  background: rgba(255, 249, 234, .86);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  color:var(--muted);
  font-weight:800;
}
.footer-links{display:flex; gap:12px}
.footer-links a:hover{color:var(--text)}

/* Radio/checkbox groups */
.fieldset{
  border:1px solid rgba(200,162,74,.22);
  border-radius: var(--radius);
  padding:14px;
  background: rgba(255,255,255,.70);
}
.fieldset legend{
  padding:0 6px;
  color: var(--muted);
  font-weight:900;
  font-size:13px;
}
.choices{display:grid; gap:10px; margin-top:10px}
.choice{display:flex; gap:10px; align-items:flex-start}
.choice input{ margin-top:3px; width:18px; height:18px; }
.choice label{ font-size:14px; font-weight:800; color: var(--text); }

.checkbox-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border:1px solid rgba(200,162,74,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.70);
}
.checkbox-row input{ margin-top:3px; width:18px; height:18px; }
.checkbox-row label{ color: var(--text); font-weight:800; line-height:1.45; }

/* RESPONSIVE */
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; }
  .nav{display:none}
  .burger{display:inline-block; margin-left:auto}
  .btn-small{display:none}
  .two-col{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr}
  .logo{width:64px; height:64px;}
  .brand-name{font-size:20px;}
}
