/* ═══════════════════════════════════════════════════════════════════════════
   Sapna Poojari — Psychology & Social Impact
   Design System & Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Primary Palette — Warm & Calming */
  --sage:             #7C9A8E;
  --sage-light:       #A8C5B8;
  --sage-lighter:     #D4E4DC;
  --sage-dark:        #5A7A6E;
  --sage-darker:      #3D5C52;

  /* Neutral Palette */
  --cream:            #FAF7F2;
  --cream-dark:       #F0EBE3;
  --warm-white:       #FFFDF9;
  --charcoal:         #2C2C2C;
  --text:             #3A3A3A;
  --text-light:       #6B6B6B;
  --text-lighter:     #9A9A9A;

  /* Accent Palette */
  --lavender:         #B8A9C9;
  --lavender-light:   #E8E0F0;
  --terracotta:       #C4886B;
  --terracotta-light: #F0D4C0;
  --sand:             #E8DDD0;

  /* Functional */
  --success:          #6B9E7E;
  --error:            #C4706B;
  --error-light:      #FDE8E7;
  --success-light:    #E8F5EC;

  /* Typography */
  --font-heading:     'Playfair Display', Georgia, serif;
  --font-body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:         0.25rem;
  --space-sm:         0.5rem;
  --space-md:         1rem;
  --space-lg:         1.5rem;
  --space-xl:         2rem;
  --space-2xl:        3rem;
  --space-3xl:        4rem;
  --space-4xl:        6rem;

  /* Borders & Shadows */
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        30px;
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:        0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg:        0 8px 40px rgba(0,0,0,0.08);
  --shadow-xl:        0 16px 60px rgba(0,0,0,0.1);

  /* Transitions */
  --transition:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-darker); }
ul { list-style: none; }

::selection {
  background: var(--sage-light);
  color: var(--charcoal);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.text-center { text-align: center; }

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

.bg-alt {
  background: var(--cream-dark);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.accent { color: var(--sage); }

p { margin-bottom: var(--space-md); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn-secondary:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}

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

/* ── Section Headers ── */
.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--sage-lighter);
  color: var(--sage-darker);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-top: var(--space-sm);
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: var(--space-md) auto 0;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 154, 142, 0.1);
  transition: all var(--transition);
}

nav.scrolled {
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(250, 247, 242, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--charcoal);
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--sage);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.logo-accent {
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-links a {
  padding: 0.5rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 450;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
  background: var(--sage-lighter);
}

.nav-cta {
  background: var(--sage) !important;
  color: white !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: var(--radius-xl) !important;
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger { position: relative; }

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-1 {
  width: 500px; height: 500px;
  background: var(--sage);
  top: -10%; right: -5%;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px; height: 300px;
  background: var(--lavender);
  bottom: 10%; left: -5%;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px; height: 200px;
  background: var(--terracotta);
  top: 40%; left: 30%;
  animation: float 18s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--sage-lighter);
  color: var(--sage-darker);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
}

.hero-content h1 {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-lighter);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  display: inline-block;
}

.image-frame img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--sage-light);
  border-radius: var(--radius-lg);
  top: 20px;
  left: 20px;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PREVIEW (Home Page)
   ═══════════════════════════════════════════════════════════════════════════ */
.about-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.about-card {
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(124, 154, 142, 0.08);
}

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

.about-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-lighter);
  border-radius: var(--radius-md);
  color: var(--sage-dark);
  margin-bottom: var(--space-lg);
}

.about-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
}

.about-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.service-card {
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(124, 154, 142, 0.08);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-lighter);
  border-radius: var(--radius-md);
  color: var(--sage-dark);
  margin-bottom: var(--space-lg);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Service Detail (Services page) */
.service-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-xl);
  padding: var(--space-3xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(124, 154, 142, 0.08);
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-lighter);
  border-radius: var(--radius-md);
  color: var(--sage-dark);
  flex-shrink: 0;
}

.service-detail-content h2 {
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
}

.service-features {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.service-features li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--text);
  font-size: 0.95rem;
}

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

.service-note {
  color: var(--text-light);
  font-style: italic;
  padding-top: var(--space-md);
  border-top: 1px solid var(--cream-dark);
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.process-step {
  text-align: center;
  padding: var(--space-xl);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-light);
  margin-bottom: var(--space-md);
}

.process-step h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 154, 142, 0.08);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  position: relative;
  margin-bottom: var(--space-lg);
}

.testimonial-quote svg {
  position: absolute;
  top: -8px;
  left: -4px;
  color: var(--sage);
}

.testimonial-quote p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  padding-top: var(--space-lg);
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--cream-dark);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-lighter);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.testimonial-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-lighter);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.blog-grid-full {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 154, 142, 0.08);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.blog-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.blog-category {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--lavender-light);
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--text-lighter);
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: var(--space-sm);
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--charcoal);
  transition: color var(--transition);
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--sage);
}

.blog-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
}

.blog-meta {
  display: flex;
  gap: var(--space-md);
}

.blog-author, .read-time {
  font-size: 0.82rem;
  color: var(--text-lighter);
}

.read-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
}

.read-more:hover {
  color: var(--sage-dark);
}

.blog-tags {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.tag {
  padding: 0.15rem 0.6rem;
  background: var(--cream-dark);
  color: var(--text-light);
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE (Blog Post)
   ═══════════════════════════════════════════════════════════════════════════ */
.article-page {
  padding-top: 6rem;
}

.article-header {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--cream-dark);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: var(--space-lg);
}

.back-link:hover {
  color: var(--sage-dark);
}

.article-header h1 {
  margin: var(--space-md) 0 var(--space-lg);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage-lighter);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.article-date, .article-meta .read-time {
  font-size: 0.88rem;
  color: var(--text-lighter);
}

.article-body {
  padding: var(--space-3xl) 0;
}

.article-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: var(--space-xl);
  color: var(--text);
}

.article-footer {
  padding: var(--space-2xl) 0 var(--space-4xl);
  border-top: 1px solid var(--cream-dark);
}

.article-tags {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.article-share {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2xl);
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.share-btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 500;
  background: white;
  color: var(--sage-dark);
  border: 1px solid var(--sage-light);
  transition: all var(--transition);
}

.share-btn:hover {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}

.article-cta {
  text-align: center;
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.article-cta h3 { margin-bottom: var(--space-sm); }
.article-cta p { color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--cream-dark);
  text-align: center;
}

.page-header-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: var(--space-md) auto 0;
  font-size: 1.08rem;
}

.bio-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.bio-content h2 {
  margin-bottom: var(--space-lg);
}

.bio-content p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.bio-highlights {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--cream-dark);
  border-radius: var(--radius-md);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.highlight span {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sage-light);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-2xl);
}

.timeline-marker {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--sage);
  z-index: 1;
}

.timeline-date {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: var(--sage-lighter);
  color: var(--sage-darker);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.timeline-content h3 {
  margin-bottom: 0.2rem;
  font-size: 1.15rem;
}

.timeline-org {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
}

.timeline-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
}

.timeline-content li {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: var(--space-xs);
}

/* Skills & Awards */
.skills-awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.skills-section h2,
.awards-section h2 {
  margin-bottom: var(--space-xl);
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.skill-item {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--sage);
}

.skill-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: var(--space-xs);
}

.skill-item p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.award-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.award-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.award-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.award-item p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.required { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(124, 154, 142, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: var(--space-xs);
  min-height: 1.2rem;
}

.char-count {
  font-size: 0.8rem;
  color: var(--text-lighter);
  text-align: right;
  margin-top: var(--space-xs);
}

.btn-submit {
  align-self: flex-start;
}

/* Alerts */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.alert svg { flex-shrink: 0; margin-top: 2px; }

.alert-success {
  background: var(--success-light);
  color: var(--success);
  border: 1px solid var(--success);
}

.alert-error {
  background: var(--error-light);
  color: var(--error);
  border: 1px solid var(--error);
}

.alert strong { display: block; margin-bottom: var(--space-xs); }
.alert ul { list-style: disc; padding-left: var(--space-lg); }
.alert li { margin-bottom: var(--space-xs); font-size: 0.9rem; }

/* Contact Info Sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 154, 142, 0.08);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-item:last-child { margin-bottom: 0; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-lighter);
  border-radius: var(--radius-sm);
  color: var(--sage-dark);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.availability-list {
  list-style: none;
}

.availability-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 0.92rem;
  color: var(--text);
}

.availability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-card {
  text-align: center;
  padding: var(--space-4xl) var(--space-3xl);
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-card h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
}

.cta-card .btn-primary {
  background: white;
  color: var(--sage-dark);
  border-color: white;
}

.cta-card .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
}

.footer-wave {
  color: var(--cream);
  margin-bottom: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-content {
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.footer-logo .logo-icon { color: var(--sage-light); }

.footer-tagline {
  color: var(--sage-light);
  font-size: 0.88rem;
  margin-bottom: var(--space-md);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--sage-light);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.88rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sage-light);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: var(--space-xs);
}

.footer-credits {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ERROR PAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.error-page {
  padding: 12rem 0 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-content h2 { margin-bottom: var(--space-md); }

.error-content p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

.error-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: var(--space-4xl);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.empty-state h3 { margin-bottom: var(--space-sm); }
.empty-state p { color: var(--text-light); margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-image { order: -1; }
  .image-frame img { width: 300px; height: 380px; }

  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .bio-image {
    display: flex;
    justify-content: center;
  }

  .skills-awards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-detail-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-2xl) var(--space-2xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    gap: var(--space-xs);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    width: 100%;
    padding: 0.75rem var(--space-md);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: var(--space-md);
    text-align: center;
  }

  .hero {
    padding: 8rem 0 4rem;
    min-height: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 var(--space-lg);
  }

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

  .page-header {
    padding: 8rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .stat { align-items: center; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .image-frame img {
    width: 260px;
    height: 320px;
  }

  .image-accent { top: 12px; left: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
  nav, .footer-wave, .cta-section, .hero-bg-shapes { display: none; }
  body { background: white; color: black; }
  .section { padding: 1rem 0; }
  a { color: black; text-decoration: underline; }
}
