:root {
  --navy: #1a2744;
  --navy-light: #243356;
  --amber: #f5a623;
  --amber-dark: #d98f10;
  --cream: #faf8f4;
  --cream-dark: #f0ede5;
  --text: #1a2744;
  --text-muted: #5a6580;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Navbar --- */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(26,39,68,0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-book-btn {
  background: var(--amber);
  color: var(--navy);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-book-btn:hover { background: var(--amber-dark); }

/* --- Hero --- */
.hero {
  background: var(--navy);
  padding: 80px 40px 90px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  padding: 6px 14px;
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.visual-courier-icon, .visual-notary-icon {
  transition: transform 0.3s ease;
}
.visual-courier-label, .visual-notary-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.visual-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,166,35,0.3);
}
.visual-combo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--amber);
  font-weight: 700;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 6px;
  margin-top: 8px;
}

/* --- Services --- */
.services {
  padding: 90px 40px;
  background: var(--white);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-card {
  padding: 0;
}
.service-icon {
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Differentiators --- */
.differentiators {
  background: var(--cream-dark);
  padding: 90px 40px;
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.diff-header {
  margin-bottom: 60px;
  max-width: 600px;
}
.diff-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.diff-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.diff-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding: 40px;
  border-bottom: 1px solid rgba(26,39,68,0.1);
  border-right: 1px solid rgba(26,39,68,0.1);
}
.diff-item:nth-child(2n) {
  border-right: none;
}
.diff-item:nth-child(3),
.diff-item:nth-child(4) {
  border-bottom: none;
}
.diff-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.15;
  line-height: 1;
}
.diff-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.diff-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Process --- */
.process {
  background: var(--navy);
  padding: 90px 40px;
}
.process-inner {
  max-width: 800px;
  margin: 0 auto;
}
.process .section-label {
  color: rgba(245,166,35,0.7);
}
.process-steps {
  margin-top: 50px;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: start;
}
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 1px;
  height: 60px;
  background: rgba(245,166,35,0.25);
}
.step-content {
  padding-bottom: 48px;
  padding-left: 12px;
}
.step:last-child .step-content {
  padding-bottom: 0;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* --- Closing --- */
.closing {
  background: var(--cream);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-attribution {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.footer-meta {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 30px; }
  .diff-items { grid-template-columns: 1fr; }
  .diff-item { border-right: none; }
  .diff-item:nth-child(3) { border-bottom: 1px solid rgba(26,39,68,0.1); }
  .diff-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 70px; }
  .services, .differentiators, .process, .closing { padding: 70px 24px; }
  .navbar { padding: 16px 24px; }
  .footer { padding: 30px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .step { grid-template-columns: 50px 1fr; }
  .step-line { height: 40px; }
}