/* Rose Sleep Co - Styles */
/* Color Palette: Calming lavender and rose tones */

:root {
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Light mode colors */
  --background: hsl(240, 20%, 98%);
  --foreground: hsl(250, 15%, 15%);
  --card: hsl(240, 20%, 99%);
  --card-border: hsl(240, 15%, 92%);
  --muted: hsl(240, 15%, 92%);
  --muted-foreground: hsl(250, 10%, 45%);
  --primary: hsl(280, 45%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(280, 45%, 95%);
  --secondary: hsl(340, 30%, 92%);
  --secondary-foreground: hsl(250, 15%, 15%);
  --accent: hsl(200, 60%, 94%);
  --accent-foreground: hsl(250, 15%, 15%);
  --border: hsl(240, 15%, 90%);
  
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 640px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.5rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: hsl(280, 45%, 50%);
}

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

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* Card */
.card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(248, 248, 251, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: none;
}

@media (min-width: 640px) {
  .logo-tagline {
    display: block;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
  background-color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .phone-link {
    display: flex;
  }
}

.header-actions .btn {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .btn {
    display: inline-flex;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: block;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-link-mobile {
  display: block;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link-mobile:hover {
  color: var(--foreground);
  background-color: var(--muted);
}

.nav-mobile-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-link-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  color: white;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 2rem;
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: white;
}

.hero h1 span {
  display: block;
  color: hsl(280, 70%, 80%);
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-phone-btn {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-phone-btn:hover {
  color: var(--foreground);
  background-color: white;
  border-color: white;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-reduced-top {
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .section-reduced-top {
    padding-top: 3rem;
  }
}

.section-muted {
  background-color: var(--muted);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 1.5rem;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.service-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  min-height: 3.5rem;
  aspect-ratio: 1;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-duration {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-features svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Homepage Problems Grid */
.problems-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.problem-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .problem-card {
    grid-template-columns: 1fr 1fr;
  }
  
  .problem-card.reverse {
    direction: rtl;
  }
  
  .problem-card.reverse > * {
    direction: ltr;
  }
}

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

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

.problem-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.problem-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* Meet Consultant Section */
.meet-consultant {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .meet-consultant {
    grid-template-columns: 300px 1fr;
  }
}

.consultant-photo-container {
  display: flex;
  justify-content: center;
}

.consultant-photo-large {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
}

@media (min-width: 768px) {
  .consultant-photo-large {
    width: 280px;
    height: 280px;
  }
}

.consultant-bio h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.consultant-bio p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.consultant-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

/* Home FAQ */
.home-faq {
  max-width: 900px;
  margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.benefit-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Homepage Articles Grid */
.home-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .home-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-article-card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.home-article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-article-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.home-article-content {
  padding: 1.25rem;
}

.home-article-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: var(--font-sans);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-article-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

/* Service Areas Preview */
.areas-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Footer */
.footer {
  background-color: hsl(250, 20%, 12%);
  color: hsl(240, 15%, 85%);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}

.footer-section {
  
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  width: 2rem;
  height: 2rem;
}

.footer-brand .logo-name {
  font-size: 1.25rem;
  color: white;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Referral Card */
.referral-card {
  background-color: hsl(250, 20%, 16%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.referral-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.referral-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.referral-text {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.referral-card .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.referral-card .btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Footer Disclaimer */
.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disclaimer-heading:first-child {
  margin-top: 0;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.6;
  margin-bottom: 0;
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* Service Areas Page */
.search-container {
  max-width: 32rem;
  margin: 0 auto 2rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--card);
  transition: border-color 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

.alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.alphabet-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.alphabet-btn:hover,
.alphabet-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .areas-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

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

.area-link-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-link-name {
  font-weight: 500;
}

.area-link-county {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Service Area Detail */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.breadcrumb:hover {
  color: var(--foreground);
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image {
  aspect-ratio: 1;
  background-color: var(--muted);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Intake Form Page */
.intake-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .intake-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.intake-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}

.intake-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.intake-step h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.intake-step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }

/* Hero Tagline */
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .hero-tagline {
    font-size: 1.75rem;
  }
}

/* Inline Links */
.inline-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: hsl(280, 45%, 45%);
}

/* Pricing Help */
.pricing-help {
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* About Image */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Legal Pages */
.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.legal-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

/* Service Area Page Enhancements */

/* Lead text */
.lead-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Consultant Intro Section */
.consultant-intro {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.consultant-photo-small {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary-light);
}

.consultant-intro-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.consultant-title {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.consultant-intro-content p:last-child {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .consultant-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .consultant-photo-small {
    width: 80px;
    height: 80px;
  }
}

/* Map container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  display: block;
}

/* Section alternate background */
.section-alt {
  background-color: var(--muted);
}

/* Detailed Services */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-detailed {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.service-icon-large {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  color: var(--primary);
}

.service-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .service-card-detailed {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Benefits List */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefits-list li span {
  line-height: 1.5;
}

/* Myths vs Truths */
.myths-truths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .myths-truths {
    grid-template-columns: repeat(2, 1fr);
  }
}

.myth-truth-card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.myth-section {
  padding: 1.25rem;
  background-color: hsl(0, 60%, 96%);
  border-bottom: 1px solid var(--card-border);
}

.truth-section {
  padding: 1.25rem;
  background-color: hsl(140, 50%, 96%);
}

.myth-label,
.truth-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.myth-label {
  background-color: hsl(0, 50%, 85%);
  color: hsl(0, 50%, 30%);
}

.truth-label {
  background-color: hsl(140, 40%, 80%);
  color: hsl(140, 40%, 25%);
}

.myth-text {
  font-style: italic;
  color: var(--muted-foreground);
}

.truth-text {
  color: var(--foreground);
  line-height: 1.6;
}

/* FAQ Section */
.faq-list,
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-accordion .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s;
}

.faq-accordion .faq-question:hover {
  background-color: var(--muted);
}

.faq-accordion .faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-accordion .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-accordion .faq-answer p {
  overflow: hidden;
  padding: 0 1.5rem;
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
  transition: padding 0.3s ease;
}

.faq-item.open .faq-answer p {
  padding: 0 1.5rem 1.25rem;
}

/* Sleep Problems Grid */
.sleep-problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sleep-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-top: 0.25rem;
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.step-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Age Guides */
.age-guides {
  display: flex;
  flex-direction: column;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
}

/* Environment Tips */
.environment-tips {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.tip-item h3 {
  font-family: var(--font-sans);
  font-weight: 600;
}

.tip-item p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
}

.cta-card h2 {
  font-family: var(--font-serif);
}

@media (max-width: 640px) {
  .cta-card {
    padding: 2rem 1.5rem;
  }
}

/* ==================== */
/* Resources & Articles */
/* ==================== */

/* Resources Page - Clean Editorial Design */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Article Card - Minimal & Elegant */
.article-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0;
}

.article-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.03);
}

.article-card-content {
  padding: 0;
}

.article-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.article-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.article-card:hover .article-title {
  color: var(--primary);
}

.article-excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.reading-time svg {
  opacity: 0.6;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted-foreground);
}

/* ========================= */
/* Single Article Page */
/* ========================= */

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

.article-page .section {
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .article-page .section {
    padding-top: 3rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  transition: color 0.2s;
}

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

/* Article Header */
.article-header {
  margin-bottom: 1.5rem;
}

.article-header .article-category {
  margin-bottom: 1rem;
}

.article-header h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .article-header h1 {
    font-size: 2.75rem;
  }
}

/* Article Meta Header */
.article-meta-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .article-meta-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--primary-light);
}

.author-info > div {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.author-title {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.article-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.publish-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Featured Image */
.featured-image {
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Medical Disclaimer */
.medical-disclaimer {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: hsl(200, 50%, 97%);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(200, 30%, 35%);
}

.medical-disclaimer svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(200, 50%, 50%);
}

.medical-disclaimer strong {
  font-weight: 600;
}

/* Table of Contents */
.table-of-contents {
  background: linear-gradient(135deg, hsl(280, 45%, 98%) 0%, hsl(340, 30%, 98%) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}

.toc-header svg {
  color: var(--primary);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.toc-list li {
  counter-increment: toc-counter;
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
}

.toc-list li::before {
  content: counter(toc-counter) ".";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
}

.toc-link {
  display: inline-block;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  border-bottom: 1px solid transparent;
}

.toc-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

@media (max-width: 640px) {
  .table-of-contents {
    padding: 1.25rem;
  }
  
  .toc-link {
    font-size: 0.875rem;
  }
}

/* Article Content - Typography */
.article-content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--foreground);
}

/* Scroll offset for anchor links */
.article-content h2[id] {
  scroll-margin-top: 2rem;
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
}

.article-content li {
  margin-bottom: 0.625rem;
  line-height: 1.7;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.article-content a:hover {
  color: hsl(280, 50%, 45%);
}

.article-content strong {
  font-weight: 600;
}

/* Inline Citation Markers */
.article-content sup {
  font-size: 0.75em;
  vertical-align: super;
  line-height: 0;
}

.article-content sup a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.article-content sup a:hover {
  text-decoration: underline;
}

/* References Section - Academic Style */
.references-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.references-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.references-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reference-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.reference-item:last-child {
  border-bottom: none;
}

.reference-number {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--primary);
  min-width: 1.5rem;
}

.reference-text {
  color: var(--foreground);
}

.reference-text .author {
  font-weight: 500;
}

.reference-text .title {
  font-style: italic;
}

.reference-text a {
  color: var(--primary);
  word-break: break-word;
}

/* Social Sharing */
.social-sharing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sharing-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.share-btn svg {
  width: 16px;
  height: 16px;
}

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  text-align: center;
}

.inline-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.875rem;
  color: var(--foreground);
}

.inline-cta > p {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Book Cards */
.book-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.book-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.book-author {
  font-size: 0.9375rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.book-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
}

.book-card ul {
  margin-bottom: 1rem;
}

.book-card ul li {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
  padding-left: 1.25rem;
  position: relative;
}

.book-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--primary-light);
}

.author-bio-content {
  flex: 1;
}

.author-bio-content h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.author-bio-content p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-bio-avatar {
    margin: 0 auto;
  }
}

/* Related Articles */
.related-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .related-articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-article-card {
  background: transparent;
  border: none;
  padding: 0;
}

.related-article-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.related-article-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.related-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-article-card:hover .related-article-image img {
  transform: scale(1.03);
}

.related-article-content {
  padding: 0;
}

.related-article-content .badge {
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.related-article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  transition: color 0.2s;
}

.related-article-card:hover .related-article-content h3 {
  color: var(--primary);
}

.related-article-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0.5rem 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-article-content .reading-time {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* Do Not Sell Page Styles */
.opt-out-options {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .opt-out-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.opt-out-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.opt-out-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.opt-out-card h3 svg {
  flex-shrink: 0;
}

.opt-out-card p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.opt-out-card a {
  color: var(--primary);
  font-weight: 500;
}

/* Media Inquiries Page Styles */
.media-intro {
  margin-bottom: 3rem;
}

.media-intro .lead-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.media-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.media-content h2:first-child {
  margin-top: 0;
}

.media-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.media-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.media-content ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.media-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.media-contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}

.media-contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.media-contact-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.media-contact-card .contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.media-contact-card .contact-list li:last-child {
  border-bottom: none;
}

.media-contact-card .contact-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

.media-contact-card .contact-list a {
  color: var(--foreground);
  font-weight: 500;
}

.media-contact-card .contact-list a:hover {
  color: var(--primary);
}

.media-contact-card .response-time {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 1rem;
}

/* Hello from Rose Section */
.hello-rose {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hello-rose {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
  }
}

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

.hello-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hello-photo img {
    width: 280px;
    height: 280px;
  }
}

.hello-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hello-content h2 {
    font-size: 2.5rem;
  }
}

.hello-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.hello-content .btn {
  margin-top: 0.5rem;
}

/* Updated Pricing Card Styles */
.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-best-for {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.pricing-card.premium {
  border-color: var(--primary);
  border-width: 2px;
}

.pricing-badge-premium {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(280, 55%, 45%) 100%);
}
