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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #2d2a26;
  background: #f6f2ec;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ded3c2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6vw;
}


.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo-sparkle {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(182,123,61,0.18));
}

.brand strong {
  display: block;
  font-size: 1.75rem;
  letter-spacing: 0.12em;
}

.brand span {
  display: block;
  color: #8d6d4f;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.nav a,
.dropdown button {
  border: 0;
  background: none;
  font: inherit;
  color: #2d2a26;
  cursor: pointer;
}

.nav a:hover,
.dropdown button:hover {
  color: #b67b3d;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  display: none;
  flex-direction: column;
  top: 26px;
  left: 0;
  background: white;
  min-width: 220px;
  border: 1px solid #e8ddd0;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  overflow: hidden;
}

.dropdown-content a {
  padding: 13px 18px;
}

.dropdown-content a:hover {
  background: #f4ede4;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.burger {
  display: none;
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  position: relative;
  background: url('assets/pierre-angulaire.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 14, 0.52);
}

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

.overline {
  color: #b67b3d;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.gold {
  color: #d4af73;
}

h1 {
  color: white;
  font-weight: 400;
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  line-height: 1.08;
  margin-bottom: 28px;
}

.hero-content h1 span {
  display: inline-block;
  font-size: clamp(1.45rem, 3.2vw, 3.25rem);
  font-weight: 300;
  color: #f4eadb;
}

.cta-note {
  color: #f4eadb;
  font-size: 1rem;
  max-width: 620px;
  margin: 18px auto 0;
  opacity: 0.92;
}

.hero-text {
  color: #ece5db;
  font-size: 1.35rem;
  max-width: 740px;
  margin: 0 auto 40px;
}

.cta {
  display: inline-block;
  background: #b67b3d;
  color: white;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.cta:hover {
  background: #9d672e;
  transform: translateY(-2px);
}

.section {
  padding: 110px 6vw;
}

.light {
  background: #faf7f2;
}

.warm {
  background: #f3ede5;
}

.dark {
  color: white;
  background:
    linear-gradient(rgba(20,18,16,0.88), rgba(20,18,16,0.88)),
    url('assets/pierre-angulaire.png') center / cover no-repeat;
}

.two-cols {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.image-card img,
.approach-head img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
  object-fit: cover;
  display: block;
}

/* Logo Néamé sur la page Approche */
.approach-logo-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #030303;
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.18), 0 0 22px rgba(182,123,61,0.18);
}

.approach-head .approach-logo-card img.approach-logo-neame {
  display: block;
  width: 100%;
  height: auto;            /* ne dépend plus de la hauteur du parent */
  aspect-ratio: 1 / 1;     /* l'image reste carrée par elle-même */
  object-fit: contain;
  padding: 18px;
  border-radius: 28px;
  box-shadow: none;
  background: transparent;
  max-width: none;         /* annule le max-width générique sur mobile */
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 400;
}

p {
  font-size: 1.08rem;
  color: #625d57;
  margin-bottom: 18px;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.dark h2,
.dark h3 {
  color: white;
}

.dark p {
  color: #d7d1ca;
}

.cards {
  max-width: 1260px;
  margin: auto;
  display: grid;
  gap: 28px;
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: white;
  padding: 38px;
  border-radius: 28px;
  border: 1px solid #e8ddd0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card span {
  width: 48px;
  height: 48px;
  border: 1px solid #b67b3d;
  color: #b67b3d;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 28px;
}

.approach-head {
  max-width: 1200px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 50px;
  align-items: center;
  text-align: center;
}

.steps {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.steps div {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 34px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.steps strong {
  display: block;
  color: #d4af73;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 14px;
}

.steps span {
  font-size: 1.3rem;
}

.contact-box {
  max-width: 850px;
  margin: auto;
  background: white;
  border: 1px solid #eadfce;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border-radius: 34px;
  padding: 55px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}

.contact-grid small {
  color: #9b7a57;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
}

footer:not(.testimonial-author) {
  background: #161412;
  color: #d4c8ba;
  text-align: center;
  padding: 32px 20px;
}

footer:not(.testimonial-author) p {
  color: #d4c8ba;
  margin: 0;
}

@media (max-width: 980px) {
  .burger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;                       /* juste sous le header, quelle que soit sa hauteur */
    left: 0;
    right: 0;
    background: #f6f2ec;
    display: none;
    flex-direction: column;
    align-items: stretch;            /* éléments pleine largeur */
    gap: 4px;
    padding: 14px 6vw 22px;
    border-bottom: 1px solid #ded3c2;
    max-height: calc(100vh - 80px);  /* le menu peut défiler si trop long */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
  }

  .nav.open {
    display: flex;
  }

  .nav > a,
  .dropdown > button {
    width: 100%;
    text-align: left;
    padding: 11px 2px;
  }

  .dropdown {
    width: 100%;
  }

  /* Sous-menus repliés par défaut, dépliés au tap (classe .open via JS) */
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    min-width: 0;
    margin: 2px 0 6px;
  }

  .dropdown.open > .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    padding: 9px 14px;               /* léger retrait : hiérarchie visible */
  }

  .two-cols,
  .approach-head {
    grid-template-columns: 1fr;
  }

  .approach-head img {
    max-width: 380px;
    margin: auto;
  }

  .four {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 20px;
  }

  .header-logo-sparkle {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand span {
    display: none;
  }

  .four,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 22px;
  }

  .contact-box {
    padding: 34px 22px;
  }
}

/* ── Bouton secondaire ── */
.cta-secondary {
  display: inline-block;
  border: 2px solid #b67b3d;
  color: #b67b3d;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.25s ease;
  margin-top: 8px;
}

.cta-secondary:hover {
  background: #b67b3d;
  color: white;
  transform: translateY(-2px);
}

/* ── Témoignages ── */
.testimonials {
  max-width: 1260px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial {
  background: white;
  border: 1px solid #e8ddd0;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 22px;
  left: 36px;
  font-size: 5rem;
  line-height: 1;
  color: #e8ddd0;
  font-family: Georgia, serif;
}

.testimonial-quote {
  padding-top: 32px;
}

.testimonial-quote p {
  font-size: 1rem;
  color: #4a4540;
  line-height: 1.75;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-quote p:last-child {
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #f0e8df;
}

.testimonial-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4ede4;
  border: 1px solid #b67b3d;
  color: #b67b3d;
  font-weight: bold;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-author cite {
  font-style: normal;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2d2a26;
  letter-spacing: 0.04em;
}

/* ── Formulaire de contact ── */
.contact-form {
  margin-top: 38px;
  text-align: left;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9b7a57;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #e0d4c3;
  border-radius: 14px;
  padding: 13px 16px;
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #2d2a26;
  background: #faf7f2;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b67b3d;
  box-shadow: 0 0 0 3px rgba(182,123,61,0.12);
  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b9afa5;
}

.contact-form .cta {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

/* ── Responsive témoignages & formulaire ── */
@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .testimonial {
    padding: 32px 26px;
  }

  .contact-form .cta {
    padding: 16px 20px;
  }
}

/* ── Méthode du Bâtisseur — nouvelle section ── */

.methode-citation {
  font-size: 1.4rem;
  font-style: italic;
  color: #d4af73;
  max-width: 700px;
  margin: 28px auto 0;
  line-height: 1.5;
  border-left: 3px solid #d4af73;
  padding-left: 24px;
  text-align: left;
}

/* Principes */
.methode-principes {
  max-width: 1200px;
  margin: 80px auto 0;
}

.principes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.principe {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,115,0.2);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
}

.principe-num {
  display: block;
  font-size: 1.1rem;
  color: #d4af73;
  letter-spacing: 0.12em;
  font-family: Georgia, serif;
  margin-bottom: 14px;
}

.principe strong {
  display: block;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  color: #f0ebe4;
  margin-bottom: 10px;
  line-height: 1.3;
}

.principe p {
  font-size: 0.88rem;
  color: #b0a89e;
  margin: 0;
  line-height: 1.55;
}

/* Étapes */
.methode-etapes-titre {
  max-width: 1200px;
  margin: 80px auto 36px;
  text-align: center;
}

.methode-etapes {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.methode-etapes::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, #d4af73, rgba(212,175,115,0.1));
}

.etape {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.etape:last-child {
  border-bottom: none;
}

.etape-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,175,115,0.12);
  border: 1.5px solid #d4af73;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 300;
  color: #d4af73;
  font-family: Georgia, serif;
  position: relative;
  z-index: 1;
}

.etape-highlight .etape-num {
  background: rgba(212,175,115,0.25);
  box-shadow: 0 0 28px rgba(212,175,115,0.3);
  font-weight: 500;
}

.etape-body {
  flex: 1;
  padding-top: 10px;
}

.etape-body h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 4px;
  font-weight: 400;
}

.etape-highlight .etape-body h3 {
  color: #d4af73;
}

.etape-sous {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d4af73;
  margin-bottom: 14px !important;
}

.etape-body p {
  color: #c8bfb5;
  margin-bottom: 10px;
  font-size: 1rem;
}

.etape-metaphore {
  display: block;
  font-style: italic;
  color: #a09890;
  font-size: 0.93rem;
  border-left: 2px solid rgba(212,175,115,0.35);
  padding-left: 14px;
  margin-top: 12px;
  line-height: 1.5;
}

/* Symboles */
.methode-symboles {
  max-width: 1100px;
  margin: 80px auto 0;
}

.symboles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.symbole {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,115,0.15);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.symbole strong {
  color: #d4af73;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.symbole span {
  color: #a09890;
  font-size: 0.92rem;
  font-style: italic;
}

/* Signature finale */
.methode-signature {
  max-width: 800px;
  margin: 80px auto 0;
  text-align: center;
  border-top: 1px solid rgba(212,175,115,0.2);
  padding-top: 50px;
}

.methode-signature p {
  font-size: 1.35rem;
  font-style: italic;
  color: #d4af73;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive méthode ── */
@media (max-width: 980px) {
  .principes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .symboles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .methode-etapes::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .principes-grid,
  .symboles-grid {
    grid-template-columns: 1fr;
  }

  .etape {
    flex-direction: column;
    gap: 16px;
  }

  .etape-num {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .methode-citation {
    font-size: 1.1rem;
  }

  .methode-signature p {
    font-size: 1.05rem;
  }
}

@media (max-width: 980px) {
  .approach-head {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .approach-head img {
    max-width: 280px;
    margin: 0 auto;
  }
  .approach-head img:last-child {
    display: none; /* on cache la boussole sur tablette pour économiser l'espace */
  }
}

@media (max-width: 980px) {
  .cards.four {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .cards.four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .steps {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  .steps > div {
    flex: 0 0 calc(50% - 14px);
    text-align: center;
  }
}
@media (max-width: 400px) {
  .steps > div {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .methode-etapes {
    padding: 0 4px;
  }
  .etape-body h3 {
    font-size: 1.2rem;
  }
  .etape-num {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content .hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-logo-sparkle {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }
  .brand strong {
    font-size: 1.35rem;
  }
  .site-header {
    padding: 8px 4vw;
  }
}

/* ── Qui suis-je : colonne image + carte identité ── */
.image-card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.image-card-col .image-card {
  width: 100%;
}
.identity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #fffdf5, #fef9ec);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 2px 12px rgba(201,168,76,0.1);
  width: 100%;
  text-align: center;
}
.identity-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 2px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.3rem;
}
.identity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.identity-name {
  font-size: 1rem;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  margin: 0;
}
.identity-name strong {
  font-weight: 700;
  color: #c9a84c;
}
.identity-title {
  font-size: 1rem;
  color: #7a6a50;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* ── Réseaux sociaux ── */
.social-links {
  margin-top: 2.5rem;
  text-align: center;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 30px;
  color: #7a6a50;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  background: rgba(201,168,76,0.05);
}
.social-icon:hover {
  background: rgba(201,168,76,0.15);
  color: #c9a84c;
  border-color: #c9a84c;
  transform: translateY(-2px);
}
.social-icon svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.logo-neame{animation:starGlow 7s ease-in-out infinite;transform-origin:center;}
@keyframes starGlow{0%,100%{filter:drop-shadow(0 0 0px rgba(255,215,120,.2));transform:scale(1)}50%{filter:drop-shadow(0 0 8px rgba(255,215,120,.8));transform:scale(1.015)}}


/* ── Micro-scintillement discret de l'étoile du logo Néamé ── */
.logo-sparkle-card {
  position: relative;
  display: inline-block;
  line-height: 0;
  overflow: hidden;
  isolation: isolate;
}

.logo-sparkle-card::before,
.logo-sparkle-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24%;
  width: 18%;
  height: 18%;
  transform: translate(-50%, -50%) scale(0.55);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

.logo-sparkle-card::before {
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,221,122,0.85) 28%, rgba(255,196,70,0.28) 55%, rgba(255,196,70,0) 72%);
  filter: blur(1px);
  animation: neameStarPulse 7.5s ease-in-out infinite;
}

.logo-sparkle-card::after {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255,245,210,0.95) 49%, rgba(255,245,210,0.95) 51%, transparent 56%),
    linear-gradient(0deg, transparent 0 44%, rgba(255,245,210,0.85) 49%, rgba(255,245,210,0.85) 51%, transparent 56%);
  filter: drop-shadow(0 0 7px rgba(255,215,120,0.85));
  animation: neameStarTwinkle 7.5s ease-in-out infinite;
}

@keyframes neameStarPulse {
  0%, 88%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
  91% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.82); }
  94% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
  97% { opacity: 0.38; transform: translate(-50%, -50%) scale(0.78); }
}

@keyframes neameStarTwinkle {
  0%, 89%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.35) rotate(0deg); }
  93% { opacity: 0.92; transform: translate(-50%, -50%) scale(1.12) rotate(45deg); }
  96% { opacity: 0.35; transform: translate(-50%, -50%) scale(0.72) rotate(90deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-sparkle-card::before,
  .logo-sparkle-card::after {
    animation: none;
  }
}

/* ===== Formulaire Tally - Engager l'échange ===== */
.tally-form-wrapper {
  margin-top: 32px;
  padding: 24px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e8dfd0;
  box-shadow: 0 4px 18px rgba(182, 123, 61, 0.06);
}

.tally-form-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 600px;
}

/* ===== Cadre de l'accompagnement ===== */
.cadre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.cadre-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 14px;
  border: 1px solid #e8dfd0;
  box-shadow: 0 4px 18px rgba(182, 123, 61, 0.06);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cadre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(182, 123, 61, 0.12);
}

.cadre-icone {
  display: inline-block;
  color: #c9a84c;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.cadre-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  color: #2d2a26;
  margin-bottom: 10px;
}

.cadre-format {
  color: #8d6d4f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 16px;
  font-style: normal;
}

.cadre-card p:last-child {
  color: #4a463f;
  line-height: 1.65;
  font-size: 0.98rem;
}

.cadre-tarifs {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 24px 32px;
  text-align: center;
  border-top: 1px solid #ded3c2;
  border-bottom: 1px solid #ded3c2;
}

.cadre-tarifs p {
  color: #5c554a;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive tablette */
@media (max-width: 980px) {
  .cadre-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive mobile */
@media (max-width: 620px) {
  .cadre-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cadre-card {
    padding: 28px 22px;
  }
  .cadre-tarifs {
    padding: 20px 24px;
    margin-top: 32px;
  }
}

/* ===== Carte d'identité enrichie ===== */
.identity-card .identity-photo {
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.identity-card .identity-photo img,
.identity-card .identity-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  display: block;
}

.identity-credentials {
  color: #8d6d4f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.52rem;
  margin-top: 6px;
  margin-bottom: 0;
  font-weight: 500;
}

.identity-credentials-detail {
  color: #a08766;
  font-size: 0.52rem;
  font-style: italic;
  margin-top: 0;
  letter-spacing: 0.02em;
}

/* ===== Pages légales (mentions, confidentialité) ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.legal-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem;
  color: #2d2a26;
  margin-bottom: 24px;
  margin-top: 8px;
}

.legal-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  color: #8d6d4f;
  margin-top: 42px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8dfd0;
}

.legal-content p {
  color: #4a463f;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}

.legal-content a {
  color: #c9a84c;
  text-decoration: underline;
  text-decoration-color: #e8dfd0;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration-color: #c9a84c;
}

.legal-content strong {
  color: #2d2a26;
}

.legal-intro {
  font-style: italic;
  color: #5c554a;
  padding-left: 18px;
  border-left: 3px solid #c9a84c;
  margin-bottom: 32px;
}

.legal-status {
  background: #faf6ec;
  border-left: 3px solid #c9a84c;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  color: #5c554a;
  margin-bottom: 28px;
}

.legal-status strong {
  color: #3d3528;
}

.legal-update {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid #e8dfd0;
  color: #8d6d4f;
  font-size: 0.9rem;
}

.legal-back {
  margin-top: 32px;
}

.legal-back a {
  font-weight: 600;
}

/* Footer enrichi avec liens légaux */
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
}

.footer-links a {
  color: #b8a48c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #c9a84c;
}

.footer-links span {
  color: #6a6258;
}

@media (max-width: 620px) {
  .legal-content h1 { font-size: 1.8rem; }
  .legal-content h2 { font-size: 1.2rem; margin-top: 32px; }
}

/* ============================================================
   ====== PAGE FORMATION — Bâtir son management, son équipe ====
   ============================================================
   Ce bloc est à ajouter à la fin de style.css
   Il complète les styles existants sans rien écraser.
   ============================================================ */

/* ── Lien actif dans la nav ── */
.nav a.active,
.nav .dropdown button.active {
  color: #b67b3d;
  font-weight: 700;
}

/* ── HERO Formation ── */
.hero-formation {
  position: relative;
  min-height: 90vh;
}

.hero-bg-formation {
  background:
    linear-gradient(rgba(20,18,16,0.45), rgba(20,18,16,0.66)),
    url('assets/voute-formation.jpg') center / cover no-repeat;
}

.hero-formation .hero-text em {
  color: #d4af73;
  font-style: italic;
}

/* ── Intro / Constat ── */
.formation-intro {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.formation-intro p {
  font-size: 1.15rem;
  margin-bottom: 22px;
}

.formation-emphasis {
  font-size: 1.25rem !important;
  color: #2d2a26 !important;
  margin-top: 28px !important;
}

.formation-emphasis strong {
  color: #b67b3d;
}

.formation-citation {
  margin: 50px auto 0;
  padding: 38px 50px;
  max-width: 760px;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4a4540;
  border-left: 4px solid #b67b3d;
  background: white;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  text-align: left;
}

/* ── Cartes en 3 colonnes ── */
.cards.three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

/* ── Catalogue de formations (cartes type coaching) ── */
.cards.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}
.formation-catalogue .card {
  display: flex;
  flex-direction: column;
}
.formation-catalogue .card p {
  flex: 1 0 auto;
}
.formation-catalogue .card .cta-secondary {
  margin-top: 18px;
  align-self: flex-start;
}
.formation-card-soon {
  border-style: dashed !important;
  background: #faf6f0;
}
.formation-soon-tag {
  flex: 0 0 auto !important;
  display: inline-block;
  align-self: flex-start;
  margin-top: 18px;
  padding: 6px 16px;
  border: 1px solid #b67b3d;
  border-radius: 999px;
  color: #b67b3d;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Carte cliquable menant à la fiche formation */
.formation-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.formation-card-link h3 {
  color: inherit;
}
.formation-catalogue .card .formation-card-cta {
  flex: 0 0 auto;
  margin-top: 18px;
  color: #b67b3d;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.formation-card-link:hover .formation-card-cta {
  text-decoration: underline;
}

/* Lien retour en haut d'une fiche formation */
.fiche-back {
  max-width: 1260px;
  margin: 0 auto;
  padding: 30px 24px 0;
}
.fiche-back-link {
  color: #b67b3d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.fiche-back-link:hover {
  text-decoration: underline;
}

/* ── Fiche formation : listes, modules de programme, parcours ── */
.fiche-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
}
.fiche-liste.centre {
  margin: 0 auto;
}
.fiche-liste li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a4540;
  border-bottom: 1px solid #e8ddd0;
}
.fiche-liste li:last-child {
  border-bottom: none;
}
.fiche-liste li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 15px;
  color: #b67b3d;
  font-size: 0.7rem;
}
.benefices-liste li::before {
  content: '✔';
  font-size: 0.95rem;
  top: 12px;
}

.jour-modules {
  list-style: none;
  padding: 0;
  margin: 18px auto 0;
  max-width: 760px;
}
.jour-modules li {
  position: relative;
  padding: 11px 0 11px 26px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a4540;
  border-bottom: 1px solid #ece3d6;
}
.jour-modules li:last-child {
  border-bottom: none;
}
.jour-modules li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 11px;
  color: #b67b3d;
}

.jour-section {
  max-width: 760px;
  margin: 26px auto 0;
}
.jour-section h4 {
  font-size: 1.1rem;
  color: #2d2a26;
  margin: 0 0 4px;
}
.jour-section .jour-modules {
  margin-top: 8px;
}

.parcours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 820px;
  margin: 0 auto 50px;
}
.parcours-card {
  background: white;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  padding: 26px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.parcours-card strong {
  display: block;
  color: #b67b3d;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.parcours-card span {
  color: #6a635a;
  font-size: 0.95rem;
}
.approche-neame {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.approche-neame p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #e8e2d5;
  margin: 0;
}
@media (max-width: 760px) {
  .parcours-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Variante claire des étapes pour la page Formation ── */
/* Les .methode-etapes existantes sont stylées pour fond sombre.
   Ici on les rend lisibles sur le fond warm clair. */
.jour-bloc .etape {
  border-bottom: 1px solid rgba(182,123,61,0.12);
}

.jour-bloc .etape-body h3 {
  color: #2d2a26;
}

.jour-bloc .etape-highlight .etape-body h3 {
  color: #b67b3d;
}

.jour-bloc .etape-sous {
  color: #b67b3d;
}

.jour-bloc .etape-body p {
  color: #625d57;
}

.jour-bloc .etape-metaphore {
  color: #8d6d4f;
  border-left-color: rgba(182,123,61,0.4);
}

.jour-bloc .etape-num {
  background: rgba(182,123,61,0.10);
  border-color: #b67b3d;
  color: #b67b3d;
}

.jour-bloc .etape-highlight .etape-num {
  background: rgba(182,123,61,0.22);
  box-shadow: 0 0 24px rgba(182,123,61,0.25);
}

.jour-bloc .methode-etapes::before {
  background: linear-gradient(to bottom, #b67b3d, rgba(182,123,61,0.1));
}

/* ── Bloc Jour 1 / Jour 2 ── */
.jour-bloc {
  max-width: 1100px;
  margin: 0 auto 70px;
}

.jour-bloc:last-child {
  margin-bottom: 0;
}

.jour-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 32px 28px;
  background: white;
  border-radius: 22px;
  border: 1px solid #e8ddd0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.jour-header h3 {
  font-size: 2.2rem;
  color: #2d2a26;
  margin: 8px 0 12px;
}

.jour-sous {
  font-style: italic;
  color: #8d6d4f;
  margin: 0;
  font-size: 1.1rem;
}

/* ── Bandeau ROI sombre ── */
.dark-formation {
  background:
    linear-gradient(rgba(20,18,16,0.92), rgba(20,18,16,0.92)),
    url('assets/pierre-angulaire.png') center / cover no-repeat;
}

.roi-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.roi-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,115,0.25);
  border-radius: 22px;
  padding: 40px 38px;
  backdrop-filter: blur(6px);
}

.roi-block .overline {
  margin-bottom: 24px;
}

.roi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roi-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: #e8e2d5;
  font-size: 1.05rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(212,175,115,0.12);
}

.roi-list li:last-child {
  border-bottom: none;
}

.roi-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #d4af73;
  font-size: 0.8rem;
  top: 16px;
}

/* ── Formules Intra / Inter ── */
.formules-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.formule-card {
  background: white;
  border: 1px solid #e8ddd0;
  border-radius: 28px;
  padding: 48px 42px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.formule-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

.formule-card-accent {
  background: #faf7f2;
  border: 2px solid #b67b3d;
  position: relative;
}

.formule-card-accent::before {
  content: 'Pour démarrer';
  position: absolute;
  top: -14px;
  right: 32px;
  background: #b67b3d;
  color: white;
  padding: 6px 18px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.formule-label {
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: #b67b3d;
  margin-bottom: 12px;
}

.formule-card h3 {
  font-size: 1.8rem;
  margin-bottom: 22px;
  color: #2d2a26;
}

.formule-price {
  font-size: 2.4rem;
  font-weight: 400;
  color: #b67b3d;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.formule-price span {
  font-size: 1rem;
  color: #8d6d4f;
  font-style: italic;
}

.formule-effectif {
  font-style: italic;
  color: #8d6d4f;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ede4d5;
}

.formule-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.formule-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #4a4540;
  font-size: 1rem;
  line-height: 1.5;
}

.formule-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 12px;
  color: #b67b3d;
  font-size: 0.65rem;
}

.formule-card .cta-secondary {
  align-self: flex-start;
  margin-top: auto;
}

/* ── Modalités pratiques ── */
.modalites-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.modalite-item {
  background: white;
  border: 1px solid #e8ddd0;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.modalite-label {
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #b67b3d;
  margin-bottom: 10px;
}

.modalite-value {
  color: #2d2a26;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.modalite-value span {
  display: block;
  font-size: 0.88rem;
  color: #8d6d4f;
  font-style: italic;
  margin-top: 4px;
}

.accessibilite-note {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 24px 32px;
  background: white;
  border-left: 3px solid #b67b3d;
  border-radius: 0 14px 14px 0;
}

.accessibilite-note p {
  margin: 0;
  font-size: 0.98rem;
  color: #625d57;
}

.accessibilite-note strong {
  color: #2d2a26;
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .modalites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .cards.three {
    grid-template-columns: 1fr;
  }
  .cards.two {
    grid-template-columns: 1fr;
  }
  .roi-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .formules-grid {
    grid-template-columns: 1fr;
  }
  .jour-header h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 620px) {
  .formation-citation {
    font-size: 1.15rem;
    padding: 28px 28px;
  }
  .modalites-grid {
    grid-template-columns: 1fr;
  }
  .formule-card {
    padding: 36px 28px;
  }
  .formule-price {
    font-size: 2rem;
  }
}

/* ============================================================
   ============ FIN BLOC PAGE FORMATION =======================
   ============================================================ */

.approach-conclusion{
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
}

.approach-conclusion p{
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-color);
  opacity: 0.9;
}
/* ===== Bouton CTA section Cadre ===== */
.cadre-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Sous-titres et encart déontologie (pages légales) ===== */
.legal-content h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: #2d2a26;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-note {
  margin-top: 36px;
  padding: 22px 26px;
  background: #faf7f2;
  border-left: 3px solid #c9a84c;
  border-radius: 4px;
  color: #5c554a;
}

.legal-note em {
  font-style: italic;
}

/* ── Logo NÉAMÉ « 4 Directions » : taille soignée sur mobile/tablette ── */
@media (max-width: 980px) {
  .approach-head .approach-logo-card {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
}


/* ===== Bouton de réservation "premier échange offert" ===== */
.cadre-desc { color: #4a463f; line-height: 1.65; font-size: 0.98rem; }
.cta-rdv {
  display: inline-block;
  margin-top: 22px;
  background: #b67b3d;
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(182, 123, 61, 0.20);
  transition: 0.25s ease;
}
.cta-rdv:hover { background: #9d672e; transform: translateY(-2px); }
.contact-rdv { margin: 8px 0 28px; }


/* ===== FAQ (accordéon) — page locale Ain ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #ffffff;
  border: 1px solid #e8dfd0;
  border-radius: 12px;
  padding: 0 26px;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(182, 123, 61, 0.06);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #2d2a26;
  position: relative;
  padding-right: 34px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 16px;
  color: #b67b3d;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p {
  color: #4a463f;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0 0 22px;
}


/* ===== Bandeau local visible vers la page Coaching dans l'Ain ===== */
.local-banner {
  max-width: 760px;
  margin: 52px auto 0;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e8dfd0;
  border-left: 4px solid #b67b3d;
  border-radius: 12px;
  padding: 32px 34px;
  box-shadow: 0 4px 18px rgba(182, 123, 61, 0.06);
}
.local-banner .overline { margin-bottom: 8px; }
.local-banner-text { color: #4a463f; font-size: 1.08rem; line-height: 1.6; margin: 0 0 22px; }
