/* ============================================================
   AAA Operations Consulting — styles.css
   Premium static site stylesheet
   ============================================================ */

/* Google Fonts — Cormorant Garamond (display) + Jost (body) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Core Palette */
  --navy-900: #080F1A;
  --navy-800: #0D1B2A;
  --navy-700: #122236;
  --navy-600: #1A2E45;
  --navy-500: #254160;

  --gold-500: #C49A3C;
  --gold-400: #D4AE5A;
  --gold-300: #E2C47A;
  --gold-100: #F5EDD7;

  --cream-50:  #FDFAF5;
  --cream-100: #F8F3EB;
  --cream-200: #EFE8D8;
  --cream-300: #E2D8C5;

  --slate-100: #E8ECF0;
  --slate-200: #CDD5DD;
  --slate-400: #8A98A6;
  --slate-600: #556070;
  --slate-800: #2C3844;

  --white: #FFFFFF;
  --black: #040A12;

  /* Semantic Colors */
  --color-bg:           var(--cream-50);
  --color-bg-alt:       var(--cream-100);
  --color-bg-dark:      var(--navy-800);
  --color-surface:      var(--white);
  --color-surface-dark: var(--navy-700);

  --color-text:         var(--navy-900);
  --color-text-muted:   var(--slate-600);
  --color-text-light:   var(--slate-400);
  --color-text-inverse: var(--cream-100);

  --color-accent:       var(--gold-500);
  --color-accent-light: var(--gold-400);
  --color-border:       var(--cream-300);
  --color-border-dark:  var(--navy-600);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;
  --text-8xl:  6rem;

  --leading-tight:  1.15;
  --leading-snug:   1.3;
  --leading-normal: 1.6;
  --leading-relaxed:1.75;

  --tracking-tight:  -0.03em;
  --tracking-snug:   -0.01em;
  --tracking-normal:  0em;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.12em;
  --tracking-widest:  0.2em;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* Sizing */
  --max-w-xs:  20rem;
  --max-w-sm:  24rem;
  --max-w-md:  28rem;
  --max-w-lg:  32rem;
  --max-w-xl:  36rem;
  --max-w-2xl: 42rem;
  --max-w-3xl: 48rem;
  --max-w-4xl: 56rem;
  --max-w-5xl: 64rem;
  --max-w-6xl: 72rem;
  --max-w-7xl: 80rem;

  /* Borders & Radius */
  --radius-sm:   2px;
  --radius-base: 4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(8,15,26,0.06), 0 1px 2px rgba(8,15,26,0.04);
  --shadow-md:  0 4px 16px rgba(8,15,26,0.08), 0 2px 6px rgba(8,15,26,0.05);
  --shadow-lg:  0 12px 40px rgba(8,15,26,0.12), 0 4px 16px rgba(8,15,26,0.07);
  --shadow-xl:  0 24px 64px rgba(8,15,26,0.15), 0 8px 24px rgba(8,15,26,0.08);
  --shadow-gold: 0 4px 24px rgba(196,154,60,0.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   400ms;
  --duration-slower: 600ms;

  /* Layout */
  --header-h: 80px;
  --container-pad: var(--space-6);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ============================================================
   FOCUS STATES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-base);
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.font-display   { font-family: var(--font-display); }
.font-body      { font-family: var(--font-body); }

.text-xs        { font-size: var(--text-xs); }
.text-sm        { font-size: var(--text-sm); }
.text-base      { font-size: var(--text-base); }
.text-lg        { font-size: var(--text-lg); }
.text-xl        { font-size: var(--text-xl); }
.text-2xl       { font-size: var(--text-2xl); }
.text-3xl       { font-size: var(--text-3xl); }
.text-4xl       { font-size: var(--text-4xl); }
.text-5xl       { font-size: var(--text-5xl); }
.text-6xl       { font-size: var(--text-6xl); }

.weight-300     { font-weight: 300; }
.weight-400     { font-weight: 400; }
.weight-500     { font-weight: 500; }
.weight-600     { font-weight: 600; }
.weight-700     { font-weight: 700; }

.tracking-wide   { letter-spacing: var(--tracking-wide); }
.tracking-wider  { letter-spacing: var(--tracking-wider); }
.tracking-widest { letter-spacing: var(--tracking-widest); }
.tracking-tight  { letter-spacing: var(--tracking-tight); }

.leading-tight   { line-height: var(--leading-tight); }
.leading-snug    { line-height: var(--leading-snug); }
.leading-normal  { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }

.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }

.text-muted    { color: var(--color-text-muted); }
.text-light    { color: var(--color-text-light); }
.text-inverse  { color: var(--color-text-inverse); }
.text-accent   { color: var(--color-accent); }
.text-uppercase{ text-transform: uppercase; }
.text-italic   { font-style: italic; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
}

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

/* Section headings */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

.section-title--light {
  color: var(--color-text-inverse);
}

.section-body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  max-width: 60ch;
}

.section-body--light {
  color: rgba(248,243,235,0.75);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w-7xl);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: var(--max-w-4xl);
}

.container--wide {
  max-width: 90rem;
}

.section {
  padding-block: var(--space-24);
}

.section--sm {
  padding-block: var(--space-16);
}

.section--lg {
  padding-block: var(--space-32);
}

.section--dark {
  background-color: var(--navy-800);
}

.section--alt {
  background-color: var(--cream-100);
}

.section--navy {
  background-color: var(--navy-900);
}

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(8,15,26,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,154,60,0.12);
  transition: background var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(8,15,26,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--cream-100);
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(248,243,235,0.7);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-base);
  transition: color var(--duration-fast), background var(--duration-fast);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--gold-400);
  background: rgba(196,154,60,0.08);
}

/* CTA in nav */
.nav-cta {
  margin-left: var(--space-4);
  padding: var(--space-2) var(--space-5);
  background: var(--gold-500);
  color: var(--navy-900) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  border-radius: var(--radius-base);
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.nav-cta:hover {
  background: var(--gold-400) !important;
  color: var(--navy-900) !important;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-base);
  transition: background var(--duration-fast);
}

.nav-toggle:hover {
  background: rgba(196,154,60,0.1);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream-200);
  border-radius: var(--radius-full);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base),
              width var(--duration-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(196,154,60,0.15);
  z-index: 99;
  padding: var(--space-6) var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(248,243,235,0.75);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-base);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,154,60,0.08);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link[aria-current="page"] {
  color: var(--gold-400);
  background: rgba(196,154,60,0.06);
}

.mobile-nav-cta {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-base);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--duration-fast);
}

.btn:hover::after {
  background: rgba(255,255,255,0.06);
}

/* Primary Button */
.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn--primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn--secondary {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-600);
}

.btn--secondary:hover {
  background: var(--navy-800);
  color: var(--cream-100);
  border-color: var(--navy-800);
  transform: translateY(-2px);
}

/* Ghost (light, for dark backgrounds) */
.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(248,243,235,0.3);
}

.btn--ghost:hover {
  background: rgba(248,243,235,0.08);
  border-color: rgba(248,243,235,0.5);
  transform: translateY(-2px);
}

/* Gold outline */
.btn--gold-outline {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--gold-500);
}

.btn--gold-outline:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

.btn--sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-xs);
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              border-color var(--duration-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(196,154,60,0.2);
}

.card--dark {
  background: var(--navy-700);
  border-color: var(--navy-600);
  color: var(--cream-100);
}

.card--dark:hover {
  border-color: rgba(196,154,60,0.3);
  background: var(--navy-600);
}

.card--flat {
  box-shadow: none;
}

.card--flat:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

/* Service card */
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold-500);
  transition: height var(--duration-slow) var(--ease-out);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(196,154,60,0.25);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: background var(--duration-base);
}

.service-card:hover .service-icon {
  background: var(--gold-500);
}

.service-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  transition: color var(--duration-base);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.service-card-body {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

/* Process step card */
.step-card {
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--navy-700);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: background var(--duration-base), border-color var(--duration-base);
}

.step-card:hover {
  background: var(--navy-600);
  border-color: rgba(196,154,60,0.3);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: rgba(196,154,60,0.15);
  line-height: 1;
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  transition: color var(--duration-base);
}

.step-card:hover .step-number {
  color: rgba(196,154,60,0.25);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: var(--space-4);
}

.step-body {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(248,243,235,0.65);
}

/* Stat / result card */
.stat-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border-top: 3px solid var(--gold-500);
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(248,243,235,0.65);
  line-height: var(--leading-relaxed);
}

/* Industry card */
.industry-card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  transition: all var(--duration-base) var(--ease-out);
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(196,154,60,0.25);
}

.industry-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-400);
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid var(--cream-300);
  padding-block: var(--space-6);
}

.faq-question {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.faq-answer {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

/* Homepage hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,154,60,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(18,34,54,0.8) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, #0A1420 50%, #050C14 100%);
}

/* Grid texture overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-4xl);
  padding-block: var(--space-32);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-8xl));
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--cream-100);
  margin-bottom: var(--space-8);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  line-height: var(--leading-relaxed);
  color: rgba(239,232,216,0.7);
  max-width: 52ch;
  margin-bottom: var(--space-12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  margin-bottom: var(--space-8);
}

/* Page Hero (interior pages) */
.page-hero {
  position: relative;
  background: var(--navy-900);
  padding-top: calc(var(--header-h) + var(--space-20));
  padding-bottom: var(--space-20);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,154,60,0.07) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, #060D18 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.6;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--cream-100);
  margin-bottom: var(--space-6);
}

.page-hero-sub {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: rgba(239,232,216,0.65);
  max-width: 52ch;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: rgba(239,232,216,0.45);
}

.page-hero-breadcrumb a {
  color: var(--gold-400);
  transition: color var(--duration-fast);
}

.page-hero-breadcrumb a:hover {
  color: var(--gold-300);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-700);
  border-top: 1px solid rgba(196,154,60,0.1);
  border-bottom: 1px solid rgba(196,154,60,0.1);
  padding-block: var(--space-5);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  text-align: center;
}

.trust-bar-text {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(248,243,235,0.55);
  text-transform: uppercase;
}

.trust-divider {
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
  opacity: 0.6;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

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

.divider-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(196,154,60,0.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: var(--max-w-3xl);
  margin-inline: auto;
}

.cta-gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-500);
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* ============================================================
   CONTACT INFO BLOCKS
   ============================================================ */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.contact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-400);
}

.contact-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--cream-100);
  line-height: var(--leading-snug);
}

.contact-value a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast);
}

.contact-value a:hover {
  color: var(--gold-400);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(196,154,60,0.12);
}

.footer-top {
  padding-block: var(--space-20);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer-brand {}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--cream-100);
  margin-bottom: var(--space-2);
}

.footer-logo-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-6);
}

.footer-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(248,243,235,0.45);
  max-width: 28ch;
  margin-bottom: var(--space-8);
}

.footer-contact-link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(248,243,235,0.55);
  text-decoration: none;
  transition: color var(--duration-fast);
  padding-block: var(--space-1);
}

.footer-contact-link:hover {
  color: var(--gold-400);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-6);
}

.footer-nav-link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(248,243,235,0.5);
  text-decoration: none;
  padding-block: var(--space-2);
  transition: color var(--duration-fast);
}

.footer-nav-link:hover {
  color: var(--cream-200);
}

.footer-bottom {
  border-top: 1px solid rgba(248,243,235,0.06);
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(248,243,235,0.3);
  letter-spacing: 0.04em;
}

.footer-legal-links {
  display: flex;
  gap: var(--space-6);
}

.footer-legal-link {
  font-size: var(--text-xs);
  color: rgba(248,243,235,0.3);
  text-decoration: none;
  transition: color var(--duration-fast);
  letter-spacing: 0.04em;
}

.footer-legal-link:hover {
  color: rgba(248,243,235,0.55);
}

.footer-gold-bar {
  width: 32px;
  height: 2px;
  background: var(--gold-500);
  margin-bottom: var(--space-6);
}

/* ============================================================
   SECTION-SPECIFIC STYLES
   ============================================================ */

/* About preview on home */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-split-visual {
  position: relative;
  height: 480px;
  background: var(--navy-700);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-split-visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
}

.about-split-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-visual-text {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
}

.about-visual-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--gold-300);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
}

.about-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(196,154,60,0.15);
  border: 1px solid rgba(196,154,60,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* Mission block */
.mission-block {
  background: var(--navy-700);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-10) var(--space-12);
}

.mission-text {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  font-weight: 500;
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--cream-100);
}

/* Services group heading */
.group-heading {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.group-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.group-badge--logistics {
  background: rgba(196,154,60,0.12);
  color: var(--gold-500);
  border: 1px solid rgba(196,154,60,0.2);
}

.group-badge--consulting {
  background: rgba(13,27,42,0.08);
  color: var(--navy-600);
  border: 1px solid rgba(13,27,42,0.15);
}

/* Results */
.results-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: rgba(248,243,235,0.04);
  border: 1px solid rgba(248,243,235,0.08);
  border-radius: var(--radius-md);
  transition: background var(--duration-base), border-color var(--duration-base);
}

.result-item:hover {
  background: rgba(196,154,60,0.06);
  border-color: rgba(196,154,60,0.2);
}

.result-check {
  width: 24px;
  height: 24px;
  background: rgba(196,154,60,0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.result-check svg {
  width: 12px;
  height: 12px;
  color: var(--gold-400);
}

.result-text {
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(248,243,235,0.8);
  line-height: var(--leading-snug);
}

/* Execution + Strategy split */
.execution-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.execution-col {
  padding: var(--space-16) var(--space-12);
}

.execution-col--left {
  background: var(--navy-800);
  border-right: 1px solid rgba(196,154,60,0.12);
}

.execution-col--right {
  background: var(--navy-700);
}

/* Contact page */
.contact-card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
}

.contact-method:hover {
  border-color: var(--gold-400);
  background: var(--gold-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-400);
}

.contact-method-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-method-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1;
}

/* Legal pages */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--navy-800);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

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

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.error-page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(196,154,60,0.08);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mb-2  { margin-bottom: var(--space-2); }
.mb-3  { margin-bottom: var(--space-3); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-5  { margin-bottom: var(--space-5); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.pt-header { padding-top: var(--header-h); }

.w-full { width: 100%; }

/* Horizontal gold rule */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500) 0%, transparent 100%);
  margin-block: var(--space-8);
  width: 60px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up {
  animation: fadeUp var(--duration-slower) var(--ease-out) both;
}

.animate-fade-up--delay-1 { animation-delay: 100ms; }
.animate-fade-up--delay-2 { animation-delay: 200ms; }
.animate-fade-up--delay-3 { animation-delay: 320ms; }
.animate-fade-up--delay-4 { animation-delay: 450ms; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --container-pad: var(--space-8);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about-split-visual {
    height: 340px;
  }

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

  .execution-col--left {
    border-right: none;
    border-bottom: 1px solid rgba(196,154,60,0.12);
  }

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

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
    --container-pad: var(--space-5);
  }

  .primary-nav { display: none; }
  .nav-toggle  { display: flex; }

  .section     { padding-block: var(--space-16); }
  .section--lg { padding-block: var(--space-20); }

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

  .hero-content {
    padding-block: var(--space-20);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .mission-block {
    padding: var(--space-8);
  }

  .execution-col {
    padding: var(--space-10) var(--space-6);
  }

  .contact-card {
    padding: var(--space-8) var(--space-6);
  }

  .group-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-card {
    padding: var(--space-8) var(--space-4);
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: var(--space-4);
  }

  .service-card, .card {
    padding: var(--space-6);
  }

  .page-hero {
    padding-top: calc(var(--header-h) + var(--space-12));
    padding-bottom: var(--space-12);
  }
}
