/* ═══════════════════════════════════════════════════════════════════
   LYKOS ADVISORY — Premium Advisory Firm
   Aesthetic: Quiet Authority — dark editorial luxury
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0B1220;
  --navy-2: #101A2E;
  --navy-3: #0E1628;
  --gold: #C8A24A;
  --gold-2: #D6B25A;
  --gold-dim: rgba(200, 162, 74, 0.15);
  --gold-glow: rgba(200, 162, 74, 0.08);
  --off: #F5F2EA;
  --off-dim: rgba(245, 242, 234, 0.85);
  --off-muted: rgba(245, 242, 234, 0.65);
  --off-subtle: rgba(245, 242, 234, 0.45);
  --slate: #7A8496;
  --char: #1B2233;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1140px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --border: 1px solid rgba(200, 162, 74, 0.12);
  --border-hover: 1px solid rgba(200, 162, 74, 0.3);
  --glass: rgba(16, 26, 46, 0.45);
  --glass-hover: rgba(16, 26, 46, 0.65);
}

/* ═══════════════ RESET & BASE ═══════════════ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--off);
  background: var(--navy);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 12px 16px;
  background: var(--off);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus {
  left: 16px;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ═══════════════ AMBIENT BACKGROUND ═══════════════ */

#topo-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ═══════════════ HEADER ═══════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(200, 162, 74, 0.1);
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.scrolled {
  background: rgba(11, 18, 32, 0.95);
  border-bottom-color: rgba(200, 162, 74, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.mark {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: transform 400ms var(--ease-out);
}

.brand:hover .mark {
  transform: scale(1.08);
}

.brand-type {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-sub {
  color: var(--off-muted);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: var(--off-dim);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 200ms ease, background 200ms ease;
  position: relative;
}

.site-nav a:hover {
  color: var(--off);
  background: rgba(200, 162, 74, 0.06);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-cta {
  color: var(--navy) !important;
  background: var(--gold) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  margin-left: 8px;
  transition: background 200ms ease, transform 200ms ease !important;
}

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

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(200, 162, 74, 0.2);
  background: transparent;
  color: var(--off-dim);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle-icon {
  width: 18px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-icon span {
  display: block;
  height: 1.5px;
  background: var(--off-dim);
  border-radius: 1px;
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(200, 162, 74, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(16, 26, 46, 0.6) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(200, 162, 74, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200, 162, 74, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(0,0,0,0.6), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUp 800ms var(--ease-out) 200ms forwards;
}

.kicker-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeSlideUp 900ms var(--ease-out) 350ms forwards;
}

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

.subhead {
  margin: 28px 0 36px;
  color: var(--off-dim);
  font-size: 18px;
  line-height: 1.7;
  max-width: 56ch;
  opacity: 0;
  animation: fadeSlideUp 800ms var(--ease-out) 500ms forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 800ms var(--ease-out) 650ms forwards;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--navy), transparent);
  pointer-events: none;
}

/* ═══════════════ HERO VISUAL ═══════════════ */

.hero-visual {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeSlideUp 1000ms var(--ease-out) 500ms forwards;
}

.signal-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 40px 0;
}

.signal-card {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 16px;
  transition: border-color 400ms ease, transform 400ms var(--ease-out), background 400ms ease;
}

.signal-card:last-of-type { margin-bottom: 0; }

.signal-card:hover {
  border-color: rgba(200, 162, 74, 0.28);
  background: var(--glass-hover);
  transform: translateX(6px);
}

.signal-card-1 { animation: signalEnter 700ms var(--ease-out) 700ms both; }
.signal-card-2 { animation: signalEnter 700ms var(--ease-out) 850ms both; }
.signal-card-3 { animation: signalEnter 700ms var(--ease-out) 1000ms both; }

.signal-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.signal-desc {
  display: block;
  font-size: 14px;
  color: var(--off-dim);
  line-height: 1.5;
}

.signal-connectors {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

.connector-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 1500ms var(--ease-in-out) 1200ms forwards;
}

.connector-dot {
  opacity: 0;
  animation: dotAppear 400ms ease 2200ms forwards;
}

/* ═══════════════ BUTTONS ═══════════════ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 280ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button.primary {
  background: var(--gold);
  color: var(--navy);
}

.button.primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 162, 74, 0.2);
}

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

.button.secondary {
  color: var(--off-dim);
  border-color: rgba(200, 162, 74, 0.25);
  background: transparent;
}

.button.secondary:hover {
  color: var(--off);
  border-color: rgba(200, 162, 74, 0.45);
  background: rgba(200, 162, 74, 0.06);
}

.button.large {
  padding: 18px 36px;
  font-size: 15px;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 280ms var(--ease-out);
}

.button:hover .btn-arrow {
  transform: translateX(4px);
}

/* ═══════════════ SECTIONS ═══════════════ */

.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-alt {
  background: rgba(16, 26, 46, 0.35);
  border-top: var(--border);
  border-bottom: var(--border);
}

.section-head {
  margin-bottom: 56px;
  max-width: 640px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-head h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--off-dim);
  font-size: 18px;
  line-height: 1.7;
  max-width: 60ch;
}

/* ═══════════════ PILLARS (THE FULL PICTURE) ═══════════════ */

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

.pillar {
  position: relative;
  padding: 36px 32px 32px;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  transition: border-color 400ms ease, transform 400ms var(--ease-out), box-shadow 400ms ease;
}

.pillar:hover {
  border-color: rgba(200, 162, 74, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(200, 162, 74, 0.08);
}

.pillar-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(200, 162, 74, 0.08);
  line-height: 1;
  pointer-events: none;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.pillar > p {
  color: var(--off-dim);
  margin-bottom: 20px;
  font-size: 15px;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-list li {
  font-size: 14px;
  color: var(--off-muted);
  padding-left: 20px;
  position: relative;
}

.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ═══════════════ INDUSTRY GRID ═══════════════ */

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

.industry {
  padding: 28px 24px 24px;
  border: var(--border);
  border-radius: var(--radius);
  background: rgba(11, 18, 32, 0.3);
  transition: all 400ms var(--ease-out);
}

.industry:hover {
  border-color: rgba(200, 162, 74, 0.25);
  background: var(--glass);
  transform: translateY(-3px);
}

.industry-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  padding: 6px;
  border: 1px solid rgba(200, 162, 74, 0.18);
  border-radius: 10px;
  background: rgba(200, 162, 74, 0.04);
  transition: border-color 300ms ease, background 300ms ease;
}

.industry:hover .industry-icon {
  border-color: rgba(200, 162, 74, 0.3);
  background: rgba(200, 162, 74, 0.08);
}

.industry-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.industry p {
  font-size: 14px;
  color: var(--off-muted);
  line-height: 1.6;
}

/* ═══════════════ SERVICES ═══════════════ */

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

.service-card {
  padding: 36px 32px 32px;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  transition: all 400ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 74, 0.3), transparent);
  opacity: 0;
  transition: opacity 400ms ease;
}

.service-card:hover {
  border-color: rgba(200, 162, 74, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.service-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin-top: 4px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 26px;
  font-weight: 500;
}

.service-card > p {
  color: var(--off-dim);
  font-size: 15px;
  margin-bottom: 8px;
}

.service-price {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 300ms ease;
}

.service-card:hover .service-price {
  opacity: 1;
}

/* ═══════════════ PROCESS ═══════════════ */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: stretch;
  min-height: 120px;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 48px;
  padding-top: 4px;
}

.step-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 162, 74, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(200, 162, 74, 0.04);
  transition: all 400ms var(--ease-out);
}

.process-step:hover .step-num {
  border-color: rgba(200, 162, 74, 0.5);
  background: rgba(200, 162, 74, 0.1);
}

.step-line {
  display: block;
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(200, 162, 74, 0.25), rgba(200, 162, 74, 0.05));
  margin: 8px 0;
}

.step-content {
  padding: 12px 0 40px;
  flex: 1;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--off-dim);
  font-size: 16px;
  max-width: 52ch;
}

/* ═══════════════ CREDIBILITY ═══════════════ */

.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cred-panel {
  padding: 36px 32px 32px;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  transition: border-color 400ms ease;
}

.cred-panel:hover {
  border-color: rgba(200, 162, 74, 0.22);
}

.cred-panel h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cred-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--off-dim);
}

.cred-check {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--gold);
}

.cred-selective {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 162, 74, 0.12);
  font-size: 14px;
  color: var(--off-muted);
  font-style: italic;
}

.cred-outcomes {
  margin-top: 48px;
}

.cred-outcomes h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--off-white);
}

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

.outcome {
  padding: 28px 24px;
  border: 1px solid rgba(200, 162, 74, 0.12);
  border-radius: var(--radius);
  background: var(--glass);
}

.outcome-metric {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.outcome p {
  font-size: 14px;
  color: var(--off-dim);
  line-height: 1.6;
}

.outcomes-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--off-subtle);
  font-style: italic;
}

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

/* ═══════════════ CTA ═══════════════ */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200, 162, 74, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 56px;
  border: 1px solid rgba(200, 162, 74, 0.18);
  border-radius: var(--radius-lg);
  background: var(--glass);
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200, 162, 74, 0.35) 50%, transparent 90%);
}

.cta-copy .section-label {
  margin-bottom: 12px;
}

.cta-copy h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 12px;
}

.cta-copy p {
  color: var(--off-dim);
  font-size: 16px;
  max-width: 48ch;
}

.cta-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-fine {
  font-size: 12px;
  color: var(--off-subtle);
  max-width: 36ch;
  line-height: 1.5;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  color: var(--off-muted);
}

/* ═══════════════ FOOTER ═══════════════ */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.brand-name-footer {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.brand-sub-footer {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-subtle);
  margin-top: 2px;
}

.footer-email {
  margin: 0;
}

.footer-meta {
  margin: 0;
  color: var(--off-subtle);
  font-size: 13px;
}

/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 120ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signalEnter {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dotAppear {
  to {
    opacity: 0.6;
  }
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

  .cta-block {
    flex-direction: column;
    align-items: stretch;
    padding: 36px 32px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
  }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(11, 18, 32, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 162, 74, 0.15);
  }

  .site-nav a {
    padding: 14px 12px;
    font-size: 15px;
    border-radius: var(--radius-sm);
  }

  .site-nav.is-open { display: flex; }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry {
    padding: 20px;
  }

  .process-step {
    gap: 20px;
  }

  .step-marker { flex: 0 0 40px; }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 34px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .pillar, .service-card, .cred-panel {
    padding: 28px 24px 24px;
  }

  .pillar h3, .service-card h3 {
    font-size: 24px;
  }

  .cta-block {
    padding: 28px 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
