/* ================================================================
   style.css - Thought Leader Workshop - Dark Luxury Design System
   ================================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens - Permanently Dark --- */
:root {
  /* Typography */
  --font-display: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-nav: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(1rem, 0.95rem + 0.35vw, 1.1875rem);
  --text-base: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows - dark luxury */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* ========================
     DARK LUXURY PALETTE
     ======================== */
  --color-bg: #000000;
  --color-surface: #0f1328;
  --color-surface-2: #141832;
  --color-border: rgba(201, 168, 76, 0.2);
  --color-divider: rgba(201, 168, 76, 0.12);
  --color-text: #FFFFFF;
  --color-text-muted: #9A978F;
  --color-text-faint: #5a5854;
  --color-text-inverse: #000000;

  /* Accent: Gold */
  --color-accent: #C9A84C;
  --color-accent-hover: #d4b75e;
  --color-accent-light: rgba(201, 168, 76, 0.1);

  /* CTA: Burgundy */
  --color-cta: #6B1A1A;
  --color-cta-hover: #8A2424;
  --color-cta-active: #5a1515;

  /* Legacy mappings for components that use --color-primary */
  --color-primary: #C9A84C;
  --color-primary-hover: #d4b75e;
  --color-primary-light: rgba(201, 168, 76, 0.1);

  /* Semantic */
  --color-success: #6DAA45;
  --color-error: #D163A7;

  /* Sections */
  --color-navy: #0f1328;
  --color-burgundy: #6B1A1A;

  /* Cream palette */
  --color-cream: #F5F0E8;
  --color-cream-text: #1a1a1a;
  --color-cream-text-muted: #4a453d;
  --color-cream-border: rgba(201, 168, 76, 0.15);
}

/* ================================================================
   GLOBAL COMPONENTS
   ================================================================ */

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 100;
  font-size: var(--text-sm);
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-2);
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background-color: #000;
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s var(--ease-out);
}
.site-header.nav-open {
  position: fixed;
  left: 0;
  right: 0;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
  z-index: 10001;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.logo-link svg {
  width: 36px;
  height: 36px;
}
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 100px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-4);
}
.nav-desktop a {
  font-family: var(--font-nav);
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition-interactive);
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* CTA Button - Modern sleek style */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75em 2em;
  background: linear-gradient(135deg, #7a2020 0%, var(--color-cta) 50%, #5a1515 100%);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 26, 26, 0.45), 0 2px 8px rgba(0,0,0,0.2);
  filter: brightness(1.1);
}
.btn-cta:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75em 2em;
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta-outline:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.btn-cta-outline:active {
  transform: translateY(0);
}

.nav-cta-desktop {
  display: none;
  white-space: nowrap;
  min-width: max-content;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  background-color: #000;
  z-index: 9998;
  padding: 100px var(--space-6) var(--space-6);
  flex-direction: column;
  gap: var(--space-2);
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-family: var(--font-nav);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.mobile-nav a:hover {
  background: var(--color-surface);
  color: var(--color-accent);
}
.mobile-nav .btn-cta {
  margin-top: var(--space-4);
  text-align: center;
  justify-content: center;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
  text-transform: none;
  letter-spacing: normal;
}

@media (max-width: 767px) {
  .logo-img {
    height: 75px;
  }
  .logo-img--footer {
    height: 80px;
  }
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-cta-desktop { display: inline-flex; white-space: nowrap; min-width: max-content; }
  .mobile-nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* --- Nav Dropdown (Free Assessments) --- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  font-family: var(--font-nav);
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color var(--transition-interactive);
  position: relative;
}
.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--color-accent);
}
.nav-dropdown-trigger svg {
  transition: transform 0.25s ease;
}
.nav-dropdown-trigger::after {
  content: none;
}
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  padding-top: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201, 168, 76, 0.08);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 10002;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.nav-dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-nav);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  font-weight: 500;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--color-accent) !important;
  background: rgba(201, 168, 76, 0.06);
}
.nav-dropdown-menu a.active {
  color: var(--color-accent) !important;
}

/* Nav Calculator link - gold highlight */
.nav-calculator {
  color: var(--color-accent) !important;
  position: relative;
}
.nav-desktop .nav-calculator::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  opacity: 0.5;
}
.mobile-nav .nav-calculator {
  color: var(--color-accent) !important;
  font-weight: 600;
}

/* Mobile nav group for assessments dropdown */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-group-label {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-family: var(--font-nav);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-nav-indent {
  display: block;
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-10) !important;
  font-size: var(--text-sm) !important;
  font-family: var(--font-nav);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.mobile-nav-indent:hover {
  background: var(--color-surface);
  color: var(--color-accent);
}

/* --- Footer --- */
.site-footer {
  background: #000;
  border-top: 1px solid var(--color-divider);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-6) var(--space-8);
}
.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
.footer-brand .logo-link { margin-bottom: var(--space-3); }
.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 32ch;
  line-height: 1.5;
}
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-nav a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.footer-attrib a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-attrib a:hover { color: var(--color-accent); }

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ================================================================
   SECTION UTILITIES
   ================================================================ */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.section--black {
  background: #000;
}
.section--navy {
  background: var(--color-navy);
}
.section--burgundy {
  background: var(--color-burgundy);
  color: #fff;
}
.section--cream {
  background: var(--color-cream);
  color: var(--color-cream-text);
}

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.container--narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.container--default {
  max-width: var(--content-default);
  margin: 0 auto;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section--burgundy .section-label {
  color: rgba(255,255,255,0.6);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-title .gold {
  color: var(--color-accent);
}

.section-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 400;
}
.section-body p + p {
  margin-top: var(--space-4);
}

/* ================================================================
   CREAM SECTION OVERRIDES
   ================================================================ */
.section--cream .section-label {
  color: var(--color-accent);
}
.section--cream .section-title {
  color: var(--color-cream-text);
}
.section--cream .section-body,
.section--cream .section-body p {
  color: var(--color-cream-text-muted);
}

/* Quote cards on cream */
.section--cream .quote-card {
  background: #fff;
  border-color: var(--color-cream-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section--cream .quote-card p {
  color: var(--color-cream-text-muted);
}

/* Service cards on cream */
.section--cream .service-card {
  background: #fff;
  border-color: var(--color-cream-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section--cream .service-card .tagline {
  color: var(--color-cream-text-muted);
}
.section--cream .service-card .description {
  color: var(--color-cream-text-muted);
}
.section--cream .service-card .price {
  color: var(--color-cream-text);
}
.section--cream .service-card--featured {
  background: #fff;
}

/* Diff items on cream */
.section--cream .diff-content h3 {
  color: var(--color-burgundy);
}
.section--cream .diff-content p {
  color: var(--color-cream-text-muted);
}
.section--cream .diff-icon {
  color: var(--color-burgundy);
}

/* About preview on cream */
.section--cream .about-photo {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.1), 0 8px 30px rgba(0,0,0,0.12);
}
.section--cream .about-story {
  color: var(--color-cream-text-muted);
}

/* Approach items on cream */
.section--cream .approach-item {
  background: #fff;
  border-color: var(--color-cream-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section--cream .approach-item h3 {
  color: var(--color-accent);
}
.section--cream .approach-item p {
  color: var(--color-cream-text-muted);
}

/* Credentials on cream */
.section--cream .credential-col h3 {
  color: var(--color-accent);
}
.section--cream .credential-col li {
  color: var(--color-cream-text-muted);
}
.section--cream .credential-col a {
  color: var(--color-accent);
}

/* Buttons on cream */
.section--cream .btn-cta {
  background: var(--color-cta);
  color: #fff;
}
.section--cream .btn-cta:hover {
  background: var(--color-cta-hover);
}
.section--cream .btn-cta-outline {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.section--cream .btn-cta-outline:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse);
}
.section--cream a.learn-more {
  color: var(--color-accent);
}

/* Service detail on cream */
.section--cream .service-detail {
  border-bottom-color: var(--color-cream-border);
}
.section--cream .service-detail h2 {
  color: var(--color-cream-text);
}
.section--cream .service-detail .tagline {
  color: var(--color-accent);
}
.section--cream .service-detail .who-for,
.section--cream .service-detail .walk-away {
  color: var(--color-cream-text-muted);
}
.section--cream .service-detail .who-for strong,
.section--cream .service-detail .walk-away strong {
  color: var(--color-cream-text);
}
.section--cream .service-includes h3,
.section--cream .service-phases h3 {
  color: var(--color-cream-text);
}
.section--cream .service-includes li {
  color: var(--color-cream-text-muted);
}
.section--cream .service-investment {
  border-top-color: var(--color-cream-border);
}
.section--cream .service-price {
  color: var(--color-accent);
}
.section--cream .service-price span {
  color: var(--color-cream-text-muted);
}

/* Phase cards on cream */
.section--cream .phase-card {
  background: #fff;
  border-color: var(--color-cream-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section--cream .phase-card h4 {
  color: var(--color-cream-text);
}
.section--cream .phase-card li {
  color: var(--color-cream-text-muted);
}

/* Contact form on cream */
.section--cream .form-group label {
  color: var(--color-cream-text);
}
.section--cream .form-group input,
.section--cream .form-group select,
.section--cream .form-group textarea {
  background: #fff;
  border-color: var(--color-cream-border);
  color: var(--color-cream-text);
}
.section--cream .form-group input::placeholder,
.section--cream .form-group textarea::placeholder {
  color: #999;
}
.section--cream .form-group select option {
  background: #fff;
  color: var(--color-cream-text);
}
.section--cream .contact-link-item svg {
  color: var(--color-accent);
}
.section--cream .contact-link-item a {
  color: var(--color-accent);
}
.section--cream .contact-link-item span {
  color: var(--color-cream-text-muted);
}

/* About text on cream */
.section--cream .about-personal {
  color: var(--color-cream-text-muted);
}
.section--cream .about-closing {
  color: var(--color-cream-text);
}

/* Final CTA on cream */
.section--cream .final-cta h2 {
  color: var(--color-cream-text);
}
.section--cream .final-cta p {
  color: var(--color-cream-text-muted);
}

/* Testimonial placeholders on cream */
.section--cream .testimonial-empty {
  background: #fff;
  border-color: var(--color-cream-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section--cream .testimonial-empty p {
  color: var(--color-cream-text-muted);
}
.section--cream .testimonial-empty .quote-icon {
  color: var(--color-cream-text-muted);
}

/* Services note on cream */
.section--cream .services-note a {
  color: var(--color-accent);
}

/* ================================================================
   HERO - VIDEO HERO (Homepage)
   ================================================================ */
.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform-origin: center center;
  will-change: transform;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* Animated dark gradient placeholder for video */
.hero-video-bg {
  background: linear-gradient(
    135deg,
    #000 0%,
    #0f1328 25%,
    #1a1040 50%,
    #0f1328 75%,
    #000 100%
  );
  background-size: 400% 400%;
  animation: heroGradient 12s ease infinite;
}
@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}
/* --- Wide cinematic bar --- */
.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  width: 92%;
  padding: clamp(var(--space-6), 3vw, var(--space-10)) clamp(var(--space-6), 4vw, var(--space-12));
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  /* Animation: expand-in */
  animation: heroBoxExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes heroBoxExpand {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.8);
    border-color: transparent;
  }
  60% {
    opacity: 1;
    transform: scaleX(1.02) scaleY(1);
    border-color: rgba(255, 255, 255, 0.3);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    border-color: rgba(255, 255, 255, 0.2);
  }
}
.hero-video-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  line-height: 1.2;
  /* Animation: blur-to-sharp */
  animation: heroTextBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.hero-video-content h1 .gold {
  color: var(--color-accent);
  font-weight: 700;
}
@keyframes heroTextBlur {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.hero-video-content .hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 80ch;
  font-weight: 400;
  animation: heroTextBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}
.hero-video-content .hero-subtitle .gold {
  color: var(--color-accent);
  font-weight: 600;
}
.hero-video-content .hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  animation: heroTextBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
@media (max-width: 767px) {
  .hero-video-content {
    width: 94%;
    flex-direction: column;
    gap: var(--space-4);
  }
  .hero-video-content .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-content,
  .hero-video-content h1,
  .hero-video-content .hero-subtitle,
  .hero-video-content .hero-actions {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
.hero-secondary-link {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-interactive);
}
.hero-secondary-link:hover {
  color: var(--color-accent-hover);
}

/* Sub-page hero (smaller, no video) */
.hero {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6) clamp(var(--space-12), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 720px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 60ch;
  font-weight: 400;
}

.hero--sub {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-6) clamp(var(--space-8), 4vw, var(--space-12));
  background: var(--color-navy);
}
.hero--sub h1 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.hero--sub .hero-subtitle {
  margin-bottom: var(--space-4);
}

/* ================================================================
   PAIN POINTS / QUOTES
   ================================================================ */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.quote-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.quote-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.4;
  position: absolute;
  top: var(--space-3);
  left: var(--space-6);
}
.quote-card p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

@media (min-width: 768px) {
  .quotes-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .quote-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .quote-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .quote-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
}

/* ================================================================
   SERVICES OVERVIEW (Homepage - Asymmetric Layout)
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.service-card--featured {
  background: var(--color-surface-2);
  border: 2px solid var(--color-accent);
  position: relative;
}
.service-card-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-4);
}
.service-card-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.service-card--featured::after {
  content: 'Most Popular';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.service-card .tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.service-card .description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.service-card .price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.service-card .learn-more {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-interactive);
}
.service-card .learn-more:hover {
  color: var(--color-accent-hover);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid .service-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-10);
  }
  .services-grid .service-card--featured .service-card-visual {
    border-radius: var(--radius-lg);
    height: 260px;
    overflow: hidden;
  }
  .services-grid .service-card--featured .service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
}

.services-note {
  margin-top: var(--space-8);
  text-align: center;
}
.services-note a {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.services-note a:hover {
  text-decoration: underline;
}

/* ================================================================
   DIFFERENTIATORS (Alternating layout)
   ================================================================ */
.diff-list {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  margin-top: var(--space-12);
}
.diff-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
.diff-icon {
  width: 56px;
  height: 56px;
  color: var(--color-burgundy);
  flex-shrink: 0;
}
.diff-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-burgundy);
  margin-bottom: var(--space-2);
}
.diff-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 400;
}

@media (min-width: 768px) {
  .diff-item {
    grid-template-columns: 72px 1fr;
    gap: var(--space-8);
  }
  .diff-item:nth-child(even) {
    direction: rtl;
  }
  .diff-item:nth-child(even) > * {
    direction: ltr;
  }
}

/* ================================================================
   TESTIMONIALS (Placeholder)
   ================================================================ */
.testimonials-placeholder {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.testimonial-empty {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px dashed var(--color-border);
  text-align: center;
}
.testimonial-empty .quote-icon {
  width: 32px;
  height: 32px;
  color: var(--color-text-faint);
  margin: 0 auto var(--space-3);
}
.testimonial-empty p {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  font-style: italic;
  max-width: 40ch;
  margin: 0 auto;
  font-weight: 400;
}

@media (min-width: 768px) {
  .testimonials-placeholder {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ================================================================
   ABOUT PREVIEW (Split layout)
   ================================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-photo {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  border: 3px solid var(--color-accent);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.12), var(--shadow-lg);
  flex-shrink: 0;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About page - much larger photo */
.about-photo--large {
  width: 480px;
  height: 480px;
}

/* About page - float photo right, text wraps around it */
.about-story-wrap {
  overflow: hidden;
}
.about-photo--float {
  float: right;
  margin: 0 0 var(--space-6) var(--space-8);
  border-radius: var(--radius-full);
  shape-outside: circle(50%);
}

@media (min-width: 768px) {
  .about-preview {
    grid-template-columns: 300px 1fr;
    align-items: start;
  }
  .about-photo {
    margin: 0;
  }
  /* Large photo layout on about page */
  .about-preview--large {
    grid-template-columns: 480px 1fr;
  }
}
@media (max-width: 767px) {
  .about-photo--large {
    width: 280px;
    height: 280px;
  }
  .about-photo--float {
    float: none;
    margin: 0 auto var(--space-6) auto;
  }
}

/* About page - atmospheric image break */
.about-atmosphere-break {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  position: relative;
}
.about-atmosphere-break img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.6) saturate(0.9);
}
@media (max-width: 768px) {
  .about-atmosphere-break,
  .about-atmosphere-break img {
    height: 200px;
    max-height: 200px;
  }
}

/* ================================================================
   LEAD MAGNET SECTION (Burgundy bg)
   ================================================================ */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 480px;
}
.lead-form input {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: var(--text-sm);
}
.lead-form input::placeholder {
  color: rgba(255,255,255,0.6);
}
.lead-form .btn-white {
  padding: 0.75em 2em;
  background: linear-gradient(135deg, #d4b75e 0%, var(--color-accent) 50%, #b89a3f 100%);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.25s ease;
}
.lead-form .btn-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.lead-form .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  filter: brightness(1.08);
}

@media (min-width: 768px) {
  .lead-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
  }
  .lead-form input {
    flex: 1;
    min-width: 160px;
  }
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.final-cta p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* ================================================================
   SERVICES PAGE (Detailed)
   ================================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding-bottom: clamp(var(--space-8), 4vw, var(--space-16));
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

/* Service detail with image */
.service-detail-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-bottom: var(--space-4);
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.92) saturate(1.05);
  transition: filter 0.4s ease;
}
.service-detail--with-image:hover .service-detail-image img {
  filter: brightness(1) saturate(1.1);
}
@media (max-width: 768px) {
  .service-detail-image {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }
}
.service-detail:last-of-type {
  border-bottom: none;
}
.service-detail h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.service-detail .tagline {
  font-size: var(--text-base);
  color: var(--color-accent);
  font-weight: 500;
  font-style: italic;
  margin-bottom: var(--space-4);
}
.service-detail .who-for,
.service-detail .walk-away {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: var(--space-6);
  font-weight: 400;
}
.service-detail .who-for strong,
.service-detail .walk-away strong {
  color: var(--color-text);
  font-weight: 600;
}

.service-includes h3,
.service-phases h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.service-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-includes li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  padding-left: var(--space-6);
  position: relative;
  line-height: 2;
  font-weight: 400;
}
.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  opacity: 0.5;
}

/* Phases */
.phase-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.phase-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.phase-card .phase-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.phase-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.phase-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.phase-card li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  font-weight: 400;
}
.phase-card li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  opacity: 0.6;
}

@media (min-width: 768px) {
  .phase-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-investment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.service-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
}
.service-price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* Creator Toolkits */
.toolkit-section {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--color-border);
}
.toolkit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.toolkit-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  font-weight: 400;
}
.toolkit-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.toolkit-form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin-top: var(--space-4);
}
.toolkit-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  background: #F5F0E8;
  color: #1a1a1a;
  font-size: var(--text-sm);
}
.toolkit-form input::placeholder {
  color: #999;
}
.toolkit-form button {
  padding: 0.75em 2.5em;
  background: linear-gradient(135deg, #7a2020 0%, var(--color-cta) 50%, #5a1515 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.25s ease;
}
.toolkit-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 26, 26, 0.45);
  filter: brightness(1.1);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-story {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 400;
}
.about-story p + p {
  margin-top: var(--space-4);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.approach-item {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.approach-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.approach-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.credential-col h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.credential-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.credential-col li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}
.credential-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  opacity: 0.4;
}

@media (min-width: 768px) {
  .credentials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-personal {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
}

.about-closing {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 400;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
  outline: none;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group select option {
  background: var(--color-surface);
  color: var(--color-text);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-link-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.contact-link-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-link-item a {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-interactive);
}
.contact-link-item a:hover {
  color: var(--color-accent-hover);
}
.contact-link-item span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: block;
  margin-top: var(--space-1);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* ================================================================
   FORM SUCCESS MESSAGE
   ================================================================ */
.form-success {
  display: none;
  padding: var(--space-4);
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
  text-align: center;
}
.form-success.show {
  display: block;
}
.section--burgundy .form-success {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.section--cream .form-success {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-accent);
}

/* ================================================================
   SCROLL-DRIVEN ANIMATIONS (JS-powered via IntersectionObserver)
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ================================================================
   GOLD SECTION DIVIDERS
   ================================================================ */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.section-divider-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* ================================================================
   UTILITY
   ================================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* Gold divider decorative element */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-6) 0;
  opacity: 0.6;
}
.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Body text weight */
body {
  font-weight: 400;
}
h1, h2 {
  font-weight: 700;
}
h3, h4 {
  font-weight: 600;
}

/* ================================================================
   INTAKE FORM PAGE
   ================================================================ */
.intake-section {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.intake-section:last-of-type {
  border-bottom: none;
}
.intake-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--space-8);
}
.intake-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.intake-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.intake-grid--2col {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .intake-grid--2col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Form controls on cream background */
.intake-section .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.intake-section label {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1.05rem);
  font-weight: 600;
  color: #1a1a1a;
}
.intake-section .required {
  color: #a13544;
}
.intake-section input[type="text"],
.intake-section input[type="email"],
.intake-section input[type="tel"],
.intake-section input[type="url"],
.intake-section textarea,
.intake-section select {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1.5px solid #d4d1ca;
  background: #fff;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1.05rem);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.intake-section input:focus,
.intake-section textarea:focus,
.intake-section select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.intake-section textarea {
  resize: vertical;
  min-height: 80px;
}
.intake-section input::placeholder,
.intake-section textarea::placeholder {
  color: #999;
}
.intake-section select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a453d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: calc(var(--space-4) + 20px);
}

/* Checkbox groups */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-weight: 400 !important;
  color: #4a453d !important;
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1.05rem) !important;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #d4d1ca;
  background: #fff;
  cursor: pointer;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

/* Submit area */
.intake-submit {
  text-align: center;
  padding-top: var(--space-8);
}
.btn-cta--large {
  padding: 0.85em 2.5em;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
}
.intake-privacy {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: #999;
}

/* Success state */
.intake-success {
  text-align: center;
  padding: var(--space-16) 0;
}
.intake-success-inner {
  max-width: 500px;
  margin: 0 auto;
}
.intake-success-inner h2 {
  color: #1a1a1a;
  margin: var(--space-6) 0 var(--space-4);
}
.intake-success-inner p {
  color: #4a453d;
  line-height: 1.7;
}

/* --- Assessment Nav Highlight --- */
.nav-desktop a.nav-assess,
.mobile-nav a.nav-assess {
  position: relative;
}
.nav-desktop a.nav-assess::after {
  content: none;
}

/* Creator Portal nav link */
.nav-portal {
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  padding: 4px 12px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.nav-portal:hover {
  border-color: #C9A84C !important;
  color: #C9A84C !important;
}

/* ══ Login Modal ══ */
.login-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.login-modal-overlay.active { opacity: 1; visibility: visible; }
.login-modal {
  background: #fff; border-radius: 14px; max-width: 420px; width: 100%;
  padding: 40px 36px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(20px); transition: transform 0.25s ease;
}
.login-modal-overlay.active .login-modal { transform: translateY(0); }
.login-modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: #999; line-height: 1;
  transition: color 0.15s;
}
.login-modal-close:hover { color: #333; }
.login-modal-brand {
  text-align: center; margin-bottom: 28px;
}
.login-modal-brand-name {
  display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #C9A84C; margin-bottom: 6px;
}
.login-modal-title {
  font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: #141832;
  margin: 0 0 6px;
}
.login-modal-subtitle {
  font-size: 0.85rem; color: #888; margin: 0;
}
.login-modal-form { display: flex; flex-direction: column; gap: 14px; }
.login-modal-label {
  font-size: 0.8rem; font-weight: 600; color: #141832; display: block; margin-bottom: 4px;
}
.login-modal-input {
  width: 100%; padding: 12px 14px; border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif; color: #333;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.login-modal-input:focus { outline: none; border-color: #C9A84C; }
.login-modal-btn {
  width: 100%; padding: 14px; background: #141832; color: #C9A84C;
  border: none; border-radius: 8px; font-size: 1rem; font-weight: 700;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s;
}
.login-modal-btn:hover { background: #1c2244; }
.login-modal-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.login-modal-success {
  text-align: center; padding: 20px 0;
}
.login-modal-success-icon {
  width: 48px; height: 48px; border-radius: 50%; background: #141832;
  color: #C9A84C; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.login-modal-error {
  background: rgba(107,26,26,0.08); color: #6B1A1A; padding: 10px 14px;
  border-radius: 6px; font-size: 0.85rem; text-align: center;
}
.login-modal-help {
  text-align: center; font-size: 0.8rem; color: #999; margin-top: 8px;
}
.login-modal-help a { color: #C9A84C; text-decoration: none; }
.login-modal-help a:hover { text-decoration: underline; }
