:root {
  --navy: #0c1a2e;
  --navy-light: #162d4a;
  --gold: #c8a45e;
  --gold-dark: #a88534;
  --cream: #f9f7f3;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-soft: #5a5a5a;
  --border: #e8e4de;
  --shadow: 0 14px 40px rgba(12, 26, 46, 0.1);
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus { top: 0; }

.wrap {
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  padding: 0.62rem 0;
}

.topbar-inner,
.nav-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner { min-height: 72px; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.28rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-cta,
.btn-primary {
  background: var(--navy);
  color: var(--white) !important;
  box-shadow: 0 8px 18px rgba(12, 26, 46, 0.18);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid rgba(12, 26, 46, 0.18);
  background: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.hero {
  background: linear-gradient(135deg, #0c1a2e 0%, #16324f 55%, #f6f0e4 55%, #f9f7f3 100%);
  padding: 5.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 3.5rem;
}

.eyebrow,
.tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.16;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

h1 {
  max-width: 700px;
  margin: 1rem 0 1.1rem;
  color: var(--white);
  font-size: clamp(2.25rem, 4.6vw, 4.15rem);
  font-weight: 900;
}

.hero-desc {
  max-width: 620px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.2rem;
}

.hero-card ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.hero-card li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

section { padding: 4.8rem 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 900;
}

.lead {
  color: var(--text-soft);
  margin: 1rem 0 0;
  max-width: 720px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.2rem;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.45rem;
  box-shadow: 0 8px 22px rgba(12, 26, 46, 0.05);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
}

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

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 3.2rem;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.2rem;
  left: 1.35rem;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}

.note {
  border-left: 4px solid var(--gold);
  background: #fffaf0;
  padding: 1.1rem 1.25rem;
  color: var(--text-soft);
  border-radius: 0 12px 12px 0;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 2rem 1.2rem 0;
  color: var(--navy);
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding-bottom: 1.25rem;
  color: var(--text-soft);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.68rem 1rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  background: var(--white);
}

.contact {
  background: var(--navy);
  color: var(--white);
}

.contact h2 { color: var(--white); }
.contact .lead { color: rgba(255, 255, 255, 0.72); }
.contact .tag { color: var(--gold); }

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.contact .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

footer {
  background: #060e1a;
  color: rgba(255, 255, 255, 0.56);
  padding: 1.7rem 0;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

@media (max-width: 940px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.7rem 1.25rem 1.1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open { display: flex; }

  .nav-links a { display: block; padding: 0.45rem 0; }

  .hero { background: var(--navy); padding: 4rem 0; }
  .hero-grid,
  .split,
  .contact-box { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--max-w), calc(100% - 1.4rem)); }
  .topbar-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .topbar-inner span { display: none; }
  section { padding: 3.8rem 0; }
  .brand { font-size: 1.05rem; }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .btn-primary,
  .btn-secondary,
  .nav-cta { width: 100%; }
}
