
/* Studio RDRGZ LA — base styles */
:root{
  --gold:#D4AF37;
  --bg:#0a0a0a;
  --paper:#ffffff;
  --ink:#111;
  --muted:#666;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--ink);}
a{color:var(--gold);text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1080px;margin:0 auto;padding:0 16px}

/* Header */
header{position:sticky;top:0;z-index:20;background:#0a0a0a;border-bottom:1px solid rgba(212,175,55,.35)}
.container.nav{display:flex;align-items:center;gap:22px;padding:10px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:56px;width:auto;display:block}
.brand-title{color:var(--gold);font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-size:16px}
.links{display:flex;gap:22px;align-items:center}
.links a{color:var(--gold);font-weight:600}
.btn{margin-left:auto;display:inline-block;background:var(--gold);color:#111;padding:10px 14px;border-radius:10px;font-weight:800;border:1px solid var(--gold)}
.btn:hover{filter:brightness(1.05)}

/* Mobile header: put links on 2nd row with spacing */
@media (max-width:720px){
  .container.nav{display:grid;grid-template-columns:auto 1fr;gap:12px 16px}
  .btn{justify-self:end}
  .links{grid-column:1 / -1;display:flex;flex-wrap:wrap;gap:12px 18px}
  .brand img{height:44px}
  .brand-title{font-size:12px}
}

/* Hero */
.hero{
  background: linear-gradient(180deg, rgba(212,175,55,0.16), rgba(212,175,55,0.08));
  border-bottom:1px solid rgba(212,175,55,.25);
  padding:40px 0;
}
.hero h1{margin:0 0 12px;font-size:42px}
.hero p{margin:0 0 18px;color:#555;max-width:760px}
.hero .cta{display:flex;gap:12px;flex-wrap:wrap}

/* Sections */
.section{padding:36px 0}
.section h2{margin:0 0 8px}

/* Cards (offer list) */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{background:#fff;border:1px solid #eee;border-radius:12px;padding:16px;box-shadow:0 6px 24px rgba(0,0,0,.04)}
.card .muted{color:#666}
@media (max-width:900px){ .grid{grid-template-columns:1fr 1fr} }
@media (max-width:600px){ .grid{grid-template-columns:1fr} }

/* Contact form */
.contact-section{ background:var(--bg); color:var(--paper); padding:56px 16px; border-top:1px solid rgba(212,175,55,.35); }
.contact-wrap{ max-width:960px; margin:0 auto; }
.contact-title{ margin:0 0 8px; font-size:2rem; letter-spacing:.02em; color:var(--gold); }
.contact-sub{ margin:0 0 20px; color:#ddd; }
.contact-card{ background:var(--paper); color:var(--ink); border:1px solid #eee; border-radius:16px; padding:24px; box-shadow:0 6px 24px rgba(0,0,0,.08); }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:720px){ .contact-grid{ grid-template-columns:1fr; } }
.field label{ display:block; font-weight:600; margin:8px 0 6px; }
.field input, .field select, .field textarea{ width:100%; border:1px solid #ddd; border-radius:12px; padding:12px 14px; background:#fafafa; }
.field textarea{ min-height:140px; resize:vertical; }
.honeypot{ display:none; }
.actions{ margin-top:16px; }
.btn-gold{ appearance:none; border:0; cursor:pointer; padding:12px 18px; border-radius:999px; font-weight:800; background:linear-gradient(180deg, #e7c96b, var(--gold)); color:#000; box-shadow:0 8px 24px rgba(212,175,55,.35); }
.btn-gold:hover{ filter:brightness(1.03); }

/* Utilities */
.muted{color:#666}
html{scroll-behavior:smooth}

.card ul{margin:0 0 10px 18px;}
.card li{margin:6px 0;}
