/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', sans-serif;
  background: #F8F6F2;
  color: #1E1E1E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Colors */
:root {
  --primary: #982407;
  --primary-light: rgba(152, 36, 7, 0.1);
  --primary-border: rgba(152, 36, 7, 0.2);
  --secondary: #C6620C;
  --bg: #F8F6F2;
  --fg: #1E1E1E;
  --muted: #EDEAE5;
  --muted-fg: #666666;
  --border: #DDD9D4;
  --dark: #1E1E1E;
  --white: #ffffff;
}

/* Container */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--primary);
  color: var(--bg);
  padding: 0.625rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s;
  min-height: 44px;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 8px rgba(0,0,0,0.15); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  color: var(--fg);
  padding: 0.625rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.btn-outline:hover { background: var(--primary); color: var(--bg); border-color: var(--primary); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  color: var(--white);
  padding: 0.625rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--white);
  color: var(--dark);
  padding: 0.625rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.btn-white:hover { opacity: 0.9; }

.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 212, 207, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img { height: 2.5rem; width: auto; }
.nav-logo-text {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-logo-text b { font-weight: 900; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(31, 31, 31, 0.8);
  transition: color 0.2s;
  padding: 0.5rem 0;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 700; }

/* Desktop dropdown */
.nav-item { position: relative; }
.nav-item .nav-link { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-caret { display: inline-flex; transition: transform 0.2s; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 17rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 60;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(31, 31, 31, 0.8);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-link:hover { color: var(--primary); background: rgba(151,27,12,0.05); }

/* Desktop nav CTA button */
.nav-cta {
  padding: 0.625rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--fg);
  flex-shrink: 0;
}
.mobile-menu-toggle:hover { border-color: var(--primary); color: var(--primary); }

/* Full-width mobile nav panel — sits below the nav bar */
.mobile-nav-panel {
  display: none;
  background: var(--dark);
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.nav-open .mobile-nav-panel { display: block; }
.mobile-nav-panel .container { padding-top: 0; padding-bottom: 0; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.1rem 0;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-height: 56px;
  transition: color 0.15s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-link.active { color: var(--primary); }
.mobile-nav-sublink {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 0 0.75rem 1.5rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.mobile-nav-sublink:hover { color: var(--primary); }
.mobile-nav-cta {
  display: block;
  margin: 1.25rem 0;
  padding: 0.875rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  min-height: 48px;
  line-height: 1.2;
}
.mobile-nav-cta:hover { opacity: 0.9; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-toggle { display: none; }
  .mobile-nav-panel { display: none !important; }
}

/* Grid Pattern Background */
.bg-grid {
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
}

/* Sections — mobile-first padding */
.section { padding: 2.5rem 0; }
.section-sm { padding: 1.25rem 0; }
@media (min-width: 768px) {
  .section { padding: 4rem 0; }
  .section-sm { padding: 2rem 0; }
}
@media (min-width: 1024px) { .section { padding: 5rem 0; } }
.section-dark { background: var(--dark); color: var(--white); }
.section-white { background: var(--white); }
.section-muted { background: var(--muted); }
.section-primary { background: var(--primary); color: var(--white); }

/* Page header (dark banner at top of inner pages) */
.page-header { padding: 2.5rem 0; }
@media (min-width: 768px) { .page-header { padding: 3.5rem 0; } }
@media (min-width: 1024px) { .page-header { padding: 5rem 0; } }

/* Hero section */
.hero-section { padding: 2.5rem 0; }
@media (min-width: 768px) { .hero-section { padding: 4rem 0; } }
@media (min-width: 1024px) { .hero-section { padding: 5rem 0; } }

/* Responsive grid gap for two-col layouts that stack on mobile */
.gap-stack { gap: 2rem; }
@media (min-width: 1024px) { .gap-stack { gap: 4rem; } }

/* Text */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-fg); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-heading { font-family: 'Be Vietnam Pro', sans-serif; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.75; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-md { max-width: 28rem; }
.max-w-xs { max-width: 20rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }

/* Grid & Flex */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-12 { grid-template-columns: 1fr; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.flex-wrap { flex-wrap: wrap; }

@media (min-width: 640px) {
  .sm-flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-12 { grid-template-columns: repeat(12, 1fr); }
  .md-flex-row { flex-direction: row; }
  .md-col-span-8 { grid-column: span 8; }
  .md-col-span-4 { grid-column: span 4; }
}
@media (min-width: 1024px) {
  .grid-2-lg { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-text-5xl { font-size: 3rem; }
  .lg-text-6xl { font-size: 3.75rem; }
  .lg-block { display: block; }
  .lg-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.card-lift:hover { transform: translateY(-4px); }

/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-4px); }
.service-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--muted-fg); margin-bottom: 1.5rem; flex-grow: 1; }
.service-card .features { margin-bottom: 1.5rem; }
.service-card .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--fg);
}
.service-card .feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-card .card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* Icon boxes */
.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.icon-box-lg {
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box-lg svg { color: var(--primary); }

/* Why us reason */
.reason { display: flex; gap: 1.5rem; }
.reason + .reason { margin-top: 2rem; }
.reason h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.reason p { color: rgba(255,255,255,0.7); }

/* Step numbers */
.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Case study card */
.case-study {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.case-study:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}
@media (min-width: 1024px) { .case-study { padding: 2.5rem; } }
.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-muted {
  display: inline-block;
  color: var(--muted-fg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.outcome-box {
  background: rgba(30,30,30,0.05);
  padding: 1.5rem;
  border-left: 4px solid var(--dark);
}
.metrics-panel {
  background: rgba(229, 225, 221, 0.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.metric { text-align: center; }
.metric .value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 0.25rem;
}
.metric .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
}

/* About */
.leader-avatar {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--bg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.avatar {
  width: 8rem;
  height: 8rem;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.award-badge svg { color: var(--primary); flex-shrink: 0; }
.accomplishment {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.accomplishment::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* CFO of the Year */
.award-info {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.award-info svg { flex-shrink: 0; color: var(--primary); margin-top: 0.25rem; }
.prose p { margin-bottom: 1rem; color: var(--muted-fg); font-size: 1.125rem; line-height: 1.75; }
.prose h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.quote-box {
  background: rgba(229, 225, 221, 0.5);
  padding: 1.5rem;
}
.quote-box + .quote-box { margin-top: 1.5rem; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr; min-height: auto; }
@media (min-width: 1024px) { .contact-split { grid-template-columns: 1fr 1fr; } }
.contact-left {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .contact-left { padding: 6rem; } }
.contact-right {
  background: var(--white);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .contact-right { padding: 6rem; } }
.contact-info { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info + .contact-info { margin-top: 2rem; }
.contact-info svg { color: var(--primary); flex-shrink: 0; margin-top: 0.25rem; }
.contact-info h3 { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.contact-info p { color: rgba(255,255,255,0.7); }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #ccc;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--white);
  color: var(--fg);
  min-height: 44px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  min-height: 48px;
}

/* Spark Section */
.spark-section {
  background: #0D0D0D;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.spark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(152,36,7,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(152,36,7,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.spark-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
  background: rgba(152,36,7,0.15);
  border: 1px solid rgba(152,36,7,0.4);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
}
.spark-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s;
}
.spark-card:hover {
  background: rgba(152,36,7,0.08);
  border-color: rgba(152,36,7,0.3);
}
.spark-card svg { color: var(--primary); margin-bottom: 1rem; }
.spark-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.1rem; }
.spark-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }
.spark-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
  min-height: 44px;
}
.spark-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(245, 241, 237, 0.7);
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.footer-link {
  display: block;
  font-size: 0.875rem;
  padding: 0.375rem 0;
  color: rgba(245, 241, 237, 0.7);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245, 241, 237, 0.5);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom a { color: rgba(245, 241, 237, 0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.social-icon {
  display: inline-flex;
  padding: 0.5rem;
  background: rgba(255,255,255,0.05);
  color: rgba(245, 241, 237, 0.7);
  transition: background 0.2s;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.social-icon:hover { background: var(--primary); }

/* Skew accent */
.header-accent {
  position: relative;
  overflow: hidden;
}
.header-accent::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 33%;
  background: rgba(151, 27, 12, 0.1);
  transform: skewX(-12deg) translateX(5rem);
}

/* Hero image container */
.hero-image-wrap {
  position: relative;
  display: block;
  margin-top: 2rem;
}
@media (min-width: 1024px) { .hero-image-wrap { margin-top: 0; } }
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1rem;
  border: 2px solid rgba(151, 27, 12, 0.3);
  z-index: 0;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  filter: grayscale(20%) contrast(125%);
}

/* Quote overlay */
.quote-overlay {
  position: relative;
  background: var(--primary);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: block;
}
@media (min-width: 1024px) {
  .quote-overlay {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    margin-top: 0;
    padding: 2rem;
    max-width: 20rem;
  }
}
.quote-overlay p {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.3;
}

/* Proof bar */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .proof-bar { grid-template-columns: repeat(4, 1fr); } }

/* 404 */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

/* Responsive text */
@media (min-width: 1024px) {
  .lg-text-5xl { font-size: 3rem; }
  .lg-text-6xl { font-size: 3.75rem; }
}

/* Print */
@media print {
  .nav, .footer, .mobile-nav-panel { display: none; }
  body { background: white; }
}

/* Digital business card */
.card-page { min-height: 100vh; display: flex; flex-direction: column; }
.card-brand { background: var(--primary); padding: 2rem 1.5rem 4rem; display: flex; justify-content: center; }
.card-brand-logo { height: 2.25rem; width: auto; filter: brightness(0) invert(1); }
.card-content {
  flex: 1; margin: -2.5rem auto 0; padding: 0 1.5rem 2.5rem;
  display: flex; flex-direction: column; align-items: center;
  max-width: 28rem; width: 100%;
}
.card-avatar {
  width: 9rem; height: 9rem; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--bg); box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.card-name { margin-top: 1.25rem; font-size: 1.75rem; color: var(--primary); text-align: center; }
.card-role { color: var(--muted-fg); font-weight: 600; text-align: center; margin-top: 0.25rem; }
.card-org { color: var(--muted-fg); font-size: 0.875rem; text-align: center; opacity: 0.8; }
.card-tagline { margin-top: 1rem; text-align: center; line-height: 1.6; color: var(--fg); opacity: 0.85; }
.card-hint { margin-top: 0.5rem; text-align: center; font-size: 0.8125rem; color: var(--muted-fg); font-style: italic; }
.card-actions { margin-top: 2rem; width: 100%; display: flex; flex-direction: column; gap: 0.75rem; }
.card-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; min-height: 3.25rem; background: var(--primary); color: var(--bg);
  font-weight: 700; font-size: 1.0625rem; border: none; border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(152,36,7,0.3); transition: transform .15s, box-shadow .15s; cursor: pointer;
}
.card-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(152,36,7,0.35); }
.card-cta-secondary, .card-cta-tertiary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; min-height: 2.875rem; font-weight: 600; font-size: 0.9375rem;
  border-radius: 0.75rem; border: 1px solid var(--border); background: var(--white);
  color: var(--fg); cursor: pointer; transition: border-color .15s, color .15s;
}
.card-cta-secondary:hover, .card-cta-tertiary:hover { border-color: var(--primary); color: var(--primary); }
.card-qr-box {
  margin-top: 2rem; background: var(--white); border: 1px solid var(--border); border-radius: 1rem;
  padding: 1.25rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.card-qr-box svg { width: 160px; height: 160px; }
.card-qr-caption { font-size: 0.75rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.05em; }
.card-info {
  margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
  font-size: 0.9375rem; color: var(--muted-fg); text-align: center;
}
.card-info a:hover { color: var(--primary); }
.card-spark-link {
  margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--secondary);
}
.card-spark-link:hover { color: var(--primary); }
.card-footer { text-align: center; font-size: 0.75rem; color: var(--muted-fg); opacity: 0.7; padding: 1.5rem 0; }

/* Fractional CFO — video hero + restated content */
.deck-hero { text-align: center; padding: 2.5rem 0 1.5rem; }
.deck-hero .kicker { color: var(--primary); font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.8rem; }
.deck-hero h1 { font-size: 2.5rem; margin: 0.75rem 0; }
.deck-hero p { color: var(--muted-fg); max-width: 40rem; margin: 0 auto; }
.deck-intro { color: var(--muted-fg); max-width: 40rem; margin: 2.5rem auto 0; text-align: center; font-size: 1.0625rem; line-height: 1.7; }
.deck { max-width: 64rem; margin: 0 auto 4rem; padding: 0 1rem; }
.intro-video-frame { position: relative; overflow: hidden; border-radius: 1.25rem; box-shadow: 0 24px 60px rgba(30,30,30,0.18); background: #1E1E1E; aspect-ratio: 16 / 9; }
.intro-video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; }
.intro-video-caption { text-align: center; margin-top: 0.875rem; font-size: 0.8125rem; color: var(--muted-fg); font-style: italic; }
.intro-cta { text-align: center; margin-top: 2rem; }
.cfo-card-icon { width: 3.5rem; height: 3.5rem; margin-bottom: 1.5rem; }
.cfo-card-kicker { color: var(--primary); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; display: block; margin-bottom: 0.625rem; }
@media (max-width: 640px) { .deck-hero h1 { font-size: 1.9rem; } }
