/* CSS Reset - Minimal, modern approach */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}
/* Design System Variables - Light Luxury Palette */

:root {
  /* v11 Luxury Palette - Disciplined Restraint */
  /* PRIMARY: Deep Navy (Authority, Judgement, Permanence) */
  --np-navy: #1a1f36;               /* Deep navy - primary text, headers */
  --np-navy-80: rgba(26, 31, 54, 0.8);  /* 80% navy - navigation */
  --np-navy-60: rgba(26, 31, 54, 0.6);  /* 60% navy - secondary text */
  --np-navy-40: rgba(26, 31, 54, 0.4);  /* 40% navy - tertiary text */

  /* ACCENT: Gold (Jewelry, Not Paint) */
  --np-gold: #d4af37;               /* True gold - accent only, never fill-heavy */
  --np-gold-glow: rgba(212, 175, 55, 0.15);  /* Gold glow - subtle hover states */

  /* NEUTRAL: Platinum & White (Structure, Breathing Room) */
  --np-platinum: #e5e7eb;           /* Platinum grey - dividers, borders */
  --np-platinum-40: rgba(229, 231, 235, 0.4);  /* 40% platinum - subtle rules */
  --np-off-white: #fafbfc;          /* Off-white - primary background */
  --np-white: #ffffff;              /* True white - negative space, cards */

  /* v11 Layering - Foreground/Midground/Background */
  --layer-foreground: #ffffff;      /* Cards, elevated objects */
  --layer-midground: #fafbfc;       /* Primary content plane */
  --layer-background: #f5f6f7;      /* Recessed sections */

  /* Interactive States */
  --np-hover-bg: #F0EEE6;           /* Hover state for cards */

  /* Shadows - v11 Objects Not Boxes */
  --shadow-card: 0 4px 12px rgba(26, 31, 54, 0.05);
  --shadow-card-hover: 0 6px 16px rgba(26, 31, 54, 0.08);
  --shadow-sm: 0 2px 6px rgba(26, 31, 54, 0.04);
  --shadow-lg: 0 8px 24px rgba(26, 31, 54, 0.08);

  /* Transitions - v11 Luxury Interaction (No Bounce, No Spring) */
  --ease-luxury: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-interaction: 300ms;
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;

  /* Spacing Scale - Generous, breathable */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 3rem;      /* 48px */
  --space-xl: 5rem;      /* 80px */
  --space-2xl: 7.5rem;   /* 120px */

  /* Typography Scale */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes - Clamp for fluid typography */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 2rem;      /* 32px */
  --text-3xl: 3rem;      /* 48px */
  --text-hero: clamp(3rem, 6vw, 5rem);  /* 48-80px */

  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;

  /* Letter Spacing - Luxury tracking */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-luxury: 0.25em;

  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 2rem;
}

/* Dark mode override (if needed in future) */
@media (prefers-color-scheme: dark) {
  /* Keep light theme - this is intentional luxury choice */
  /* C-suite executives expect clarity, not darkness */
}
/* Typography System - v4.1 Luxury Enhancement */

/* Base typography - v12 luxury line-height */
body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: 1.8;
  color: var(--np-navy);
  background-color: var(--np-off-white);
  letter-spacing: var(--tracking-normal);
}

/* Headings - Refined serif for editorial luxury */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--np-navy);
  margin-bottom: var(--space-lg);
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: var(--space-xl);
  max-width: 16em;
  letter-spacing: 0.03em;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-xl);
  max-width: 20em;
  letter-spacing: 0.5px;
}

h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--np-navy);
  margin-bottom: 24px;
}

h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--np-navy);
  margin-bottom: 16px;
}

h5, h6 {
  font-family: var(--font-family);
  font-weight: var(--weight-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--np-navy);
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
}

h6 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* Body text - v24 luxury spacing (1.8 line-height) */
p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #1a1f36;
  margin-bottom: var(--space-md);
  max-width: 720px;
}

p.lead {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--np-navy);
  max-width: 720px;
}

p.subtitle {
  font-size: var(--text-lg);
  color: var(--np-navy-60);
  line-height: 1.7;
  max-width: 60ch;
}

p.caption {
  font-size: var(--text-sm);
  color: var(--np-navy-40);
  line-height: var(--leading-normal);
}

/* Positioning statement - reference guide italic serif */
.positioning-statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1f36;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

/* Luxury label style (small caps, wide tracking) */
.label-luxury {
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  text-transform: uppercase;
  letter-spacing: var(--tracking-luxury);
  color: var(--np-gold);
}

/* Text utilities - v11 */
.text-muted {
  color: var(--np-navy-60);
}

.text-subtle {
  color: var(--np-navy-40);
}

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

/* Links - v14 refined transitions */
a {
  color: var(--np-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--np-gold);
}

a.link-underline {
  border-bottom: 1px solid var(--np-platinum);
  padding-bottom: 2px;
  transition: border-color var(--duration-interaction) var(--ease-luxury);
}

a.link-underline:hover {
  border-bottom-color: var(--np-gold);
}

/* Lists */
ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

li {
  margin-bottom: var(--space-xs);
  line-height: var(--leading-relaxed);
}

/* Remove bullets for navigation lists */
nav ul {
  list-style: none;
  padding-left: 0;
}

/* Blockquote - v11 luxury styling */
blockquote {
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  font-style: italic;
  color: var(--np-navy-60);
  border-left: 2px solid var(--np-gold);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  line-height: var(--leading-relaxed);
}

/* Pull quote styling */
.pull-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--np-gold);
  border-left: 4px solid var(--np-gold);
  padding-left: 24px;
  margin: 40px 0;
}

/* Text alignment utilities */
.text-center {
  text-align: center;
}

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

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

/* Responsive typography adjustments */
@media (max-width: 768px) {
  body {
    font-size: var(--text-sm);
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  h3 {
    font-size: var(--text-xl);
  }

  p.lead {
    font-size: var(--text-lg);
  }
}
/* Component Styles - Light Luxury UI Elements */

/* ==================== BUTTONS ==================== */

/* Primary button - vFinal luxury CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 22px 60px;
  background-color: #1a1f36;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid #d4af37;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  background-color: #d4af37;
  color: #1a1f36;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Remove all promotional effects */
.btn-primary::before,
.btn-primary::after {
  display: none;
}

/* Secondary button - v14 outlined luxury */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background-color: transparent;
  color: #1a1f36;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #1a1f36;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background-color: #1a1f36;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 31, 54, 0.15);
}

/* Text button - Minimal */
.btn-text {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: none;
  color: var(--np-navy);
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  letter-spacing: var(--tracking-normal);
  border: none;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-luxury);
}

.btn-text:hover {
  color: var(--np-gold);
}

/* ==================== CARDS ==================== */

/* Base card - v24 Rolex-level refinement */
.card {
  background: #f8f9fa;
  border: none;
  border-top: 3px solid #d4af37;
  border-radius: 0;
  padding: 60px;
  box-shadow: 0 4px 16px rgba(26, 31, 54, 0.04);
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 31, 54, 0.08);
}

/* Card with header */
.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: none;
}

.card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  color: var(--np-navy);
  margin-bottom: var(--space-xs);
}

.card-subtitle {
  font-size: var(--text-sm);
  color: var(--np-navy-60);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.card-body {
  color: var(--np-navy-60);
  line-height: var(--leading-relaxed);
}

.card-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--np-platinum);
}

/* Elevated card - subtle shadow */
.card-elevated {
  box-shadow: var(--shadow-sm);
}

.card-elevated:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

/* Header navigation - Brand authority hierarchy */
.nav-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 44px 60px;
  gap: 80px;
  min-height: 110px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 56px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-center {
  text-align: center;
  padding: 0 40px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--np-navy);
  white-space: nowrap;
  text-decoration: none;
  transition: opacity var(--duration-interaction) var(--ease-luxury);
}

.nav-logo:hover {
  opacity: 0.85;
  color: var(--np-navy);
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--np-navy-60);
  text-transform: uppercase;
  transition: opacity var(--duration-interaction) var(--ease-luxury);
  text-decoration: none;
  opacity: 0.88;
}

.nav-link:hover {
  color: var(--np-navy-60);
  opacity: 1;
}

/* ==================== DIVIDERS ==================== */

/* v24 Platinum divider - visual pause */
.divider-gold {
  width: 100%;
  height: 1px;
  background-color: #e9ecef;
  margin: 60px 0;
  opacity: 1;
  border: none;
}

/* Decorative divider (like on quiz landing page) */
.divider-decorative {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.divider-decorative::before,
.divider-decorative::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--np-platinum),
    transparent
  );
}

/* Simple horizontal rule */
hr {
  border: none;
  height: 1px;
  background-color: var(--np-platinum);
  margin: var(--space-lg) 0;
}

/* ==================== FORMS ==================== */

/* Input fields - v24 borderless luxury */
.input {
  width: 100%;
  padding: 16px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #1a1f36;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d4af37;
  transition: all 0.3s ease;
  margin-top: 0;
}

.input:focus {
  outline: none;
  border-bottom: 2px solid #d4af37;
  background-color: transparent;
  box-shadow: none;
}

.input::placeholder {
  color: var(--np-navy-40);
  font-weight: 300;
  opacity: 0.5;
}

/* Text area */
textarea.input {
  min-height: 140px;
  resize: vertical;
  border: none;
  border-bottom: 1px solid var(--np-gold);
  padding: 16px 0;
  margin-top: 0;
}

textarea.input:focus {
  border-bottom: 2px solid var(--np-gold);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

/* Form labels - v24 Rolex-level refinement */
.label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 12px;
  margin-top: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==================== BADGES ==================== */

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: var(--weight-normal);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  background-color: var(--np-gold-10);
  color: var(--np-gold);
  border-radius: 2px;
}

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

@media (max-width: 1024px) {
  .nav-header {
    gap: 60px;
    padding: 40px 48px;
  }

  .nav-left,
  .nav-right {
    gap: 40px;
  }

  .nav-logo {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .nav-header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 32px;
    padding: 32px 24px;
    text-align: center;
  }

  .nav-center {
    order: -1;
    padding: 0;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    gap: 28px;
  }

  .nav-left {
    order: 1;
  }

  .nav-right {
    order: 2;
  }

  .card {
    padding: var(--space-md);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
/* Layout System - Generous, Breathable Spacing */

/* ==================== CONTAINER ==================== */

/* Main container - McKinsey-style centered content */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Narrow container for focused content */
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* Wide container */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

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

/* Page sections - v19 luxury vertical rhythm (enhanced breathing room) */
.section {
  padding: 180px 0;
}

.section-sm {
  padding: 120px 0;
}

.section-lg {
  padding: 240px 0;
}

/* Hero section - v24 Rolex-level spacing (ceremonial isolation) */
.section-hero {
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 0 150px;
  background-color: #fafafa;
}

/* Assessment section - reference guide specific padding */
.section-assessment {
  padding: 150px 0;
}

/* Contact section - reference guide asymmetric padding */
.section-contact {
  padding: 180px 0 120px;
}

/* Section backgrounds - subtle tonal variations */
.section-light {
  background-color: var(--layer-midground);
}

.section-surface {
  background-color: #fafafa;
}

.section-subtle {
  background-color: rgba(74, 111, 165, 0.03);
}

/* ==================== GRID SYSTEM ==================== */

/* Flexible grid - v19 luxury spacing (more generous gaps) */
.grid {
  display: grid;
  gap: calc(var(--space-lg) * 1.5);
}

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

/* 3 column grid - vFinal luxury spacing */
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

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

/* Auto-fit grid (responsive cards) */
.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ==================== FLEXBOX UTILITIES ==================== */

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Gap utilities */
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ==================== SPACING UTILITIES ==================== */

/* Margin utilities */
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Padding utilities */
.pt-xs { padding-top: var(--space-xs); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pt-2xl { padding-top: var(--space-2xl); }

.pb-xs { padding-bottom: var(--space-xs); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }
.pb-2xl { padding-bottom: var(--space-2xl); }

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

/* ==================== HEADER & FOOTER ==================== */

/* Site header - v11 masthead not menu */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 251, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--np-platinum);
  transition: box-shadow var(--duration-interaction) var(--ease-luxury);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

/* Site footer - Closing signature */
.site-footer {
  position: relative;
  padding-top: 44px;
  padding-bottom: 40px;
  background-color: #ffffff;
  border-top: 1px solid rgba(26, 31, 54, 0.06);
  color: var(--np-navy-60);
}

.footer-brand {
  margin-bottom: 32px;
  text-align: center;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 1;
  color: var(--np-navy);
  text-align: center;
}

.footer-brand .caption {
  font-size: 13px;
  font-weight: 300;
  color: var(--np-navy-60);
  opacity: 0.85;
  line-height: 1.5;
  text-align: center !important;
  margin: 0 auto;
  padding: 0;
  display: block;
  width: 100%;
}

.footer-legal {
  margin-top: 32px;
}

.footer-links {
  display: flex;
  gap: calc(var(--space-sm) * 1.5);
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer-copyright {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding-left: var(--container-padding);
}

.footer-copyright .caption {
  font-size: 11px;
  font-weight: 300;
  color: var(--np-navy-40);
  opacity: 0.4;
  text-align: left;
}

.footer-links .caption {
  opacity: 0.3;
}

.site-footer .nav-link {
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 300;
  color: var(--np-navy-40);
  opacity: 0.5;
  transition: opacity var(--duration-interaction) var(--ease-luxury);
}

.site-footer .nav-link:hover {
  opacity: 0.8;
}

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

@media (max-width: 1024px) {
  .container,
  .container-wide {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

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

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

@media (max-width: 768px) {
  .container,
  .container-narrow,
  .container-wide {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-lg {
    padding: var(--space-2xl) 0;
  }

  .section-hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }

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

  .grid {
    gap: var(--space-md);
  }

  /* Stack flex containers on mobile */
  .flex-between {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ==================== VISIBILITY UTILITIES ==================== */

.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}
/* North Point Advisors - Main Stylesheet */
/* Light Luxury Design System */

/* 1. CSS Reset - Zero out browser defaults */
@import url('reset.css');

/* 2. Design System Variables - Color, typography, spacing */
@import url('variables.css');

/* 3. Typography - Type scale and text styles */
@import url('typography.css');

/* 4. Components - Buttons, cards, forms, navigation */
@import url('components.css');

/* 5. Layout - Grid system, containers, sections */
@import url('layout.css');

/* ==================== GLOBAL UTILITIES ==================== */

/* Smooth scroll behavior - v14 */
html {
  scroll-behavior: smooth;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
}

/* Focus styles for accessibility - v11 gold outline */
*:focus-visible {
  outline: 2px solid var(--np-gold);
  outline-offset: 3px;
}

/* Selection color - v11 */
::selection {
  background-color: var(--np-gold-glow);
  color: var(--np-navy);
}

/* ==================== ANIMATIONS ==================== */

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn var(--duration-slow) var(--ease-luxury) forwards;
}

/* Fade in with delay (for staggered animations) */
.fade-in-delay-1 {
  animation: fadeIn var(--duration-slow) var(--ease-luxury) 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn var(--duration-slow) var(--ease-luxury) 0.4s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeIn var(--duration-slow) var(--ease-luxury) 0.6s forwards;
  opacity: 0;
}

/* ==================== POLARIS BRAND LOCKUP ==================== */

/* Brand lockup container (will be used with inline SVG) */
.polaris-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.polaris-lockup svg {
  opacity: 0.9;
  transition: opacity var(--duration-fast) var(--ease-luxury);
}

.polaris-lockup:hover svg {
  opacity: 1;
}

/* ==================== v11 VISUAL LAYERING ==================== */

/* Midground: Primary content plane */
.section-subtle,
.section-surface {
  background-color: var(--layer-midground);
}

/* ==================== v22 VISUAL LAYERING SYSTEM ==================== */

/* Layer 1: Ceremonial (hero, transitions) - lightest, maximum space */
.editorial-conclusion {
  background-color: #ffffff;
  position: relative;
}

/* Layer 2: Analytical (dimensions, failure modes) - subtle tonal shift */
#services,
#approach {
  background-color: #fafbfc;
  position: relative;
}

/* Layer 3: Transactional (assessment, contact) - elevated with shadow */
#assessment,
#contact {
  background-color: #f8f9fa;
  position: relative;
}

/* ==================== v6 LUXURY UI ENHANCEMENTS ==================== */

/* Hero section - vFinal ceremonial isolation */
.hero-headline {
  margin-top: 0;
  margin-bottom: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* Hero rule - platinum 40% opacity with increased breathing room */
.hero-rule {
  width: 100%;
  height: 1px;
  background-color: var(--np-platinum-40);
  margin: 0 auto 72px;
}

.hero-content {
  margin-bottom: 140px;
}

.hero-content .lead {
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  opacity: 0.9;
  max-width: 680px;
}

.hero-cta {
  margin-bottom: calc(var(--space-2xl) * 3);
  margin-top: 24px;
}

/* Assessment section - v24 reference guide spacing */
.assessment-cta {
  margin-top: 80px;
}

/* Isolate key intervention statement for editorial pause */
.grid-2 > div:last-child h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-2xl);
  font-weight: 300;
  line-height: 1.3;
  margin-top: calc(var(--space-xl) * 1.5);
  margin-bottom: var(--space-lg);
  max-width: 28ch;
}

/* Enhance section header centering and constraint */
.text-center h2 {
  margin-left: auto;
  margin-right: auto;
}

/* Grid items in failure modes - extra breathing room */
.grid-2 > div {
  margin-bottom: calc(var(--space-lg) * 0.8);
}

/* Contact section - v10 private office aesthetic */
.contact-header {
  text-align: center;
  margin-bottom: calc(var(--space-2xl) * 2);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-header .lead {
  margin-bottom: var(--space-lg);
}

.contact-trust-signal {
  margin-top: calc(var(--space-xl) * 1.5);
  font-style: italic;
  color: var(--np-navy);
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(26, 31, 54, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form button[type="submit"] {
  margin-top: calc(var(--space-xl) * 1.5);
  align-self: center;
}

/* Editorial passage layout - v19 with enhanced vertical rhythm */
.editorial-header {
  text-align: center;
  margin-bottom: calc(var(--space-2xl) * 2.8);
}

/* Gold hairline under section headers - v24 Rolex accent */
.section-header-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 40px;
}

.section-header-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #d4af37;
  opacity: 1;
}

.editorial-passage {
  max-width: 65ch;
  margin: 0 auto;
}

.editorial-item {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 140px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--np-platinum);
  position: relative;
}

.editorial-item:last-of-type {
  border-bottom: none;
}

.editorial-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 96px;
  font-weight: 300;
  color: #d4af37;
  opacity: 1;
  line-height: 1;
  flex-shrink: 0;
  width: 120px;
}

.editorial-content {
  flex: 1;
}

.editorial-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 300;
  margin-bottom: calc(var(--space-lg) * 1.2);
  line-height: 1.4;
}

.editorial-item p {
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
}

.editorial-conclusion {
  margin-top: calc(var(--space-2xl) * 3);
  padding-top: calc(var(--space-2xl) * 2.5);
  border-top: none;
}

.editorial-conclusion h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: calc(var(--text-2xl) * 1.2);
  font-weight: 300;
  line-height: 1.25;
  margin-top: calc(var(--space-2xl) * 1.5);
  margin-bottom: calc(var(--space-2xl) * 1.2);
  max-width: 26ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.editorial-conclusion p {
  text-align: center;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  opacity: 0.85;
}

/* ==================== RESPONSIVE - EDITORIAL ITEMS ==================== */

@media (max-width: 768px) {
  .editorial-item {
    flex-direction: column;
    gap: 24px;
  }

  .editorial-number {
    width: auto;
    font-size: 64px;
  }
}

@media (max-width: 480px) {
  .editorial-number {
    font-size: 56px;
  }
}

/* ==================== PRINT STYLES ==================== */

@media print {
  /* Hide navigation and non-essential elements */
  .nav-header,
  .site-footer,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  /* Ensure content is visible */
  body {
    background: white;
    color: #1a1f36;
  }

  /* Prevent page breaks inside elements */
  .card,
  blockquote {
    page-break-inside: avoid;
  }
}
