/* Variables */
:root{
  --bg:#111; --text:#e9e9e9; --muted:#bdbdbd; --dark:#333;
  --gold:#B19540; /* accent like Antra vibe */
  --container:1200px;
}

/* Reset (minimal) */
*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

/* Typography */
body{
  background:#000; color:var(--text);
  font:400 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1,h2,h3,h4{ margin:0 0 .4em; line-height:1.2; color:#fff; }
p{ margin:0 0 1em; color:var(--text); }

/* Layout helpers */
.container{ max-width:var(--container); margin:0 auto; padding:0 20px; }

/* Sections */
.section{ padding:60px 0; }
.section-head{ margin-bottom:28px; }
.section-head h3{ font-weight:700; font-size:28px; color:#fff; }
.section-head p{ color:var(--muted); }

/* Utilities */
.btn{
  display:inline-block; padding:12px 20px; border:1px solid #444; border-radius:4px;
  font-weight:600; cursor:pointer; transition:.25s ease;
}
.btn:hover{ border-color:#666; }
.btn--gold{ border-color:var(--gold); color:var(--gold); }
.btn--gold:hover{ background:var(--gold); color:#111; }

/* Footer */
.site-footer{ background:var(--dark); color:#dcdcdc; }
.site-footer .f-columns{ display:grid; gap:28px; grid-template-columns: 1.2fr 1fr 1fr; padding:40px 0 20px; }
.site-footer h4{ color:#fff; font-size:16px; margin-bottom:10px; }
.site-footer .f-nav,.site-footer .f-contact{ list-style:none; padding:0; margin:0; }
.site-footer .f-nav li, .site-footer .f-contact li{ margin:6px 0; color:#cfcfcf; }
.site-footer .f-bottom{
  border-top:1px solid #444; display:flex; gap:16px; justify-content:space-between; align-items:center;
  padding:14px 0; font-size:14px;
}
.site-footer .f-social{ list-style:none; display:flex; gap:16px; margin:0; padding:0; }

@media (max-width:900px){
  .site-footer .f-columns{ grid-template-columns:1fr; }
}
