/*
Theme Name: Adèle Camara
Theme URI: https://adelecamara.gn
Author: Adèle Camara
Author URI: https://adelecamara.gn
Description: Thème personnel premium pour Adèle Camara — Communicatrice, leader du numérique et du leadership féminin en Guinée. Design élégant, institutionnel et moderne.
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
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adelecamara
Tags: custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, full-site-editing
*/

/* ─── VARIABLES ──────────────────────────── */
:root {
  --navy:    #0A1628;
  --navy-mid:#12213A;
  --gold:    #C9A84C;
  --gold-lt: #E8C97A;
  --ivory:   #F5F0E8;
  --ivory-dk:#EDE7D9;
  --bordeaux:#8B1A2D;
  --white:   #FFFFFF;
  --text:    #1A1A2E;
  --muted:   #5A5A7A;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', sans-serif;
  --ui:      'Montserrat', sans-serif;
}

/* ─── RESET & BASE ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--ivory); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all 0.3s; }
ul { list-style: none; }

/* ─── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── TYPOGRAPHY ─────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { font-weight: 300; line-height: 1.8; }

/* ─── NAVIGATION ─────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
#site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.site-logo a {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.site-logo a span { color: var(--gold); }

#primary-navigation ul {
  display: flex; gap: 36px;
}
#primary-navigation ul a {
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
}
#primary-navigation ul a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
#primary-navigation ul a:hover { color: var(--gold); }
#primary-navigation ul a:hover::after { width: 100%; }

.header-cta {
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 10px 24px;
}
.header-cta:hover { background: var(--gold-lt) !important; color: var(--navy) !important; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--white); transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A1628 0%, #12213A 40%, #1A2E50 100%);
}
.hero-photo-wrap {
  position: absolute;
  right: 0; bottom: 0;
  width: 50%; height: 100%;
}
.hero-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-photo-wrap::before {
  content: ''; position: absolute; left: -1px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.96) 40%, rgba(10,22,40,0.5) 65%, rgba(10,22,40,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 100px;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--ui);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
  animation: fadeUp 0.9s 0.4s both;
}
.hero-title strong { font-weight: 600; color: var(--gold); display: block; }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.6s both;
}
.hero-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 28px;
  animation: fadeWidth 0.8s 0.8s both;
}
.hero-desc {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.85; max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp 0.9s 0.9s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.9s 1.1s both;
}
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--ui); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeUp 1s 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 2s infinite;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--ui); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 16px 32px;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); color: var(--navy); }

.btn-outline {
  display: inline-block;
  font-family: var(--ui); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 32px;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  display: inline-block;
  font-family: var(--ui); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--navy);
  padding: 18px 40px;
  transition: all 0.3s;
}
.btn-dark:hover { background: #0d2240; transform: translateY(-2px); color: var(--white); }

.btn-gold-outline {
  display: inline-block;
  font-family: var(--ui); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 30px;
  transition: all 0.3s;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ─── SECTION COMMONS ────────────────────── */
.ac-section { padding: 120px 60px; }
.ac-section-dark { background: var(--navy); }
.ac-section-ivory { background: var(--ivory-dk); }

.section-eyebrow {
  font-family: var(--ui); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.ac-section-dark .section-title { color: var(--white); }
.ac-section-dark .section-sub { color: rgba(255,255,255,0.5); }
.section-title { margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--bordeaux); }
.ac-section-dark .section-title em { color: var(--gold-lt); }
.section-sub { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 560px; margin-bottom: 60px; }

/* ─── STATS BAND ─────────────────────────── */
.stats-band {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 50px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: 3rem;
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: var(--ui); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); line-height: 1.4;
}

/* ─── ENGAGEMENTS GRID ───────────────────── */
.engagements-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(10,22,40,0.08);
}
.engagement-card {
  background: var(--white); padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.engagement-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--gold);
  transition: width 0.4s ease;
}
.engagement-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(10,22,40,0.12); }
.engagement-card:hover::after { width: 100%; }
.engagement-icon { font-size: 1.8rem; margin-bottom: 20px; display: block; }
.engagement-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.engagement-desc { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
.engagement-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-family: var(--ui); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); opacity: 0; transition: opacity 0.3s;
}
.engagement-card:hover .engagement-link { opacity: 1; }

/* ─── CITATION ───────────────────────────── */
.citation-section {
  background: var(--navy); padding: 120px 60px;
  position: relative; overflow: hidden; text-align: center;
}
.citation-section::before {
  content: '\201C'; position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 20rem;
  color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none;
}
.citation-line { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 40px; }
.citation-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.5;
  max-width: 820px; margin: 0 auto 36px;
}
.citation-text em { font-style: normal; color: var(--gold); }
.citation-author {
  font-family: var(--ui); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.citation-author span { color: var(--gold); }

/* ─── ACTUALITÉS ─────────────────────────── */
.actu-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2px; background: rgba(255,255,255,0.05); }
.actu-featured {
  position: relative; overflow: hidden; min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px 44px;
}
.actu-featured-img {
  position: absolute; inset: 0;
}
.actu-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.actu-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 40%, transparent 100%);
}
.actu-featured-content { position: relative; z-index: 2; }
.actu-list { display: flex; flex-direction: column; gap: 2px; }
.actu-card {
  background: rgba(255,255,255,0.04); padding: 28px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.3s; cursor: pointer;
  border-left: 3px solid transparent;
}
.actu-card:hover { background: rgba(201,168,76,0.06); border-left-color: var(--gold); }
.actu-thumb {
  width: 80px; height: 80px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.actu-thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  display: inline-block;
  font-family: var(--ui); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 3px 10px; background: var(--gold); color: var(--navy);
  margin-bottom: 8px;
}
.badge-bordeaux { background: var(--bordeaux); color: var(--white); }
.badge-ghost { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.actu-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 6px; }
.actu-featured .actu-title { font-size: 1.65rem; font-weight: 500; margin-bottom: 12px; }
.actu-date { font-family: var(--ui); font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }
.actu-featured .actu-date { margin-bottom: 20px; }
.actu-link {
  font-family: var(--ui); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.actu-link:hover { gap: 14px; color: var(--gold-lt); }

/* ─── GALERIE ────────────────────────────── */
.galerie-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(2, 220px); gap: 4px; margin-bottom: 40px;
}
.galerie-item { position: relative; overflow: hidden; cursor: pointer; background: var(--navy-mid); }
.galerie-item:first-child { grid-column: span 2; grid-row: span 2; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galerie-item:hover img { transform: scale(1.06); }
.galerie-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay span {
  font-family: var(--ui); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

/* ─── INSPIRATIONS ───────────────────────── */
.inspiration-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.inspiration-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--navy);
}
.inspiration-visual img { width: 100%; height: 100%; object-fit: cover; }
.inspiration-visual::before {
  content: '';
  position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(201,168,76,0.3); pointer-events: none; z-index: 2;
}
.insp-quotes { display: flex; flex-direction: column; gap: 24px; }
.insp-quote {
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.insp-quote:hover { transform: translateX(6px); box-shadow: 0 8px 30px rgba(10,22,40,0.1); }
.insp-quote-text {
  font-family: var(--serif); font-size: 1.05rem;
  font-style: italic; color: var(--navy); line-height: 1.65; margin-bottom: 10px;
}
.insp-quote-src {
  font-family: var(--ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}

/* ─── NEWSLETTER ─────────────────────────── */
.newsletter-band {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.newsletter-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.newsletter-sub { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.45); }
.newsletter-form { display: flex; gap: 0; flex-shrink: 0; }
.newsletter-input {
  font-family: var(--sans); font-size: 0.88rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-right: none; color: var(--white); padding: 14px 20px;
  width: 280px; outline: none; transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-btn {
  font-family: var(--ui); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  border: none; padding: 14px 24px; cursor: pointer; transition: background 0.3s;
}
.newsletter-btn:hover { background: var(--gold-lt); }

/* ─── CTA BAND ───────────────────────────── */
.cta-band {
  background: var(--gold); padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band-title { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 500; color: var(--navy); line-height: 1.2; max-width: 500px; }
.cta-band-title em { font-style: italic; }

/* ─── FOOTER ─────────────────────────────── */
#site-footer { background: #070e1c; padding: 80px 60px 40px; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-family: var(--serif); font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.35); margin-bottom: 24px; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-family: var(--ui); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-menu a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-weight: 300; }
.footer-copy strong { color: var(--gold); }

/* ─── BLOG / SINGLE POST ─────────────────── */
.blog-header { background: var(--navy); padding: 160px 60px 80px; text-align: center; }
.blog-header h1 { color: var(--white); margin-bottom: 16px; }
.blog-header p { color: rgba(255,255,255,0.5); font-size: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; padding: 80px 60px; }
.post-card { background: var(--white); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(10,22,40,0.12); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--navy-mid); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-body { padding: 28px 28px 32px; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-date { font-family: var(--ui); font-size: 0.62rem; color: var(--muted); letter-spacing: 0.1em; }
.post-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 12px; }
.post-excerpt { font-size: 0.85rem; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.post-link { font-family: var(--ui); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.post-link:hover { gap: 10px; color: var(--bordeaux); }

/* Single post */
.single-post-hero { background: var(--navy); padding: 160px 60px 80px; max-width: 800px; margin: 0 auto; text-align: center; }
.post-content-wrap { max-width: 760px; margin: 0 auto; padding: 80px 60px; }
.post-content-wrap p { margin-bottom: 1.5rem; font-size: 1.05rem; font-weight: 300; color: #2a2a4a; line-height: 1.9; }
.post-content-wrap h2 { font-size: 1.8rem; margin: 3rem 0 1rem; color: var(--navy); }
.post-content-wrap blockquote {
  border-left: 4px solid var(--gold); margin: 2rem 0;
  padding: 1.5rem 2rem; background: var(--white);
  font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--navy);
}

/* ─── PAGE ABOUT ─────────────────────────── */
.about-hero { background: var(--navy); padding: 160px 60px 80px; position: relative; }
.about-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.about-photo { position: relative; aspect-ratio: 3/4; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid rgba(201,168,76,0.3); z-index: 0; }
.about-hero-text .section-title { color: var(--white); margin-top: 40px; }
.about-bio { max-width: 1200px; margin: 0 auto; padding: 100px 60px; display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
.bio-text p { margin-bottom: 1.5rem; font-size: 1.05rem; color: #2a2a4a; line-height: 1.9; }
.values-list { display: flex; flex-direction: column; gap: 20px; }
.value-item { padding: 20px 24px; background: var(--white); border-left: 3px solid var(--gold); }
.value-name { font-family: var(--ui); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.value-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── PAGE CONTACT ───────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.contact-info { background: var(--navy); padding: 80px 60px; }
.contact-info .section-title { color: var(--white); }
.contact-info .section-sub { color: rgba(255,255,255,0.5); }
.contact-detail { margin-bottom: 32px; }
.contact-detail-label { font-family: var(--ui); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-detail-val { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.contact-form-wrap { background: var(--white); padding: 80px 60px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-family: var(--ui); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 14px 16px;
  background: var(--ivory); border: 1px solid rgba(10,22,40,0.1);
  font-family: var(--sans); font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.3s;
}
.form-control:focus { border-color: var(--gold); background: var(--white); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeWidth {
  from { opacity: 0; width: 0; }
  to   { opacity: 1; width: 60px; }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ─── WP CORE ────────────────────────────── */
.wp-block-image { margin: 2rem 0; }
.aligncenter { text-align: center; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 2rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 2rem; margin-bottom: 1rem; }

/* ─── ADMIN BAR OFFSET ───────────────────── */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  #site-header, #site-header.scrolled { padding: 20px 32px; }
  .hero-content { padding: 0 32px 80px; }
  .ac-section { padding: 80px 32px; }
  .engagements-grid { grid-template-columns: repeat(2,1fr); }
  .stats-band { padding: 40px 32px; }
  .actu-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,180px); }
  .galerie-item:first-child { grid-column: span 2; grid-row: span 1; }
  .inspiration-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band { padding: 60px 32px; flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: repeat(2,1fr); padding: 60px 32px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-bio { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .newsletter-band { padding: 40px 32px; flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  #primary-navigation, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-photo-wrap { display: none; }
  .hero-overlay { background: rgba(10,22,40,0.88); }
  .hero-content { padding: 0 24px 80px; max-width: 100%; }
  .ac-section { padding: 60px 24px; }
  .engagements-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); padding: 32px 24px; }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4,140px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .citation-section { padding: 80px 24px; }
  #site-footer { padding: 60px 24px 32px; }
  .blog-header, .about-hero, .contact-info, .contact-form-wrap { padding-left: 24px; padding-right: 24px; }
  .post-content-wrap { padding: 60px 24px; }
}
