/* ============================================================
   GLOBAL CONNECT COURIER SERVICE
   Editorial luxury logistics. Navy + gold + ivory.
   ============================================================ */

:root {
  --navy-900: #060F2A;
  --navy-800: #0A1838;
  --navy-700: #101F44;
  --navy-600: #16285A;
  --navy-500: #1F3471;
  --gold-700: #8E6D1F;
  --gold-600: #B8902F;
  --gold-500: #C9A24B;
  --gold-400: #D9B660;
  --gold-300: #E2C170;
  --ivory:    #F5F1E8;
  --cream:    #FAF7EE;
  --bone:     #FBFAF5;
  --paper:    #FFFFFF;
  --ink:      #14171F;
  --ink-dim:  #4A5168;

  --serif:   "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:    "Inter Tight", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1400px;
  --pad-x: clamp(20px, 5vw, 80px);
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--gold-300); color: var(--navy-900); }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 18px var(--pad-x);
  background: rgba(251, 250, 245, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(10, 24, 56, 0.08);
  transition: padding .3s ease;
}
.nav.scrolled { padding: 12px var(--pad-x); }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
}
.brand-mark { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--gold-600); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 12px; align-items: center; }

.ghost-btn, .gold-btn, .primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}

.ghost-btn {
  background: transparent;
  border-color: rgba(10, 24, 56, 0.18);
  color: var(--navy-800);
}
.ghost-btn:hover { border-color: var(--navy-800); }

.gold-btn {
  background: var(--navy-800);
  color: var(--gold-300);
  border-color: var(--navy-800);
}
.gold-btn:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.primary-btn {
  background: var(--navy-800);
  color: var(--ivory);
  padding: 16px 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.primary-btn:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}
.primary-btn.full { width: 100%; justify-content: center; padding: 18px; }

.secondary-btn {
  background: transparent;
  color: var(--navy-800);
  padding: 16px 24px;
  border-color: rgba(10, 24, 56, 0.18);
  font-size: 14.5px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.secondary-btn:hover { border-color: var(--gold-500); color: var(--gold-600); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--navy-800);
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(201, 162, 75, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(10, 24, 56, 0.06), transparent 60%);
}
.route-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.route {
  stroke-dasharray: 6 8;
  animation: routeDash 30s linear infinite;
}
@keyframes routeDash { to { stroke-dashoffset: -700; } }

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2'/><feColorMatrix values='0 0 0 0 .04 0 0 0 0 .1 0 0 0 0 .2 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.4'/></svg>");
}

.hero-grid { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-700);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 99px;
  margin-bottom: 36px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(201, 162, 75, 0.02); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0 0 28px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s cubic-bezier(.2,.7,.1,1) forwards;
}
.hero-title .line-1 { animation-delay: .05s; }
.hero-title .line-2 { animation-delay: .25s; }
.hero-title .line-3 { animation-delay: .45s; font-weight: 380; }
.hero-title em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--gold-600);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.gold-underline {
  position: relative;
  display: inline-block;
}
.gold-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.1em;
  background: linear-gradient(90deg, transparent, var(--gold-500) 20%, var(--gold-500) 80%, transparent);
  opacity: .7;
}

.hero-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  max-width: 540px;
  color: var(--ink-dim);
  margin: 0 0 40px;
  opacity: 0;
  animation: rise .9s .65s cubic-bezier(.2,.7,.1,1) forwards;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: rise .9s .8s cubic-bezier(.2,.7,.1,1) forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(10, 24, 56, 0.12);
  opacity: 0;
  animation: rise .9s .95s cubic-bezier(.2,.7,.1,1) forwards;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.stat-num small {
  font-size: 0.55em;
  color: var(--gold-600);
  font-style: italic;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* hero card (live shipment) */
.hero-card {
  position: relative;
  z-index: 2;
  background: var(--navy-800);
  color: var(--ivory);
  border-radius: 8px;
  padding: 28px;
  box-shadow:
    0 30px 80px -20px rgba(10, 24, 56, 0.35),
    0 0 0 1px rgba(201, 162, 75, 0.18);
  transform: rotate(-1.2deg);
  opacity: 0;
  animation: cardIn 1s .7s cubic-bezier(.2,.7,.1,1) forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: rotate(-1.2deg) translateY(0); }
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(245, 241, 232, 0.15);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(226, 193, 112, 0.25);
  animation: pulse 1.6s infinite;
}
.status-text { color: var(--gold-300); flex: 1; }
.tracking-id { color: rgba(245, 241, 232, 0.55); }

.card-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.route-point { display: flex; flex-direction: column; gap: 4px; }
.route-point:last-child { text-align: right; }
.point-city {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.point-time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.6);
  text-transform: uppercase;
}
.route-line {
  position: relative;
  height: 2px;
  background: rgba(245, 241, 232, 0.15);
  margin: 0 4px;
}
.line-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 65%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.van {
  position: absolute;
  width: 28px; height: 14px;
  color: var(--gold-300);
  top: -6px;
  left: 65%;
  transform: translateX(-50%);
  animation: vanMove 3s ease-in-out infinite alternate;
}
@keyframes vanMove {
  from { left: 60%; }
  to { left: 70%; }
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px dashed rgba(245, 241, 232, 0.15);
}
.card-meta > div { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
}
.meta-val { font-size: 13px; font-weight: 500; }
.meta-val.gold { color: var(--gold-300); }

/* ============================================================
   TICKER
============================================================ */
.ticker {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 75, 0.15);
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 350;
  font-style: italic;
  letter-spacing: -0.01em;
}
.ticker-track .sep { color: var(--gold-500); font-style: normal; }
@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTIONS
============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 24px;
}
.section-eyebrow.light { color: var(--gold-300); }

.section-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0 0 24px;
}
.section-title.light { color: var(--ivory); }
.section-title em {
  font-style: italic;
  font-weight: 350;
  color: var(--gold-600);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.section-title.light em { color: var(--gold-300); }

.section-lede {
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 580px;
  color: var(--ink-dim);
  line-height: 1.6;
}

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 120px var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10, 24, 56, 0.08);
  border: 1px solid rgba(10, 24, 56, 0.08);
}

.service-card {
  position: relative;
  background: var(--bone);
  padding: 44px 36px 40px;
  transition: background .35s ease, color .35s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.service-card.feature {
  background: var(--navy-800);
  color: var(--ivory);
  grid-column: span 1;
}
.service-card.feature .card-num { color: var(--gold-300); }
.service-card.feature .card-icon { color: var(--gold-300); }
.service-card.feature p { color: rgba(245, 241, 232, 0.7); }
.service-card.feature .card-list { border-color: rgba(245, 241, 232, 0.15); }
.service-card.feature .card-list li { color: rgba(245, 241, 232, 0.85); }

.service-card:not(.feature):hover {
  background: var(--navy-800);
  color: var(--ivory);
}
.service-card:not(.feature):hover .card-num { color: var(--gold-300); }
.service-card:not(.feature):hover .card-icon { color: var(--gold-300); }
.service-card:not(.feature):hover p { color: rgba(245, 241, 232, 0.7); }

.card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  transition: color .35s;
}
.card-icon {
  width: 44px; height: 44px;
  color: var(--navy-700);
  transition: color .35s;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  flex: 1;
  transition: color .35s;
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
.card-list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-list li::before {
  content: "✦ ";
  color: var(--gold-300);
}

/* ============================================================
   WHY US (dark band)
============================================================ */
.why {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 120px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 0%, rgba(201, 162, 75, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 100%, rgba(201, 162, 75, 0.08), transparent 60%);
  pointer-events: none;
}

.why-head {
  max-width: var(--maxw);
  margin: 0 auto 72px;
  position: relative;
  z-index: 1;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pillar {
  padding: 36px 32px;
  border-left: 1px solid rgba(245, 241, 232, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s;
}
.pillar:last-child { border-right: 1px solid rgba(245, 241, 232, 0.12); }
.pillar:hover { background: rgba(201, 162, 75, 0.04); }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--gold-300);
  line-height: 1;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.7);
  margin: 0;
}

/* ============================================================
   COVERAGE
============================================================ */
.coverage {
  padding: 120px var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.coverage-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(10, 24, 56, 0.12);
}
.coverage-bullets > div {
  display: grid;
  grid-template-columns: auto 180px 1fr;
  align-items: center;
  gap: 16px;
  font-size: 14.5px;
}
.coverage-bullets strong {
  font-weight: 500;
  color: var(--navy-900);
}
.coverage-bullets span:last-child {
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.bullet-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.coverage-map {
  position: relative;
  background: var(--navy-900);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 30px 80px -20px rgba(10, 24, 56, 0.4);
}
.us-map { width: 100%; height: auto; }
.us-map .arcs path {
  stroke-dasharray: 4 4;
  animation: routeDash 20s linear infinite;
}
.us-map .hubs circle:nth-child(odd) {
  animation: pulse 2.5s ease-in-out infinite;
}

/* ============================================================
   PROCESS
============================================================ */
.process {
  background: var(--cream);
  padding: 120px var(--pad-x);
}
.process-steps {
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10, 24, 56, 0.15);
}
.process-steps li {
  padding: 36px 28px 0;
  border-right: 1px solid rgba(10, 24, 56, 0.1);
  position: relative;
}
.process-steps li:last-child { border-right: none; }
.process-steps li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-500);
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-600);
}
.process-steps h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 14px 0 12px;
  letter-spacing: -0.015em;
}
.process-steps p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   INDUSTRIES
============================================================ */
.industries {
  padding: 120px var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.industries-head { margin-bottom: 56px; max-width: 720px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10, 24, 56, 0.12);
}
.industry {
  padding: 36px 28px;
  border-bottom: 1px solid rgba(10, 24, 56, 0.12);
  border-right: 1px solid rgba(10, 24, 56, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  transition: all .25s;
  cursor: default;
}
.industry:nth-child(3n) { border-right: none; }
.industry:hover {
  background: var(--navy-900);
  color: var(--ivory);
}
.industry:hover i { color: var(--gold-300); }
.industry span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.industry i {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-style: normal;
}

/* ============================================================
   TESTIMONIAL
============================================================ */
.testimonial {
  padding: 120px var(--pad-x);
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 50% at 0% 50%, rgba(201, 162, 75, 0.08), transparent 60%),
    radial-gradient(ellipse 30% 50% at 100% 50%, rgba(10, 24, 56, 0.04), transparent 60%);
}
.testimonial figure {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.6;
  color: var(--gold-500);
  opacity: .45;
  display: block;
  margin-bottom: -20px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 36px;
}
.testimonial blockquote em {
  font-style: italic;
  color: var(--gold-700);
  font-variation-settings: "SOFT" 100;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial figcaption strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
}
.testimonial figcaption span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================================
   TRACK + QUOTE
============================================================ */
.actions-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 600px;
}
.track-panel {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 100px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.track-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201, 162, 75, 0.12), transparent 60%);
}
.quote-panel {
  background: var(--cream);
  padding: 100px var(--pad-x);
}

.panel-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 16px;
}
.panel-title.light { color: var(--ivory); }
.panel-lede {
  font-size: 15px;
  color: var(--ink-dim);
  margin: 0 0 32px;
  max-width: 460px;
  line-height: 1.6;
}
.panel-lede.light { color: rgba(245, 241, 232, 0.65); }

.track-form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  max-width: 460px;
}
.track-form input {
  flex: 1;
  padding: 16px 18px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.2);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: border-color .2s;
}
.track-form input::placeholder { color: rgba(245, 241, 232, 0.4); }
.track-form input:focus { border-color: var(--gold-500); }
.track-form button { border-radius: 0 var(--radius) var(--radius) 0; }
.track-output {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold-300);
  position: relative;
  z-index: 1;
  min-height: 20px;
}

.quote-form { max-width: 640px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-form label.full { margin-bottom: 24px; }
.quote-form label span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--sans);
  font-size: 14px;
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid rgba(10, 24, 56, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}
.quote-form textarea { resize: vertical; font-family: var(--sans); }
.form-success {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold-700);
  margin: 14px 0 0;
  min-height: 16px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 100px var(--pad-x) 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 162, 75, 0.06), transparent 60%);
  pointer-events: none;
}

.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  position: relative;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo svg { width: 52px; height: 52px; }
.footer-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-top: 2px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 241, 232, 0.75);
  max-width: 320px;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.75);
  margin: 0 0 10px;
  line-height: 1.6;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-300); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 232, 0.5);
}
.footer-domain { color: var(--gold-300); }

/* ============================================================
   RESPONSIVE: LAPTOP (1024 to 1439)
============================================================ */
@media (max-width: 1439px) {
  .hero { gap: 40px; }
  .hero-stats { gap: 20px; }
  .footer-top { gap: 32px; }
}

/* ============================================================
   RESPONSIVE: TABLET (768 to 1023)
============================================================ */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-actions { display: none; }
  .nav.open .nav-actions {
    display: flex;
    position: absolute;
    top: 100%;
    right: var(--pad-x);
    flex-direction: column;
    background: var(--bone);
    padding: 16px;
    border: 1px solid rgba(10, 24, 56, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(10, 24, 56, 0.12);
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bone);
    padding: 24px var(--pad-x);
    gap: 16px;
    border-bottom: 1px solid rgba(10, 24, 56, 0.08);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
    gap: 60px;
  }
  .hero-card { max-width: 460px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.feature { grid-column: span 2; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid rgba(245, 241, 232, 0.12); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3) { border-left: none; }
  .pillar:last-child { border-right: none; }

  .coverage { grid-template-columns: 1fr; gap: 60px; }
  .coverage-bullets > div { grid-template-columns: auto 1fr; }
  .coverage-bullets span:last-child { grid-column: 2; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps li:nth-child(2) { border-right: none; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry:nth-child(3n) { border-right: 1px solid rgba(10, 24, 56, 0.12); }
  .industry:nth-child(2n) { border-right: none; }

  .actions-split { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE: MOBILE (320 to 767)
============================================================ */
@media (max-width: 767px) {
  :root { --pad-x: 20px; }

  .nav { padding: 14px var(--pad-x); }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 8px; }
  .brand-mark { width: 34px; height: 34px; }

  .hero { padding: 100px var(--pad-x) 60px; gap: 40px; }
  .hero-title { font-size: clamp(40px, 11vw, 56px); }
  .hero-eyebrow { font-size: 9.5px; padding: 6px 10px; }
  .hero-cta { gap: 10px; margin-bottom: 40px; }
  .primary-btn, .secondary-btn { padding: 14px 20px; font-size: 13.5px; width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 28px; }
  .stat-num { font-size: 32px; }

  .hero-card { padding: 22px; transform: rotate(0); }
  .point-city { font-size: 30px; }

  .ticker-track { font-size: 18px; gap: 24px; }

  .services, .why, .coverage, .process, .industries, .testimonial,
  .track-panel, .quote-panel, .footer {
    padding: 80px var(--pad-x);
  }

  .service-grid { grid-template-columns: 1fr; }
  .service-card.feature { grid-column: span 1; }
  .service-card { min-height: auto; padding: 32px 24px; }

  .pillars { grid-template-columns: 1fr; }
  .pillar {
    border-left: none;
    border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  }
  .pillar:last-child { border-bottom: none; border-right: none; }

  .coverage-map { padding: 20px; }
  .coverage-bullets > div { grid-template-columns: auto 1fr; }
  .coverage-bullets strong { grid-column: 2; }
  .coverage-bullets span:last-child { grid-column: 2; }

  .process-steps { grid-template-columns: 1fr; }
  .process-steps li {
    border-right: none;
    border-bottom: 1px solid rgba(10, 24, 56, 0.1);
    padding: 32px 0 32px;
  }
  .process-steps li:last-child { border-bottom: none; }

  .industry-grid { grid-template-columns: 1fr; }
  .industry { border-right: none !important; flex-direction: column; align-items: flex-start; gap: 6px; padding: 24px 0; }

  .testimonial blockquote { font-size: 22px; }

  .field-row { grid-template-columns: 1fr; gap: 14px; }
  .track-form { flex-direction: column; }
  .track-form input { border-radius: var(--radius); }
  .track-form button { border-radius: var(--radius); margin-top: 8px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
