/* ==========================================================================
   NKALI - MASTER LUXURY EDITORIAL & MOTION DESIGN SYSTEM
   Brand Positioning: Premium, Calm, Intelligent, Feminine, Strategic, Conversion-focused.
   ========================================================================== */

/* 1. GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Nunito:wght@400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

/* 2. DESIGN TOKENS */
:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAF7F2; /* Warm soft off-white cream */
  --bg-tertiary: #FFF4F2;  /* Warm blush tint */
  --bg-blush: #FFD6D6;     /* Brand soft pink */
  --bg-dark: #141414;      /* Editorial deep dark */
  --bg-dark-card: #1E1E1E;
  
  --accent-orange: #C04B00; /* Darker burnt orange for WCAG AA compliance (>4.5:1 contrast) */
  --accent-orange-hover: #9E3E00;
  --accent-orange-soft: rgba(192, 75, 0, 0.08);
  --accent-orange-border: rgba(192, 75, 0, 0.2);
  
  --text-primary: #1A1A1A;
  --text-secondary: #474747; /* Adjusted for AA compliance (>4.5:1 contrast on cream/white) */
  --text-muted: #5E5E5E; /* Adjusted for AA compliance (>4.5:1 contrast on cream/white) */
  --text-light: #F5F5F5;
  --text-dark-muted: #A0A0A0;
  
  --border-subtle: rgba(26, 26, 26, 0.08);
  --border-dark-subtle: rgba(255, 255, 255, 0.12);
  
  /* Typography Scale */
  --font-h1: 'Playfair Display', Georgia, serif;
  --font-h2: 'Playfair Display', Georgia, serif;
  --font-h3: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Nunito', -apple-system, sans-serif;
  --font-button: 'Nunito', -apple-system, sans-serif;
  
  /* Spacing System (8px Grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;
  --space-section: 120px;
  
  /* Corner Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Shadows & Elevation */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08);
  --shadow-orange: 0 14px 32px rgba(200, 81, 3, 0.22);
  
  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3. RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* SCROLL PROGRESS BAR */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 2001;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  width: 0%;
  transition: width 0.1s linear;
}

/* 4. LAYOUT GRID & CONTAINERS */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.container-editorial {
  max-width: 1140px;
}

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

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

.bg-secondary {
  background-color: var(--bg-secondary);
}

.bg-blush {
  background-color: var(--bg-tertiary);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: #FFFFFF;
}

/* RESPONSIVE GRID HELPER CLASSES */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 5. TYPOGRAPHY & HIGHLIGHTING */
h1, .h1 {
  font-family: var(--font-h1);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h2, .h2 {
  font-family: var(--font-h2);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-sm);
}

h3, .h3 {
  font-family: var(--font-h3);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: var(--space-sm);
}

h4, .h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-xs);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.text-editorial {
  font-family: var(--font-h3);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-secondary);
}

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

.eyebrow {
  text-transform: uppercase;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-orange);
  display: block;
  margin-bottom: var(--space-sm);
}

/* STRATEGIC HIGHLIGHTING */
.highlight-underline {
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  font-weight: 700;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-orange);
  transform: scaleX(0.95);
  transition: var(--transition-fast);
  opacity: 0.8;
}

.highlight-box {
  background-color: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--accent-orange);
  font-weight: 600;
}

/* STATEMENT HEADLINES */
.statement-headline {
  font-family: var(--font-h3);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--accent-orange);
  line-height: 1.35;
  margin-bottom: var(--space-sm);
}

/* 6. BUTTONS & INTERACTIVE ELEMENTS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-button);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(163, 66, 0, 0.32);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(26, 26, 26, 0.03);
  transform: translateY(-2px);
}

/* 7. NAVIGATION HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-fast);
}

.header.scrolled {
  padding: 14px 0;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* LIGHT HEADER VARIANT FOR DARK HERO SECTIONS */
.header.header-light-text:not(.scrolled) .logo {
  color: #FFFFFF;
}

.header.header-light-text:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.header.header-light-text:not(.scrolled) .nav-link:hover,
.header.header-light-text:not(.scrolled) .nav-link.active {
  color: #FFFFFF;
  font-weight: 700;
}

.header.header-light-text:not(.scrolled) .nav-link.active::after {
  background-color: #FFFFFF;
}

.header.header-light-text:not(.scrolled) .mobile-toggle span {
  background-color: #FFFFFF;
}

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

.logo {
  font-family: var(--font-h1);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-drawer-cta {
  display: none !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link.active::after, .nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  justify-content: center;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* 8. HERO SECTIONS & IMAGE ANIMATION */
.hero-home {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.hero-card {
  background-color: var(--bg-secondary);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}

.hero-card h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.18;
  margin-bottom: var(--space-md);
}

.hero-card h1 em {
  font-family: var(--font-h3);
  font-style: italic;
  color: var(--accent-orange);
  font-weight: 500;
}

.hero-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-dark {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.7) 0%, rgba(20,20,20,0.95) 100%);
}

.hero-dark .container {
  position: relative;
  z-index: 2;
}

.hero-dark h1 {
  color: #FFFFFF;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-dark-quote {
  font-family: var(--font-h3);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  border-left: 2px solid var(--accent-orange);
  padding-left: var(--space-md);
}

/* 9. OVERLAPPING INTRO & STORY CARDS */
.intro-section {
  padding: var(--space-section) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-image-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro-image-block img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.intro-image-block:hover img {
  transform: scale(1.03);
}

.intro-content-card {
  background-color: var(--bg-secondary);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  margin-left: -80px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

/* 10. VISUAL STORY BREAK (FULL-SCREEN MOMENT) */
.story-break-section {
  padding: 110px 0;
  background-color: var(--bg-dark);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-break-quote {
  font-family: var(--font-h1);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.3;
  color: #FFFFFF;
  max-width: 960px;
  margin: 0 auto var(--space-md);
  font-weight: 400;
}

.story-break-quote em {
  font-family: var(--font-h3);
  font-style: italic;
  color: var(--accent-orange);
}

/* 11. IMPACT METRICS */
.impact-section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  align-items: center;
}

.stat-large {
  font-family: var(--font-h1);
  font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 1;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 3px solid var(--text-primary);
  padding-bottom: 16px;
  display: inline-block;
}

.stats-inline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: var(--space-lg) 0;
}

.stat-item-number {
  font-family: var(--font-h1);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-item-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* 12. SERVICES PREVIEW & CARDS */
.services-section {
  padding: var(--space-section) 0;
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

/* 13. TESTIMONIAL CAROUSEL */
.testimonials-section {
  padding: var(--space-section) 0;
  background-color: var(--bg-primary);
  text-align: center;
}

.quote-mark {
  font-family: var(--font-h1);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent-orange);
  opacity: 0.25;
  user-select: none;
  margin-bottom: var(--space-sm);
}

.testimonial-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-h3);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: var(--space-lg);
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.nav-arrow:hover {
  background-color: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

/* 14. TIMELINE COMPONENT */
.timeline-section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-orange) 0%, rgba(200,81,3,0.1) 100%);
  z-index: 1;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
  direction: ltr;
  text-align: left;
}

.timeline-content {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-year {
  font-family: var(--font-h1);
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 4px;
}

.timeline-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  border: 4px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--accent-orange);
  z-index: 3;
}

.timeline-organic-shape {
  border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--bg-blush);
}

.timeline-organic-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 15. NEWSLETTER & CTA SECTIONS */
.newsletter-section {
  background-color: var(--bg-tertiary);
  padding: var(--space-xl) 0;
  text-align: center;
}

.newsletter-box {
  max-width: 620px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: var(--space-md);
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  background-color: #FFFFFF;
}

.newsletter-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(200,81,3,0.12);
}

.final-cta-section {
  padding: var(--space-section) 0;
  background-color: var(--bg-secondary);
  text-align: center;
}

.final-cta-box {
  max-width: 720px;
  margin: 0 auto;
}

/* 16. CONTACT & FORMS */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background-color: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  outline: none;
  transition: var(--transition-fast);
}

select.form-control {
  appearance: auto;
  color: var(--text-primary);
  background-color: #FFFFFF;
}

select.form-control option {
  color: var(--text-primary);
  background-color: #FFFFFF;
}

.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(200, 81, 3, 0.12);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-primary);
  transition: var(--transition-fast);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--accent-orange);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  color: var(--text-secondary);
}

.faq-item.active .faq-content {
  padding: 0 24px 20px;
  max-height: 300px;
}

/* 17. SCROLL-REVEAL MOTION ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* 18. MOBILE STICKY CTA RIBBON */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 20px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-sticky-cta .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.95rem;
}

/* 19. MODAL & TOAST NOTIFICATIONS (FIXED SCROLLING & MAX-HEIGHT) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: var(--transition-smooth);
  color: var(--text-primary);
  margin: auto;
}

.modal-card h2 {
  color: var(--text-primary);
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.modal-card p {
  color: var(--text-secondary);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--accent-orange);
  color: #FFFFFF;
}

/* WORK WITH ME & ABOUT PAGES SPECIFIC RESPONSIVE CLASSES */
.criteria-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.stat-banner {
  margin-top: 32px;
  background: var(--bg-tertiary);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border-subtle);
}

.inline-testimonial-card {
  margin-top: 32px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.speaking-testimonial-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  border-radius: var(--radius-lg);
}

.speaking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.voice-center-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.voice-center-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Custom overlap behavior for alternating columns on desktop */
@media (min-width: 1025px) {
  .intro-grid-reverse .intro-content-card {
    margin-left: 0;
    margin-right: -80px;
    z-index: 2;
  }
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--text-primary);
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* 20. FOOTER */
.footer {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding: var(--space-section) 0 var(--space-lg);
  border-top: 1px solid var(--border-dark-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--text-dark-muted);
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark-subtle);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dark-muted);
  font-size: 0.875rem;
}

/* 21. RESPONSIVE BREAKPOINTS & MEDIA QUERIES */

@media (max-width: 1024px) {
  :root {
    --space-section: 80px;
    --space-xl: 48px;
    --space-lg: 32px;
    --space-md: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-image-wrapper img {
    height: 480px;
  }
  
  .intro-grid, .intro-grid-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .intro-content-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }

  .speaking-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .grid-3col {
    grid-template-columns: 1fr 1fr;
  }
  
  .grid-4col {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-section: 48px;
    --space-xl: 28px;
    --space-lg: 20px;
    --space-md: 14px;
    --space-sm: 8px;
  }

  body {
    font-size: 1rem;
    line-height: 1.6;
    padding-bottom: 80px; /* Leave space for sticky CTA */
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Typography Scale Overrides */
  h1, .h1 {
    font-family: var(--font-h1) !important;
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    font-weight: 600 !important;
  }

  h2, .h2 {
    font-family: var(--font-h1) !important;
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.015em !important;
    font-weight: 600 !important;
  }

  h3, .h3 {
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
  }

  h4, .h4 {
    font-size: 1.15rem !important;
  }

  .lead {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  .statement-headline {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
  }

  /* Hamburger Menu Anim */
  .mobile-toggle span {
    transition: var(--transition-fast);
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-actions .btn {
    display: none !important;
  }
  
  .mobile-toggle {
    display: flex;
  }

  /* Apple/Stripe-Grade Sticky Header Navigation */
  .header {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06) !important;
    padding: 12px 0 !important;
  }

  /* Enforce dark header text logo and toggle menu icons for readability on mobile template */
  .header.header-light-text:not(.scrolled) .logo {
    color: var(--text-primary) !important;
  }

  .header.header-light-text:not(.scrolled) .mobile-toggle span {
    background-color: var(--text-primary) !important;
  }

  .header.header-light-text:not(.scrolled) .nav-link {
    color: var(--text-secondary) !important;
  }

  .logo-img {
    height: 32px !important;
  }

  /* Redesigned Premium Mobile Menu Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
    margin-bottom: 12px;
  }

  .nav-menu .nav-link {
    color: var(--text-primary) !important;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-drawer-cta {
    display: block !important;
  }

  .nav-menu .nav-link.active {
    color: var(--accent-orange) !important;
  }

  .hero-home {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }

  section {
    padding: 60px 0 !important;
  }

  .eyebrow {
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    display: block !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
    color: var(--accent-orange) !important;
  }

  /* SaaS-style card overrides */
  .hero-card,
  .intro-content-card,
  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03) !important;
  }

  .contact-direct-card {
    padding: 20px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background-color: #FAF7F2 !important;
    box-shadow: none !important;
  }

  /* Premium Top-Accented Service Card */
  .service-card {
    border: none !important;
    border-top: 4px solid var(--accent-orange) !important;
    border-radius: 16px !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03) !important;
    padding: 28px 20px !important;
  }

  /* Notion-Style Clean Criteria Box */
  .criteria-card {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(26, 26, 26, 0.06) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    box-shadow: none !important;
  }

  /* Editorial Testimonials with Left Accent Border */
  .inline-testimonial-card,
  .speaking-testimonial-card {
    background-color: #FAF7F2 !important;
    border: none !important;
    border-left: 3px solid var(--accent-orange) !important;
    border-radius: 0 16px 16px 0 !important;
    padding: 24px 20px !important;
    box-shadow: none !important;
    margin-top: 24px !important;
  }

  .hero-image-wrapper img,
  .intro-image-block img {
    height: 280px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
  }

  .grid-3col, .grid-4col, .grid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .stats-inline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* One-Handed Sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 16px !important;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  }

  /* Apple/Linear Form Optimizations */
  .form-control {
    min-height: 48px !important;
    font-size: 16px !important; /* Defeat auto-zoom on iOS */
    padding: 12px 16px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background-color: #FAF7F2 !important;
    color: var(--text-primary) !important;
    outline: none;
    transition: var(--transition-fast);
  }

  .form-control:focus {
    background-color: #FFFFFF !important;
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 0 3px rgba(200, 81, 3, 0.1) !important;
  }

  textarea.form-control {
    min-height: 120px !important;
  }

  .form-group {
    gap: 6px !important;
  }

  /* Modern Touch Target Button Height */
  .btn {
    min-height: 48px !important;
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn-sm {
    min-height: 40px !important;
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
  }
  
  /* Timeline Stream Alignment */
  .timeline-line {
    left: 12px !important;
  }
  
  .timeline-item, .timeline-item:nth-child(even) {
    grid-template-columns: 1fr !important;
    padding-left: 36px !important;
    direction: ltr !important;
    gap: 16px !important;
    margin-bottom: 36px !important;
  }
  
  .timeline-node {
    left: 12px !important;
    top: 16px !important;
    transform: translate(-50%, 0) !important;
    width: 14px !important;
    height: 14px !important;
  }
  
  .timeline-organic-shape {
    width: 120px !important;
    height: 120px !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .modal-card {
    padding: 24px 16px;
    max-height: 82vh;
    border-radius: 12px;
  }

  .story-break-quote {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
    padding: 0 12px;
  }

  .testimonial-quote {
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    font-family: var(--font-h3) !important;
    font-style: italic !important;
  }

  /* Editorial Stat Display */
  .stat-banner {
    background-color: #FAF7F2 !important;
    border: 1px solid rgba(26, 26, 26, 0.04) !important;
    border-radius: 16px !important;
    padding: 24px 20px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: none !important;
  }
}

@media (max-width: 480px) {
  h1, .h1 {
    font-size: 1.95rem !important;
  }
  
  h2, .h2 {
    font-size: 1.5rem !important;
  }

  h3, .h3 {
    font-size: 1.2rem !important;
  }
  
  .btn {
    width: 100% !important;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .stats-inline-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* 22. COOKIE CONSENT BANNER STYLING */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  width: calc(100% - 48px);
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-content h3 {
  font-family: var(--font-h3);
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.3;
}

.cookie-banner-content p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-banner-actions .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.cookie-banner-actions .btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-width: none;
    padding: 18px;
  }
}
