/* ============================================
   KIRSTEN HARMA — CSS COMPLET
   Dernière mise à jour : avril 2026
   ============================================ */

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

/* ============================================
   VARIABLES ET BASE
   ============================================ */
.kh-page {
  --kh-bg-main: #f7f2ec;
  --kh-bg-card: #ffffff;
  --kh-bg-dark-accent: #2a2520;
  --kh-text-primary: #1a1612;
  --kh-text-secondary: #5a5149;
  --kh-accent-gold: #b08d4a;
  --kh-border-subtle: rgba(176, 141, 74, 0.2);
  --kh-border-gold: rgba(176, 141, 74, 0.35);
  --kh-shadow-soft: 0 2px 20px rgba(42, 37, 32, 0.06);
  --kh-shadow-medium: 0 4px 30px rgba(42, 37, 32, 0.1);
  --kh-shadow-hover: 0 8px 40px rgba(42, 37, 32, 0.15);
  --kh-shadow-photo: 0 15px 50px rgba(42, 37, 32, 0.18);
  background: var(--kh-bg-main);
  color: var(--kh-text-primary);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
}

.kh-page * { box-sizing: border-box; }

.kh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   PAGE ACCUEIL - HERO
   ============================================ */
.kh-hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.kh-overline {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--kh-accent-gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.kh-overline::before,
.kh-overline::after {
  content: '';
  width: 45px;
  height: 1px;
  background: var(--kh-accent-gold);
}

.kh-hero h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--kh-text-primary);
}

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

.kh-hero-subtitle {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--kh-text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.kh-cta {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: var(--kh-text-primary);
  color: var(--kh-bg-main) !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--kh-text-primary);
}

.kh-cta:hover {
  background: transparent;
  color: var(--kh-text-primary) !important;
}

/* ============================================
   DIVIDER
   ============================================ */
.kh-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kh-accent-gold);
}

.kh-divider span {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.kh-divider span + span::before {
  content: '•';
  color: var(--kh-accent-gold);
  margin-right: 0.5rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.kh-section {
  padding: 4rem 0;
}

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

.kh-section-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--kh-text-primary);
  margin: 0 0 0.75rem;
}

.kh-section-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kh-accent-gold);
  margin-bottom: 1rem;
  display: block;
}

/* ============================================
   BIO (PAGE ACCUEIL)
   ============================================ */
.kh-bio-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.kh-bio-image-wrapper {
  position: relative;
  padding: 8px;
  background: var(--kh-bg-card);
  border: 1px solid var(--kh-border-gold);
  box-shadow: var(--kh-shadow-photo);
  transition: transform 0.4s ease;
  line-height: 0;
  border-radius: 8px;
}

.kh-bio-image-wrapper:hover {
  transform: translateY(-4px);
}

.kh-bio-image {
  width: 100%;
  height: auto;
  display: block;
}

.kh-bio-card {
  background: var(--kh-bg-card);
  padding: 3rem;
  border: 1px solid var(--kh-border-subtle);
  border-left: 3px solid var(--kh-accent-gold);
  box-shadow: var(--kh-shadow-medium);
  border-radius: 12px;
}

.kh-bio-card .kh-section-subtitle {
  text-align: left;
}

.kh-bio-card h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--kh-text-primary);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.kh-bio-card p {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--kh-text-secondary);
  margin: 0 0 1.25rem;
}

.kh-bio-card p:last-child { margin-bottom: 0; }

.kh-bio-card strong {
  color: var(--kh-text-primary);
  font-weight: 600;
}

.kh-bio-card em {
  color: var(--kh-accent-gold);
  font-style: italic;
}

/* ============================================
   VIDEOS
   ============================================ */
.kh-video-featured {
  background: var(--kh-bg-card);
  padding: 2.5rem;
  border: 1px solid var(--kh-border-subtle);
  border-left: 3px solid var(--kh-accent-gold);
  box-shadow: var(--kh-shadow-medium);
  margin-bottom: 3rem;
  border-radius: 12px;
}

.kh-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--kh-bg-dark-accent);
}

.kh-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.kh-video-caption {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--kh-text-secondary);
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--kh-border-subtle);
}

.kh-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.kh-video-card {
  background: var(--kh-bg-card);
  padding: 1.75rem;
  border: 1px solid var(--kh-border-subtle);
  border-left: 3px solid var(--kh-accent-gold);
  box-shadow: var(--kh-shadow-soft);
  transition: all 0.4s ease;
  border-radius: 12px;
}

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

/* ============================================
   DISCOGRAPHIE
   ============================================ */
.kh-catalog-wrapper {
  background: var(--kh-bg-card);
  padding: 3.5rem 3rem;
  border: 1px solid var(--kh-border-subtle);
  border-left: 3px solid var(--kh-accent-gold);
  box-shadow: var(--kh-shadow-medium);
  border-radius: 12px;
}

.kh-catalog-wrapper .kh-section-header {
  margin-bottom: 3rem;
}

.kh-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.kh-project {
  background: var(--kh-bg-main);
  border: 1px solid var(--kh-border-subtle);
  border-left: 3px solid var(--kh-accent-gold);
  box-shadow: var(--kh-shadow-soft);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}

.kh-project:hover {
  transform: translateY(-4px);
  box-shadow: var(--kh-shadow-hover);
}

.kh-project-header {
  padding: 1.75rem 1.5rem 1.25rem;
  background: var(--kh-bg-card);
  border-bottom: 1px solid var(--kh-border-subtle);
}

.kh-project-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kh-accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.kh-project-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--kh-text-primary);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.kh-project-description {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--kh-text-secondary);
  margin: 0;
}

.kh-project-player {
  padding: 1.5rem;
  margin-top: auto;
  background: var(--kh-bg-card);
}

.kh-project-player iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* ============================================
   FINAL CTA
   ============================================ */
.kh-final-cta {
  text-align: center;
  padding: 4rem 3rem;
  background: var(--kh-bg-card);
  border: 1px solid var(--kh-border-subtle);
  border-left: 3px solid var(--kh-accent-gold);
  box-shadow: var(--kh-shadow-medium);
  border-radius: 12px;
}

.kh-final-cta .kh-section-subtitle {
  margin-bottom: 1rem;
}

.kh-final-cta h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
  color: var(--kh-text-primary);
}

.kh-final-cta p {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--kh-text-secondary);
  margin-bottom: 2rem;
}

/* ============================================
   PLEINE LARGEUR - ACCUEIL
   ============================================ */
.kh-page {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none !important;
  width: auto;
}

body.home .entry-content,
body.home .wp-block-post-content,
body.home main,
body.home .site-main,
body.home article {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ============================================
   PAGE A PROPOS - HERO IMMERSIF
   ============================================ */
.kh-about-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 0;
}

.kh-about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.75);
}

.kh-contact .kh-about-hero-image {
  object-position: center 20% !important;
}

.kh-about-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 0 4rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.kh-about-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--kh-accent-gold, #b08d4a);
  margin-bottom: 1rem;
}

.kh-about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.kh-about-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: #f0e8d5;
  margin: 0;
}

/* ============================================
   CITATION CENTRALE
   ============================================ */
.kh-quote-section {
  padding: 3rem 0;
  text-align: center;
}

.kh-quote {
  max-width: 640px;
  margin: 0 auto 2rem;
  border: none;
  padding: 2rem 0;
  border-top: 1px solid var(--kh-border-subtle, rgba(176, 141, 74, 0.2));
  border-bottom: 1px solid var(--kh-border-subtle, rgba(176, 141, 74, 0.2));
}

.kh-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--kh-text-secondary, #5a5149);
  line-height: 1.5;
  margin: 0;
}

.kh-quote em {
  color: var(--kh-accent-gold, #b08d4a);
  font-weight: 500;
}

/* ============================================
   CARDS A PROPOS
   ============================================ */
.kh-about-card {
  background: var(--kh-bg-card, #ffffff);
  padding: 3rem;
  border: 1px solid var(--kh-border-subtle, rgba(176, 141, 74, 0.2));
  border-left: 3px solid var(--kh-accent-gold, #b08d4a);
  box-shadow: var(--kh-shadow-medium, 0 4px 30px rgba(42, 37, 32, 0.1));
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.kh-about-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--kh-text-primary, #1a1612);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.kh-about-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--kh-text-secondary, #5a5149);
  margin-bottom: 1.25rem;
}

.kh-about-card p:last-child { margin-bottom: 0; }

.kh-about-card strong {
  color: var(--kh-text-primary, #1a1612);
  font-weight: 600;
}

.kh-about-card em {
  font-style: italic;
}

/* ============================================
   SOUS-TITRES H4
   ============================================ */
.kh-about-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kh-accent-gold, #b08d4a);
  margin: 2rem 0 0.75rem;
}

/* ============================================
   LISTES
   ============================================ */
.kh-about-list {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--kh-text-secondary, #5a5149);
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.kh-about-list li {
  margin-bottom: 0.75rem;
}

.kh-about-list li::marker {
  color: var(--kh-accent-gold, #b08d4a);
}

/* ============================================
   LIENS
   ============================================ */
.kh-link-gold {
  color: var(--kh-accent-gold, #b08d4a) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--kh-accent-gold, #b08d4a);
  transition: all 0.3s ease;
}

.kh-link-gold:hover {
  color: var(--kh-text-primary, #1a1612) !important;
  border-bottom-color: var(--kh-text-primary, #1a1612);
}

.kh-link-plain {
  color: var(--kh-text-primary, #1a1612) !important;
  text-decoration: none !important;
  font-weight: 700;
}

/* ============================================
   CALLOUT
   ============================================ */
.kh-about-callout {
  background: var(--kh-bg-main, #f7f2ec);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: 2px;
  margin-top: 1.5rem;
}

.kh-about-callout a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================
   NOTE
   ============================================ */
.kh-about-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem !important;
  color: var(--kh-text-secondary, #5a5149);
  opacity: 0.8;
  margin-top: 1.5rem !important;
}

/* ============================================
   GRILLE D'ALBUMS
   ============================================ */
.kh-albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 2rem;
  margin: 1rem 0 0;
  padding: 1.5rem;
  background: var(--kh-bg-main, #f7f2ec);
  border-radius: 2px;
}

.kh-album-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--kh-text-secondary, #5a5149);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.25rem 0;
  border-bottom: 1px dotted var(--kh-border-subtle, rgba(176, 141, 74, 0.2));
}

.kh-album-item em {
  color: var(--kh-text-primary, #1a1612);
  font-style: italic;
}

.kh-album-item span {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kh-accent-gold, #b08d4a);
  letter-spacing: 0.05em;
}

/* ============================================
   PLEINE LARGEUR - PAGES
   ============================================ */
body.page-id-1 .entry-content,
body.page-id-1 .wp-block-post-content,
body.page-id-1 main,
body.page-id-1 .site-main,
body.page-id-1 article,
body.page-id-46 .entry-content,
body.page-id-46 .wp-block-post-content,
body.page-id-46 main,
body.page-id-46 .site-main,
body.page-id-46 article,
body.page-id-76 .entry-content,
body.page-id-76 .wp-block-post-content,
body.page-id-76 main,
body.page-id-76 .site-main,
body.page-id-76 article {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ============================================
   PAGE CONTACT - INTRO FORMULAIRE
   ============================================ */
.kh-form-intro {
  padding-bottom: 2rem;
}

.kh-form-intro .kh-section-header {
  margin-bottom: 0;
}

/* ============================================
   FORMULAIRE CONTACT FORM 7
   ============================================ */
.page-id-46 .wpcf7,
.kh-page .wpcf7,
.entry-content .wpcf7 {
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto 4rem !important;
  max-width: 900px !important;
  border-radius: 0 !important;
}

.page-id-46 .wpcf7 form.wpcf7-form,
.kh-page .wpcf7 form.wpcf7-form,
body .wpcf7-form {
  background: #ffffff !important;
  border: 1px solid rgba(176, 141, 74, 0.2) !important;
  border-left: 3px solid #b08d4a !important;
  box-shadow: 0 4px 30px rgba(42, 37, 32, 0.1) !important;
  padding: 3rem !important;
  border-radius: 12px !important;
  margin: 0 !important;
  font-family: 'Inter', -apple-system, sans-serif;
}

.wpcf7-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #1a1612 !important;
  margin-bottom: 0.5rem !important;
  margin-top: 1.25rem !important;
}

.wpcf7-form label:first-child {
  margin-top: 0 !important;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100% !important;
  padding: 0.9rem 1rem !important;
  background: #f7f2ec !important;
  border: 1px solid rgba(176, 141, 74, 0.2) !important;
  border-radius: 8px !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.1rem !important;
  color: #1a1612 !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
  box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none !important;
  border-color: #b08d4a !important;
  background: #ffffff !important;
}

.wpcf7-form textarea {
  min-height: 150px !important;
  resize: vertical;
  font-family: 'Cormorant Garamond', serif !important;
}

.wpcf7-form .required-message,
.wpcf7-form .required-field,
.wpcf7-form .wpcf7-required {
  color: #b08d4a;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.75rem;
  font-style: italic;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
  display: inline-block !important;
  padding: 1.25rem 3.5rem !important;
  background: #1a1612 !important;
  color: #f7f2ec !important;
  border: 1px solid #1a1612 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-top: 2rem !important;
  border-radius: 8px !important;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: transparent !important;
  color: #1a1612 !important;
}

.wpcf7-response-output {
  margin: 2rem 0 0 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 8px !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.05rem !important;
  border-width: 1px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #b08d4a !important;
  background: #f7f2ec !important;
  color: #1a1612 !important;
}

.wpcf7-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b08d4a' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.25rem !important;
  padding-right: 3rem !important;
}

/* ============================================
   PAGE PROJETS
   ============================================ */
.kh-projets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.kh-projets .kh-video-card .kh-project-category {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b08d4a;
  margin-bottom: 0.5rem;
}

.kh-projets .kh-video-card .kh-project-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #1a1612;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.kh-projets .kh-video-card .kh-project-description {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #5a5149;
  margin: 0 0 1.5rem;
}

/* ============================================
   ESPACEMENT FAQ - PAGE CONTACT
   ============================================ */
.kh-contact .kh-about-card h4.kh-about-subtitle {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(176, 141, 74, 0.15);
}

.kh-contact .kh-about-card h4.kh-about-subtitle:first-of-type {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.kh-contact .kh-about-card h4.kh-about-subtitle + p {
  margin-top: 12px;
}

/* ============================================
   PAGE COURS
   ============================================ */
.kh-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.kh-course-card {
  background: var(--kh-bg-card);
  border: 1px solid var(--kh-border-subtle);
  border-left: 3px solid var(--kh-accent-gold);
  box-shadow: var(--kh-shadow-medium);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

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

.kh-course-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--kh-border-subtle);
}

.kh-course-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--kh-text-primary);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.kh-course-price {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kh-accent-gold);
  letter-spacing: 0.05em;
}

.kh-course-content {
  flex: 1;
  margin-bottom: 2rem;
}

.kh-course-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--kh-text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.kh-course-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--kh-text-primary);
  margin: 1.5rem 0 0.75rem;
  line-height: 1.4;
}

.kh-course-section-title:first-child {
  margin-top: 0;
}

.kh-course-list {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--kh-text-secondary);
  padding-left: 1.5rem;
  list-style: none;
  margin: 0 0 1rem;
}

.kh-course-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.25rem;
}

.kh-course-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--kh-accent-gold);
  font-weight: bold;
}

.kh-course-list li:last-child {
  margin-bottom: 0;
}

.kh-course-list strong {
  color: var(--kh-text-primary);
  font-weight: 600;
}

.kh-course-card .kh-cta {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
}

/* ============================================
   NAVIGATION HEADER (MENU)
   Menu toujours visible — sans hamburger
   Logo conservé, titre texte masqué
   ============================================ */

/* Masquer le titre texte et la tagline du site (on garde le logo) */
.wp-block-site-title,
h1.wp-block-site-title,
.wp-block-site-tagline {
  display: none !important;
}

/* Style général du menu */
.wp-block-navigation {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.02em;
}

.wp-block-navigation .wp-block-navigation-item__content {
  color: #1a1612;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
}

/* Effet hover : trait doré */
.wp-block-navigation .wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #b08d4a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.wp-block-navigation .wp-block-navigation-item__content:hover::after,
.wp-block-navigation .current-menu-item .wp-block-navigation-item__content::after {
  width: 60%;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
  color: #b08d4a;
}

/* Page active en doré italique */
.wp-block-navigation .current-menu-item .wp-block-navigation-item__content {
  color: #b08d4a;
  font-style: italic;
}

/* Supprimer le hamburger et forcer l'affichage du menu */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  display: none !important;
}

.wp-block-navigation__responsive-container,
.wp-block-navigation__responsive-container.is-menu-open {
  display: block !important;
  position: static !important;
  background: transparent !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  inset: auto !important;
}

.wp-block-navigation__responsive-container-content {
  display: flex !important;
}

.wp-block-navigation .wp-block-navigation__container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ============================================
   RESPONSIVE GLOBAL
   ============================================ */
@media (max-width: 900px) {
  .kh-bio-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .kh-bio-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .kh-projets-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .kh-courses-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 781px) {
  /* Menu compact sur mobile */
  .wp-block-navigation .wp-block-navigation-item__content {
    font-size: 0.9rem;
    padding: 6px 10px;
  }
  
  .wp-block-navigation .wp-block-navigation__container {
    gap: 0 !important;
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .kh-container { padding: 0 1.25rem; }
  .kh-hero { padding: 3rem 0 2.5rem; }
  .kh-section { padding: 3rem 0; }
  .kh-video-grid,
  .kh-projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .kh-bio-card, .kh-final-cta, .kh-catalog-wrapper { padding: 2rem 1.5rem; }
  .kh-video-featured { padding: 1.5rem; }
  .kh-overline { font-size: 0.85rem; letter-spacing: 0.25em; }
  .kh-cta { padding: 1rem 2.5rem; }

  .kh-about-hero { height: 60vh; min-height: 400px; }
  .kh-about-hero-overlay { padding: 2rem 0 2.5rem; }
  .kh-about-card { padding: 2rem 1.5rem; }
  .kh-quote p { font-size: 1.25rem; }
  .kh-albums-grid { grid-template-columns: 1fr; padding: 1rem; }

  .page-id-46 .wpcf7,
  .kh-page .wpcf7 {
    margin: 0 1rem 3rem !important;
  }

  .page-id-46 .wpcf7 form.wpcf7-form,
  .kh-page .wpcf7 form.wpcf7-form,
  body .wpcf7-form {
    padding: 2rem 1.5rem !important;
    border-radius: 10px !important;
  }

  .wpcf7-form input[type="submit"],
  .wpcf7-submit {
    padding: 1rem 2rem !important;
    width: 100% !important;
  }

  .kh-course-card {
    padding: 2rem 1.5rem;
  }
  .kh-course-title { font-size: 1.5rem; }
  .kh-course-price { font-size: 1.1rem; }
  .kh-course-subtitle { font-size: 1rem; }
  .kh-course-section-title { font-size: 1.05rem; }
  .kh-course-list { font-size: 1rem; }
}

@media (max-width: 480px) {
  .wp-block-navigation .wp-block-navigation-item__content {
    font-size: 0.85rem;
    padding: 5px 8px;
  }
}
/* ============================================
   LIENS DANS LE DIVIDER (awards cliquables)
   ============================================ */
.kh-divider-link {
  color: var(--kh-accent-gold) !important;
  text-decoration: none !important;
  border-bottom: 1px dotted transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.kh-divider-link:hover {
  color: var(--kh-text-primary) !important;
  border-bottom-color: var(--kh-text-primary);
}