:root {
  --black: #050505;
  --charcoal: #111111;
  --charcoal-2: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #f1d47a;
  --purple: #4e2a84;
  --cream: #f6f1e5;
  --white: #ffffff;
  --muted: #b8b3aa;
  --line: rgba(212, 175, 55, 0.25);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: flex; align-items: center; gap: 13px; font-family: "Cinzel", serif; font-weight: 700; letter-spacing: .04em; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; border: 1px solid var(--gold); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .86rem; font-weight: 600; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid var(--gold); padding: 10px 17px; }
.menu-toggle { display: none; background: none; border: 0; color: var(--gold); font-size: 1.6rem; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 145px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 44%, rgba(78,42,132,.35), transparent 32%),
    linear-gradient(110deg, #050505 20%, #111 60%, #050505 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(212,175,55,.13);
  border-radius: 50%;
  right: -260px;
  top: -120px;
  box-shadow: 0 0 0 45px rgba(212,175,55,.03), 0 0 0 90px rgba(212,175,55,.02);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .19em; font-size: .74rem; font-weight: 700; margin: 0 0 18px; }
h1, h2, h3 { font-family: "Cinzel", serif; line-height: 1.14; margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.65rem); letter-spacing: -.035em; margin-bottom: 24px; }
h1 span { color: var(--gold-light); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); margin-bottom: 24px; }
h3 { font-size: 1.25rem; }
.hero-text { color: #d2cec6; font-size: 1.08rem; max-width: 690px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #090909; }
.button-secondary { border-color: rgba(255,255,255,.32); }
.button-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.logo-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--gold);
  background: linear-gradient(145deg, rgba(212,175,55,.2), rgba(78,42,132,.15));
  box-shadow: var(--shadow);
}
.logo-frame::before, .logo-frame::after { content:""; position:absolute; width:70px; height:70px; border-color: var(--gold-light); }
.logo-frame::before { left:-9px; top:-9px; border-left:2px solid; border-top:2px solid; }
.logo-frame::after { right:-9px; bottom:-9px; border-right:2px solid; border-bottom:2px solid; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #090909; }
.trust-grid { min-height: 86px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; text-align: center; gap: 20px; color: #d8d0bd; font-family: "Cinzel", serif; letter-spacing: .12em; font-size: .82rem; }
.section { padding: 115px 0; background: var(--cream); color: #161616; }
.section-dark { background: #0b0b0b; color: var(--white); }
.section-feature { background: linear-gradient(135deg, #141017, #080808); color: var(--white); }
.two-column { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.section-heading { max-width: 750px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered > p:last-child { color: var(--muted); }
.section-copy .lead { font-size: 1.25rem; font-weight: 600; line-height: 1.55; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border-top: 1px solid rgba(0,0,0,.15); }
.stat-row div { padding: 24px 18px 0 0; }
.stat-row strong { display:block; color: var(--purple); font-family:"Cinzel",serif; font-size:1.8rem; }
.stat-row span { font-size:.84rem; font-weight:600; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.service-card {
  min-height: 300px;
  padding: 34px;
  background: linear-gradient(145deg, #171717, #0e0e0e);
  border: 1px solid rgba(212,175,55,.22);
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.service-number { display:block; color: var(--gold); font-family:"Cinzel",serif; font-size:1.1rem; margin-bottom:56px; }
.service-card p { color: var(--muted); font-size:.93rem; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 50px; }
.process-step { border-top: 2px solid var(--gold); padding: 25px 12px 0 0; }
.process-step span { color: var(--purple); font-family:"Cinzel",serif; font-weight:700; }
.process-step h3 { margin: 18px 0 10px; }
.process-step p { font-size:.88rem; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.project-card { min-height: 310px; padding: 34px; border: 1px solid rgba(212,175,55,.28); background: rgba(255,255,255,.025); }
.project-type { color: var(--gold-light); text-transform:uppercase; font-size:.7rem; font-weight:700; letter-spacing:.15em; }
.project-card p:last-child { color: var(--muted); }

.cta-section { padding: 95px 0; background: linear-gradient(105deg, var(--purple), #1b102b 55%, #090909); text-align:center; }
.cta-inner { max-width: 790px; }
.cta-inner p:not(.eyebrow) { color:#ddd4e9; margin-bottom:32px; }

.contact-section { background: #f2ebdc; }
.contact-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:80px; }
.contact-details { margin-top:38px; }
.contact-details a { color: var(--purple); }
.contact-form { background:#fff; padding:36px; box-shadow:0 20px 60px rgba(30,20,10,.12); }
.contact-form label { display:block; margin-bottom:18px; font-weight:700; font-size:.82rem; text-transform:uppercase; letter-spacing:.06em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width:100%; margin-top:7px; border:1px solid #cfc7ba; padding:12px 13px; background:#fbfaf7; color:#111;
}
.form-note { font-size:.72rem; color:#71695e; line-height:1.5; }

.site-footer { padding:60px 0 28px; background:#050505; border-top:1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr; gap:50px; align-items:start; }
.footer-brand { margin-bottom:18px; }
.site-footer p { color:#99938a; max-width:560px; }
.footer-links { display:flex; gap:22px; flex-wrap:wrap; justify-content:flex-end; font-size:.85rem; }
.copyright { grid-column:1/-1; border-top:1px solid rgba(255,255,255,.08); padding-top:22px; margin-top:20px; font-size:.75rem; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .menu-toggle { display:block; }
  .site-nav {
    position:absolute; top:82px; left:0; right:0; padding:24px 20px;
    background:#080808; border-bottom:1px solid var(--line);
    display:none; flex-direction:column; align-items:flex-start;
  }
  .site-nav.open { display:flex; }
  .hero-grid, .two-column, .contact-grid { grid-template-columns:1fr; }
  .hero-emblem { max-width:620px; margin-inline:auto; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .project-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:repeat(3,1fr); padding:22px 0; }
}

@media (max-width: 620px) {
  .brand span { display:none; }
  .hero { padding-top:120px; }
  .hero-grid { gap:44px; }
  h1 { font-size:2.65rem; }
  .section { padding:80px 0; }
  .service-grid, .process-grid, .stat-row { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .service-card { min-height:auto; }
  .service-number { margin-bottom:28px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-links { justify-content:flex-start; }
  .contact-form { padding:24px; }
}
