/* =======================
   CSS RESET & NORMALIZE
======================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  background: #fcfaf6;
  color: #231f20;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23221F;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #346A2F;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  color: #231f20;
  border-left: 3px solid #F3AE3D;
  padding-left: 14px;
  margin-bottom: 8px;
  background: transparent;
}
cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  color: #8c7b2f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-top: 5px;
}
strong {
  font-weight: 700;
  color: #346A2F;
}

/* =======================
   BRAND COLORS
======================= */
:root {
  --color-primary: #346A2F;
  --color-secondary: #F3AE3D;
  --color-gold: #C9A349;
  --color-premium-bg: #F6F5F2;
  --color-premium-card: #fffbe8;
  --color-heading: #23221F;
  --color-accent: #FFFFFF;
  --color-text: #231f20;
  --color-muted: #716c4d;
  --shadow-premium: 0 2px 14px 0 rgba(80, 60, 20, 0.08), 0 1.5px 10px 0 rgba(205, 181, 89, 0.07);
  --radius-soft: 13px;
  --radius-btn: 22px;
  --transition-main: 0.26s cubic-bezier(.5,.48,.34,1);
}

/* =======================
   CONTAINERS & LAYOUT
======================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-premium-bg);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-premium);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.text-section {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 20px !important;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-premium);
  padding: 28px 23px;
  flex: 1 1 300px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fcfaf6;
  border: 1px solid #e8e1c3;
  border-radius: var(--radius-soft);
  box-shadow:0 4px 16px 0 rgba(80,60,20,0.08),0 1.5px 10px 0 rgba(205,181,89,0.08);
  margin-bottom: 20px;
  max-width: 530px;
}
.testimonial-card img {
  width: 50px; height: 50px;
  border-radius: 100%;
  box-shadow: 0 1px 3px 0 rgba(135,122,41, 0.07);
  background: #fffde5;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .testimonial-card img {
    margin-bottom: 8px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ HEADER & NAVIGATION ============= */
header {
  background: var(--color-accent);
  width: 100%;
  box-shadow: 0 2px 18px 0 rgba(52, 106, 47, 0.08);
  z-index: 1100;
  position: relative;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 20px 0 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
}
header nav a {
  color: #23221F;
  padding: 8px 14px;
  border-radius: 15px;
  transition: color var(--transition-main), background var(--transition-main), box-shadow var(--transition-main);
  position: relative;
}
header nav a:not(.cta-primary):hover {
  background: #f3ae3d2a;
  color: #346A2F;
}
header nav a.cta-primary {
  background: var(--color-gold);
  color: var(--color-heading);
  box-shadow: 0 2px 8px 0 rgba(201,163,73,0.09);
  border-radius: var(--radius-btn);
  padding: 10px 26px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.03em;
  margin-left: 16px;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: #e6c15a;
  color: #212110;
  box-shadow: 0 2px 12px 0 rgba(201,163,73,0.13);
}
header nav img {
  height: 36px; width: auto;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 950px) {
  header nav {
    gap: 13px;
    font-size: 0.97rem;
  }
  header nav a.cta-primary { margin-left: 0; }
}
@media (max-width: 790px) {
  header nav {
    display: none !important;
  }
}

/* ===== MOBILE MENU (Hamburger) ===== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: background var(--transition-main);
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 1201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f3ae3d1f;
  color: #ad891d;
}
@media (min-width: 791px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(247,245,235, 0.98);
  z-index: 1202;
  transform: translateX(-105vw);
  transition: transform 0.33s cubic-bezier(.54,.3,.52,1);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 26px 28px 0;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #ad891d;
  cursor: pointer;
  transition: color var(--transition-main);
  z-index: 1251;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #346A2F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  width: 100%;
  padding: 16px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.mobile-nav a {
  padding: 12px 0;
  color: #23221F;
  border-bottom: 1px solid #e6e0d1;
  width: 100%;
  font-size: 1.1rem;
  transition: background var(--transition-main), color var(--transition-main);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-primary);
  background: #f3ae3d1c;
  border-radius: 13px;
}
@media (min-width: 791px) {
  .mobile-menu { display: none !important; }
}

/* ============= FOOTER ============= */
footer {
  background: #23221F;
  color: #fffbe8;
  padding: 32px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  border-bottom: 1px solid #665C36;
  padding-bottom: 10px;
  margin-bottom: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 10px;
}
footer nav a {
  color: #d6b94a;
  border-radius: 13px;
  padding: 5px 12px;
  transition: color 0.18s, background 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  color: #fffbe8;
  background: #C9A349;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 6px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.98rem;
  color: #e1cf85;
  line-height: 1.45;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  filter: brightness(1.1) saturate(0.9) drop-shadow(0 1px 2px #b69a41);
}
footer small {
  color: #cbb151;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  display: block;
  margin-top: 8px;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .footer-contact {
    gap: 14px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============== BUTTONS, CTAs =============== */
.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  box-shadow: 0 2.5px 13px 0 rgba(201,163,73,0.09);
  border: none;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main), border var(--transition-main);
}
.cta-primary {
  background: linear-gradient(93deg, #F3AE3D 62%, #C9A349 110%);
  color: #23221F;
  border-bottom: 2px solid #c9a349;
  margin-top: 6px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #efd37b;
  color: #23221F;
  filter: brightness(1.05) drop-shadow(0 1.5px 10px #e5ce7b45);
  box-shadow: 0 6px 24px 0 rgba(205,181,89,0.15);
}
.cta-secondary {
  background: transparent;
  border: 1.5px solid #C9A349;
  color: #C9A349;
  margin-top: 4px;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #C9A349;
  color: #23221F;
  box-shadow: 0 2px 12px 0 rgba(201,163,73,0.14);
}
@media (max-width: 520px) {
  .cta-primary, .cta-secondary {
    padding: 11px 11px;
    font-size: 1rem;
  }
}

/* ============ LISTS, CARDS, FEATURES ============ */
.content-wrapper ul,
.text-section ul {
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-wrapper ul li,
.text-section ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fffbe8;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 1.04rem;
  color: #346A2F;
  box-shadow: 0 0.5px 2px 0 rgba(205,181,89,0.06);
  font-weight: 500;
  gap: 10px;
  min-width: 0;
}
.content-wrapper ul li img, .text-section ul li img {
  width: 21px; height: 21px;
  vertical-align: middle;
  margin-right: 6px;
}
.text-section ul li {
  background: #f1efeb;
  color: #231f20;
  box-shadow: none;
}
@media (max-width: 650px) {
  .content-wrapper ul li {
    font-size: 0.95rem;
    padding: 8px 8px;
  }
}

.content-wrapper > div,
.content-wrapper > article {
  flex: 1 1 300px;
  min-width: 210px;
  background: var(--color-premium-card);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-premium);
  padding: 26px 18px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-main), transform 0.19s;
}
.content-wrapper > div:hover, .content-wrapper > article:hover {
  box-shadow: 0 8px 30px 2px #c9a34926;
  transform: translateY(-3px) scale(1.028);
}

/* For article/news cards */
article h2 {
  color: #346A2F;
  margin-bottom: 10px;
}

/* =========== RESPONSIVE TYPOGRAPHY =========== */
@media (max-width: 900px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.1rem; }
}

/* ======= FORMS & INPUTS (Generic) ======= */
input, textarea, select {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #C9A349;
  border-radius: 7px;
  background: #fffbe9;
  color: #346A2F;
  transition: border var(--transition-main), box-shadow var(--transition-main);
  width: 100%;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #346A2F;
  box-shadow: 0 2px 11px 0 #c9a34944;
}
label {
  color: #231f20;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 4px;
  font-weight: 600;
}

/* ============ TESTIMONIALS (Accès Universel) ============ */
.testimonial-card {
  box-shadow: 0 3px 19px 0 #d1be8234;
  background: #fffbe8;
  border: 1px solid #ecd186;
  color: #231f20;
}
.testimonial-card blockquote,
.testimonial-card cite {
  color: #231f20;
}

/* ============ COOKIE CONSENT BANNER & MODAL ============ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #23221F;
  color: #F3AE3D;
  box-shadow: 0 -1.5px 10px 0 #231f2033;
  z-index: 12010;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 34px;
  font-size: 0.97rem;
  font-family: 'Roboto', sans-serif;
  animation: banner-fadeIn 0.35s 1 cubic-bezier(.5,1.15,.5,1);
}
@keyframes banner-fadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner p {
  color: #fffbe8;
  font-size: 1.05rem;
  line-height: 1.4;
  flex: 3 1 330px;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
  flex: 1 1 170px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner button {
  border-radius: 15px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  margin: 0 2px;
  box-shadow: 0 1px 6px 0 rgba(249,222,105,0.09);
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cookie-banner .cookie-accept {
  background: #F3AE3D;
  color: #23221F;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #eed88d;
  color: #231f20;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #e1cf85;
  border: 1.2px solid #E1CF85;
}
.cookie-banner .cookie-settings:hover {
  background: #C9A349;
  color: #23221F;
}
.cookie-banner .cookie-reject {
  background: #1a1a16;
  color: #F3AE3D;
  border: 1.2px solid #F3AE3D;
}
.cookie-banner .cookie-reject:hover {
  color: #23221F;
  background: #e8e1c3;
}
@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 20px 11px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* COOKIE MODAL DIALOG */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 13001;
  background: rgba(50,46,19,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fffbe8;
  color: #231f20;
  border-radius: 19px;
  max-width: 440px;
  width: 95vw;
  box-shadow: 0 9px 60px 3px #c9a34943;
  padding: 35px 28px 20px 28px;
  position: relative;
  animation: modal-pop .32s cubic-bezier(.23,1.15,0,.89);
  display: flex;
  flex-direction: column;
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(.82) translateY(-30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h2 {
  color: #346A2F;
  margin-bottom: 18px;
  font-size: 1.26rem;
  font-weight: bold;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F6F5F2;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1.01rem;
}
.cookie-category span {
  color: #346A2F;
}
.cookie-category input[type=checkbox] {
  accent-color: #C9A349;
  width: 22px; height: 22px;
}
.cookie-category input[disabled] {
  opacity: 0.7;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #C9A349;
  cursor: pointer;
  opacity: 0.75;
  transition: color 0.16s, opacity 0.17s;
}
.cookie-modal-close:hover {
  color: #346A2F;
  opacity: 1;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-actions button {
  padding: 9px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border-radius: 11px;
  font-weight: 600;
  border: none;
}
.cookie-modal-actions .cookie-modal-accept {
  background: #F3AE3D;
  color: #23221F;
}
.cookie-modal-actions .cookie-modal-decline {
  background: #23221F;
  color: #F3AE3D;
  border: 1.2px solid #F3AE3D;
}
.cookie-modal-actions .cookie-modal-accept:hover {
  background: #c9a349;
}
.cookie-modal-actions .cookie-modal-decline:hover {
  color: #23221F;
  background: #E1CF85;
}
@media (max-width:550px) {
  .cookie-modal-content {
    padding: 21px 7vw 13px 7vw;
  }
}
/* ===== Scrollbar Styling ===== */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #F3AE3D;
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: #fcfaf6;
}

/* ===== Miscellaneous Utilities ===== */
.text-center {
  text-align: center !important;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-20 {
  gap: 20px !important;
}
.gap-32 {
  gap: 32px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

/* ===== Selection Highlight ===== */
::selection {
  background: #F3AE3D;
  color: #23221F;
}

/* =============== ANIMATIONS =============== */
.cta-primary, .cta-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.18s, color 0.18s, box-shadow 0.13s, border 0.13s, filter 0.2s;
}
.content-wrapper > div, .content-wrapper > article, .card {
  transition: box-shadow 0.22s cubic-bezier(.51,.36,.44,1.3), transform 0.2s cubic-bezier(.38,.7,.36,1);
}

/* ========== ACCESSIBILITY FOCUS ========== */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-banner button:focus {
  outline: 2px solid #C9A349;
  outline-offset: 2px;
  z-index: 121;
}

/* ============== MEDIA QUERIES MOBILE/LARGE ============== */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
  .content-wrapper > div, .content-wrapper > article {
    min-width: 170px;
    padding: 19px 5px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
}
/* THE END */