/* ============================================================
   PRESCIENT AG — Stylesheet
   Colors: Deep Navy #0B1628 · Gold/Melange #C4A35A · Sand #E8D5A3
   ============================================================ */

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

:root {
  --navy:        #0B1628;
  --navy-mid:    #12213A;
  --navy-light:  #1A2E4A;
  --gold:        #C4A35A;
  --gold-light:  #D9BC80;
  --gold-dim:    rgba(196, 163, 90, 0.15);
  --sand:        #E8D5A3;
  --spice:       #B8892A;     /* deeper melange amber */
  --white:       #F5F3EE;
  --muted:       rgba(245, 243, 238, 0.55);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --section-pad:   8rem 0;
  --container-max: 1160px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

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

strong {
  font-weight: 500;
  color: var(--gold-light);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.75; }

p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ---- LAYOUT ---- */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow { max-width: 800px; }

.section { padding: var(--section-pad); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--white);
}

/* ---- DUNE EPIGRAPHS ---- */

/* Hero variant — appears before the h1 */
.hero-epigraph {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(196, 163, 90, 0.55);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

/* Section variant — after section-title */
.section-epigraph {
  margin-bottom: 3rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(196, 163, 90, 0.3);
}

.section-epigraph p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(196, 163, 90, 0.6);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.section-epigraph--left {
  margin-bottom: 2rem;
}

.epigraph-attr {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(196, 163, 90, 0.4);
  text-transform: none;
  margin-top: 0.35rem;
}

.epigraph-attr em {
  font-style: italic;
  color: rgba(196, 163, 90, 0.45);
}

/* ---- BUTTON ---- */

.btn-primary {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(196, 163, 90, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  opacity: 1;
  box-shadow: 0 0 30px rgba(196, 163, 90, 0.25);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(11, 22, 40, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-dim);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(196,163,90,0.25));
  transition: opacity var(--transition);
  opacity: 0.95;
}

.nav-logo:hover .nav-logo-img { opacity: 0.7; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Starfield canvas — full-screen hero overlay */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}


/* ---- Globe canvas ---- */
.globe-canvas {
  position: absolute;
  z-index: 2;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 55vw);
  aspect-ratio: 1;
  pointer-events: auto;
  cursor: crosshair;
  will-change: transform;
}

/* ---- Hero content (parallax target) ---- */
.hero-content {
  will-change: transform;
}

/* ---- Back-to-top button ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11, 22, 40, 0.85);
  border: 1px solid rgba(196, 163, 90, 0.35);
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Hero orbital rings ---- */
.hero-rings {
  position: absolute;
  z-index: 2;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 55vw);
  aspect-ratio: 1;
  pointer-events: none;
}

.ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 100%; height: 100%;
  border: 1px solid transparent;
  border-top-color:    rgba(196, 163, 90, 0.30);
  border-right-color:  rgba(196, 163, 90, 0.10);
  border-bottom-color: rgba(196, 163, 90, 0.04);
  border-left-color:   rgba(196, 163, 90, 0.10);
  animation: ring-spin 70s linear infinite;
}

.ring-2 {
  width: 74%; height: 74%;
  border: 1px solid transparent;
  border-top-color:    rgba(196, 163, 90, 0.06);
  border-right-color:  rgba(196, 163, 90, 0.22);
  border-bottom-color: rgba(196, 163, 90, 0.10);
  border-left-color:   rgba(196, 163, 90, 0.04);
  animation: ring-spin 45s linear infinite reverse;
}

.ring-3 {
  width: 50%; height: 50%;
  border: 1px solid transparent;
  border-top-color:    rgba(196, 163, 90, 0.18);
  border-right-color:  rgba(196, 163, 90, 0.05);
  border-bottom-color: rgba(196, 163, 90, 0.22);
  border-left-color:   rgba(196, 163, 90, 0.08);
  animation: ring-spin 30s linear infinite;
}

.ring-4 {
  width: 26%; height: 26%;
  border: 1px solid rgba(196, 163, 90, 0.20);
  animation: ring-spin 18s linear infinite reverse;
}

@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 72% 38%, rgba(184, 137, 42, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(11, 22, 40, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(11, 22, 40, 0.25) 0%, transparent 100%);
}


.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 9rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 300;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(196, 163, 90, 0.7), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.9) translateY(0); }
  50%       { opacity: 1;   transform: scaleY(1.1) translateY(4px); }
}

/* ============================================================
   WAVE DIVIDERS  (sand dune shapes)
   ============================================================ */

.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px; /* close any rendering gap */
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* The wave's fill colour is set inline on the path,
   but the *background* of the divider element must match
   the section it sits ON TOP of: */
.wave-divider--to-mid  { background: var(--navy); }
.wave-divider--to-dark { background: var(--navy-mid); }

/* ============================================================
   VISION
   ============================================================ */

.vision {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

/* Ghost watermark word */
.vision::before {
  content: 'PRESCIENCE';
  position: absolute;
  right: -2%;
  bottom: -0.15em;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 163, 90, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.vision-body p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

.vision-accent {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.accent-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 163, 90, 0.35), transparent);
}

.accent-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  text-align: center;
  max-width: 580px;
  flex-shrink: 0;
  line-height: 1.65;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */

.philosophy {
  background: var(--navy);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem 2.5rem;
  margin-top: 3rem;
}

.pillar {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  transition: border-color var(--transition);
}

.pillar:hover {
  border-color: rgba(196, 163, 90, 0.65);
}

.pillar:hover .pillar-title {
  color: var(--gold-light);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.65;
}

.pillar-title {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.pillar-text { font-size: 0.875rem; }

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  background: var(--navy);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(196,163,90,0.10);
  border-bottom: 1px solid rgba(196,163,90,0.10);
}

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

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  font-family: 'Playfair Display', var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 0.6em;
  color: rgba(196,163,90,0.7);
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 3.5rem;
  background: rgba(196,163,90,0.18);
  flex-shrink: 0;
  margin: 0 2rem;
}

/* ============================================================
   MANIFESTO BAND
   ============================================================ */

.manifesto-band {
  background: var(--navy);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle radial glow behind the text */
.manifesto-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%,
    rgba(196, 163, 90, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.manifesto-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.5;
  color: var(--white);
  letter-spacing: 0.01em;
  /* override the global p color */
  color: rgba(245, 243, 238, 0.88);
}

.manifesto-attr {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

/* ============================================================
   SPICE DIVIDER  (logo + "The spice must flow" Easter egg)
   ============================================================ */

.divider-spice {
  background: var(--navy);
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.divider-spice-lines {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 760px;
  padding: 0 2rem;
}

.divider-spice-lines span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 163, 90, 0.4), transparent);
}

.divider-logo-img {
  height: 60px;
  width: auto;
  /* invert to white, then shift to gold */
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(0.88);
  opacity: 0.55;
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.divider-spice:hover .divider-logo-img {
  opacity: 0.9;
  filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(8deg) brightness(1);
  transform: scale(1.04);
}

.divider-spice-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: rgba(196, 163, 90, 0.45);
  text-transform: none;
  transition: color 0.4s ease;
}

.divider-spice:hover .divider-spice-text {
  color: rgba(196, 163, 90, 0.78);
}

/* ============================================================
   SCOPE
   ============================================================ */

.scope { background: var(--navy-mid); }

.scope-intro {
  margin-bottom: 3.5rem;
  max-width: 640px;
}

.scope-description {
  font-size: 1rem;
  line-height: 1.85;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.scope-item {
  padding: 2.5rem;
  border-right: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.scope-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  opacity: 0.4;
  transition: width 0.5s ease;
}

.scope-item:hover { background: rgba(196, 163, 90, 0.04); }
.scope-item:hover::after { width: 100%; }

.scope-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.scope-item:hover .scope-icon { opacity: 1; }

.scope-icon svg { width: 100%; height: 100%; }

.scope-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.scope-item p {
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ============================================================
   IDENTITY
   ============================================================ */

.identity { background: var(--navy); }

.identity-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.identity-text p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.identity-attributes {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: center;
}

.attribute {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gold-dim);
  transition: padding-left var(--transition);
}

.attribute:first-child { border-top: 1px solid var(--gold-dim); }
.attribute:hover { padding-left: 0.5rem; }

.attribute-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  opacity: 0.7;
}

.attribute-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact { background: var(--navy-mid); }

.contact-inner { text-align: center; }

.contact-inner .section-label,
.contact-inner .section-title { text-align: center; }

.contact-description {
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}

/* ============================================================
   DIGITAL MARKETS
   ============================================================ */

.digital-markets {
  background: var(--navy);
}

.digital-intro {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.digital-description {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(196,163,90,0.10);
  border: 1px solid rgba(196,163,90,0.10);
}

.digital-item {
  background: var(--navy);
  padding: 2.5rem;
  transition: background var(--transition);
}

.digital-item:hover {
  background: rgba(196,163,90,0.04);
}

.digital-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.digital-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.digital-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   CONTACT (redesigned)
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-title {
  text-align: left;
}

.contact-description {
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.contact-email-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(196,163,90,0.3);
  padding-bottom: 0.3rem;
  transition: border-color var(--transition), gap var(--transition);
}

.contact-email-cta:hover {
  border-color: var(--gold);
  gap: 1.1rem;
  opacity: 1;
}

.contact-arrow {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: transform var(--transition);
}

.contact-email-cta:hover .contact-arrow {
  transform: translateX(4px);
}

.contact-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(196,163,90,0.12);
  border: 1px solid rgba(196,163,90,0.12);
}

.contact-card {
  background: var(--navy-mid);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.contact-card-value {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy);
  border-top: 1px solid var(--gold-dim);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

.footer-meta { text-align: center; }

.footer-company {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(245, 243, 238, 0.28);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(196, 163, 90, 0.45);
  text-align: right;
  line-height: 1.65;
}

/* The subtle Dune line at the very bottom */
.footer-dune-line {
  border-top: 1px solid rgba(196, 163, 90, 0.07);
  padding: 1rem 2rem;
  text-align: center;
}

.footer-dune-line span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(196, 163, 90, 0.2);
  letter-spacing: 0.08em;
}

/* ============================================================
   ANIMATIONS — fade in on scroll
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SPICE GLOW — applied on hover to gold accents
   ============================================================ */

.pillar:hover .pillar-number {
  text-shadow: 0 0 12px rgba(196, 163, 90, 0.5);
}

.nav-links a:hover {
  text-shadow: 0 0 10px rgba(196, 163, 90, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  :root { --section-pad: 5rem 0; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.15em; }

  .nav-toggle {
    display: flex;
    z-index: 101;
    position: relative;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-epigraph { display: none; }
  .hero-rings  { display: none; }
  .globe-canvas {
    right: auto;
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
    width: min(300px, 88vw);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    cursor: default;
  }
  .manifesto-band { padding: 4rem 2rem; }

  .vision-accent { flex-direction: column; gap: 1.5rem; }
  .accent-line { width: 100%; height: 1px; }

  .identity-split { grid-template-columns: 1fr; gap: 3rem; }

  .stats-inner { flex-direction: column; gap: 2.5rem; }
  .stat-divider { width: 4rem; height: 1px; margin: 0; }

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

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-left .section-title { text-align: left; }
  .contact-right { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-tagline { text-align: center; }

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

  .wave-divider { display: none; } /* simplify on mobile */
}

@media (max-width: 500px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-bg::after { display: none; }
}
