/* b-264c594f4d.css */
/* ============================================
   SE RENOVATION DESIGN SYSTEM
   Based on spec: 2026-03-22-quiz-funnel-website-redesign.md
   ============================================ */

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

/* === TOKENS === */
:root {
  --maroon: #7B2337;
  --maroon-light: #9B3349;
  --maroon-dark: #5A1A29;
  --brass: #C4935A;
  --brass-light: #D4AD78;
  --gold-start: #d4af37;
  --gold-end: #ecc94b;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --text-primary: #271E1F;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;
  --border: #E5E7EB;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 24px; }
.section--alt { background: #F9FAFB; }
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--brass); font-weight: 600; text-align: center; margin-bottom: 6px;
}
.section-heading {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--text-primary);
  text-align: center; margin-bottom: 40px; line-height: 1.2;
}

/* === SCROLL ANIMATION === */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600; font-family: var(--font);
  border: none; cursor: pointer; transition: all var(--transition);
  min-height: 48px;
}
.btn--primary { background: var(--brass); color: white; }
.btn--primary:hover { background: var(--brass-light); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }
.btn--maroon { background: var(--maroon); color: white; }
.btn--maroon:hover { background: var(--maroon-light); }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 36px; width: auto; }
.nav__logo-text { font-weight: 600; font-size: 15px; color: var(--text-primary); }
.nav__links {
  display: flex; align-items: center; gap: 24px;
  font-size: 14px; color: var(--text-secondary);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__cta {
  background: var(--maroon); color: white;
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13px;
}
.nav__phone { color: var(--text-primary); font-weight: 500; }

/* Mobile nav */
.nav__hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
.nav__mobile-ctas { display: none; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .nav__mobile-ctas {
    display: flex; gap: 8px; align-items: center;
  }
  .nav__mobile-ctas .btn { padding: 10px 14px; font-size: 12px; min-height: 48px; }
}

/* === CTA BLOCK === */
.cta-block {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  padding: 72px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(196,147,90,0.08), transparent 60%);
}
.cta-block__title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: white;
  margin-bottom: 10px; position: relative;
}
.cta-block__subtitle {
  font-size: 15px; color: rgba(255,255,255,0.55);
  margin-bottom: 24px; position: relative;
}
.cta-block .btn { position: relative; }
.cta-block__proof {
  font-size: 12px; color: rgba(255,255,255,0.3);
  margin-top: 14px; position: relative;
}

/* === FOOTER === */
.footer {
  background: var(--text-primary); padding: 48px 24px 24px;
  color: var(--text-secondary); font-size: 13px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px; max-width: 900px; margin: 0 auto 32px;
}
.footer__title { color: white; font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.footer__links { display: flex; flex-direction: column; gap: 6px; }
.footer__links a:hover { color: white; }
.footer__logo { height: 48px; margin-bottom: 14px; }
.footer__bottom {
  border-top: 1px solid #3a3335; padding-top: 20px;
  text-align: center; color: #6B7280; max-width: 900px; margin: 0 auto;
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__logo { margin: 0 auto 14px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}

/* === BLOG-SPECIFIC STYLES === */
.blog-tag { display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: #7B2337; background: rgba(123,35,55,0.06); padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; }
.blog-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid #E5E7EB; transition: transform 200ms ease, box-shadow 200ms ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.blog-card__img { height: 180px; background-size: cover; background-position: center; }
.blog-card__body { padding: 16px; }
.blog-card__title { font-weight: 600; font-size: 15px; color: #271E1F; margin-bottom: 4px; line-height: 1.4; }
.blog-card__excerpt { font-size: 13px; color: #6B7280; line-height: 1.5; margin-bottom: 8px; }
.blog-card__meta { font-size: 11px; color: #9CA3AF; }

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter-tab { padding: 6px 14px; border-radius: 9999px; font-size: 12px; font-weight: 500; border: 1px solid #E5E7EB; background: white; cursor: pointer; color: #6B7280; transition: all 200ms ease; }
.filter-tab:hover, .filter-tab.active { background: #7B2337; color: white; border-color: #7B2337; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.blog-header {
  text-align: center; padding: 56px 24px 40px;
}
.blog-header h1 {
  font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--text-primary);
  margin-bottom: 10px; line-height: 1.2;
}
.blog-header p {
  font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 0 auto;
  line-height: 1.6;
}

/* kill-legacy-widgets-88a788.css */
/* Defensive kill of legacy floating-mic + chat-widget DOM hooks */
#se-voice-fab,#se-voice-overlay,#se-voice-body,#se-voice-form,#se-voice-err,
#se-voice-style,.se-voice-fab-inner,.se-voice-orb,.se-voice-panel,.se-voice-form,
.se-voice-close,.se-voice-state,.se-voice-hint,.se-voice-sub,
#se-chat,#se-chat-bubble,#se-chat-panel,.se-chat-fab,.se-chat-launcher,
[data-se-voice],[data-se-chat]{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important;position:absolute!important;width:0!important;height:0!important;overflow:hidden!important;}

/* se-reduced-motion-8cf60a.css */
/* WCAG 2.3.3 — respect prefers-reduced-motion for the persistent
     Dakota card glow, avatar-status ping, hero-play button pulse, and
     any other decorative loops. */
  @media (prefers-reduced-motion: reduce) {
    .dakota-card, .dakota-reopen, .dakota-card__status, .dakota-reopen__dot,
    .hero-sound-overlay__icon, .hero-sound-overlay {
      animation: none !important;
      transition: none !important;
    }
    /* Kill any other keyframe-driven ambience */
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

/* se-global-overflow-4c531f.css */
/* Kill horizontal scroll site-wide. Belt-and-suspenders for any
     descendant that misbehaves (quiz transforms, wide iframes,
     inline-styled grids). */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    overscroll-behavior-x: none;
  }
  /* Prevent any element from causing horizontal overflow */
  body > * { max-width: 100vw; }

  /* Hero video: use dynamic viewport height so iOS Safari's collapsing
     address bar doesn't cause a jump. 100dvh > 100vh where supported;
     fallback stays as 100vh. */
  @supports (height: 100dvh) {
    .hero, section#hero.hero, section#hero.section.hero {
      min-height: 100dvh !important;
    }
  }
  /* Mobile hero: ensure the video actually fills without letterbox
     stripes from the address-bar zone. */
  @media (max-width: 768px) {
    .hero video, .hero #hero-video {
      min-height: 100% !important;
      min-width: 100% !important;
    }
  }

  /* Widen Dakota mobile-defer from ≤480 to ≤768 so it doesn't overlap
     the quiz/hero CTAs on tablets and larger phones either. Card starts
     collapsed as a bubble; user taps to expand. */
  @media (max-width: 768px) {
    body:not([data-dakota-opened]) #dakota-card {
      display: none !important;
    }
    body:not([data-dakota-opened]) #dakota-reopen {
      display: flex !important;
    }
  }
