:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #c9a227;
  --accent-2: #f4e7b2;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --bg: #f8fafc;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.logo-mark { font-size: 1.3rem; }

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}

.menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.menu a:hover { color: var(--accent-2); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  background: radial-gradient(circle at 15% 20%, #1f2a44, #0b1120 60%);
  color: #fff;
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.3px;
}

h1, h2, h3 { line-height: 1.2; margin-top: 0; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.hero-sub {
  color: #d1d5db;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #b88b11);
  color: #111827;
  box-shadow: var(--shadow);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-sm { padding: 10px 14px; background: #fff; color: #111827 !important; }

.hero-image-card img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 360px;
  object-fit: cover;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #d1d5db;
}

.section { padding: 78px 0; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-head p { color: var(--muted); }

.cards-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.service-card,
.trust-box,
.cta-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon { font-size: 1.6rem; margin-bottom: 10px; }

.why {
  background: linear-gradient(180deg, #eef2ff, #f8fafc);
}

.why-grid,
.trust-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: start;
}

.why-points .point {
  background: #fff;
  border-left: 5px solid var(--accent);
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1e293b;
}

.why-points span {
  font-size: 0.85rem;
  margin-right: 8px;
  color: #64748b;
}

.trust {
  background: linear-gradient(120deg, #0f172a, #1e293b);
  color: #f8fafc;
}

.trust-box { color: #111827; }
.trust ul { padding-left: 18px; }

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-list details {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.08);
}

.faq-list summary { cursor: pointer; font-weight: 600; }

.final-cta {
  background: linear-gradient(135deg, #111827, #1e3a8a);
  color: #fff;
}

.cta-box { background: rgba(255,255,255,0.08); color: #fff; }

.footer {
  background: #0b1120;
  color: #e5e7eb;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-links a {
  display: inline-block;
  margin-right: 12px;
  color: var(--accent-2);
  text-decoration: none;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 26px;
  padding: 14px 0;
  text-align: center;
  font-size: 0.92rem;
  color: #cbd5e1;
}

@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .trust-grid,
  .location-grid,
  .cards-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 74px;
    right: 4%;
    left: 4%;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu.open { display: flex; }

  .hero-grid,
  .why-grid,
  .trust-grid,
  .location-grid,
  .cards-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}