/* ============================================
   HOLISTIC PERFORMANCE - Universal Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  /* Colors */
  --color-primary: #2c3e50;
  --color-primary-light: #34495e;
  --color-primary-dark: #1a252f;
  --color-accent: #a67c52;
  --color-accent-light: #c9a77d;
  --color-accent-dark: #8b6914;
  --color-white: #ffffff;
  --color-off-white: #fafaf8;
  --color-cream: #f5f3ef;
  --color-light-gray: #e8e6e1;
  --color-gray: #9a9a9a;
  --color-dark-gray: #555555;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-success: #27ae60;
  --color-overlay: rgba(44, 62, 80, 0.85);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  
  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 800px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1em;
  color: var(--color-text-light);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }

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

.container-narrow {
  max-width: var(--max-width-narrow);
}

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  min-height: 72px;
}

.logo {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: var(--transition-base);
}

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

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: var(--transition-base);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-xs);
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-base);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 100px var(--space-md) var(--space-lg);
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-light-gray);
  display: block;
}

.mobile-menu a:hover {
  color: var(--color-accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

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

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}

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

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

/* Hero - Home (Centered) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(72px + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

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

.hero-text {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  line-height: 1.8;
}

/* Hero - Page (With Background) */
.hero-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(72px + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  background: var(--color-primary);
  color: var(--color-white);
}

.hero-page .hero-bg {
  opacity: 0.3;
}

.hero-page .hero-overlay {
  background: var(--color-overlay);
}

.hero-page h1 {
  color: var(--color-white);
}

.hero-page .hero-text {
  color: rgba(255, 255, 255, 0.85);
}

.hero-page .hero-label {
  color: var(--color-accent-light);
}

/* Hero - Split (Image + Content) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

.hero-split-image {
  position: relative;
  overflow: hidden;
}

.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  background: var(--color-cream);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

/* Split Section (Image + Text) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.split-section.reverse .split-image {
  order: 2;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.split-image:hover img {
  transform: scale(1.05);
}

.split-content {
  padding: var(--space-md) 0;
}

.split-content .section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

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

.split-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* Banner / CTA Section */
.banner {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-light {
  background: var(--color-cream);
}

.banner-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.banner-dark h2 {
  color: var(--color-white);
}

.banner-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.banner-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

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

.banner p {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

/* Feature Cards Grid */
.features-section {
  padding: var(--space-xl) 0;
  background: var(--color-off-white);
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.features-header h2 {
  margin-bottom: var(--space-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border: 1px solid var(--color-light-gray);
}

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

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

.feature-icon svg {
  width: 28px;
  height: 28px;
}

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

.feature-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Features with Image */
.features-with-image {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: start;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.features-image {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.features-image img {
  width: 100%;
  height: auto;
}

/* Process Steps */
.process-section {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-light-gray);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.process-step:hover .process-number {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.process-step h4 {
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: 0.875rem;
}

/* Testimonials */
.testimonials-section {
  padding: var(--space-xl) 0;
  background: var(--color-cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-base);
}

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

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-cream);
}

.testimonial-author span {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9375rem;
}

/* Team / Profile Cards */
.profile-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.profile-card:hover {
  box-shadow: var(--shadow-lg);
}

.profile-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.profile-card:hover .profile-image img {
  transform: scale(1.05);
}

.profile-content {
  padding: var(--space-md);
}

.profile-content h3 {
  margin-bottom: var(--space-xs);
}

.profile-content .role {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  padding: var(--space-xs) 0;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

.bg-white { background: var(--color-white); }
.bg-cream { background: var(--color-cream); }
.bg-dark { background: var(--color-primary); color: var(--color-white); }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-split-image {
    height: 50vh;
  }
  
  .hero-split-content {
    padding: var(--space-xl) var(--space-md);
  }
  
  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .split-section.reverse .split-image {
    order: 0;
  }
  
  .features-with-image {
    grid-template-columns: 1fr;
  }
  
  .features-image {
    position: static;
    order: -1;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 64px;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding: calc(72px + var(--space-lg)) var(--space-md) var(--space-xl);
  }
  
  .hero-page {
    min-height: 60vh;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-group .btn {
    width: 100%;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    max-width: none;
  }
  
  .footer-brand img {
    margin: 0 auto var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 11px;
  }
}

/* ============================================
   BLOG
   ============================================ */
.blog-container {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.blog-post {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
  border: 1px solid var(--color-light-gray);
}

.blog-post:hover {
  box-shadow: var(--shadow-md);
}

.blog-post-header {
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  transition: background var(--transition-fast);
}

.blog-post-header:hover {
  background: var(--color-off-white);
}

.blog-post-info {
  flex: 1;
}

.blog-post-date {
  font-size: 0.8125rem;
  color: var(--color-gray);
  margin-bottom: var(--space-xs);
  font-family: var(--font-body);
}

.blog-post-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 var(--space-xs);
  line-height: 1.3;
}

.blog-post-excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.blog-post-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.blog-post-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--color-gray);
  transition: transform var(--transition-base);
}

.blog-post.expanded .blog-post-toggle {
  background: var(--color-primary);
}

.blog-post.expanded .blog-post-toggle svg {
  color: var(--color-white);
  transform: rotate(180deg);
}

.blog-post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: none;
}

.blog-post.expanded .blog-post-image {
  display: block;
}

.blog-post-content {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.blog-post.expanded .blog-post-content {
  max-height: 2000px;
  padding: 0 var(--space-md) var(--space-md);
}

.blog-post-content-inner {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-light-gray);
}

.blog-post-content-inner p {
  margin-bottom: 1em;
}

.blog-post-content-inner p:last-child {
  margin-bottom: 0;
}

.blog-empty {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  color: var(--color-text-light);
}

.blog-empty h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .blog-post-title {
    font-size: 1.25rem;
  }
  
  .blog-container {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .blog-post-header {
    padding: var(--space-sm);
  }
  
  .blog-post-content {
    padding: 0 var(--space-sm);
  }
  
  .blog-post.expanded .blog-post-content {
    padding: 0 var(--space-sm) var(--space-sm);
  }
  
  .blog-post-image {
    height: 200px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

/* Scroll animations (add via JS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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