/* ===== LP Stratégies — Charte unique ===== */

:root {
  --navy: #1F3A5F;
  --navy-dark: #142840;
  --gold: #B89968;
  --gold-light: #D4B98C;
  --ivory: #F5F1EA;
  --grey-dark: #333333;
  --grey: #555555;
  --grey-light: #888888;
  --white: #FFFFFF;
  --max: 1100px;
  --radius: 4px;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* ===== Typo ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; color: var(--navy); line-height: 1.25; }
h1 { font-size: 2.8rem; letter-spacing: -.5px; }
h2 { font-size: 2.1rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.4rem; margin-bottom: .8rem; }
h4 { font-size: 1.05rem; letter-spacing: .5px; text-transform: uppercase; color: var(--navy); }
.h2-gold { color: var(--gold); }
.subtitle { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--gold); margin-bottom: 1rem; }
.eyebrow { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .8rem; }

p { margin-bottom: 1rem; color: var(--grey-dark); }
p.lead { font-size: 1.15rem; color: var(--grey); }

/* ===== Layout ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
section.alt { background: var(--ivory); }
section.dark { background: var(--navy); color: var(--white); }
section.dark h2, section.dark h3 { color: var(--white); }
section.dark p { color: rgba(255,255,255,0.85); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(8px);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1.5rem; max-width: var(--max); margin: 0 auto; gap: 1rem; }
.nav-links { flex-wrap: nowrap; }
.nav-links li a { white-space: nowrap; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { height: 48px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--navy); letter-spacing: .5px; }
.brand-text .tagline { font-family: var(--font-serif); font-size: .72rem; color: var(--gold); font-style: italic; letter-spacing: 1px; text-transform: uppercase; }
@media (max-width: 600px) {
  .brand-text { display: none; }
  .brand img { height: 42px; }
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--grey-dark); }
.nav-links a.active, .nav-links a:hover { color: var(--gold); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--navy); cursor: pointer; }

/* ===== Lang switcher (dropdown) ===== */
.lang-switch {
  position: relative;
  margin-left: 1rem;
  cursor: pointer;
}
.lang-switch-current {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .8rem;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  font-weight: 600;
  font-size: .8rem;
  color: var(--navy);
  letter-spacing: 1px;
  user-select: none;
  transition: all .2s;
}
.lang-switch-current::after {
  content: '▾';
  font-size: .65rem;
  color: var(--gold);
}
.lang-switch:hover .lang-switch-current,
.lang-switch:focus-within .lang-switch-current {
  border-color: var(--gold);
}
.lang-switch-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(31,58,95,.12);
  padding: .35rem;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
  z-index: 200;
}
.lang-switch:hover .lang-switch-menu,
.lang-switch:focus-within .lang-switch-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switch-menu a {
  display: block;
  padding: .5rem .8rem;
  font-size: .85rem;
  color: var(--grey-dark);
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: .3px;
}
.lang-switch-menu a:hover {
  background: var(--ivory);
  color: var(--gold);
}
.lang-switch-menu a.active {
  background: var(--navy);
  color: var(--gold);
}
.lang-switch-menu a .flag-emoji {
  margin-right: .5rem;
}
.lang-switch-menu a img.flag-mini {
  width: 22px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  margin-right: .5rem;
  vertical-align: middle;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

/* Mobile : cacher le switcher, intégrer dans menu hamburger */
@media (max-width: 850px) {
  .lang-switch { display: none; }
  .nav-links .mobile-lang {
    display: block;
    border-top: 1px solid #eee;
    margin-top: .5rem;
    padding-top: .8rem;
  }
  .nav-links .mobile-lang .label {
    font-size: .7rem;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .4rem;
  }
  .nav-links .mobile-lang .lang-options {
    display: flex;
    gap: .5rem;
  }
  .nav-links .mobile-lang a {
    padding: .4rem .8rem;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    font-weight: 600;
    font-size: .85rem;
  }
  .nav-links .mobile-lang a.active {
    background: var(--navy);
    color: var(--gold);
  }
}
.mobile-lang { display: none; }
@media (max-width: 850px) {
  .mobile-lang { display: block; }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,153,104,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; max-width: 800px; }
.hero h1 .gold { color: var(--gold); }
.hero .subtitle { color: var(--gold-light); margin-bottom: 1.8rem; }
.hero p.lead { color: rgba(255,255,255,0.88); max-width: 700px; margin-bottom: 2rem; }

/* ===== Boutons ===== */
.btn {
  display: inline-block; padding: .9rem 1.8rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; letter-spacing: .3px;
  transition: all .25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dark); color: var(--white); }
.btn + .btn { margin-left: 1rem; }

/* ===== Grilles ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== Cards ===== */
.card {
  background: var(--white); padding: 2rem; border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(31,58,95,0.06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(31,58,95,0.12); }
.card h3 { color: var(--navy); margin-bottom: .5rem; }
.card p { font-size: .95rem; color: var(--grey); margin-bottom: 0; }
.card .icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.card .icon-svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,153,104,0.08);
  border-radius: 50%;
  padding: 12px;
  transition: all .3s;
}
.card:hover .icon-svg {
  background: rgba(184,153,104,0.15);
  transform: scale(1.05);
}
.card .icon-svg svg { width: 100%; height: 100%; }

/* ===== Section header centré ===== */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }

/* ===== Table simple ===== */
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid #e5e5e5; }
th { background: var(--ivory); color: var(--navy); font-family: var(--font-serif); font-weight: 600; }
tr:hover td { background: rgba(245,241,234,0.5); }

/* ===== Listes ===== */
ul.bullets { list-style: none; padding: 0; }
ul.bullets li { padding-left: 1.8rem; position: relative; margin-bottom: .8rem; }
ul.bullets li::before {
  content: '▸'; color: var(--gold); position: absolute; left: 0; top: 0;
  font-weight: 700; font-size: 1.1rem;
}

/* ===== Devise / Quote ===== */
.devise {
  text-align: center; font-family: var(--font-serif); font-style: italic;
  font-size: 1.4rem; color: var(--gold); padding: 2rem 0;
}
.quote { border-left: 4px solid var(--gold); padding: 1rem 0 1rem 1.5rem; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--grey-dark); margin: 2rem 0; }

/* ===== Form ===== */
.form { max-width: 600px; margin: 2rem auto 0; }
.form-row { margin-bottom: 1.2rem; }
.form label { display: block; font-size: .9rem; margin-bottom: .4rem; font-weight: 500; color: var(--navy); }
.form input, .form textarea, .form select {
  width: 100%; padding: .9rem 1rem;
  border: 1px solid #ddd; border-radius: var(--radius);
  font-family: inherit; font-size: 1rem;
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--gold); }
.form textarea { min-height: 140px; resize: vertical; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.site-footer h4 { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--gold-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-grid p { color: rgba(255,255,255,0.65); font-size: .9rem; }
.footer-brand { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin-bottom: .5rem; }
.footer-logo { max-width: 220px; margin-bottom: 1rem; opacity: .92; filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(15deg) brightness(1.1); }
.footer-tagline { color: var(--gold-light); font-style: italic; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; text-align: center; font-size: .85rem;
}

/* ===== Cas — Realisation card ===== */
.case {
  background: var(--white); padding: 2rem; border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(31,58,95,0.05);
  margin-bottom: 2rem;
}
.case .meta { color: var(--gold); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .5rem; font-weight: 600; }
.case h3 { color: var(--navy); margin-bottom: 1rem; }
.case ul { margin: 1rem 0 0 1.2rem; }
.case ul li { margin-bottom: .4rem; }
.case .kpis {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid #eee;
}
.case .kpi { flex: 0 0 auto; }
.case .kpi-num { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold); font-weight: 700; }
.case .kpi-label { font-size: .8rem; color: var(--grey-light); text-transform: uppercase; letter-spacing: 1px; }

/* ===== Pricing ===== */
.pricing { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 2rem; transition: all .25s; }
.pricing:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(31,58,95,0.1); }
.pricing h3 { font-size: 1.3rem; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: .8rem; margin-bottom: 1rem; }
.pricing .price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); font-weight: 700; margin: 1rem 0; }
.pricing .price small { font-size: .85rem; color: var(--grey); font-weight: 400; }
.pricing ul { list-style: none; margin-top: 1rem; }
.pricing ul li { padding: .4rem 0; font-size: .9rem; color: var(--grey); }
.pricing ul li::before { content: '✓'; color: var(--gold); font-weight: 700; margin-right: .5rem; }

/* ===== Auteur section ===== */
.book {
  display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 2rem;
  background: var(--white); padding: 1.5rem; border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.book-cover { flex: 0 0 120px; height: 170px; background: linear-gradient(135deg, var(--ivory) 0%, #e8dec9 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-style: italic; color: var(--gold); text-align: center; padding: 1rem; font-size: .9rem; }
.book-info h4 { color: var(--navy); font-family: var(--font-serif); font-size: 1.2rem; text-transform: none; letter-spacing: 0; margin-bottom: .3rem; }
.book-info .book-meta { font-size: .85rem; color: var(--grey-light); margin-bottom: .8rem; }
.book-info p { font-size: .95rem; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); padding: 4rem 2rem; text-align: center;
  border-radius: var(--radius);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 2rem; }

/* ===== Profil mini ===== */
.profile-mini {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.2rem; background: var(--ivory); border-radius: var(--radius);
}
.profile-mini .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-family: var(--font-serif);
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ===== Stats ===== */
.stat-block { text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 2.8rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-label { font-size: .9rem; color: var(--grey); margin-top: .3rem; }

/* ===== Responsive ===== */
@media (max-width: 850px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 1rem; gap: 1rem;
    border-bottom: 1px solid #eee;
  }
  .nav-links.open { display: flex; }
  .btn + .btn { margin-left: 0; margin-top: .8rem; display: block; }
  section { padding: 3rem 0; }
  .book { flex-direction: column; }
  .book-cover { width: 100%; height: 100px; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 4rem; }

/* ===== Portrait Lyvan ===== */
.portrait-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--ivory) 0%, #ede4d0 100%);
  padding: 3rem;
  border-radius: var(--radius);
  margin-bottom: 3rem;
  border-left: 5px solid var(--gold);
}
.portrait-block img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(31,58,95,0.18);
}
.portrait-block .role { color: var(--gold); font-style: italic; font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 1rem; }
@media (max-width: 850px) {
  .portrait-block { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
  .portrait-block img { max-width: 220px; margin: 0 auto; }
}

/* ===== Logos partenaires (carousel défilant infini) ===== */
.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.partners-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollPartners 45s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
@keyframes scrollPartners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 2rem 0;
}
.partners .partner-card,
.partners-track .partner-card {
  text-align: center;
  padding: 1rem .8rem;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  background: var(--white);
  transition: all .25s;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.partners-track .partner-card {
  flex: 0 0 180px;
  min-width: 180px;
}
.partners .partner-card:hover,
.partners-track .partner-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(31,58,95,0.1); }
.partners .partner-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}
.partners .partner-meta {
  font-size: .7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .3rem;
}
.partners .partner-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: .5rem;
  object-fit: contain;
}
@media (max-width: 850px) {
  .partners { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Drapeaux internationaux ===== */
.flags-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin: 1.5rem 0;
}
.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--navy);
  transition: all .25s;
}
.flag-pill:hover { border-color: var(--gold); transform: translateY(-2px); }
.flag-pill img {
  width: 24px; height: 16px; object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.flags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .8rem;
  margin-top: 1.5rem;
}

/* ===== Réalisations enrichies ===== */
.case {
  position: relative;
  overflow: hidden;
}
.case::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6px;
  height: 100%;
  background: var(--gold);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 850px) {
  .case-grid { grid-template-columns: 1fr; }
}
.case-visual {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid #e5e5e5;
  padding: .5rem;
}
.case-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 850px) {
  .case-visual { height: 180px; }
}
@media (max-width: 500px) {
  .case-visual { height: 150px; }
}
.case-visual.placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

/* ===== Section icônes expertises ===== */
.expertise-icons-banner {
  background: var(--ivory);
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 2rem 0;
}
.expertise-icons-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== Publications académiques ===== */
.pub {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.pub-title { font-family: var(--font-serif); color: var(--navy); font-size: 1.05rem; font-weight: 600; margin-bottom: .3rem; }
.pub-meta { color: var(--grey-light); font-size: .85rem; font-style: italic; }

/* ===== CTA portfolio download ===== */
.portfolio-download {
  text-align: center;
  padding: 2.5rem;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  margin: 2rem 0;
}
.portfolio-download h3 { color: var(--gold); margin-bottom: .8rem; }
.portfolio-download p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* ===================================================================== */
/* === v10 — Témoignage, Devise bleue, TJM Banner, Off-catalogue lisible === */
/* ===================================================================== */

/* === Témoignage homepage === */
.testimonial-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 2.5rem 2rem;
}
.testimonial-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  top: -.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.55;
  color: var(--navy);
  margin: 1.5rem 0 1.2rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
@media (max-width: 600px) {
  .testimonial-quote { font-size: 1.25rem; }
  .testimonial-mark { font-size: 4.5rem; }
}

/* === Devise bleue — bandeau signature exclusif Accueil === */
.devise-banner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 12px 40px rgba(31,58,95,.18);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.devise-blue {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  letter-spacing: .3px;
}
.devise-blue::before,
.devise-blue::after {
  color: var(--gold);
}
.devise-sig {
  margin-top: 1.5rem;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
@media (max-width: 700px) {
  .devise-blue { font-size: 1.5rem; }
  .devise-banner { padding: 2.2rem 1.5rem; }
}

/* === TJM Banner — bandeau prix journalier mis en avant === */
.tjm-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  margin: 0 0 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 16px rgba(184, 153, 104, .15);
}
.tjm-banner > div:first-child {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 1.8rem;
  border-right: 1px solid #e5e5e5;
}
.tjm-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: .3rem;
}
.tjm-value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--navy);
  white-space: nowrap;
}
.tjm-note {
  font-size: .92rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 750px) {
  .tjm-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .tjm-banner > div:first-child { border-right: none; border-bottom: 1px solid #e5e5e5; padding-right: 0; padding-bottom: 1rem; width: 100%; }
  .tjm-value { font-size: 1.35rem; }
}

/* === Pricing dark (hors catalogue) — lisibilité renforcée === */
.pricing.pricing-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border: 1px solid var(--gold);
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 28px rgba(31,58,95,.22);
}
.pricing.pricing-dark ul,
.pricing.pricing-dark ul li {
  color: var(--white);
  opacity: 1;
}
.pricing.pricing-dark ul li {
  border-bottom: 1px solid rgba(212, 185, 140, 0.25);
}
.pricing.pricing-dark ul li::before {
  color: var(--gold-light);
}
.pricing.pricing-dark .pricing-dark-italic {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
  font-size: 1.02rem;
  margin-bottom: .5rem;
}

/* === Honeypot Netlify Forms — caché à l'utilisateur === */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===================================================================== */
/* === v11 — Témoignage inline sous carousel + Devise light + Signature Allura === */
/* ===================================================================== */

/* === Témoignage inline (entre carousel et drapeaux) === */
.testimonial-inline {
  max-width: 760px;
  margin: 3.5rem auto 1rem;
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem 0;
}
.testimonial-inline .testimonial-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
}
.testimonial-inline .testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--navy);
  margin: 1.5rem 0 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-inline .testimonial-author {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
@media (max-width: 600px) {
  .testimonial-inline .testimonial-quote { font-size: 1.1rem; }
  .testimonial-inline .testimonial-mark { font-size: 3.8rem; }
}

/* === Devise — fond ivoire (.alt), texte navy, signature Allura === */
.devise-light {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.devise-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.45;
  color: var(--navy);
  margin: 0;
  letter-spacing: .2px;
}
.devise-signature {
  margin: 1.6rem 0 0;
  font-family: 'Allura', cursive;
  font-weight: 400;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 1px;
  display: inline-block;
  /* Soulignement doré stylisé pour effet "signature manuscrite" */
  background-image: linear-gradient(to right, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  background-position: 0 90%;
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
  padding-bottom: .15rem;
}
@media (max-width: 700px) {
  .devise-text { font-size: 1.4rem; }
  .devise-signature { font-size: 2.6rem; }
  .devise-light { padding: 2rem 1.2rem; }
}

/* === Champ requis : étoile dorée === */
.required-marker {
  color: var(--gold);
  font-weight: 700;
}

/* ===================================================================== */
/* === v12 — Signature image, témoignages cartes, honeypot strict === */
/* ===================================================================== */

/* === HONEYPOT — masquage strict + accessibilité === */
.hp-field {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* === Signature image (devise homepage) === */
.devise-signature-img {
  display: block;
  margin: 1.4rem auto 0;
  max-width: 280px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 700px) {
  .devise-signature-img {
    max-width: 220px;
    max-height: 70px;
  }
}

/* === Section témoignages clients (fond navy à fort contraste) === */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
.testimonials-section .section-head { margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 185, 140, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.6rem;
  position: relative;
  backdrop-filter: blur(4px);
  transition: transform .3s ease, border-color .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.testimonial-mark-card {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .5;
  position: absolute;
  top: -.2rem;
  left: 1.2rem;
  font-weight: 700;
}
.testimonial-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 1.8rem 0 1.2rem;
  position: relative;
  z-index: 1;
}
.testimonial-card-author {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 185, 140, 0.2);
}

/* === Article de blog === */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0 4rem;
  color: var(--white);
  border-bottom: 4px solid var(--gold);
}
.article-hero .eyebrow { color: var(--gold-light); }
.article-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.article-hero .article-meta {
  font-size: .9rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
}
.article-body {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-body p.chapeau {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--navy);
  padding: 1.5rem 1.8rem;
  border-left: 4px solid var(--gold);
  background: var(--ivory);
  margin: 0 0 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body h2 {
  color: var(--navy);
  font-size: 1.75rem;
  margin-top: 2.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
}
.article-body h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: .8rem;
}
.article-body p {
  margin-bottom: 1.3rem;
  line-height: 1.75;
  color: var(--grey-dark);
}
.article-body ul {
  margin: 0 0 1.5rem 1.2rem;
  list-style: disc;
}
.article-body li { margin-bottom: .6rem; line-height: 1.7; }
.article-body strong { color: var(--navy); }
.article-footer-nav {
  margin: 4rem 0 0;
  padding: 2rem 0;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === Liste blog (hub) === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(31,58,95,.12);
}
.blog-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 2rem 1.5rem;
  border-bottom: 3px solid var(--gold);
}
.blog-card-eyebrow {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: .8rem;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-excerpt {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.blog-card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-card-link:hover { color: var(--navy); }

/* === v14 — Témoignage featured pleine largeur === */
.testimonial-card-featured {
  background: rgba(212, 185, 140, 0.10);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  padding: 2.5rem 2.2rem 2rem;
  margin-bottom: 1.8rem;
  max-width: 100%;
  position: relative;
}
.testimonial-card-featured .testimonial-mark-card {
  font-size: 5rem;
  opacity: .7;
  color: var(--gold);
}
.testimonial-card-featured .testimonial-card-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--white);
  margin: 2rem 0 1.2rem;
}
.testimonial-card-featured .testimonial-card-author {
  color: var(--gold);
  font-size: .85rem;
}
@media (max-width: 600px) {
  .testimonial-card-featured .testimonial-card-quote { font-size: 1.05rem; }
}

/* === Page CGV - bloc article confortable === */
.cgv-article {
  max-width: 800px;
  margin: 0 auto;
}
.cgv-article h2 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--gold);
}
.cgv-article h3 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.6rem;
  margin-bottom: .6rem;
  text-transform: none;
  letter-spacing: 0;
}
.cgv-article p {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--grey-dark);
}
.cgv-article ul {
  margin: 0 0 1.2rem 1.2rem;
}
.cgv-article li {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .4rem;
}
.cgv-footer-card {
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.8rem;
  margin-top: 3rem;
  font-size: .9rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cgv-footer-card strong { color: var(--navy); }

/* ===== MICRO-ANIMATIONS (2026-06-02) ===== */
@media (prefers-reduced-motion: no-preference) {
  /* Fade-in progressif des sections au scroll */
  section { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.7s ease-out forwards; }
  section:nth-of-type(1) { animation-delay: 0.05s; }
  section:nth-of-type(2) { animation-delay: 0.12s; }
  section:nth-of-type(3) { animation-delay: 0.18s; }
  section:nth-of-type(n+4) { animation-delay: 0.24s; }
  /* Once visible always visible (no opacity hidden by default if JS off) */
  .hero { opacity: 1; transform: none; animation: none; }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Hover plus travaillé sur cartes */
  .card, .case, .pricing, .testimonial-card {
    transition: transform 0.28s cubic-bezier(.2,.7,.2,1), box-shadow 0.28s ease-out, border-color 0.28s ease-out;
  }
  .card:hover, .case:hover, .pricing:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(31,58,95,0.12);
  }

  /* Boutons : léger lift + ombre dorée */
  .btn { transition: transform 0.2s ease-out, box-shadow 0.25s ease-out, background 0.2s ease-out; }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,153,104,0.25); }

  /* Liens nav : sous-ligné animé */
  .nav-links a { position: relative; transition: color 0.2s ease-out; }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
    background: var(--gold); transition: width 0.28s ease-out;
  }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  /* Logo partenaires : grayscale → couleur au hover */
  .partner-card { transition: transform 0.3s ease-out; }
  .partner-card:hover { transform: scale(1.05); }
  .partner-logo { transition: filter 0.3s ease-out; filter: grayscale(0.6) opacity(0.85); }
  .partner-card:hover .partner-logo { filter: grayscale(0) opacity(1); }

  /* Stats : compteur animé via délai sur opacity */
  .stat-num { display: inline-block; opacity: 0; animation: countIn 0.9s ease-out 0.4s forwards; }
  .stat-block:nth-child(2) .stat-num { animation-delay: 0.55s; }
  .stat-block:nth-child(3) .stat-num { animation-delay: 0.7s; }
  .stat-block:nth-child(4) .stat-num { animation-delay: 0.85s; }
  @keyframes countIn {
    from { opacity: 0; transform: translateY(15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Flag pills hover */
  .flag-pill { transition: transform 0.2s ease-out, box-shadow 0.25s ease-out; }
  .flag-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(31,58,95,0.12); }
}

/* Mobile : police légèrement plus grande sur petits écrans + padding plus aéré */
@media (max-width: 480px) {
  body { font-size: 16.5px; line-height: 1.65; }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 0.85rem; }
  .container { padding-left: 1.2rem; padding-right: 1.2rem; }
  .card, .pricing { padding: 1.4rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.15; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.95rem; }
}

/* ===== AVATARS TÉMOIGNAGES (2026-06-02) ===== */
.testimonial-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700;
  border: 2px solid var(--gold); flex-shrink: 0;
  vertical-align: middle; margin-right: 0.8rem;
}
.testimonial-author-block { display: flex; align-items: center; margin-top: 1rem; }
.testimonial-author-block .testimonial-card-author { margin: 0; }


/* ===== MENU "PLUS" DÉROULANT (2026-06-02) ===== */
.nav-more {
  position: relative;
}
.nav-more > a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-more > a::after {
  content: '▾';
  font-size: 0.7em;
  margin-left: 0.2rem;
  transition: transform 0.2s ease-out;
}
.nav-more:hover > a::after,
.nav-more:focus-within > a::after {
  transform: rotate(180deg);
}
.nav-more-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 240px;
  background: white;
  border: 1px solid rgba(31,58,95,0.08);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(31,58,95,0.15);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s ease-out;
  z-index: 100;
}
.nav-more:hover .nav-more-menu,
.nav-more:focus-within .nav-more-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-more-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.15s ease-out;
}
.nav-more-menu a::after { display: none !important; }
.nav-more-menu a:hover {
  background: var(--ivory);
  color: var(--gold);
  padding-left: 1.5rem;
}
.nav-more-menu .nav-more-section {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-light);
  padding: 0.7rem 1.2rem 0.3rem;
  font-weight: 600;
}
.nav-more-menu hr {
  border: 0;
  border-top: 1px solid rgba(31,58,95,0.08);
  margin: 0.4rem 0;
}
@media (max-width: 768px) {
  .nav-more-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
    margin-top: 0.5rem;
  }
  .nav-more > a::after { display: none; }
  .nav-more-menu a {
    color: var(--ivory);
    padding-left: 1rem;
    font-size: 0.85rem;
    opacity: 0.85;
  }
  .nav-more-menu a:hover {
    background: transparent;
    color: var(--gold);
    padding-left: 1.3rem;
  }
  .nav-more-menu .nav-more-section {
    color: var(--gold);
    padding-left: 0;
    font-size: 0.65rem;
  }
}

/* CTA outline gold (entre primary et outline) */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.04em;
  transition: all 0.22s cubic-bezier(.2,.7,.2,1);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,153,104,0.35);
}


/* ===== HEADER RESPONSIVE FIX (2026-06-03) ===== */
/* Ensure brand and nav never overlap on intermediate widths */
.site-header .nav {
  flex-wrap: nowrap;
  gap: 1rem;
  min-height: 64px;
}
.brand {
  flex-shrink: 0;
  min-width: 0;
  max-width: 55%;
}
.brand img { flex-shrink: 0; }
.brand-text { min-width: 0; overflow: hidden; }
.brand-text .name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Between 850px and 1100px : burger menu activated to prevent overlap */
@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 1rem; gap: 1rem;
    border-bottom: 1px solid #eee; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .lang-switch { margin-left: auto; }
}

/* Below 700px: hide the tagline subtitle to gain space */
@media (max-width: 700px) {
  .brand-text .tagline { display: none; }
}

/* Below 480px: hide brand text entirely, keep only logo */
@media (max-width: 480px) {
  .brand-text .name { font-size: 1rem; }
  .brand-text .tagline { display: none; }
  .lang-switch-current { font-size: 0.85rem; }
}


/* ===== FIX MOBILE MENU "Plus" (2026-06-03 — override) ===== */
@media (max-width: 1100px) {
  /* On mobile/tablet, the burger panel has a WHITE background.
     Override the previous (incorrect) ivory text. */
  .nav-more > a {
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0;
    display: block;
  }
  .nav-more > a::after { display: none; }
  .nav-more-menu {
    background: var(--ivory) !important;
    border-radius: 8px !important;
    padding: 0.8rem 1rem !important;
    margin-top: 0.5rem !important;
  }
  .nav-more-menu a {
    color: var(--navy) !important;
    opacity: 1 !important;
    padding: 0.55rem 0.3rem !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(31,58,95,0.06);
  }
  .nav-more-menu a:last-child { border-bottom: 0; }
  .nav-more-menu a:hover {
    color: var(--gold) !important;
    padding-left: 0.6rem !important;
    background: transparent !important;
  }
  .nav-more-menu .nav-more-section {
    color: var(--gold) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.6rem 0.3rem 0.3rem !important;
    border-bottom: 0 !important;
  }
  .nav-more-menu hr {
    border: 0;
    border-top: 1px solid rgba(184,153,104,0.3);
    margin: 0.5rem 0;
  }
  /* Center the main nav links on mobile */
  .nav-links {
    text-align: center;
    padding: 1.5rem !important;
  }
  .nav-links > li > a {
    font-size: 1.05rem;
    padding: 0.4rem 0;
  }
  .nav-more {
    text-align: left;
  }
}
