/* ===== Design tokens ===== */
:root {
  --navy-900: #0a1a33;
  --navy-800: #0f2557;
  --navy-700: #16305e;
  --navy-100: #eef1f7;
  --gold-500: #c9a227;
  --gold-400: #d9ba4e;
  --white: #ffffff;
  --ink: #1a2233;
  --muted: #5a6478;
  --border: #e2e6ee;
  --shadow: 0 12px 32px rgba(10, 26, 51, 0.10);
  --radius: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

section[id] {
  scroll-margin-top: 90px;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1em;
  color: var(--muted);
}

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

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

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  padding: 6px;
  flex: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand .brand-suffix {
  color: var(--gold-400);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.cta {
  color: var(--navy-900);
  background: var(--gold-400);
}

.nav-links a.cta:hover {
  background: var(--gold-500);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1200px 480px at 15% -10%, rgba(201, 162, 39, 0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 96px 0 110px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-400);
}

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

.hero p.lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold-400);
  color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--gold-500);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--gold-400);
  font-weight: 700;
}

.hero-stat .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-card h3 {
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--ink);
}

.hero-card li .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== Sections ===== */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head .eyebrow {
  color: var(--gold-500);
  justify-content: center;
}

.section-head .eyebrow::before {
  display: none;
}

/* Services grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.card p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

/* Process / how it works */
.process {
  background: var(--navy-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step .step-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Contact section ===== */
.contact-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  text-align: center;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section .eyebrow {
  color: var(--gold-400);
}

.contact-section .hero-actions {
  justify-content: center;
}

.contact-detail {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  font-size: 0.88rem;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: var(--gold-400);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-header .container {
    flex-wrap: wrap;
    height: auto;
    min-height: 76px;
  }

  .site-header nav {
    order: 3;
    flex-basis: 100%;
  }

  .nav-links {
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    padding: 4px 0 20px;
    gap: 4px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .nav-links a {
    display: block;
    padding: 14px 16px;
    text-align: center;
    border-radius: 10px;
  }

  .nav-links a:not(.cta) {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding: 64px 0 80px;
  }

  .hero-stats {
    gap: 24px;
  }

  section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}
