/* ==========================================================================
   COCKTAIL ZONE — Magazine CSS Premium
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --dark-bg: #0A0A0F;
  --dark-card: #111118;
  --dark-surface: #16161F;
  --dark-border: #252535;
  --text-primary: #F0EDE6;
  --text-secondary: #A09080;
  --text-muted: #5A5060;
  --accent-red: #8B2E2E;
  --accent-amber: #C06820;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  --max-width: 1280px;
  --nav-height: 72px;
}

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

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

body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: none;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

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

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

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

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

/* --------------------------------------------------------------------------
   Gold Divider & Labels
   -------------------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.gold-text { color: var(--gold); }
.gold-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-md) 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0F;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);
}

.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--dark-border);
  padding: 8px 20px;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.nav-logo svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  opacity: 0.6;
  transition: transform var(--transition), opacity var(--transition);
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1001;
  box-shadow: 0 20px 48px rgba(0,0,0,0.7);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: var(--dark-card);
  border-left: 1px solid var(--dark-border);
  border-top: 1px solid var(--dark-border);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  transition: background var(--transition), color var(--transition) !important;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(201,168,76,0.08);
  color: var(--text-primary) !important;
}

.nav-dropdown-menu a svg {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition);
}

.nav-dropdown-menu a:hover svg {
  color: var(--gold);
}

.nav-dropdown-all {
  border-top: 1px solid var(--dark-border);
  margin-top: 4px;
  padding-top: 11px !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.nav-dropdown-all:hover {
  color: var(--gold-light) !important;
}

/* Mobile Outils submenu */
.mobile-nav-group {
  border-bottom: 1px solid var(--dark-border);
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
}

.mobile-nav-toggle:hover {
  color: var(--gold);
}

.mobile-nav-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.mobile-nav-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 var(--space-sm) var(--space-md);
  gap: 2px;
}

.mobile-nav-sub.open {
  display: flex;
}

.mobile-nav-sub a {
  font-size: 0.85rem !important;
  border-bottom: none !important;
  padding: 7px 0 !important;
  color: var(--text-muted) !important;
}

.mobile-nav-sub a:hover {
  color: var(--gold) !important;
}

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

.nav-search {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-search:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
  z-index: 999;
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
}

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

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--dark-border);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 15, 0.95) 40%,
    rgba(10, 10, 15, 0.5) 80%,
    rgba(10, 10, 15, 0.2) 100%
  );
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(240, 237, 230, 0.75);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

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

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --------------------------------------------------------------------------
   Ticker / Breaking Bar
   -------------------------------------------------------------------------- */
.ticker-bar {
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker-label {
  background: #0A0A0F;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  flex-shrink: 0;
  margin-right: var(--space-lg);
}

.ticker-items {
  display: flex;
  gap: var(--space-3xl);
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-items span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0A0A0F;
  letter-spacing: 0.04em;
}

.ticker-sep {
  color: rgba(10, 10, 15, 0.4) !important;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Article Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

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

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

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

.card-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gold);
  color: #0A0A0F;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.card-body {
  padding: var(--space-lg);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.card-meta span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.card-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--dark-border);
}

.card h3, .card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  transition: color var(--transition);
}

.card:hover h3,
.card:hover h4 {
  color: var(--gold);
}

.card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-read-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.card-read-more:hover {
  gap: 10px;
}

.card-read-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Featured Article (Big Card)
   -------------------------------------------------------------------------- */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.featured-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.featured-card-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.featured-card-body {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.featured-badge::before {
  content: '★';
  font-size: 0.6rem;
}

.featured-card-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: var(--space-md);
}

.featured-card-body h2:hover {
  color: var(--gold);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  gap: var(--space-lg);
}

.section-header h2 {
  max-width: 500px;
}

/* --------------------------------------------------------------------------
   Universe Grid (Homepage)
   -------------------------------------------------------------------------- */
.universe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.universe-item {
  background: var(--dark-card);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.universe-item:hover {
  background: rgba(201, 168, 76, 0.08);
}

.universe-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.universe-item:hover .universe-icon {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.universe-item h4 {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.universe-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Quote Block
   -------------------------------------------------------------------------- */
.quote-block {
  background: linear-gradient(135deg, var(--dark-surface) 0%, rgba(201, 168, 76, 0.05) 100%);
  border-left: 3px solid var(--gold);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: -20px;
  left: var(--space-lg);
  line-height: 1;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.quote-author {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   Moderation Banner (Loi Évin)
   -------------------------------------------------------------------------- */
.moderation-banner {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.moderation-banner svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.moderation-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.moderation-banner strong {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Tag Pills
   -------------------------------------------------------------------------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}

.tag:hover, .tag.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* --------------------------------------------------------------------------
   Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark-surface), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: var(--space-xl) auto 0;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-legal {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

/* --------------------------------------------------------------------------
   Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

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

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--dark-border); }

/* --------------------------------------------------------------------------
   Recipe Cards (special)
   -------------------------------------------------------------------------- */
.recipe-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.recipe-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.recipe-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.recipe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.recipe-difficulty {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-card-body {
  padding: var(--space-lg);
}

.recipe-info {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.recipe-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.recipe-info-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Spirits Grid
   -------------------------------------------------------------------------- */
.spirit-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.spirit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.spirit-card:hover::before {
  opacity: 1;
}

.spirit-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.spirit-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: all var(--transition);
}

.spirit-card:hover .spirit-icon-wrap {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.spirit-icon-wrap svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

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

.spirit-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Tool Cards (/outils)
   -------------------------------------------------------------------------- */
.tool-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
}
.tool-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}
.tool-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.tool-card:hover::before { opacity: 1; }
.tool-card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
  transition: all var(--transition);
}
.tool-card:hover .tool-card-icon {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.tool-card-icon svg { color: var(--gold); }
.tool-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}
.tool-badge--on  { background: rgba(45,122,79,0.15); color: #5DBB8A; border: 1px solid rgba(45,122,79,0.3); }
.tool-badge--soon { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.25); }
.tool-card h3 { font-size: 1.1rem; margin-bottom: var(--space-sm); }
.tool-card p { font-size: 0.85rem; line-height: 1.65; color: var(--text-secondary); }
.tool-card-cta {
  display: flex; align-items: center; gap: 6px;
  margin-top: var(--space-lg);
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: gap var(--transition);
}
.tool-card:hover .tool-card-cta { gap: 10px; }

.spirit-card-img {
  margin: calc(-1 * var(--space-xl)) calc(-1 * var(--space-xl)) var(--space-lg);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  height: 180px;
}
.spirit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.spirit-card:hover .spirit-card-img img {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   Article Layout (Full Page)
   -------------------------------------------------------------------------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
}

.sidebar-widget {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.sidebar-widget h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--dark-border);
}

/* --------------------------------------------------------------------------
   Bar Cards
   -------------------------------------------------------------------------- */
.bar-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.bar-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.bar-card-img {
  overflow: hidden;
}

.bar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.bar-card-body {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bar-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gold);
}

.bar-info {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.bar-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   Stats Row
   -------------------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-2xl) 0;
}

.stat-item {
  background: var(--dark-card);
  padding: var(--space-xl);
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-3xl);
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: var(--space-md) 0 var(--space-lg);
  line-height: 1.7;
  max-width: 280px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal strong {
  color: var(--gold);
}

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

/* --------------------------------------------------------------------------
   Age Gate (Loi Évin)
   -------------------------------------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.age-gate-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.age-gate-box .age-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: var(--space-xl);
}

.age-gate-box h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

.age-gate-box p {
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.age-gate-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.age-gate-legal {
  margin-top: var(--space-xl);
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays */
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .universe-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card-img { min-height: 280px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .universe-grid { grid-template-columns: repeat(2, 1fr); }
  .bar-card { grid-template-columns: 1fr; }
  .bar-card-img { height: 200px; }
  .newsletter-form { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .age-gate-box { padding: var(--space-xl); }
  .age-gate-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .universe-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .recipe-card-img { aspect-ratio: 4/3; }
}

/* --------------------------------------------------------------------------
   Calculateur d'apéro — calqué sur featured-card
   -------------------------------------------------------------------------- */

/* Formulaire (côté gauche) */
.calc-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.calc-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  gap: var(--space-lg);
  background: rgba(255,255,255,0.015);
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--transition);
}

.calc-form-row:last-child { border-bottom: none; }
.calc-form-row:hover { background: rgba(201,168,76,0.04); }

.calc-form-lbl {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  min-width: 80px;
}

.calc-form-lbl svg { color: var(--gold); flex-shrink: 0; }

/* Stepper */
.calc-stepper {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 6px var(--space-sm);
}

.calc-stepper button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.calc-stepper button:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.2);
  transform: scale(1.1);
}

.calc-stepper strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  min-width: 56px;
  text-align: center;
  line-height: 1;
}

/* Select */
.calc-select {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 9px 32px 9px 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  width: 100%;
  max-width: 200px;
}

.calc-select:focus { outline: none; border-color: var(--gold); }
.calc-select option { background: var(--dark-card); }

/* Côté droit — fond avec glow gold centré */
.calc-right {
  background: var(--dark-surface);
  border-left: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.calc-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* État idle */
.calc-right-idle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  color: var(--text-muted);
  text-align: center;
  position: relative;
  z-index: 1;
}

.calc-right-idle svg {
  color: var(--gold);
  opacity: 0.2;
}

.calc-right-idle p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Résultats */
.calc-right-results {
  display: none;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* 4 items en 2×2 — spirit-card style */
.calc-res-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.calc-res-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.calc-res-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.calc-right-results.shown .calc-res-item::after { opacity: 1; }

.calc-right-results.shown .calc-res-item {
  border-color: rgba(201,168,76,0.2);
}

.calc-res-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.calc-res-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.calc-res-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Note bas */
.calc-res-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
  padding: var(--space-md) var(--space-lg);
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0;
}

.calc-res-note strong { color: var(--text-secondary); }

/* Ticker without label */
.ticker-inner { gap: 0; }

/* ============================================================
   RECETTE DETAIL PAGE
   ============================================================ */

/* Hero with blurred image backdrop */
.rct-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-3xl);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}
.rct-hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.18) saturate(0.5);
  transform: scale(1.15);
  z-index: 0;
}
.rct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.97) 100%);
  z-index: 1;
}
.rct-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.rct-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: var(--space-sm) 0 var(--space-lg);
}
.rct-hero .gold-line { margin: 0 0 var(--space-xl); }

/* Stats pills row */
.rct-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.rct-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--dark-border);
  border-radius: 99px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rct-stat-pill--gold {
  border-color: rgba(201,168,76,0.45);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}

/* Main 2-col grid */
.rct-main-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Left sticky image column */
.rct-img-col { position: sticky; top: 90px; }

.rct-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.rct-img-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rct-img-card:hover img { transform: scale(1.04); }

.rct-iba-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}

.rct-print-btn {
  width: 100%;
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Right recipe column */
.rct-recipe-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

/* Block */
.rct-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--dark-border);
}
.rct-block-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.rct-block-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--dark-surface);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border);
  white-space: nowrap;
}

/* Ingredient list */
.rct-ing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.rct-ing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px var(--space-lg);
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.9rem;
  transition: background 0.2s;
  gap: var(--space-md);
}
.rct-ing-item:last-child { border-bottom: none; }
.rct-ing-item:nth-child(even) { background: rgba(255,255,255,0.015); }
.rct-ing-item:hover { background: rgba(255,255,255,0.03); }
.rct-ing-base {
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.04) !important;
}
.rct-ing-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.rct-ing-bullet {
  color: var(--text-muted);
  font-size: 0.65rem;
  width: 16px;
  flex-shrink: 0;
}
.rct-ing-base .rct-ing-bullet { color: var(--gold); }
.rct-ing-name { color: var(--text-primary); font-weight: 500; }
.rct-ing-base .rct-ing-name { font-weight: 600; }
.rct-ing-qty {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Steps */
.rct-steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.rct-steps li {
  counter-increment: steps;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) var(--space-lg);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}
.rct-steps li:hover {
  border-color: rgba(201,168,76,0.25);
  color: var(--text-primary);
}
.rct-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 3px;
}
.rct-step-num::before { content: counter(steps); }

@media (max-width: 960px) {
  .rct-main-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .rct-img-col { position: static; }
  .rct-img-card { max-width: 300px; }
}
@media (max-width: 768px) {
  .rct-hero { min-height: 380px; padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl); }
  .rct-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* ============================================================
   RECETTES PAGE
   ============================================================ */
.rct-search-wrap {
  position: relative;
  max-width: 480px;
}
.rct-search-wrap svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.rct-search-wrap input {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 11px 16px 11px 42px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.rct-search-wrap input:focus {
  outline: none;
  border-color: var(--gold);
}
.rct-search-wrap input::placeholder { color: var(--text-muted); }

.rct-filters .tag small {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-left: 3px;
}

.rct-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.rct-sort { display: flex; align-items: center; gap: var(--space-sm); }
.rct-sort label { font-size: 0.78rem; }
.rct-sort select {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  cursor: pointer;
}

/* Compact recipe cards inside grid-6 */
.grid-6 .recipe-card-img { aspect-ratio: 4/3; }
.grid-6 .recipe-card-body { padding: var(--space-sm) var(--space-md) var(--space-md); }
.grid-6 .recipe-card-body h3 { font-size: 0.88rem; margin-bottom: 2px; }
.grid-6 .recipe-card-body > p { font-size: 0.72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.grid-6 .recipe-info { margin-top: var(--space-sm); gap: var(--space-sm); flex-wrap: wrap; }
.grid-6 .recipe-info-item { font-size: 0.68rem; }
.grid-6 .recipe-difficulty { font-size: 0.58rem; padding: 2px 6px; top: var(--space-sm); right: var(--space-sm); }
.grid-6 .card-category { font-size: 0.6rem; padding: 2px 8px; }

.recipe-badge-iba {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 7px;
  border-radius: 3px;
}

/* ============================================================
   WIZARD SOIRÉE COCKTAIL
   ============================================================ */
.wz-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}
.wz-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Progress */
.wz-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-sm);
}
.wz-step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 2px solid var(--dark-border);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.wz-step-dot.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.wz-step-dot.done { background: var(--gold); border-color: var(--gold); color: var(--dark-bg); }
.wz-step-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: var(--dark-border);
  transition: background 0.3s;
}
.wz-step-line.active { background: var(--gold); }

.wz-step-labels {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-2xl);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.wz-step-labels span {
  flex: 0;
  min-width: 164px;
  text-align: center;
}

/* Panes */
.wz-pane { display: block; }
.wz-hidden { display: none; }
.wz-pane-inner { max-width: 800px; margin: 0 auto; }
.wz-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

/* Step 1 fields */
.wz-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.wz-field-wide { grid-column: span 2; }
.wz-field { display: flex; flex-direction: column; gap: var(--space-sm); }
.wz-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Stepper */
.wz-stepper {
  display: flex; align-items: center;
  gap: 0;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark-surface);
  width: fit-content;
}
.wz-stepper button {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  width: 40px; height: 44px;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.wz-stepper button:hover { background: rgba(201,168,76,0.1); }
.wz-stepper strong {
  min-width: 56px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  border-left: 1px solid var(--dark-border);
  border-right: 1px solid var(--dark-border);
  padding: 0 var(--space-sm);
  height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* Radio style */
.wz-radio-group { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.wz-radio {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.2s;
  background: var(--dark-surface);
  user-select: none;
}
.wz-radio:hover { border-color: var(--gold); color: var(--text-primary); }
.wz-radio.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* Nav */
.wz-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--dark-border);
  gap: var(--space-md);
}
.wz-nav-right { justify-content: flex-end; border: none; padding-top: 0; }

/* Step 2 cocktails */
.wz-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.wz-sel-count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.wz-cocktails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.wz-cocktail-card {
  display: flex; align-items: center; gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--dark-surface);
  transition: all 0.2s;
  position: relative;
}
.wz-cocktail-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.wz-cocktail-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.wz-c-emoji { font-size: 1.5rem; flex-shrink: 0; }
.wz-c-info { flex: 1; }
.wz-c-info strong { display: block; font-size: 0.92rem; color: var(--text-primary); margin-bottom: 2px; }
.wz-c-info span { font-size: 0.72rem; color: var(--text-muted); }
.wz-c-diff {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 2px 8px; border-radius: 99px; text-transform: uppercase;
  flex-shrink: 0;
}
.diff-easy  { background: rgba(107,175,138,0.15); color: #6BAF8A; border: 1px solid rgba(107,175,138,0.3); }
.diff-moyen, .diff-med { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.diff-intermediaire, .diff-hard { background: rgba(196,85,54,0.15); color: #C45536; border: 1px solid rgba(196,85,54,0.3); }
.wz-c-check {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--dark-bg); font-weight: 900;
  opacity: 0; transform: scale(0.5);
  transition: all 0.2s;
  flex-shrink: 0;
}
.wz-cocktail-card.selected .wz-c-check { opacity: 1; transform: scale(1); }

/* Step 3 results */
.wz-results-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-2xl);
  max-width: 100%;
}
.wz-summary {
  display: flex; flex-direction: column; gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.wz-sum-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.88rem;
}
.wz-sum-row span { color: var(--text-secondary); }
.wz-sum-row strong { color: var(--text-primary); font-size: 1rem; }

.wz-sel-tags { display: flex; flex-direction: column; gap: var(--space-sm); }
.wz-sel-tag {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-primary);
}
.wz-sel-tag span { font-size: 0.72rem; color: var(--gold); }

/* Shopping list */
.wz-list-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-md);
}
.btn-sm { padding: 6px 14px; font-size: 0.78rem; }
.wz-shopping { display: flex; flex-direction: column; gap: var(--space-md); }
.wz-shop-group { }
.wz-shop-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-xs);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.wz-shop-item {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: 5px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wz-item-label { flex: 1; color: var(--text-secondary); text-transform: capitalize; }
.wz-item-qty { color: var(--text-primary); font-weight: 600; white-space: nowrap; }
.wz-item-price { color: var(--text-muted); font-size: 0.75rem; min-width: 44px; text-align: right; }

.wz-budget-box {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
}
.wz-budget-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.wz-budget-row span { color: var(--text-secondary); }
.wz-budget-row strong { font-size: 1.4rem; color: var(--gold); font-family: var(--font-display); }
.wz-budget-per { font-size: 0.75rem; color: var(--text-muted); text-align: right; }

/* Responsive */
@media (max-width: 900px) {
  .wz-results-inner { grid-template-columns: 1fr; }
  .wz-cocktails { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wz-card { padding: var(--space-xl) var(--space-lg); }
  .wz-fields { grid-template-columns: 1fr; }
  .wz-field-wide { grid-column: span 1; }
  .wz-step-labels span { min-width: 100px; font-size: 0.62rem; }
  .wz-step-line { max-width: 60px; }
}