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

:root {
  --ink: #0d1b2a;
  --ink-2: #13263b;
  --gold: #c6a15b;
  --cream: #f6f2ea;
  --white: #ffffff;
  --text: #3d4752;
  --line: #dfe4e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  letter-spacing: .08em;
  font-size: .86rem;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(198,161,91,.75);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #e6ebef;
  font-size: .93rem;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(198,161,91,.7);
}

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 170px 0 110px;
  background:
    radial-gradient(circle at 78% 18%, rgba(198,161,91,.15), transparent 30%),
    linear-gradient(135deg, #0b1826 0%, #13263b 55%, #0d1b2a 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(198,161,91,.12);
  transform: rotate(35deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 85px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.eyebrow.dark { color: #9c7739; }

.hero h1,
.section h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.07;
  color: var(--ink);
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(3rem, 6vw, 5.45rem);
  color: white;
  letter-spacing: -.03em;
}

.hero h1 span { color: var(--gold); }

.hero-text {
  max-width: 650px;
  margin: 28px 0 34px;
  color: #cad3db;
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #0c1927;
}

.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.28);
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.trust-row {
  display: flex;
  gap: 38px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.trust-row div { display: grid; }
.trust-row strong { color: white; font-size: .95rem; }
.trust-row span { color: #8fa0ae; font-size: .82rem; }

.hero-card {
  position: relative;
  padding: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}

.card-accent {
  position: absolute;
  top: -1px;
  left: 35px;
  width: 75px;
  height: 3px;
  background: var(--gold);
}

.mini-label {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.hero-card h2 {
  margin: 14px 0 15px;
  color: white;
  font-size: 2rem;
}

.hero-card p { color: #b9c4cd; }

.hero-card ul {
  list-style: none;
  margin-top: 26px;
}

.hero-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #e7edf2;
}

.hero-card li::before {
  content: "—";
  margin-right: 10px;
  color: var(--gold);
}

.section { padding: 110px 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -.025em;
}

.body-copy { font-size: 1.08rem; }
.body-copy p + p { margin-top: 20px; }

.services { background: var(--cream); }

.section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}

.section-heading h2 { margin-bottom: 15px; }

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

.service-card {
  min-height: 285px;
  padding: 30px;
  background: white;
  border: 1px solid rgba(13,27,42,.07);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(13,27,42,.08);
}

.service-number {
  display: inline-block;
  margin-bottom: 42px;
  color: #a78951;
  font-size: .78rem;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.2rem;
}

.featured {
  color: #c9d3dc;
  background: var(--ink);
}

.featured h3 { margin-top: 38px; color: white; font-size: 1.55rem; }
.featured a { display: inline-block; margin-top: 22px; color: var(--gold); font-weight: 700; }

.why-us {
  color: white;
  background: #0c1927;
}

.why-us h2 { color: white; }
.muted { margin-top: 22px; color: #aab8c3; }

.why-list { border-top: 1px solid rgba(255,255,255,.1); }

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.why-item > span { color: var(--gold); font-size: .8rem; }
.why-item h3 { margin-bottom: 4px; color: white; font-size: 1.1rem; }
.why-item p { color: #aab8c3; }

.contact { background: white; }

.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: 60px;
  color: white;
  background: var(--ink-2);
  box-shadow: 0 24px 70px rgba(13,27,42,.12);
}

.contact-card h2 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.contact-card > div > p:not(.eyebrow) { color: #bdc8d1; }

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  color: #e5eaee;
}

.contact-details a { color: var(--gold); }

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--ink);
  background: white;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8dee3;
  outline: none;
  font: inherit;
  color: var(--ink);
  background: #fbfcfd;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.form-note {
  color: #7d8790;
  font-size: .75rem;
}

.site-footer {
  padding: 30px 0;
  color: #9eabb6;
  background: #091521;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand .brand-mark { width: 32px; height: 32px; font-size: 1rem; }
.site-footer p { font-size: .82rem; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid, .split, .contact-card { grid-template-columns: 1fr; gap: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { max-width: 620px; }
  .contact-card { padding: 42px; }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 20px 28px;
    flex-direction: column;
    align-items: flex-start;
    background: #0d1b2a;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 135px 0 80px; }
  .section { padding: 78px 0; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-row { gap: 18px; justify-content: space-between; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .contact-card { width: 100%; padding: 32px 18px; }
  .contact-form { padding: 22px 18px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
