/* ============================================
   Volara Leadership, Design System
   ============================================ */

:root {
  /* Palette: deep sky, warm gold, refined neutrals */
  --color-midnight: #0f1a2e;
  --color-deep-blue: #1a2d4a;
  --color-slate: #2c3e5a;
  --color-sky: #4a6fa5;
  --color-sky-light: #7ba3d4;
  --color-gold: #c9a962;
  --color-gold-light: #e0c98a;
  --color-gold-muted: rgba(201, 169, 98, 0.15);
  --color-cream: #f8f6f2;
  --color-warm-white: #fdfcfa;
  --color-text: #2a3344;
  --color-text-muted: #5c6678;
  --color-border: rgba(42, 51, 68, 0.1);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 72rem;
  --header-height: 5rem;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-midnight);
  color: white;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-midnight);
}

em {
  font-style: italic;
  color: var(--color-gold);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 36rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-midnight);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--color-warm-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-full {
  width: 100%;
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header.scrolled .logo-text,
.site-header.scrolled .nav-menu a {
  color: var(--color-midnight);
}

.site-header.scrolled .nav-cta {
  background: var(--color-gold);
  color: var(--color-midnight);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-warm-white);
  transition: color 0.4s var(--ease-out);
}

.logo-text em {
  font-style: italic;
  font-weight: 400;
  color: inherit;
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--color-gold-light);
}

.site-header.scrolled .nav-menu a:hover {
  color: var(--color-gold);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  color: var(--color-gold-light) !important;
}

.nav-cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-midnight) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-warm-white);
  transition: all 0.3s;
}

.site-header.scrolled .nav-toggle span {
  background: var(--color-midnight);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-midnight);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(74, 111, 165, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-midnight) 0%, var(--color-deep-blue) 100%);
}

.hero-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 169, 98, 0.03) 40%,
    rgba(201, 169, 98, 0.08) 100%
  );
  mask-image: linear-gradient(180deg, transparent, black 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-2xl);
  max-width: 52rem;
}

.hero-logo {
  margin-bottom: var(--space-lg);
}

.hero-logo img {
  width: min(16rem, 55vw);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--color-warm-white);
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 38rem;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Mission Strip
   ============================================ */

.mission-strip {
  background: var(--color-cream);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.mission-quote {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.mission-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-slate);
  line-height: 1.5;
}

/* ============================================
   Sections
   ============================================ */

.section {
  padding: var(--space-3xl) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.section-body p + p {
  margin-top: var(--space-md);
}

.section-body p {
  color: var(--color-text-muted);
}

/* ============================================
   Services
   ============================================ */

.services {
  background: var(--color-cream);
}

.services-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-warm-white);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

a.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 26, 46, 0.08);
}

.service-card p {
  flex-grow: 1;
}

.service-more {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

a.service-card:hover .service-more {
  color: var(--color-slate);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.service-card > p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   Service Pages
   ============================================ */

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--color-midnight);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(74, 111, 165, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-midnight) 0%, var(--color-deep-blue) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.breadcrumb {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  transition: color 0.3s;
}

.breadcrumb:hover {
  color: var(--color-gold-light);
}

.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--color-warm-white);
  margin-bottom: var(--space-md);
}

.page-hero-lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.service-body {
  padding: var(--space-2xl) 0;
}

.service-section {
  margin-bottom: var(--space-2xl);
}

.service-section:last-child {
  margin-bottom: 0;
}

.service-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.service-section > p {
  color: var(--color-text-muted);
  max-width: 40rem;
}

.service-section > p + p {
  margin-top: var(--space-md);
}

.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.outcome-card {
  padding: var(--space-md);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.outcome-card h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.outcome-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-cta {
  background: var(--color-cream);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
}

.service-cta-inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.service-cta-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-sm);
}

.service-cta-inner p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.related-services {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--color-warm-white);
}

.related-services h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.related-link {
  flex: 1 1 10rem;
  max-width: 14rem;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-slate);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.related-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-warm-white);
}

.related-link.current {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-muted);
  pointer-events: none;
}

.offerings-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.offering-card {
  padding: var(--space-lg);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.offerings-section--cream .offering-card {
  background: var(--color-warm-white);
}

.offerings-section {
  padding: var(--space-xl) 0;
}

.offerings-section--cream {
  background: var(--color-cream);
}

.offering-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
  color: var(--color-midnight);
}

.offering-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.offering-price {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gold);
}

.signature-offering {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--color-midnight);
  border-radius: 2px;
  text-align: center;
}

.signature-offering .section-label {
  color: var(--color-gold-light);
}

.signature-offering h2 {
  color: var(--color-warm-white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.signature-offering p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 40rem;
  margin: 0 auto;
}

.signature-offering .btn {
  margin-top: var(--space-lg);
}

.advisory-section {
  padding-top: 0;
}

.footer-services {
  margin-top: var(--space-sm);
}

.footer-services li {
  margin-top: 0.375rem;
}

.footer-services a {
  font-size: 0.8125rem;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.footer-services a:hover {
  opacity: 1;
  color: var(--color-gold-light);
}

/* ============================================
   Founder
   ============================================ */

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.founder-visual {
  position: relative;
}

.founder-portrait {
  aspect-ratio: 4 / 5;
  max-width: 22rem;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--color-deep-blue), var(--color-slate));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(201, 169, 98, 0.4);
}

.founder-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  z-index: 0;
}

.founder-role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.founder-content p {
  color: var(--color-text-muted);
}

.founder-content p + p {
  margin-top: var(--space-md);
}

/* ============================================
   Philosophy
   ============================================ */

.philosophy {
  background: var(--color-midnight);
  color: var(--color-warm-white);
}

.philosophy .section-label {
  color: var(--color-gold-light);
}

.philosophy .section-title {
  color: var(--color-warm-white);
}

.philosophy .section-title em {
  color: var(--color-gold-light);
}

.philosophy-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.philosophy-body {
  margin-bottom: var(--space-xl);
}

.philosophy-body p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.philosophy-body p + p {
  margin-top: var(--space-md);
}

.philosophy-body strong {
  color: var(--color-gold-light);
  font-weight: 500;
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.value-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-gold-light);
}

.value-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Contact
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-intro p {
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.contact-details {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  opacity: 1;
  transform: none;
}

.contact-details a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-slate);
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--color-gold);
}

.contact-address {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-form {
  background: var(--color-cream);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 0.375rem;
  color: var(--color-slate);
}

.optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}

.form-status {
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.5;
}

.form-status--success {
  color: var(--color-slate);
}

.form-status--error {
  color: #9b3b3b;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--color-midnight);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.logo-footer .logo-text {
  color: var(--color-warm-white);
}

.logo-footer .logo-mark {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-tagline {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  max-width: 20rem;
}

.footer-contact {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-contact a {
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--color-gold-light);
}

.footer-address {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--color-gold-light);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
}

/* ============================================
   Reveal Animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.hero .reveal:nth-child(1),
.page-hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2),
.page-hero .reveal:nth-child(2) { transition-delay: 0.2s; }
.hero .reveal:nth-child(3),
.page-hero .reveal:nth-child(3) { transition-delay: 0.35s; }
.hero .reveal:nth-child(4) { transition-delay: 0.5s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-split,
  .outcome-grid,
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-values {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    background: var(--color-midnight);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    font-size: 1.25rem;
    color: var(--color-warm-white);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .founder-accent {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-line {
    animation: none;
  }
}
