/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0D0F14;
  --surface: #151820;
  --surface-2: #1C2029;
  --gold: #C9A84C;
  --gold-dim: #9A7D35;
  --text: #F2F0EC;
  --text-mid: #A8A9B0;
  --text-dim: #5A5C66;
  --border: #2A2E38;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(13,15,20,0.95) 0%, transparent 100%);
}

.nav-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--text);
}

.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 10px 20px;
  transition: border-color 0.2s, color 0.2s;
}

.nav-cta:hover {
  border-color: var(--gold);
  color: var(--text);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 48px 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero-sub {
  max-width: 540px;
  margin-bottom: 48px;
}

.hero-sub p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

.hero-routes {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.route-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== CREDENTIALS ===== */
.credentials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 48px;
}

.cred-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cred-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 32px;
}

.cred-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}

.cred-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}

.cred-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 72px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.services-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
  max-width: 500px;
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card--large { grid-column: span 1; }
.service-card--wide { grid-column: span 2; }

.service-icon {
  margin-bottom: 4px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== LONDON CORRIDOR ===== */
.london {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 48px;
}

.london-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.london-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin: 16px 0 32px;
}

.london-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.london-stat-block {
  margin-bottom: 40px;
}

.london-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.london-stat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.london-stat-list span {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  font-weight: 300;
}

.london-stat-list span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dim);
}

/* ===== AMERICAS ===== */
.americas {
  background: var(--bg);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.americas::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.americas-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.americas-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.americas-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 14px;
}

.americas-sub {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

.americas-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  max-width: 560px;
  margin-bottom: 64px;
}

.americas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}

.americas-col {
  background: var(--surface);
  padding: 48px 40px;
}

.americas-city-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.americas-col p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

.americas-footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.americas-footer p {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 140px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing-ornament {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  color: var(--gold-dim);
  margin-bottom: 32px;
  opacity: 0.6;
}

.closing-statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 32px;
  font-style: italic;
}

.closing-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-cities {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.footer-contact {
  font-size: 13px;
  color: var(--text-mid);
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* ===== LONDON EA SECTION ===== */
.london-ea {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 120px 48px;
  position: relative;
}

.london-ea::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.london-ea-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

/* Hero block */
.london-ea-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.london-ea-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px;
}

.london-ea-sub-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.london-ea-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 36px;
}

.london-ea-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  max-width: 660px;
  margin-bottom: 20px;
}

/* Trust pillars */
.london-ea-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.london-ea-pillar {
  background: var(--surface);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.london-ea-pillar-icon {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 400;
}

.london-ea-pillar-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.london-ea-pillar-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* How it works flow */
.london-ea-flow-header {
  margin-bottom: 56px;
}

.london-ea-flow-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 12px;
  font-style: italic;
}

.london-ea-flow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.london-ea-step {
  background: var(--surface-2);
  padding: 48px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.london-ea-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.london-ea-step-body h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.london-ea-step-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* CTA block */
.london-ea-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border: 1px solid var(--border);
  padding: 56px 52px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.london-ea-cta-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.london-ea-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.london-ea-cta-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
}

.london-ea-cta-btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 18px 40px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.london-ea-cta-btn:hover {
  background: var(--text);
  color: var(--bg);
}

.london-ea-sla-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  text-decoration: none;
  margin-top: 16px;
  transition: color 0.2s;
}

.london-ea-sla-link:hover {
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 42px; }
  .credentials { padding: 32px 24px; }
  .cred-inner { gap: 0; }
  .cred-item { min-width: 120px; padding: 12px 16px; }
  .cred-divider { display: none; }
  .cred-number { font-size: 28px; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
  .london { padding: 80px 24px; }
  .london-inner { grid-template-columns: 1fr; gap: 48px; }
  .americas { padding: 80px 24px; }
  .americas-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px; }
  .london-ea { padding: 80px 24px; }
  .london-ea-inner { gap: 64px; }
  .london-ea-pillars { grid-template-columns: 1fr; }
  .london-ea-flow-steps { grid-template-columns: 1fr; }
  .london-ea-cta-block { padding: 40px 28px; flex-direction: column; align-items: flex-start; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .london-eyebrow { flex-direction: column; gap: 8px; }
}

/* ===== SLA PAGE ===== */

.sla-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 48px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sla-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.sla-hero-inner {
  max-width: 800px;
  position: relative;
}

.sla-eyebrow {
  margin-bottom: 24px;
}

.sla-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 16px;
}

.sla-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.sla-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 24px;
}

.sla-meta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Main content */
.sla-main {
  padding: 0 48px 120px;
}

.sla-main-inner {
  max-width: 960px;
  margin: 0 auto;
}

.sla-section {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.sla-section:first-child {
  padding-top: 80px;
}

.sla-section-index {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  padding-top: 8px;
  font-weight: 400;
}

.sla-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 40px;
}

.sla-body-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

/* Commitment block */
.sla-commitment-block {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
  padding: 32px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}

.sla-commitment-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.sla-commitment-label {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
}

/* Definition block */
.sla-definition {
  margin-bottom: 36px;
  padding: 28px 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.sla-definition-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

.sla-definition-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* How grid (2 columns) */
.sla-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.sla-how-item {
  background: var(--surface);
  padding: 32px 28px;
}

.sla-how-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}

.sla-how-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* Remedy */
.sla-remedy {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  padding: 24px 28px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.sla-remedy-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}

/* Zones grid */
.sla-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.sla-zone {
  background: var(--surface);
  padding: 28px 32px;
}

.sla-zone-city {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.sla-zone-detail {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Protocol grid */
.sla-protocol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.sla-protocol-item {
  background: var(--surface-2);
  padding: 36px 32px;
}

.sla-protocol-scenario {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.sla-protocol-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* Named operator callout */
.sla-named-operator {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  padding: 24px 28px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}

.sla-named-operator-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Confirmation cadence */
.sla-cadence-timeline {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.sla-cadence-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  background: var(--surface);
}

.sla-cadence-marker {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--gold);
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
}

.sla-cadence-detail {
  padding: 28px 32px;
}

.sla-cadence-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.sla-cadence-detail p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

.sla-cadence-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  font-style: italic;
}

/* Discretion grid */
.sla-discretion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.sla-discretion-item {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sla-discretion-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

.sla-discretion-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* Insurance grid */
.sla-insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.sla-insurance-item {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sla-insurance-type {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.sla-insurance-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.sla-insurance-note {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* Additional insured */
.sla-additional-insured {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  padding: 24px 28px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  margin-bottom: 16px;
}

.sla-additional-insured-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sla-liability-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Report fields */
.sla-report-fields {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.sla-report-field {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: var(--surface);
}

.sla-report-field-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.sla-report-field-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  padding: 24px 28px;
}

.sla-report-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  font-style: italic;
}

/* SLA CTA Section */
.sla-cta-section {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.sla-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.sla-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.sla-cta-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
}

.sla-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.sla-cta-btn-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 18px 36px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s ease;
}

.sla-cta-btn-primary:hover {
  background: var(--text);
}

.sla-cta-btn-secondary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 18px 36px;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

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

/* SLA responsive */
@media (max-width: 768px) {
  .sla-hero { padding: 100px 24px 60px; }
  .sla-main { padding: 0 24px 80px; }
  .sla-section { grid-template-columns: 1fr; gap: 16px; }
  .sla-section-index { display: none; }
  .sla-commitment-block { flex-direction: column; gap: 8px; padding: 24px; }
  .sla-commitment-number { font-size: 40px; }
  .sla-how-grid { grid-template-columns: 1fr; }
  .sla-zones-grid { grid-template-columns: 1fr; }
  .sla-protocol-grid { grid-template-columns: 1fr; }
  .sla-discretion-grid { grid-template-columns: 1fr; }
  .sla-insurance-grid { grid-template-columns: 1fr; }
  .sla-cadence-step { grid-template-columns: 80px 1fr; }
  .sla-report-field { grid-template-columns: 1fr; }
  .sla-report-field-name { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 20px; }
  .sla-report-field-desc { padding: 16px 20px; }
  .sla-cta-section { padding: 60px 24px; }
  .sla-cta-inner { flex-direction: column; align-items: flex-start; }
  .sla-cta-actions { width: 100%; }
  .sla-cta-btn-primary, .sla-cta-btn-secondary { width: 100%; }
}

/* ===== ANATOMY OF AN ARRIVAL ===== */

.anat-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.anat-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 0% 50%, black 0%, transparent 100%);
}

.anat-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.anat-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.anat-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 14px;
}

.anat-sub-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.anat-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.anat-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 48px;
}

.anat-meta-bar {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  background: var(--surface);
  width: fit-content;
}

.anat-meta-item {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.anat-meta-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.anat-meta-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.anat-meta-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

/* Main content */
.anat-content {
  padding: 0 48px 120px;
}

.anat-intro {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.anat-intro p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}

.anat-intro p:last-child {
  margin-bottom: 0;
}

/* Timeline */
.anat-timeline {
  max-width: 860px;
  margin: 0 auto;
}

.anat-event {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.anat-event-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.anat-marker-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  min-height: 24px;
}

.anat-marker-line--final {
  background: transparent;
}

.anat-marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: var(--bg);
  flex-shrink: 0;
  margin: 4px 0;
}

.anat-marker-dot--highlight {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}

.anat-event-body {
  padding-left: 24px;
}

.anat-event-header {
  margin-bottom: 20px;
}

.anat-timestamp-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.anat-tz-gmt {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.anat-tz-et {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.anat-event-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 5px 12px;
  border: 1px solid var(--border);
  display: inline-block;
  background: var(--surface);
}

.anat-event-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}

.anat-event-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}

.anat-event-content p:last-child {
  margin-bottom: 0;
}

/* Action grid */
.anat-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.anat-action {
  background: var(--surface);
  padding: 24px 20px;
}

.anat-action-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}

.anat-action-value {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* List */
.anat-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anat-list li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.anat-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 12px;
}

/* Callout */
.anat-callout {
  padding: 20px 24px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  margin-top: 20px;
}

.anat-callout--alt {
  border-color: var(--border);
  background: var(--surface);
}

.anat-callout-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.anat-callout p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0;
}

/* Branch block */
.anat-branch-block {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 24px;
}

.anat-branch-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.anat-branch-icon {
  color: var(--gold);
  font-size: 12px;
}

.anat-branch-cases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.anat-branch-case {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.anat-branch-case:last-child {
  border-bottom: none;
}

.anat-branch-status {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 20px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.anat-branch-status--green { color: #6baa7a; }
.anat-branch-status--amber { color: #c9a84c; }
.anat-branch-status--red { color: #c96a6a; }

.anat-branch-detail {
  padding: 20px 24px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

.anat-branch-detail strong {
  color: var(--text);
}

/* Inline link */
.anat-inline-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}

.anat-inline-link:hover {
  border-color: var(--gold);
}

/* Handoff block */
.anat-handoff-block {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 24px;
}

.anat-handoff-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.anat-handoff-step:last-child {
  border-bottom: none;
}

.anat-handoff-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold-dim);
  padding: 24px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
}

.anat-handoff-text {
  padding: 24px 28px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* Mini message */
.anat-mini-message {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 13px;
}

.anat-mini-message-from {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.anat-mini-message-subject {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.anat-mini-message-body {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

/* Divider */
.anat-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 80px 0 64px;
  max-width: 860px;
  margin: 0 auto;
}

.anat-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.anat-divider-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 0 8px;
}

/* EWR section */
.anat-ewr-section {
  max-width: 860px;
  margin: 0 auto;
}

.anat-ewr-header {
  margin-bottom: 56px;
}

.anat-ewr-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.anat-ewr-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
  font-style: italic;
}

.anat-ewr-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

/* EWR timeline */
.anat-ewr-timeline {
  margin-bottom: 48px;
}

.anat-ewr-event {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.anat-ewr-event:first-child {
  padding-top: 0;
}

.anat-ewr-event-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.anat-ewr-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  min-height: 16px;
}

.anat-ewr-line--final {
  background: transparent;
}

.anat-ewr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--text-dim);
  background: var(--bg);
  flex-shrink: 0;
  margin: 4px 0;
}

.anat-ewr-event-body {
  padding-left: 24px;
}

.anat-ewr-event-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 5px 12px;
  border: 1px solid var(--border);
  display: inline-block;
  background: var(--surface);
  margin-bottom: 16px;
}

.anat-ewr-event-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.anat-ewr-event-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0;
}

/* EWR note */
.anat-ewr-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.25);
}

.anat-ewr-note-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  padding-top: 2px;
}

.anat-ewr-note p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0;
}

.anat-ewr-note strong {
  color: var(--text);
}

/* CTA */
.anat-cta-section {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 80px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.anat-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.anat-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.anat-cta-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 300;
  max-width: 440px;
}

.anat-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.anat-cta-btn-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 18px 36px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s ease;
}

.anat-cta-btn-primary:hover {
  background: var(--text);
}

.anat-cta-btn-secondary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 18px 36px;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

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

/* Related */
.anat-related {
  padding: 48px 0 0;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.anat-related-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.anat-related-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.anat-related-link {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.anat-related-link:hover {
  color: var(--gold);
}

/* Anatomy responsive */
@media (max-width: 768px) {
  .anat-hero { padding: 100px 24px 60px; }
  .anat-content { padding: 0 24px 80px; }
  .anat-meta-bar { width: 100%; }
  .anat-meta-item { padding: 12px 16px; }
  .anat-event { grid-template-columns: 48px 1fr; }
  .anat-action-grid { grid-template-columns: 1fr; }
  .anat-branch-case { grid-template-columns: 1fr; }
  .anat-branch-status { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 20px; }
  .anat-handoff-step { grid-template-columns: 36px 1fr; }
  .anat-handoff-text { padding: 20px 20px; }
  .anat-divider { padding: 60px 0 48px; }
  .anat-ewr-event { grid-template-columns: 48px 1fr; }
  .anat-cta-section { padding-top: 60px; }
  .anat-cta-inner { flex-direction: column; align-items: flex-start; }
  .anat-cta-actions { width: 100%; }
  .anat-cta-btn-primary, .anat-cta-btn-secondary { width: 100%; }
}

/* ===== COLOMBIA CORRIDOR PAGE ===== */

/* Hero */
.col-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 48px 100px;
}

.col-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.col-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.col-hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.col-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.col-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 16px;
}

.col-sub-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.col-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.col-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 56px;
}

.col-hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  max-width: 560px;
}

.col-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 28px;
  flex: 1;
}

.col-meta-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.col-meta-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.col-meta-value {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}

/* Shared section layout */
.col-section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.col-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 680px;
}

.col-section-intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 56px;
}

/* Coverage section */
.col-coverage {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.col-coverage-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.col-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.col-city-block {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px;
}

.col-city-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.col-city-iata {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: 72px;
}

.col-city-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.col-city-airport {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

.col-zone-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.col-zone-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
}

.col-zone-row:last-child {
  border-bottom: none;
}

.col-zone-row--header {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 8px;
  font-weight: 400;
}

.col-zone-row--header span:last-child {
  text-align: right;
}

.col-zone-row span:last-child {
  text-align: right;
  color: var(--text);
  font-size: 12px;
  white-space: nowrap;
}

.col-city-note {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.6;
}

/* Fleet section */
.col-fleet {
  padding: 100px 48px;
}

.col-fleet-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.col-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.col-fleet-item {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-fleet-icon {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 4px;
}

.col-fleet-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

.col-fleet-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

.col-fleet-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

.col-fleet-note-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Security section */
.col-security {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.col-security-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.col-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.col-security-item {
  background: var(--surface);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 40px 36px;
}

.col-security-item--featured {
  grid-column: span 2;
  background: var(--bg);
}

.col-security-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-dim);
  padding-top: 4px;
}

.col-security-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.col-security-content p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* Differentiators section */
.col-diff {
  padding: 100px 48px;
}

.col-diff-inner {
  max-width: 960px;
  margin: 0 auto;
}

.col-diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.col-diff-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.col-diff-item:last-child {
  border-bottom: none;
}

.col-diff-marker {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  padding-top: 4px;
}

.col-diff-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.col-diff-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* Use cases section */
.col-usecases {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.col-usecases-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.col-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.col-usecase-item {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-usecase-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

.col-usecase-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* How it works section */
.col-how {
  padding: 100px 48px;
}

.col-how-inner {
  max-width: 960px;
  margin: 0 auto;
}

.col-how-intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 64px;
}

.col-how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.col-how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.col-how-step:first-child {
  padding-top: 0;
}

.col-how-step:last-child {
  border-bottom: none;
}

.col-how-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
  padding-top: 4px;
}

.col-how-step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.col-how-step-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* CTA section */
.col-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}

.col-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.col-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 520px;
}

.col-cta-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
}

.col-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.col-cta-btn-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 16px 32px;
  transition: background 0.2s;
  white-space: nowrap;
}

.col-cta-btn-primary:hover {
  background: #dab94e;
}

.col-cta-btn-secondary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 16px 32px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-align: center;
}

.col-cta-btn-secondary:hover {
  border-color: var(--text-mid);
  color: var(--text);
}

/* Related links */
.col-related {
  padding: 60px 48px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.col-related-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}

.col-related-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.col-related-link {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.col-related-link:hover {
  color: var(--gold);
}

/* Colombia responsive */
@media (max-width: 960px) {
  .col-city-grid { grid-template-columns: 1fr; }
  .col-fleet-grid { grid-template-columns: 1fr 1fr; }
  .col-security-grid { grid-template-columns: 1fr; }
  .col-security-item--featured { grid-column: span 1; }
  .col-usecase-grid { grid-template-columns: 1fr 1fr; }
  .col-cta-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
}

@media (max-width: 768px) {
  .col-hero { padding: 100px 24px 80px; }
  .col-coverage { padding: 80px 24px; }
  .col-fleet { padding: 80px 24px; }
  .col-fleet-grid { grid-template-columns: 1fr; }
  .col-security { padding: 80px 24px; }
  .col-diff { padding: 80px 24px; }
  .col-diff-item { grid-template-columns: 48px 1fr; gap: 24px; padding: 40px 24px; }
  .col-usecases { padding: 80px 24px; }
  .col-usecase-grid { grid-template-columns: 1fr; }
  .col-how { padding: 80px 24px; }
  .col-how-step { grid-template-columns: 48px 1fr; gap: 24px; }
  .col-cta { padding: 80px 24px; }
  .col-related { padding: 48px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .col-hero-meta { max-width: 100%; flex-direction: column; }
  .col-meta-sep { width: 100%; height: 1px; }
}

/* ===== PROCUREMENT / VENDOR QUALIFICATION PAGE ===== */

.prc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

/* Hero */
.prc-hero {
  padding: 140px 48px 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.prc-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.prc-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.prc-eyebrow-tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 5px 12px;
}

.prc-eyebrow-meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.prc-hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.prc-hero-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 36px;
}

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

.prc-btn-primary {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: background 0.2s;
}

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

.prc-btn-secondary {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 28px;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.prc-btn-secondary:hover { border-color: var(--text-mid); color: var(--text); }

/* Table of contents */
.prc-toc {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  overflow-x: auto;
}

.prc-toc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.prc-toc-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 16px 0;
  flex-shrink: 0;
}

.prc-toc-links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.prc-toc-links::-webkit-scrollbar { display: none; }

.prc-toc-link {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 16px 16px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}

.prc-toc-link:first-child { border-left: 1px solid var(--border); }
.prc-toc-link:hover { color: var(--text); }

/* Main content */
.prc-main {
  background: var(--bg);
}

.prc-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

/* Sections */
.prc-section {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 48px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.prc-section:last-child { border-bottom: none; }

.prc-section-index {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  padding-top: 6px;
}

.prc-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.prc-body-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 760px;
}

.prc-subsection-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  margin-top: 8px;
}

/* Tables */
.prc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 13px;
}

.prc-table th,
.prc-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
  vertical-align: top;
}

.prc-table thead th {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}

.prc-table tbody th[scope="row"] {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  font-weight: 400;
  width: 220px;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.prc-table tbody td {
  color: var(--text);
}

.prc-table--insurance .prc-limit {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.prc-table--docs tbody td:first-child {
  color: var(--text);
}

/* Definition list */
.prc-dl {
  list-style: none;
  display: grid;
  gap: 0;
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.prc-dl dt {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 20px 0 8px;
  font-weight: 400;
}

.prc-dl dd {
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  max-width: 680px;
}

.prc-dl dd:last-child { border-bottom: none; }

/* Callout block */
.prc-callout {
  background: var(--surface);
  border-left: 2px solid var(--gold-dim);
  padding: 20px 24px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 8px;
}

/* Placeholder text */
.prc-placeholder {
  color: var(--text-dim);
  font-style: italic;
  font-size: 12px;
}

/* Note */
.prc-note {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  display: block;
}

/* Links */
.prc-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: border-color 0.2s;
}

.prc-link:hover { border-color: var(--gold); }
.prc-link--light { color: var(--text); border-color: rgba(242,240,236,0.3); }
.prc-link--light:hover { border-color: var(--text); }

/* CTA section */
.prc-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}

.prc-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.prc-cta-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

.prc-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.prc-cta-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
}

.prc-cta-text { flex: 1; }

.prc-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 240px;
  padding-top: 4px;
}

.prc-cta-btn-primary {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 16px 24px;
  text-align: center;
  transition: background 0.2s;
}

.prc-cta-btn-primary:hover { background: var(--gold-dim); }

.prc-cta-btn-secondary {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 15px 24px;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.prc-cta-btn-secondary:hover { border-color: var(--text-mid); color: var(--text); }

/* Responsive */
@media (max-width: 900px) {
  .prc-hero { padding: 120px 24px 60px; }
  .prc-toc-inner { padding: 0 24px; }
  .prc-main-inner { padding: 0 24px 60px; }
  .prc-section { grid-template-columns: 1fr; gap: 8px; padding: 56px 0; }
  .prc-section-index { padding-top: 0; }
  .prc-cta-section { padding: 60px 24px; }
  .prc-cta-inner { flex-direction: column; gap: 32px; }
  .prc-cta-actions { min-width: auto; width: 100%; }
  .prc-cta-btn-primary, .prc-cta-btn-secondary { text-align: center; }
  .prc-table tbody th[scope="row"] { width: 140px; font-size: 11px; }
}

/* ===== CASE STUDIES ===== */

/* ── Index Page ── */

.cs-idx-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.cs-idx-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 0% 50%, black 0%, transparent 100%);
}

.cs-idx-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.cs-idx-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cs-idx-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 14px;
}

.cs-idx-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cs-idx-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
}

.cs-idx-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.cs-idx-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.cs-idx-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition: border-color 0.2s;
  overflow: hidden;
}

.cs-idx-card:hover { border-color: var(--gold-dim); }

.cs-idx-card-thumb {
  background: var(--bg);
  border-right: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  align-items: center;
}

.cs-idx-thumb-inner {
  width: 100%;
}

.cs-idx-thumb-line {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}
.cs-idx-thumb-line--1 { width: 60%; }
.cs-idx-thumb-line--2 { width: 80%; }
.cs-idx-thumb-line--3 { width: 50%; }

.cs-idx-thumb-cities {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cs-idx-thumb-city {
  font-family: 'DM Mono', 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.cs-idx-thumb-arrow {
  font-size: 10px;
  color: var(--text-dim);
}

.cs-idx-card-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-idx-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cs-idx-card-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.cs-idx-card-time {
  font-family: 'DM Mono', 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.cs-idx-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}

.cs-idx-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.cs-idx-card-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.cs-idx-card:hover .cs-idx-card-cta { color: var(--text); }

.cs-idx-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 56px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cs-idx-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cs-idx-cta-sub {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

.cs-idx-cta-btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 16px 36px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.cs-idx-cta-btn:hover { background: var(--text); color: var(--bg); }

.cs-idx-related {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cs-idx-related-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}

.cs-idx-related-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.cs-idx-related-link {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.cs-idx-related-link:hover { color: var(--gold); }

/* ── Three-City Roadshow Page ── */

/* Hero */
.cs-hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.cs-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 0% 50%, black 0%, transparent 100%);
}

.cs-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cs-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 14px;
}

.cs-sub-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.cs-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.cs-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

/* Shared section label */
.cs-section-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

/* Itinerary Strip */
.cs-itinerary-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  overflow-x: auto;
}

.cs-itinerary-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  min-width: 1000px;
}

.cs-itinerary-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.cs-itinerary-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.cs-track-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 80px;
}

.cs-track-city {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.cs-track-time {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.cs-track-note {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.04em;
}

.cs-track-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 60px;
  padding-top: 4px;
}

.cs-track-line {
  width: 100%;
  height: 1px;
  background: var(--border);
  position: relative;
  top: 10px;
}

.cs-track-flight {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cs-track-mode {
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Handoff */
.cs-handoff {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.cs-handoff-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cs-handoff-header { margin-bottom: 56px; }

.cs-handoff-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cs-handoff-sub {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

.cs-handoff-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.cs-handoff-col {
  padding: 48px 40px;
}

.cs-handoff-col:first-child { background: var(--surface); }

.cs-handoff-divider {
  width: 1px;
  background: var(--border);
}

.cs-handoff-col-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cs-handoff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-handoff-list li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}

.cs-handoff-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

/* Legs */
.cs-legs {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.cs-legs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cs-legs-header { margin-bottom: 64px; }

.cs-legs-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cs-legs-sub {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* Leg block */
.cs-leg {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.cs-leg:last-child { border-bottom: none; }

.cs-leg-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.cs-leg-marker-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  min-height: 24px;
}

.cs-leg-marker-line--final { background: transparent; }

.cs-leg-marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: var(--bg);
  flex-shrink: 0;
  margin: 4px 0;
}

.cs-leg-body { padding-left: 32px; }

.cs-leg-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cs-leg-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.cs-leg-route {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}

.cs-leg-type {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-left: auto;
}

.cs-leg-data-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.cs-leg-data-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cs-leg-data-item:last-child { border-bottom: none; }

.cs-leg-data-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  border-right: 1px solid var(--border);
  padding-right: 16px;
  margin-right: 16px;
}

.cs-leg-data-value {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

.cs-leg-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.cs-leg-callout-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cs-leg-callout p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.cs-leg-discretion {
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  padding: 16px 20px;
}

.cs-leg-discretion-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.cs-leg-discretion p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* Teterboro */
.cs-teterboro {
  padding: 80px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.cs-teterboro-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cs-teterboro-header { margin-bottom: 56px; }

.cs-teterboro-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cs-teterboro-sub {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

.cs-teterboro-fbo {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  margin-bottom: 32px;
}

.cs-fbo-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.cs-fbo-body { padding: 32px 28px; }

.cs-fbo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-fbo-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.cs-fbo-step:last-child { border-bottom: none; }

.cs-fbo-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-dim);
  border-right: 1px solid var(--border);
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
}

.cs-fbo-step-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 24px;
}

.cs-teterboro-callout {
  padding: 24px 28px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}

.cs-teterboro-callout-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

/* EA View */
.cs-ea-view {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.cs-ea-view-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-ea-view-header { margin-bottom: 56px; }

.cs-ea-view-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cs-ea-view-sub {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
}

.cs-ea-messages {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.cs-ea-message {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  background: var(--surface);
}

.cs-ea-message-time {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}

.cs-ea-message-body {
  padding: 24px 28px;
  display: flex;
  align-items: center;
}

.cs-ea-message-text {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.cs-ea-view-caption {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  padding: 32px 36px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-left: 3px solid var(--gold);
}

.cs-ea-view-caption strong { color: var(--text); }

/* Cost */
.cs-cost {
  padding: 80px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.cs-cost-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-cost-header { margin-bottom: 48px; }

.cs-cost-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}

.cs-cost-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.cs-cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cs-cost-table th,
.cs-cost-table td {
  padding: 20px 24px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.cs-cost-table thead th {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.cs-cost-table tbody th {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  font-weight: 400;
  background: var(--bg);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.cs-cost-table td { color: var(--text-mid); font-weight: 300; }

.cs-cost-primary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--gold) !important;
  font-weight: 400 !important;
}

.cs-cost-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.cs-cost-link-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 14px 28px;
  transition: background 0.2s;
}

.cs-cost-link-primary:hover { background: var(--text); color: var(--bg); }

.cs-cost-link-secondary {
  display: inline-block;
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.cs-cost-link-secondary:hover { color: var(--gold); }

/* CTA */
.cs-cta {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.cs-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.cs-cta-statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  font-style: italic;
}

.cs-cta-btn-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 18px 40px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.cs-cta-btn-primary:hover { background: var(--text); color: var(--bg); }

/* Related */
.cs-related {
  padding: 48px 48px;
  border-bottom: 1px solid var(--border);
}

.cs-related-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cs-related-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}

.cs-related-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.cs-related-link {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.cs-related-link:hover { color: var(--gold); }

/* Footnote */
.cs-footnote {
  padding: 32px 48px;
}

.cs-footnote p {
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.6;
  font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cs-idx-card { grid-template-columns: 1fr; }
  .cs-idx-card-thumb { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .cs-idx-main { padding: 60px 24px; }
  .cs-idx-cta { padding: 40px 32px; flex-direction: column; align-items: flex-start; }
  .cs-idx-related { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .cs-hero { padding: 100px 24px 80px; }
  .cs-hero-headline { font-size: 36px; }
  .cs-itinerary-strip { padding: 32px 0; }
  .cs-itinerary-inner { padding: 0 24px; }
  .cs-handoff { padding: 60px 24px; }
  .cs-handoff-grid { grid-template-columns: 1fr; }
  .cs-handoff-divider { width: 100%; height: 1px; }
  .cs-legs { padding: 60px 24px; }
  .cs-leg { grid-template-columns: 48px 1fr; }
  .cs-leg-body { padding-left: 16px; }
  .cs-leg-header-row { flex-wrap: wrap; }
  .cs-leg-data-item { grid-template-columns: 1fr; }
  .cs-leg-data-label { border-right: none; padding-right: 0; margin-right: 0; margin-bottom: 4px; }
  .cs-teterboro { padding: 60px 24px; }
  .cs-ea-view { padding: 60px 24px; }
  .cs-ea-message { grid-template-columns: 64px 1fr; }
  .cs-ea-view-caption { padding: 24px 20px; }
  .cs-cost { padding: 60px 24px; }
  .cs-cost-table th, .cs-cost-table td { padding: 16px; font-size: 13px; }
  .cs-cta { padding: 80px 24px; }
  .cs-cta-inner { flex-direction: column; align-items: flex-start; }
  .cs-related { padding: 40px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .cs-footnote { padding: 24px; }
}

/* ===== LONDON DESK PAGE (/london-desk) ===== */

/* Active nav link */
.nav-link--active {
  color: var(--gold) !important;
}

/* Hero */
.ld-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 100px;
  background: radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.06) 0%, transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border);
}

.ld-hero-inner {
  max-width: 900px;
}

.ld-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ld-flag-motif {
  opacity: 0.9;
  flex-shrink: 0;
}

.ld-eyebrow-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 14px;
}

.ld-eyebrow-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ld-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.ld-hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 40px;
}

/* Dual-timezone strip */
.ld-tz-strip {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 28px;
  margin-bottom: 40px;
  font-family: 'DM Mono', monospace;
}

.ld-tz-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ld-tz-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ld-tz-time {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  min-width: 56px;
  text-align: center;
}

.ld-tz-zone {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.ld-tz-sep {
  color: var(--border);
  font-size: 20px;
  align-self: center;
}

/* Hero buttons */
.ld-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ld-btn-primary {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 14px 28px;
  transition: opacity 0.2s;
  display: inline-block;
}
.ld-btn-primary:hover { opacity: 0.85; }

.ld-btn-secondary {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--border);
  text-decoration: none;
  padding: 14px 28px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.ld-btn-secondary:hover { border-color: var(--gold); color: var(--text); }

/* Shared section scaffolding */
.ld-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 48px;
}

.ld-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.ld-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ld-body-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 48px;
}

.ld-link {
  color: var(--gold);
  text-decoration: none;
}
.ld-link:hover { text-decoration: underline; }

/* Personas */
.ld-personas {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ld-personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.ld-persona-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ld-persona-role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.ld-persona-context {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.ld-persona-remove {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* Operating model */
.ld-ops {
  border-bottom: 1px solid var(--border);
}

.ld-rotation-strip {
  margin-bottom: 48px;
}

.ld-rotation-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.ld-rotation-bar {
  position: relative;
  height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}

.ld-rot-seg {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  gap: 3px;
}

.ld-rot-london {
  background: rgba(201,168,76,0.12);
  border-right: 1px solid rgba(201,168,76,0.3);
}

.ld-rot-nyc {
  background: rgba(100,120,200,0.08);
}

.ld-rot-overlap {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(201,168,76,0.22);
  border-left: 1px solid rgba(201,168,76,0.5);
  border-right: 1px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ld-rot-overlap-label {
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.ld-rot-seg-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.ld-rot-seg-hours {
  font-size: 10px;
  color: var(--text-dim);
  font-family: 'DM Mono', monospace;
  white-space: nowrap;
}

.ld-rotation-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* DL */
.ld-dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.ld-dl dt {
  padding: 18px 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--surface);
}
.ld-dl dd {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.ld-dl dt:last-of-type, .ld-dl dd:last-of-type {
  border-bottom: none;
}

/* Airport grids */
.ld-departure, .ld-arrival {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ld-airport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.ld-airport-block {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.ld-airport-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.ld-airport-iata {
  font-family: 'DM Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  min-width: 56px;
}

.ld-airport-name {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.ld-airport-sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Tables */
.ld-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ld-table th[scope="row"] {
  width: 36%;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ld-table td {
  padding: 14px 20px;
  color: var(--text-mid);
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.ld-table tr:last-child th,
.ld-table tr:last-child td {
  border-bottom: none;
}

.ld-table--billing th[scope="row"] {
  width: 28%;
}

/* Callout */
.ld-callout {
  background: var(--surface);
  border-left: 2px solid var(--gold);
  padding: 18px 24px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Timeline */
.ld-timeline {
  border-bottom: 1px solid var(--border);
}

.ld-timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ld-timeline-row {
  display: grid;
  grid-template-columns: 180px 24px 1fr;
  gap: 0 20px;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
}

.ld-timeline-row--final {
  border-bottom: none;
}

.ld-tl-timestamps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  padding-top: 2px;
}

.ld-ts-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.ld-ts-gmt {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-mid);
}

.ld-ts-et {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
}

.ld-tl-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--surface);
  outline: 1px solid var(--gold-dim);
  align-self: start;
  margin-top: 6px;
  flex-shrink: 0;
  position: relative;
}

.ld-tl-node--active {
  background: var(--gold);
  outline-color: var(--gold);
}

.ld-tl-node--end {
  background: var(--gold);
  outline-color: var(--gold);
}

.ld-tl-content {
  padding-bottom: 4px;
}

.ld-tl-event {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 8px;
}

.ld-tl-detail {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Billing */
.ld-billing {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

/* Limits */
.ld-limits {
  border-bottom: 1px solid var(--border);
}

.ld-limits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.ld-limits-list li {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
}

.ld-limits-list li:last-child {
  border-bottom: none;
}

.ld-limits-list strong {
  color: var(--text);
}

/* CTA section */
.ld-cta-section {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.ld-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 48px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.ld-cta-text {
  flex: 1;
}

.ld-cta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.ld-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ld-cta-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ld-cta-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ld-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ld-contact-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ld-contact-val {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}
a.ld-contact-val:hover { color: var(--gold); }

.ld-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 280px;
}

.ld-cta-btn-primary {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 16px 24px;
  text-align: center;
  transition: opacity 0.2s;
}
.ld-cta-btn-primary:hover { opacity: 0.85; }

.ld-cta-btn-secondary {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--border);
  text-decoration: none;
  padding: 14px 24px;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.ld-cta-btn-secondary:hover { border-color: var(--gold-dim); color: var(--text); }

/* ===== LONDON DESK RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ld-personas-grid { grid-template-columns: 1fr; }
  .ld-airport-grid { grid-template-columns: 1fr; }
  .ld-cta-inner { flex-direction: column; gap: 48px; }
  .ld-cta-actions { min-width: unset; width: 100%; }
  .ld-cta-btn-primary, .ld-cta-btn-secondary { text-align: left; }
  .ld-dl { grid-template-columns: 160px 1fr; }
}

@media (max-width: 768px) {
  .ld-hero { padding: 100px 24px 80px; }
  .ld-headline { font-size: 32px; }
  .ld-tz-strip { padding: 12px 20px; gap: 16px; }
  .ld-tz-time { font-size: 18px; }
  .ld-section-inner { padding: 64px 24px; }
  .ld-timeline-row { grid-template-columns: 140px 20px 1fr; gap: 0 12px; }
  .ld-tl-timestamps { text-align: right; }
  .ld-dl { grid-template-columns: 1fr; }
  .ld-dl dt { border-right: none; border-bottom: 1px solid var(--border); }
  .ld-rotation-bar { height: 68px; }
  .ld-rot-seg { padding: 0 10px; }
  .ld-rot-seg-label { font-size: 10px; }
  .ld-rot-seg-hours { font-size: 9px; }
}

@media (max-width: 520px) {
  .ld-timeline-row { grid-template-columns: 1fr; padding: 24px 0; }
  .ld-tl-timestamps { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 8px; align-items: center; }
  .ld-ts-label { margin-bottom: 0; }
  .ld-tl-node { display: none; }
  .ld-hero-actions { flex-direction: column; }
  .ld-btn-primary, .ld-btn-secondary { width: 100%; text-align: center; }
}