:root {
  --bg: #0B0B12;
  --bg-alt: #0E0E18;
  --surface: #15151F;
  --surface-2: #1B1B27;
  --gold: #D4A437;
  --gold-bright: #E5BA47;
  --gold-deep: #8C6B1F;
  --text: #F5F1E6;
  --text-muted: #A8A292;
  --border: rgba(212, 164, 55, 0.22);
  --border-strong: rgba(212, 164, 55, 0.55);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --content: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0B0B12;
  box-shadow: 0 6px 22px rgba(212, 164, 55, 0.28);
}
.btn-gold:hover {
  color: #0B0B12;
  box-shadow: 0 10px 30px rgba(212, 164, 55, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(212, 164, 55, 0.08);
  color: var(--gold-bright);
}

.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-xl { padding: 20px 38px; font-size: 19px; }

.btn-phone-icon {
  font-size: 1.15em;
  line-height: 1;
  transform: translateY(-1px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 18, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(212, 164, 55, 0.10);
}
.nav-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 2px;
}
.nav-links a:hover { color: var(--gold-bright); }

.nav-cta { padding: 10px 18px; font-size: 14.5px; }
.nav-cta-text-short { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 24px 130px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 700px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 164, 55, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 164, 55, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(212, 164, 55, 0.05);
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  margin-bottom: 26px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 38px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ---------- Sections ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(212, 164, 55, 0.08);
  border-bottom: 1px solid rgba(212, 164, 55, 0.08);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.lede {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card-icon {
  font-size: 28px;
  color: var(--gold);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(212, 164, 55, 0.10);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
}
.card p { color: var(--text-muted); margin: 0; font-size: 15.5px; line-height: 1.6; }

/* ---------- Process / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
}
.step-num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.step h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.step p { color: var(--text-muted); margin: 0; font-size: 15.5px; line-height: 1.65; }

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: left;
}
.why-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-family: 'Cinzel', serif;
}
.why-card p { color: var(--text-muted); margin: 0; font-size: 15.5px; line-height: 1.65; }

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 110px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 164, 55, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid rgba(212, 164, 55, 0.12);
  border-bottom: 1px solid rgba(212, 164, 55, 0.12);
}
.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.cta-title {
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 38px;
  line-height: 1.65;
}
.cta-fineprint {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.footer {
  padding: 44px 0 56px;
  background: #07070C;
  border-top: 1px solid rgba(212, 164, 55, 0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand img { height: 56px; width: auto; }
.footer-meta { text-align: right; }
.footer-phone {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-phone:hover { color: var(--gold-bright); }
.footer-copy {
  color: var(--text-muted);
  font-size: 13.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid,
  .steps,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 18px; gap: 14px; }
  .nav-brand img { height: 38px; }
  .nav-cta-text { display: none; }
  .nav-cta-text-short { display: inline; }

  .hero { padding: 80px 20px 90px; }
  .section { padding: 80px 0; }
  .cta-banner { padding: 80px 20px; }

  .section-head { margin-bottom: 44px; }

  .services-grid,
  .steps,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero-eyebrow { font-size: 11.5px; padding: 6px 13px; }
  .btn-xl { padding: 18px 28px; font-size: 17px; }
}
