/* ============================================================
   LAURIE MCGUIRE THERAPY & WELLNESS — DESIGN SYSTEM
   Premium wellness brand aesthetic: warm earth tones, 
   glassmorphism, buttery animations, modern typography
   ============================================================ */

/* --- IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  /* Color Palette — Warm Earth + Sage */
  --color-cream:        #faf7f2;
  --color-cream-dark:   #f0ebe3;
  --color-warm-white:   #fdfcfa;
  --color-sage-50:      #f0f4f0;
  --color-sage-100:     #dce5dc;
  --color-sage-200:     #b8cab8;
  --color-sage-300:     #8baa8b;
  --color-sage-400:     #6b8f6b;
  --color-sage-500:     #5a7d5a;
  --color-sage-600:     #4a6b4a;
  --color-sage-700:     #3d5a3d;
  --color-terracotta:   #c17f59;
  --color-terracotta-light: #d4a07a;
  --color-terracotta-dark:  #a66942;
  --color-amber:        #d4a843;
  --color-amber-light:  #e8c96e;
  --color-charcoal:     #2c2c2c;
  --color-charcoal-light: #4a4a4a;
  --color-text:         #3a3530;
  --color-text-light:   #6b6560;
  --color-text-muted:   #9b9590;
  --color-border:       #e8e2da;
  --color-overlay:      rgba(42, 35, 28, 0.6);
  --color-glass:        rgba(250, 247, 242, 0.75);
  --color-glass-dark:   rgba(250, 247, 242, 0.92);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale */
  --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;
  --space-5xl:  8rem;

  /* Layout */
  --max-width:    1200px;
  --max-width-narrow: 800px;
  --nav-height:   80px;
  --border-radius-sm:  8px;
  --border-radius-md:  12px;
  --border-radius-lg:  20px;
  --border-radius-xl:  28px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 24px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(193, 127, 89, 0.15);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

input, textarea {
  font-family: inherit;
  font-size: inherit;
}


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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-charcoal);
  line-height: 1.2;
  font-weight: 600;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.6;
  font-style: italic;
}


/* --- ANIMATED ELEMENTS (Intersection Observer) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              backdrop-filter var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  background: var(--color-glass-dark);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-warm-white); /* High visibility white on hero background */
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav__brand-name {
  color: var(--color-charcoal); /* Charcoal when scrolled */
}

.nav__brand-tagline {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--color-amber-light); /* Lighter accent color on hero */
  font-style: italic;
  letter-spacing: 0.02em;
  transition: color var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav__brand-tagline {
  color: var(--color-terracotta); /* Terracotta when scrolled */
}

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

.nav__link {
  font-size: 0.95rem; /* Slightly larger for visibility */
  font-weight: 600; /* Bolder */
  color: rgba(255, 255, 255, 0.9); /* Visible off-white on hero */
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav.scrolled .nav__link {
  color: var(--color-charcoal-light); /* Charcoal-gray when scrolled */
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-amber-light); /* Golden line on transparent */
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out), background-color var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav__link::after {
  background: var(--color-terracotta); /* Terracotta line when scrolled */
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-warm-white); /* Bright white active/hover on hero */
}

.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--color-charcoal); /* Dark charcoal active/hover when scrolled */
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-warm-white);
  background: var(--color-sage-600);
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius-full);
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.nav__cta:hover {
  background: var(--color-sage-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-warm-white); /* White burger lines on hero background */
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav__toggle span,
.nav__toggle.active span {
  background: var(--color-charcoal); /* Charcoal burger lines when scrolled or menu active */
}

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

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

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


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 35, 28, 0.72) 0%,
    rgba(42, 35, 28, 0.45) 40%,
    rgba(90, 125, 90, 0.25) 100%
  );
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  animation: floatParticle 12s ease-in-out infinite;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  50% {
    transform: translateY(-200px) translateX(40px);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-amber-light);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-amber-light);
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--color-warm-white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--color-amber-light);
  display: inline;
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.9s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--border-radius-full);
  padding: 0.85rem 2rem;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-warm-white);
  box-shadow: 0 4px 20px rgba(193, 127, 89, 0.35);
}

.btn--primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(193, 127, 89, 0.45);
}

.btn--secondary {
  background: rgba(255,255,255,0.1);
  color: var(--color-warm-white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn--sage {
  background: var(--color-sage-600);
  color: var(--color-warm-white);
  box-shadow: 0 4px 20px rgba(90, 125, 90, 0.3);
}

.btn--sage:hover {
  background: var(--color-sage-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90, 125, 90, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-sage-600);
  border: 2px solid var(--color-sage-300);
}

.btn--outline:hover {
  background: var(--color-sage-50);
  border-color: var(--color-sage-500);
  transform: translateY(-2px);
}

.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeUp 0.9s var(--ease-out) 1.2s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}


/* ============================================================
   TRUST BADGES / CREDENTIALS BAR
   ============================================================ */
.trust-bar {
  background: var(--color-warm-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.trust-badge__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-md);
  background: var(--color-sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  transition: all var(--duration-normal) var(--ease-out);
}

.trust-badge:hover .trust-badge__icon {
  background: var(--color-sage-100);
  transform: translateY(-2px);
}

.trust-badge__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-sage-600);
}

.trust-badge__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.trust-badge__sublabel {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: var(--space-5xl) 0;
  background: var(--color-cream);
  position: relative;
}

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

.about__image-wrapper {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}

.about__image-frame:hover img {
  transform: scale(1.04);
}

.about__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--color-sage-200), var(--color-sage-300));
  opacity: 0.5;
  z-index: -1;
}

.about__image-dots {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--color-terracotta-light) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.4;
  z-index: -1;
}

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

.about__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about__text:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.15em;
  margin-top: 0.1em;
  color: var(--color-sage-600);
  font-weight: 700;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 500;
}

.about__highlight-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--border-radius-sm);
  background: var(--color-sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-600);
}

.about__highlight-icon svg {
  width: 16px;
  height: 16px;
}

/* Experience counter cards */
.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.about__stat {
  text-align: left;
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-sage-600);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: var(--space-5xl) 0;
  background: var(--color-warm-white);
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.services__header .section-label {
  justify-content: center;
}

.services__header .section-label::before {
  display: none;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  background: var(--color-cream);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

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

.service-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,35,28,0.6) 0%, transparent 60%);
}

.service-card__icon {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-700);
  box-shadow: var(--shadow-sm);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__body {
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.service-card__title {
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.service-card__description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sage-600);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  transition: all var(--duration-fast) var(--ease-out);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.service-card__link:hover {
  color: var(--color-sage-700);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}


/* ============================================================
   QUOTE / PARALLAX SECTION
   ============================================================ */
.quote-section {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.quote-section__bg {
  position: absolute;
  inset: 0;
}

.quote-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}

.quote-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 125, 90, 0.75) 0%,
    rgba(42, 35, 28, 0.65) 100%
  );
}

.quote-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-section__icon {
  font-size: 4rem;
  color: var(--color-amber-light);
  opacity: 0.5;
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
  line-height: 1;
}

.quote-section__text {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-warm-white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.quote-section__author {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.quote-section__author span {
  color: var(--color-amber-light);
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: var(--space-5xl) 0;
  background: var(--color-cream);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4xl);
  align-items: flex-start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-2xl));
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-warm-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--color-sage-200);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--color-sage-300);
  box-shadow: var(--shadow-md);
}

.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  gap: var(--space-md);
  width: 100%;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.4;
}

.faq-item__toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--color-sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-item__toggle {
  background: var(--color-sage-600);
  transform: rotate(45deg);
}

.faq-item__toggle svg {
  width: 16px;
  height: 16px;
  color: var(--color-sage-600);
  transition: color var(--duration-fast);
}

.faq-item.active .faq-item__toggle svg {
  color: white;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out),
              padding var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.faq-item__answer-inner a {
  color: var(--color-sage-600);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-sage-200);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--duration-fast);
}

.faq-item__answer-inner a:hover {
  text-decoration-color: var(--color-sage-600);
}


/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog {
  padding: var(--space-5xl) 0;
  background: var(--color-warm-white);
}

.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-3xl);
}

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

.blog-card {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  background: var(--color-cream);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

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

.blog-card__image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-sage-100), var(--color-sage-200));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-card__image-icon {
  font-size: 3rem;
  opacity: 0.6;
}

.blog-card__body {
  padding: var(--space-xl) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.blog-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-sage-600);
  margin-top: var(--space-lg);
  transition: all var(--duration-fast);
}

.blog-card__read-more svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast);
}

.blog-card__read-more:hover svg {
  transform: translateX(3px);
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: var(--space-5xl) 0;
  background: var(--color-cream);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: flex-start;
}

.contact__info {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-2xl));
}

.contact__info-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-warm-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--duration-normal) var(--ease-out);
}

.contact__channel:hover {
  border-color: var(--color-sage-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact__channel-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--border-radius-md);
  background: var(--color-sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-600);
}

.contact__channel-icon svg {
  width: 22px;
  height: 22px;
}

.contact__channel-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.contact__channel-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

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

.contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-md);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: all var(--duration-normal) var(--ease-out);
}

.contact__social-link:hover {
  background: var(--color-sage-600);
  color: white;
  border-color: var(--color-sage-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact__social-link svg {
  width: 20px;
  height: 20px;
}

/* Contact Form */
.contact__form-wrapper {
  background: var(--color-warm-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

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

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

.form-group__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group__input,
.form-group__textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-md);
  background: var(--color-cream);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.form-group__input:focus,
.form-group__textarea:focus {
  border-color: var(--color-sage-400);
  box-shadow: 0 0 0 3px rgba(90, 125, 90, 0.1);
  background: var(--color-warm-white);
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group__textarea {
  min-height: 140px;
  resize: vertical;
}

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

.contact__form-notice {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding: var(--space-md);
  background: var(--color-sage-50);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--color-sage-300);
}

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

/* Form submission states */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.form-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeIn 0.5s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-600);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-charcoal);
}

.form-success__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  max-width: 400px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-charcoal);
  color: rgba(250, 247, 242, 0.7);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-warm-white);
  margin-bottom: var(--space-md);
}

.footer__brand-text {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__column-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-white);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  padding: var(--space-xs) 0;
  transition: all var(--duration-fast);
}

.footer__link:hover {
  color: var(--color-amber-light);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer__bottom-links a {
  transition: color var(--duration-fast);
}

.footer__bottom-links a:hover {
  color: rgba(250, 247, 242, 0.7);
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about__image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }

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

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

  .faq__intro {
    position: static;
  }

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

  .blog-card:last-child {
    display: none;
  }

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

  .contact__info {
    position: static;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-glass-dark);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-4xl) var(--space-2xl);
    transition: right var(--duration-normal) var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    padding-bottom: var(--space-3xl);
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .trust-bar__inner {
    gap: var(--space-xl);
  }

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

  .about__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

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

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

  .blog-card:last-child {
    display: flex;
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .contact__form-wrapper {
    padding: var(--space-xl) var(--space-lg);
  }
}


/* ============================================================
   LOADING / PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  width: 0;
  height: 100%;
  background: var(--color-sage-600);
  border-radius: 2px;
  animation: preloaderFill 1.2s var(--ease-out) forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}


/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-sage-200);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-sage-400);
}


/* ============================================================
   SELECTION STYLING
   ============================================================ */
::selection {
  background: var(--color-sage-200);
  color: var(--color-charcoal);
}


/* ============================================================
   DEDICATED BLOG PAGES STYLING
   ============================================================ */

/* Blog Index Page Header */
.blog-page-header {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--color-cream-dark), var(--color-cream));
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.blog-page-header__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.blog-page-header__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-text-light);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Post Detail Page */
.post-header {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--color-cream-dark), var(--color-cream));
  border-bottom: 1px solid var(--color-border);
}

.post-header__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
}

.post-header__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  max-width: 900px;
}

.post-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.post-header__author {
  font-weight: 600;
  color: var(--color-charcoal);
}

.post-header__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

/* Post Content Typography & Elements */
.post-content {
  padding: var(--space-4xl) 0;
  background: var(--color-warm-white);
}

.post-content__article {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
}

.post-content__article p {
  margin-bottom: var(--space-xl);
}

.post-content__article h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: var(--space-3xl) 0 var(--space-lg);
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

.post-content__article h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--color-charcoal);
}

.post-content__article ul, 
.post-content__article ol {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
}

.post-content__article ul {
  list-style: disc;
}

.post-content__article ol {
  list-style: decimal;
}

.post-content__article li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-xs);
}

.post-content__article blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--color-sage-600);
  border-left: 3px solid var(--color-terracotta);
  padding: var(--space-md) 0 var(--space-md) var(--space-xl);
  margin: var(--space-2xl) 0;
  line-height: 1.6;
  background: var(--color-cream);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* Author Bio Card */
.author-bio {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-4xl);
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.author-bio__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-warm-white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.author-bio__content {
  flex: 1;
}

.author-bio__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.author-bio__subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
}

.author-bio__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* Post Navigation (Prev/Next) */
.post-navigation {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  margin: var(--space-3xl) 0;
}

.post-navigation__link {
  display: flex;
  flex-direction: column;
  max-width: 45%;
}

.post-navigation__link--next {
  align-items: flex-end;
  text-align: right;
}

.post-navigation__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.post-navigation__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-sage-600);
  transition: color var(--duration-fast);
}

.post-navigation__title:hover {
  color: var(--color-sage-700);
}

/* CTA Card on Blog Posts */
.blog-cta {
  background: linear-gradient(135deg, var(--color-sage-500), var(--color-sage-600));
  color: var(--color-warm-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  margin-top: var(--space-4xl);
  box-shadow: var(--shadow-lg);
}

.blog-cta h3 {
  color: var(--color-warm-white);
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

.blog-cta p {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.95rem;
}

.blog-cta .btn {
  background: var(--color-cream);
  color: var(--color-sage-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast);
}

.blog-cta .btn:hover {
  background: var(--color-warm-white);
  color: var(--color-sage-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive adjustments for Blog Detail */
@media (max-width: 768px) {
  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }

  .post-navigation {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .post-navigation__link {
    max-width: 100%;
  }

  .post-navigation__link--next {
    align-items: flex-start;
    text-align: left;
  }
}
