/*
Theme Name: Pomsky du Clos Bagheera
Theme URI: https://pomsky-clos-bagheera.fr
Author: Clos Bagheera
Description: Thème élégant pour élevage de Pomsky — blanc cassé, bordeaux et or.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: pomsky-bagheera
*/

/* =========================================================
   VARIABLES
   ========================================================= */
:root {
  --blanc: #FAF7F2;
  --blanc-alt: #F2EDE5;
  --bordeaux: #7B1E3C;
  --bordeaux-hover: #9B2E52;
  --or: #C9A84C;
  --or-hover: #D4B96A;
  --texte: #2C1810;
  --texte-clair: #6B4E44;
  --gris-doux: #EDE7DE;
  --ombre: rgba(44, 24, 16, 0.08);
  --ombre-forte: rgba(44, 24, 16, 0.18);

  --font-titre: 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Nunito', 'Segoe UI', sans-serif;

  --radius: 10px;
  --radius-xl: 20px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

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

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

body {
  background-color: var(--blanc);
  color: var(--texte);
  font-family: var(--font-corps);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* =========================================================
   TYPOGRAPHIE
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titre);
  font-weight: 600;
  line-height: 1.2;
  color: var(--texte);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--texte-clair);
  font-style: italic;
  font-family: var(--font-titre);
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 5rem 0; }
.section-padding--sm { padding: 3rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--bordeaux), var(--or));
  border-radius: 2px;
}

.section-header .lead {
  margin-top: 0.75rem;
}

.bg-gris { background-color: var(--gris-doux); }
.bg-bordeaux { background-color: var(--bordeaux); color: #fff; }
.bg-bordeaux h1, .bg-bordeaux h2, .bg-bordeaux h3 { color: #fff; }

/* =========================================================
   BOUTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-bordeaux {
  background: var(--bordeaux);
  color: #fff;
  border-color: var(--bordeaux);
}
.btn-bordeaux:hover {
  background: var(--bordeaux-hover);
  border-color: var(--bordeaux-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 30, 60, 0.3);
}

.btn-or {
  background: var(--or);
  color: var(--texte);
  border-color: var(--or);
}
.btn-or:hover {
  background: var(--or-hover);
  border-color: var(--or-hover);
  color: var(--texte);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.btn-outline:hover {
  background: var(--bordeaux);
  color: #fff;
}

.btn-outline-blanc {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-blanc:hover {
  background: #fff;
  color: var(--bordeaux);
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gris-doux);
  transition: box-shadow var(--transition);
}

#masthead.scrolled {
  box-shadow: 0 4px 20px var(--ombre-forte);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-branding {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-title {
  font-family: var(--font-titre);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bordeaux) !important;
  letter-spacing: 0.02em;
}

.site-tagline {
  font-size: 0.72rem;
  color: var(--or);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-menu li a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--texte);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--bordeaux);
  background: rgba(123, 30, 60, 0.06);
}

.nav-menu .btn-nav {
  background: var(--bordeaux);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem !important;
}
.nav-menu .btn-nav:hover {
  background: var(--bordeaux-hover) !important;
  color: #fff !important;
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bordeaux);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bordeaux);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 30, 60, 0.75) 0%,
    rgba(44, 24, 16, 0.55) 60%,
    rgba(201, 168, 76, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 3rem 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-titre);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-title span { color: var(--or); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-style: italic;
  font-family: var(--font-titre);
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2.5s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

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

/* =========================================================
   SECTION À PROPOS
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--or);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bordeaux);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-titre);
  box-shadow: 0 8px 24px rgba(123, 30, 60, 0.4);
}

.about-badge strong { font-size: 1.6rem; line-height: 1; }
.about-badge span { font-size: 0.72rem; letter-spacing: 0.05em; }

.about-text h2 { margin-bottom: 1rem; }

.about-values {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-value-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.85rem;
}

.about-value-text strong {
  display: block;
  color: var(--bordeaux);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.about-value-text p {
  font-size: 0.88rem;
  color: var(--texte-clair);
  margin: 0;
}

/* =========================================================
   PORTÉES (Litters)
   ========================================================= */
.portees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.portee-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--ombre);
  transition: all var(--transition);
}

.portee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--ombre-forte);
}

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

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

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

.portee-statut {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.statut-disponible { background: #d4edda; color: #155724; }
.statut-reserve { background: #fff3cd; color: #856404; }
.statut-passe { background: var(--gris-doux); color: var(--texte-clair); }

.portee-card-body {
  padding: 1.5rem;
}

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

.portee-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.portee-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--texte-clair);
}

.portee-meta-item svg { color: var(--or); flex-shrink: 0; }

.portee-parents {
  font-size: 0.82rem;
  color: var(--texte-clair);
  border-top: 1px solid var(--gris-doux);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-style: italic;
}

/* =========================================================
   REPRODUCTEURS
   ========================================================= */
.reproducteurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.reproducteur-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px var(--ombre);
  transition: all var(--transition);
}

.reproducteur-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--ombre-forte);
}

.reproducteur-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--blanc-alt);
  box-shadow: 0 0 0 3px var(--or);
}

.reproducteur-card h3 { margin-bottom: 0.25rem; }

.reproducteur-race {
  font-size: 0.82rem;
  color: var(--or);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.reproducteur-titres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 0.75rem 0;
}

.titre-badge {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-hover));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.reproducteur-sexe {
  font-size: 0.8rem;
  color: var(--texte-clair);
  margin-bottom: 1rem;
}

/* =========================================================
   PEDIGREE (single reproducteur)
   ========================================================= */
.pedigree-wrapper {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 16px var(--ombre);
  overflow-x: auto;
}

.pedigree-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.pedigree-table td {
  border: 1px solid var(--gris-doux);
  padding: 0.6rem 0.9rem;
  vertical-align: middle;
}

.pedigree-table .ped-gen-label {
  background: var(--bordeaux);
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 80px;
}

.pedigree-table .ped-male { background: #EBF3FB; }
.pedigree-table .ped-female { background: #FBF0F3; }

.pedigree-table .ped-nom { font-weight: 600; color: var(--bordeaux); }
.pedigree-table .ped-titres { color: var(--or); font-size: 0.78rem; }
.pedigree-table .ped-reg { color: var(--texte-clair); font-size: 0.75rem; }

/* =========================================================
   SINGLE REPRODUCTEUR
   ========================================================= */
.reprod-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(135deg, var(--blanc), var(--gris-doux));
}

.reprod-hero-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.reprod-photo-main {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 8px 30px var(--ombre-forte);
  border: 4px solid #fff;
}

.reprod-info h1 { margin-bottom: 0.5rem; }
.reprod-info .lead { margin-bottom: 1.5rem; }

.reprod-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reprod-stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px var(--ombre);
}

.reprod-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--bordeaux);
  font-family: var(--font-titre);
}

.reprod-stat span {
  font-size: 0.75rem;
  color: var(--texte-clair);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
   SECTION CTA
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--bordeaux) 0%, #4A0E22 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-section .lead { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* =========================================================
   FORMULAIRE CONTACT
   ========================================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { color: var(--bordeaux); margin-bottom: 1rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-detail-text strong { display: block; color: var(--texte); }
.contact-detail-text a { color: var(--texte-clair); }
.contact-detail-text a:hover { color: var(--bordeaux); }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px var(--ombre);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gris-doux);
  border-radius: var(--radius);
  font-family: var(--font-corps);
  font-size: 0.95rem;
  color: var(--texte);
  background: var(--blanc);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(123, 30, 60, 0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

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

.form-success, .form-error {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  display: none;
}
.form-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* =========================================================
   WPFORMS — SURCHARGE THÈME
   ========================================================= */
.wpforms-container { width: 100%; }

.wpforms-field-label {
  font-family: var(--font-corps);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: .4rem !important;
}

.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gris-doux);
  border-radius: var(--radius);
  background: var(--blanc);
  color: var(--texte);
  font-family: var(--font-corps);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
  outline: none;
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

.wpforms-field textarea { min-height: 130px; resize: vertical; }

.wpforms-field-required { color: var(--bordeaux) !important; }

.wpforms-submit-container { margin-top: 1rem; }

.wpforms-submit {
  width: 100%;
  padding: .85rem 2rem;
  background: var(--bordeaux);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.wpforms-submit:hover { background: var(--bordeaux-hover); transform: translateY(-1px); }

.wpforms-error-container,
.wpforms-field .wpforms-error {
  color: var(--bordeaux);
  font-size: .82rem;
  margin-top: .3rem;
}

.wpforms-confirmation-container-full {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-family: var(--font-corps);
}

/* =========================================================
   GALERIE CHIOTS
   ========================================================= */
.chiots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.chiot-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}

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

.chiot-item:hover img { transform: scale(1.08); }

.chiot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123, 30, 60, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.chiot-item:hover .chiot-overlay { opacity: 1; }

.chiot-name {
  color: #fff;
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
#colophon {
  background: var(--texte);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}

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

.footer-brand .site-title { color: var(--or) !important; font-size: 1.3rem; }
.footer-brand .site-tagline { color: rgba(255,255,255,0.5); }
.footer-brand p { margin-top: 1rem; font-size: 0.88rem; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--or); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--or); }

/* =========================================================
   PAGE CONTENU
   ========================================================= */
.page-header-inner {
  background: linear-gradient(135deg, var(--blanc), var(--gris-doux));
  padding: 7rem 0 3rem;
  text-align: center;
}

.page-header-inner h1 {
  color: var(--bordeaux);
}

.page-header-inner .breadcrumb {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--texte-clair);
}

.page-header-inner .breadcrumb a { color: var(--bordeaux); }

.entry-content { padding: 3rem 0; }
.entry-content .container { max-width: 800px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-width: 480px; margin: 0 auto; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reprod-hero-inner { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--blanc);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px var(--ombre-forte);
    border-top: 1px solid var(--gris-doux);
    gap: 0.25rem;
  }

  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu li a { padding: 0.75rem 1rem; }
  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .reprod-hero-inner { grid-template-columns: 1fr; }
  .reprod-photo-main { max-width: 260px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .portees-grid, .reproducteurs-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.text-or { color: var(--or); }
.text-bordeaux { color: var(--bordeaux); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

.or-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--bordeaux), var(--or));
  border-radius: 2px;
  margin: 1rem auto;
}

.has-no-results {
  text-align: center;
  padding: 4rem;
  color: var(--texte-clair);
  font-style: italic;
}
