/* ==========================================================================
   Monatout-rencontres.fr - CSS Moderne (remplacement 5grid)
   Version 2.0 - Mars 2026
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Inter:wght@400;500;600;700&display=swap');

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

/* ==========================================================================
   Variables CSS
   ========================================================================== */
:root {
  --color-bg: #FFF8E7;
  --color-bg-alt: #FFF2CF;
  --color-text: #4A3F2F;
  --color-text-light: #877850;
  --color-heading: #887644;
  --color-link: #706443;
  --color-link-hover: #4A3F2F;
  --color-accent: #C18062;
  --color-btn: #766946;
  --color-btn-hover: #5a4f35;
  --color-white: #FFFFFF;
  --color-border: #E8DCC8;
  --color-card-bg: #FFFFFF;
  --color-strong: #675830;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-heading);
  line-height: 1.3;
}

h1 { font-size: 2.2rem; margin-bottom: 0.5em; }
h2 { font-size: 1.7rem; margin-bottom: 0.5em; }
h3 { font-size: 1.3rem; margin-bottom: 0.4em; }
h4 { font-size: 1.1rem; margin-bottom: 0.3em; }

p {
  margin-bottom: 1em;
  text-align: justify;
}

strong {
  font-weight: 700;
  color: var(--color-strong);
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.4em;
}

blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-light);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th, td {
  padding: 0.8em 1em;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  background: var(--color-btn);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: var(--color-bg);
}

/* ==========================================================================
   Layout - Container & Grid
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: 30px;
}

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

.grid-content-sidebar {
  grid-template-columns: 1fr 320px;
}

.grid-sidebar-content {
  grid-template-columns: 280px 1fr;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-heading);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo .tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 400;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.main-nav a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav .active a {
  background: var(--color-btn);
  color: var(--color-white);
  text-decoration: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 1.5rem;
  color: var(--color-text);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-text);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-link);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--color-border);
}

/* ==========================================================================
   Article / Content
   ========================================================================== */
.article-header {
  margin-bottom: 2em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 1em;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.article-meta .reading-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-bg-alt);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.article-meta .date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Article summary box */
.article-summary {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.5em;
  margin-bottom: 2em;
}

.article-summary h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
  color: var(--color-accent);
}

.article-summary p {
  margin-bottom: 0.5em;
  text-align: left;
}

/* Table of contents */
.toc {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5em;
  margin-bottom: 2em;
}

.toc h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8em;
  color: var(--color-heading);
}

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

.toc li {
  margin-bottom: 0.3em;
}

.toc a {
  display: block;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.toc a:hover {
  background: var(--color-bg-alt);
  text-decoration: none;
}

.toc .toc-h3 {
  padding-left: 28px;
  font-size: 0.9rem;
}

/* Article content */
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1px solid var(--color-border);
}

.article-content h3 {
  margin-top: 1.5em;
}

.article-content img {
  border-radius: var(--radius);
  margin: 1.5em 0;
  box-shadow: var(--shadow);
}

.article-content .wp-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: -1em;
  margin-bottom: 1.5em;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 2px solid var(--color-border);
}

.faq-section h2 {
  margin-bottom: 1em;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--color-white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-heading);
  text-align: left;
  transition: background var(--transition);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5em 1.5em;
}

.faq-answer p {
  text-align: left;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.card-body {
  padding: 1.5em;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.card-body h3 a {
  color: var(--color-heading);
}

.card-body h3 a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

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

/* Review card */
.review-card {
  text-align: center;
  padding: 2em 1.5em;
}

.review-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1em;
  border-radius: 50%;
  background: var(--color-bg);
  padding: 15px;
}

.review-card h3 {
  margin-bottom: 0.5em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-btn);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--color-btn-hover);
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-1px);
}

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

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

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

.btn-accent:hover {
  background: #a86b50;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5em;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--color-border);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget li {
  margin-bottom: 0;
}

.sidebar-widget li a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  transition: padding-left var(--transition);
}

.sidebar-widget li:last-child a {
  border-bottom: none;
}

.sidebar-widget li a:hover {
  padding-left: 8px;
  text-decoration: none;
  color: var(--color-accent);
}

/* Sidebar article with thumbnail */
.sidebar-article {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-article:last-child {
  border-bottom: none;
}

.sidebar-article img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.sidebar-article a {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ==========================================================================
   Featured / Top3 Section
   ========================================================================== */
.featured-section {
  padding: 3em 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-btn);
  color: var(--color-white);
  padding: 2em 0;
  margin-top: 3em;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.site-footer a {
  color: var(--color-bg-alt);
}

.site-footer a:hover {
  color: var(--color-white);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 1em; }
.mt-2 { margin-top: 2em; }
.mt-3 { margin-top: 3em; }
.mb-1 { margin-bottom: 1em; }
.mb-2 { margin-bottom: 2em; }
.mb-3 { margin-bottom: 3em; }
.py-2 { padding-top: 2em; padding-bottom: 2em; }
.py-3 { padding-top: 3em; padding-bottom: 3em; }

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

/* Lazy load images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* ==========================================================================
   Responsive - Tablet (max 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --max-width: 100%;
  }

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

  .grid-content-sidebar,
  .grid-sidebar-content {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}

/* ==========================================================================
   Responsive - Mobile (max 768px)
   ========================================================================== */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 15px;
  }

  .grid { gap: 20px; }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Mobile header */
  .site-header .container {
    height: 60px;
  }

  .site-logo a {
    font-size: 1.4rem;
  }

  .site-logo .tagline {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

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

  .main-nav ul {
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }

  .main-nav a {
    padding: 12px 15px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

  .article-content { font-size: 1rem; }

  table {
    display: block;
    overflow-x: auto;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Mobile footer */
  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Responsive - Small mobile (max 480px)
   ========================================================================== */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .article-summary {
    padding: 1em;
  }

  .toc {
    padding: 1em;
  }

  .faq-question {
    padding: 0.8em 1em;
    font-size: 0.95rem;
  }

  .card-body {
    padding: 1em;
  }
}

/* ==========================================================================
   Blog Page - Category Filters & Card Grid
   ========================================================================== */
.blog-hero {
  text-align: center;
  padding: 2em 0 1em;
}

.blog-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.3em;
}

.blog-hero p {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5em;
}

/* Category filter tabs */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2em;
  padding: 0 20px;
}

.blog-filter-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  border: 2px solid var(--color-border);
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.blog-filter-btn:hover {
  border-color: var(--color-btn);
  color: var(--color-btn);
}

.blog-filter-btn.active {
  background: var(--color-btn);
  color: var(--color-white);
  border-color: var(--color-btn);
}

/* Blog card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Blog card */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  aspect-ratio: 16 / 10;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-btn);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 1.2em 1.3em 1.5em;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.5em;
}

.blog-card-body h3 a {
  color: var(--color-heading);
  text-decoration: none;
}

.blog-card-body h3 a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  text-align: left;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1em;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.blog-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-link:hover {
  color: var(--color-btn);
  text-decoration: none;
}

/* Category section headers */
.blog-category-section {
  margin-bottom: 2.5em;
}

.blog-category-title {
  font-size: 1.5rem;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}

/* Responsive blog grid */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero h1 { font-size: 1.8rem; }
  .blog-filters { gap: 6px; }
  .blog-filter-btn { padding: 6px 14px; font-size: 0.85rem; }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  .site-header, .site-footer, .sidebar, .toc, .faq-section,
  .menu-toggle, .main-nav, .featured-section, .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .container {
    max-width: 100%;
  }

  a { color: #000; text-decoration: underline; }
  img { max-width: 100% !important; }
}

/* ==========================================================================
   Homepage - Hero Section
   ========================================================================== */
.hero-home {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 50%, #f5e6d0 100%);
  padding: 4em 0 3em;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-home h1 {
  font-size: 2.8rem;
  color: var(--color-heading);
  margin-bottom: 0.4em;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}

.hero-cta .btn {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3em;
}

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

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-accent);
  font-weight: 500;
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ==========================================================================
   Homepage - Card badge
   ========================================================================== */
.card-img {
  position: relative;
}

.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
}

/* ==========================================================================
   Homepage - Reviews Section
   ========================================================================== */
.home-reviews {
  padding: 3em 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-top: -1em;
  margin-bottom: 2em;
}

.review-card {
  position: relative;
}

.review-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
}

/* ==========================================================================
   Homepage - Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-home h1 { font-size: 2.2rem; }
  .hero-stats { gap: 2em; }
}

@media (max-width: 768px) {
  .hero-home {
    padding: 2.5em 0 2em;
  }

  .hero-home h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 1.5em;
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }

  .hero-stat span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-home h1 {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1em;
  }
}
