/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: var(--font-plus-jakarta-sans), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--gray-800);
  line-height: 1.6;
}

/* Variables CSS - Palette professionnelle et chaleureuse */
:root {
  /* Couleurs de base */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Bleu professionnel (confiance, expertise) */
  --blue-50: #f0f9ff;
  --blue-100: #e0f2fe;
  --blue-200: #bae6fd;
  --blue-300: #7dd3fc;
  --blue-400: #38bdf8;
  --blue-500: #0ea5e9;
  --blue-600: #0284c7;
  --blue-700: #0369a1;
  --blue-800: #075985;
  --blue-900: #0c4a6e;
  
  /* Vert professionnel (croissance, durabilité) */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  
  /* Orange chaleureux (accueil, proximité) */
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  
  /* Couleurs d'accent */
  --primary: var(--blue-600);
  --primary-light: var(--blue-50);
  --secondary: var(--green-600);
  --accent: var(--orange-500);
  --accent-light: var(--orange-50);
  
  /* Couleurs de fond */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-accent: var(--blue-50);
  
  /* Bordures et ombres */
  --border: var(--gray-200);
  --border-light: var(--gray-100);
  --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);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

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

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--blue-700);
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

/* Layout principal */
.container-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.tagline {
  display: none;
  color: var(--gray-500);
  font-size: 0.875rem;
}

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

/* Navigation moderne */
.navbar-modern {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  border-radius: 0 0 1rem 1rem;
  margin: 0 1rem;
  padding: 0 1.5rem;
}

.navbar-modern .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-modern .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-modern .brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.15s ease;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Navigation responsive */
@media (max-width: 768px) {
  .navbar-modern {
    margin: 0 0.25rem;
    padding: 0 0.75rem;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  
  .navbar-modern .nav-inner {
    padding: 0.75rem 0;
  }
  
  .nav-links {
    gap: 0.25rem;
    flex-wrap: wrap;
  }
  
  .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  .navbar-modern .brand img {
    height: 32px;
  }
}

/* Très petits écrans */
@media (max-width: 480px) {
  .navbar-modern {
    margin: 0 0.125rem;
    padding: 0 0.5rem;
  }
  
  .navbar-modern .nav-inner {
    padding: 0.5rem 0;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-links {
    gap: 0.125rem;
    justify-content: center;
  }
  
  .nav-link {
    padding: 0.25rem 0.375rem;
    font-size: 0.7rem;
  }
  
  .navbar-modern .brand img {
    height: 28px;
  }
}

/* Styles pour les pages d'articles */
.article-hero {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--green-50) 100%);
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-radius: 0 0 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.article-hero-content {
  position: relative;
  z-index: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-date {
  background: var(--white);
  color: var(--gray-600);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.article-category {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-excerpt {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 60rem;
}

.article-content {
  background: var(--white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  position: relative;
}

.article-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  border-radius: 1rem 1rem 0 0;
}

.article-content h2 {
  color: var(--gray-900);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

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

.article-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--primary);
}

.article-content h3 {
  color: var(--gray-800);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--gray-700);
}

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

.article-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.article-content strong {
  color: var(--gray-900);
  font-weight: 600;
}

.article-footer {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.5rem;
}

.article-author-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--gray-900);
  font-size: 1.125rem;
}

.article-author-info p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.article-tag {
  background: var(--white);
  color: var(--gray-600);
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.article-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.2s ease;
}

.article-nav-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.article-nav-link.prev {
  margin-right: auto;
}

.article-nav-link.next {
  margin-left: auto;
}

/* Responsive pour les articles */
@media (max-width: 768px) {
  .article-hero {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-excerpt {
    font-size: 1.125rem;
  }
  
  .article-content {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .article-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .article-nav-link.prev,
  .article-nav-link.next {
    margin: 0;
    width: 100%;
    justify-content: center;
  }
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-700) 100%);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-800) 100%);
  border-color: var(--blue-700);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: var(--white);
  color: var(--gray-700);
  border-color: var(--border);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 1;
  transition: all 0.3s ease;
}

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

.card:hover::before {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.card-content {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  opacity: 0.05;
  z-index: -1;
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-expertise {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.hero-expertise h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

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

.expertise-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.expertise-text {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.875rem;
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.section:nth-child(even) {
  background: var(--bg-secondary);
  border-radius: 1rem;
  margin: 2rem 0;
  padding: 3rem 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
}

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

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

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

/* Cards compact */
.cards-compact .card {
  padding: 1rem;
}

.cards-compact .card-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cards-compact .card-content {
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

/* Profile section */
.profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .profile {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.profile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .profile img {
    height: 400px;
  }
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-light) 100%);
  color: var(--gray-600);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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

/* Forms */
.form-field {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}

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

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
}

@media (min-width: 640px) {
  .cookie-consent {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 500px;
  }
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

/* Prose */
.prose {
  max-width: none;
  color: var(--gray-600);
  line-height: 1.7;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  color: var(--gray-900);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h1:first-child, .prose h2:first-child, .prose h3:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul, .prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.25rem;
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.eyebrow-logo {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
}

.eyebrow-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }

.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }

.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }

.object-cover { object-fit: cover; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Page spacing */
.page {
  padding: 2rem 0;
}

.narrow {
  max-width: 80vw;
  margin: 0 auto;
}

/* Muted background */
.muted {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
  margin: 2rem 0;
}

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-field {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}

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

.contact-form button {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form input:disabled,
.contact-form select:disabled,
.contact-form textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Admin contacts page */
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.contact-card.unread {
  border-left: 4px solid var(--blue-500);
  background: var(--blue-50);
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 0.25rem 0;
}

.contact-email {
  color: var(--blue-600);
  font-size: 0.875rem;
  margin: 0 0 0.25rem 0;
}

.contact-phone {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.contact-date {
  color: var(--gray-500);
  font-size: 0.75rem;
  white-space: nowrap;
}

.contact-content {
  margin-bottom: 1rem;
}

.contact-subject {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0 0 0.75rem 0;
}

.contact-message {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-danger {
  background: var(--red-500);
  color: var(--white);
  border: 1px solid var(--red-500);
}

.btn-danger:hover {
  background: var(--red-600);
  border-color: var(--red-600);
}

.btn-outline {
  background: transparent;
  color: var(--gray-600);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--gray-50);
  color: var(--gray-700);
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
}

.badge-primary {
  background: var(--blue-100);
  color: var(--blue-800);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-500);
}

.loading {
  text-align: center;
  padding: 2rem;
  color: var(--gray-500);
}

.error {
  background: var(--red-50);
  color: var(--red-700);
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--red-200);
}

/* Muted text utility */
.muted-text {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Footer styles */
.footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
}

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

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section ul li a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-section ul li a:hover {
  color: var(--blue-600);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}