/* Coastal Key Foundation Design Tokens - Aligned to https://coastalkey-qpppx8pg.manus.space */
/* Master Deployment aesthetic: Luxury AI-driven enterprise OS */

:root {
  /* Typography - Exact from foundation */
  --font-display: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-script: "Pinyon Script", cursive;

  /* Core Colors - Royal Navy dark blue for all former white space, fading to existing black. Gold matched to Private Client Sovereign Fleet / live build premium theme. */
  --color-navy: #0A1428;
  --color-deep-navy: #06101F;
  --color-royal-navy: #0A1428;
  --color-gold: #C9A227;
  --color-deep-gold: #A88A52;
  --color-sand: #D2C4A0;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: rgba(201, 162, 39, 0.25);
  --color-card-bg: #16203A;
  --color-light-text: #E8E4D9;
  --color-subtle-text: #8B9BB0;

  /* Foundation-inspired spacing and effects */
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --shadow-lux: 0 25px 50px -12px rgb(0 0 0 / 0.4);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-lux: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

  /* Ultra-luxury additions for masterpiece redesign */
  --modal-bg: rgba(6, 16, 31, 0.98);
  --video-linger-bg: rgba(19, 34, 56, 0.95);
  --gold-glow: 0 0 20px rgba(197, 164, 110, 0.3);
  --glass: rgba(255,255,255,0.03);
  --text-subtle: #8B9BB0;

  /* Typography scale from foundation */
  --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;
}

body, .foundation-body {
  font-family: var(--font-sans);
  background: #0A1428;
  color: #E8E4D9;
}

h1, h2, .display, .master-brief {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

code, .mono, pre {
  font-family: var(--font-mono);
}

/* Luxury card and section styling matching Master Deployment */
.foundation-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lux);
  transition: var(--transition);
}

.foundation-section {
  padding: 4rem 1.5rem;
  background: #0A1428;
  color: #E8E4D9;
}

.foundation-hero {
  background: linear-gradient(180deg, #0A1428 0%, #06101F 100%);
  color: #E8E4D9;
}

.foundation-gold-accent {
  color: var(--color-gold);
}

.light-bg, .section-light, [style*="background:#fff"], [style*="background: #fff"], [style*="background:#F8F6F0"], [style*="background: #F8F6F0"] {
  background: #0A1428 !important;
  color: #E8E4D9 !important;
}

.foundation-discreet {
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
