:root {
  --black: #0b0b0b;
  --black-soft: #1a1a1a;
  --gold: #c9a227;
  --gold-light: #e6c75a;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text: #222;
  --muted: #666;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { color: var(--gold-light); }

/* Header */
header {
  background: var(--black);
  color: var(--white);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo span { color: var(--gold); }
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.78)),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero h1 span { color: var(--gold); }
.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
  color: #e8e8e8;
}

/* Page banner (non-home) */
.page-banner {
  background: var(--black);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.page-banner h1 span { color: var(--gold); }
.page-banner p { color: #ccc; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid var(--gold);
}
.btn:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Sections */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--black);
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}
.section-title p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.alt-bg { background: var(--gray); }

/* Service grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  padding: 30px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.card h3 { color: var(--black); margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; }
.card a.more {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col h2 { color: var(--black); margin-bottom: 18px; font-size: 1.9rem; }
.two-col p { color: var(--muted); margin-bottom: 14px; }
.two-col ul { margin: 14px 0 20px 20px; color: var(--text); }
.two-col li { margin-bottom: 8px; }
.img-box {
  background: var(--black);
  border: 4px solid var(--gold);
  min-height: 320px;
  border-radius: 6px;
  background-image: linear-gradient(135deg, #0b0b0b 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
  font-weight: 700;
}

/* CTA strip */
.cta {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.cta h2 { font-size: 1.9rem; margin-bottom: 14px; }
.cta h2 span { color: var(--gold); }
.cta p { margin-bottom: 24px; color: #ddd; }

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 1.02rem;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.info-box {
  background: var(--black);
  color: var(--white);
  padding: 32px;
  border-radius: 6px;
  border-top: 4px solid var(--gold);
}
.info-box h3 { color: var(--gold); margin-bottom: 18px; }
.info-box p { margin-bottom: 14px; color: #ddd; font-size: 0.95rem; }
.info-box a { color: var(--gold-light); }
.info-box strong { color: var(--white); display: block; margin-bottom: 2px; }

form .field { margin-bottom: 16px; }
form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
}
form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.2s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
form textarea { resize: vertical; min-height: 130px; }

/* Footer */
footer {
  background: var(--black);
  color: #bbb;
  padding: 50px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-grid h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #bbb; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { font-size: 0.92rem; margin-bottom: 8px; }
.copyright {
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 820px) {
  .nav { flex-direction: column; gap: 14px; }
  nav ul { gap: 14px; justify-content: center; }
  .hero { padding: 70px 0; }
  .hero h1 { font-size: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-banner h1 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .hero h1 { font-size: 1.7rem; }
}
