/* ============================================
   Voices for Dignity — Stylesheet
   Brand Colors: Purple #6B2D7B, Gold #D4A23A
   ============================================ */

:root {
  --purple-deep: #4A1D5E;
  --purple: #6B2D7B;
  --purple-light: #8B4D9B;
  --purple-muted: #F5EEF8;
  --gold: #D4A23A;
  --gold-light: #E8C97A;
  --gold-dark: #B8892E;
  --gold-muted: #FDF6E3;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-100: #F7F7F7;
  --gray-200: #EEEEEE;
  --gray-300: #D1D1D1;
  --gray-500: #888888;
  --gray-700: #4A4A4A;
  --gray-900: #1A1A1A;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 156px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Skip to Content ============ */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--purple);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top var(--transition);
}

.skip-to-content:focus {
  top: 0;
}

/* ============ Top Bar ============ */
.top-bar {
  background: var(--purple-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.top-bar-cta {
  font-weight: 600;
  color: var(--gold-light);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.top-bar-cta:hover {
  color: var(--white);
}

/* ============ Header ============ */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  overflow: visible;
}

.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .header-inner {
  height: 80px;
}

.header.scrolled .logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  align-self: center;
}

.header.scrolled .logo img {
  height: 60px;
}

/* Guide pages: always use the compact logo (no floating card) */
body.guide-page .header-inner { height: 80px; }
body.guide-page .logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  align-self: center;
}
body.guide-page .logo img { height: 60px; }
body.guide-page .page-hero {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 200px 0 90px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  transition: height var(--transition);
}

.logo {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--white);
  padding: 16px 26px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 14px 36px rgba(106, 45, 123, 0.28);
  position: relative;
  transition: padding var(--transition), border-radius var(--transition),
              box-shadow var(--transition), background var(--transition);
  z-index: 5;
}

.logo img {
  height: 140px;
  width: auto;
  transition: height var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}

.nav-link:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:not(.btn):hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--purple);
}

.nav-social {
  display: flex;
  align-items: center;
  color: var(--purple);
  transition: color var(--transition), transform var(--transition);
}

.nav-social svg {
  width: 20px;
  height: 20px;
}

.nav-social:hover {
  color: var(--gold);
  transform: scale(1.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 162, 58, 0.25), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn-sm:hover {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 50%, var(--purple) 100%);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 45, 123, 0.3), 0 0 20px rgba(212, 162, 58, 0.15);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 50%, var(--gold-dark) 100%);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(107, 45, 123, 0.35), 0 0 30px rgba(212, 162, 58, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(212, 162, 58, 0.35), 0 0 25px rgba(212, 162, 58, 0.15);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.08);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 29, 94, 0.85) 0%,
    rgba(107, 45, 123, 0.7) 40%,
    rgba(139, 77, 155, 0.55) 100%
  );
  z-index: 0;
}

/* Animated flowing lines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-lines-svg {
  width: 100%;
  height: 100%;
}

.hero-line {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
}

/* Gold lines */
.hero-line-1 {
  stroke: rgba(212, 162, 58, 0.3);
  stroke-width: 2;
  animation: drawLine 4s ease forwards, floatLine1 8s ease-in-out 4s infinite;
}

.hero-line-2 {
  stroke: rgba(212, 162, 58, 0.15);
  stroke-width: 1.5;
  animation: drawLine 4.5s 0.3s ease forwards, floatLine2 10s ease-in-out 4.8s infinite;
}

.hero-line-3 {
  stroke: rgba(232, 201, 122, 0.25);
  stroke-width: 1;
  animation: drawLine 5s 0.6s ease forwards, floatLine3 9s ease-in-out 5.6s infinite;
}

/* Purple/white lines */
.hero-line-4 {
  stroke: rgba(139, 77, 155, 0.25);
  stroke-width: 1.5;
  animation: drawLine 4.2s 0.2s ease forwards, floatLine2 11s ease-in-out 4.4s infinite;
}

.hero-line-5 {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2.5;
  animation: drawLine 5.5s 0.8s ease forwards, floatLine1 12s ease-in-out 6.3s infinite;
}

.hero-line-6 {
  stroke: rgba(212, 162, 58, 0.12);
  stroke-width: 1;
  animation: drawLine 4.8s 0.5s ease forwards, floatLine3 7s ease-in-out 5.3s infinite;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes floatLine1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatLine2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

@keyframes floatLine3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-12px) translateX(8px); }
  66% { transform: translateY(8px) translateX(-5px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  color: var(--gold-light);
  margin-bottom: 28px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Sections ============ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-tag-light {
  color: var(--gold-light);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header-light h2 {
  color: var(--white);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ Mission ============ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-card {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mission-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mission-icon svg {
  width: 24px;
  height: 24px;
  color: var(--purple);
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.mission-card p {
  color: var(--gray-700);
  line-height: 1.8;
}

/* ============ Services ============ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.service-card {
  flex: 0 1 calc(33.333% - 22px);
  min-width: 320px;
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple-muted), var(--gold-muted));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--purple);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.935rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.service-tagline {
  font-style: italic;
  color: var(--purple) !important;
  font-weight: 500;
  margin-bottom: 0 !important;
  font-size: 0.95rem;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--gold-dark);
}

/* ============ Why Us ============ */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.why-card {
  width: calc(33.333% - 22px);
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.935rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============ Who We Serve (Purple Section) ============ */
.section-purple {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  padding: 80px 0;
}

.serve-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.serve-card {
  width: calc(25% - 18px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.serve-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.serve-card svg {
  width: 40px;
  height: 40px;
  color: var(--gold-light);
  margin: 0 auto 20px;
}

.serve-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ============ Disclosures ============ */
.disclosures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.disclosure-card {
  padding: 40px 36px;
  border-radius: var(--radius);
}

.disclosure-no {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.disclosure-yes {
  background: var(--purple-muted);
  border: 1px solid rgba(107, 45, 123, 0.15);
}

.disclosure-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.disclosure-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.disclosure-no ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 2px;
  background: var(--gray-500);
}

.disclosure-yes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

/* ============ CTA ============ */
.section-cta {
  background: linear-gradient(135deg, var(--gold-muted), var(--white), var(--purple-muted));
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  text-align: left;
  margin-top: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.contact-form > .form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 45, 123, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: none;
}

.form-success {
  background: var(--white);
  border: 2px solid var(--purple);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gray-900);
  margin-bottom: 20px;
}

.cta-content > p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta-delivery {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-weight: 500;
}

.delivery-item svg {
  width: 22px;
  height: 22px;
  color: var(--purple);
}

.cta-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============ Footer ============ */
.footer {
  background: var(--gray-900);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 140px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-family: var(--font-heading);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--purple-light);
  transition: all var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links a,
.footer-services a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

/* ============ Wave Dividers ============ */
.wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 3;
}

.wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-top {
  top: 0;
}

.wave-bottom {
  bottom: 0;
}

.section,
.section-alt,
.section-purple,
.section-cta {
  position: relative;
}

.section-alt {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-purple {
  padding-top: 110px;
  padding-bottom: 110px;
}

/* ============ Staggered Card Reveals ============ */
.fade-in-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Glowing CTA ============ */
.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(212, 162, 58, 0.3), 0 0 20px rgba(212, 162, 58, 0);
  }
  50% {
    box-shadow: 0 0 12px rgba(212, 162, 58, 0.5), 0 0 36px rgba(212, 162, 58, 0.2);
  }
}

/* ============ Back to Top ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============ Page Hero (Service Pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 50%, var(--purple-light) 100%);
  padding: 200px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ============ Service Page Content ============ */
.service-page-intro {
  max-width: 800px;
  margin: 0 auto;
}

.service-page-intro:not(:last-child) {
  margin-bottom: 48px;
}

.service-page-intro p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.service-page-intro p:last-child {
  margin-bottom: 0;
}

.section-purple .service-page-intro p {
  color: rgba(255, 255, 255, 0.92);
}

.service-page-intro ul {
  padding-left: 0;
  margin-bottom: 24px;
}

.service-page-intro ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.service-page-intro ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.service-page-intro a:not(.btn) {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.service-page-intro a:not(.btn):hover {
  color: var(--gold-dark);
}

body.guide-page .service-page-intro > .btn,
body.guide-page .blog-content > .btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

body.guide-page .service-page-intro p:has(.btn),
body.guide-page .blog-content p:has(.btn) {
  text-align: center;
}

/* Burnout Signs Grid */
.burnout-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.burnout-sign-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.burnout-sign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.burnout-sign-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.burnout-sign-icon svg {
  width: 22px;
  height: 22px;
  color: var(--purple);
}

.burnout-sign-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.burnout-sign-card p {
  font-size: 0.935rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.burnout-note {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 40px;
  background: var(--purple-muted);
  border-radius: var(--radius);
  border-left: 4px solid var(--purple);
}

.burnout-note p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* Service Page Quote */
.service-page-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.service-page-quote blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--purple);
  font-style: italic;
  line-height: 1.5;
  font-weight: 600;
}

/* ============ Blog Content ============ */
.blog-content {
  max-width: 780px;
  margin: 0 auto;
}

.blog-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gray-900);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-top: 32px;
  margin-bottom: 14px;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
  padding-left: 0;
  margin-bottom: 24px;
}

.blog-content ul li,
.blog-content ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.blog-content ol {
  counter-reset: blog-counter;
  list-style: none;
}

.blog-content ol li {
  counter-increment: blog-counter;
}

.blog-content ol li::before {
  content: counter(blog-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--purple);
}

.blog-content .callout {
  background: var(--purple-muted);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 32px 0;
}

.blog-content .callout p {
  margin-bottom: 0;
  font-size: 1rem;
}

.blog-content .blog-cta {
  text-align: center;
  margin: 48px 0;
  padding: 48px 36px;
  background: linear-gradient(135deg, var(--gold-muted), var(--white), var(--purple-muted));
  border-radius: var(--radius);
}

.blog-content .blog-cta h3 {
  border: none;
  margin-top: 0;
}

.blog-content .blog-cta p {
  margin-bottom: 24px;
}

.blog-content a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.blog-content a.btn {
  color: var(--white);
  text-decoration: none;
}

.blog-content a:hover {
  color: var(--gold-dark);
}

/* ============ Checklist Grid (Blog) ============ */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 40px;
}

.checklist-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.checklist-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.checklist-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
}

.checklist-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.checklist-item p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Reassess List */
.reassess-list {
  padding-left: 0;
  margin: 24px 0 32px;
}

.reassess-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.reassess-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  background: var(--purple);
  border-radius: 50%;
}

/* ============ Animations ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */

/* Hamburger menu kicks in at 1024px */
@media (max-width: 1024px) {
  .logo { padding: 14px 22px; border-radius: 0 0 16px 16px; }
  .logo img { height: 120px; }
  .header-inner { height: 100px; }
  html { scroll-padding-top: 136px; }
  .hero { min-height: 100vh; }
  .hero-content { padding-top: 200px; padding-bottom: 100px; }

  .header.scrolled .logo img { height: 56px; }
  .header.scrolled .header-inner { height: 72px; }

  body.guide-page .header-inner { height: 72px; }
  body.guide-page .logo img { height: 56px; }
  body.guide-page .nav { top: 116px; }
  body.guide-page .page-hero { padding: 170px 0 70px; }

  .nav {
    display: none;
    position: fixed;
    top: 190px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .mission-grid { grid-template-columns: 1fr; }
  .why-card { width: calc(50% - 16px); }
  .serve-card { width: calc(50% - 12px); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .burnout-signs-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .logo { padding: 12px 18px; border-radius: 0 0 14px 14px; }
  .logo img { height: 115px; }
  .header-inner { height: 90px; }
  html { scroll-padding-top: 126px; }
  .nav { top: 180px; }

  .header.scrolled .logo img { height: 52px; }
  .header.scrolled .header-inner { height: 68px; }

  body.guide-page .header-inner { height: 68px; }
  body.guide-page .logo img { height: 52px; }
  body.guide-page .nav { top: 108px; }

  .top-bar-left span { font-size: 0.78rem; }
  .top-bar-cta { font-size: 0.78rem; }
  .hero { min-height: 100vh; }
  .hero-content { padding-top: 180px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .section { padding: 70px 0; }
  .services-grid .service-card { flex: 0 1 100%; min-width: 0; }
  .why-card { width: 100%; }
  .serve-card { width: calc(50% - 12px); }
  .disclosures-grid { grid-template-columns: 1fr; }
  .cta-delivery { flex-direction: column; gap: 16px; align-items: center; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "links services";
    gap: 32px 24px;
  }
  .footer-brand {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links { grid-area: links; text-align: center; }
  .footer-services { grid-area: services; text-align: center; }
  .burnout-signs-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 170px 0 60px; }
  .burnout-note { padding: 24px 24px; }
}

@media (max-width: 480px) {
  .logo { padding: 10px 16px; border-radius: 0 0 12px 12px; }
  .logo img { height: 110px; }
  .header-inner { height: 80px; }
  html { scroll-padding-top: 116px; }
  .nav { top: 170px; }

  .header.scrolled .logo img { height: 48px; }
  .header.scrolled .header-inner { height: 64px; }

  body.guide-page .header-inner { height: 64px; }
  body.guide-page .logo img { height: 48px; }
  body.guide-page .nav { top: 104px; }

  .serve-card { width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-content { padding-top: 160px; padding-bottom: 70px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-tagline { font-size: 1.15rem; margin-bottom: 22px; }
  .top-bar-left { display: none; }
  .top-bar-inner { justify-content: center; }
  .top-bar-cta { font-size: 0.78rem; }
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
