/* ===================================================
   Intérieur Zephyr - Professional Corporate CSS
   Brand palette: blue/gray/white/accent gold
   Layouts: 100% Flexbox (no grid/columns)
   Fonts: Montserrat (display), Roboto (body), fallback to Arial, sans-serif
   =================================================== */
  
/* RESET & BOX MODEL NORMALIZATION */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F5F2;
  font-family: 'Roboto', Arial, sans-serif;
  color: #25384A;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #35536A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A16622;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 600;
}
hr {
  border: 0;
  border-top: 1px solid #e2e6ea;
  margin: 32px 0;
}
blockquote {
  border-left: 4px solid #B8864B;
  background: #f8fafc;
  padding: 16px 24px;
  font-style: italic;
  color: #25384A;
  margin: 24px 0;
}

/* -------------------
   FONT IMPORTS
-------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25384A;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 {font-size: 2.375rem; margin-bottom: 20px;}
h2 {font-size: 1.75rem; margin-bottom: 18px;}
h3 {font-size: 1.25rem; margin-bottom: 14px;}
h4 {font-size: 1.125rem;}
@media (min-width: 600px) {
  h1 {font-size: 3rem;}
  h2 {font-size: 2.125rem;}
  h3 {font-size: 1.5rem;}
}
.section h2, .section h3 {margin-top: 0;}

.subheadline {
  font-size: 1.125rem;
  color: #35536A;
  font-weight: 500;
  margin-bottom: 24px;
}

/* -----------------------------------------------------
   SPACING & LAYOUT (Flexbox only, NO grid or columns)
------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44,60,84,0.06);
  border: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container, .service-list, .feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F5F2;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(44,60,84,0.04);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 420px;
  flex: 1 1 260px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 8px 0 rgba(44,60,84,0.05);
  transition: box-shadow 0.2s;
  min-width: 230px;
  flex: 1 1 260px;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(44,60,84,0.11);
}
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 230px;
  min-width: 220px;
  background: #F5F5F2;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(44,60,84,0.03);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 22px rgba(53,83,106,0.11);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: #35536A;
}
.price, .service-meta {
  color: #A16622;
  font-weight: 600;
  font-size: 1rem;
}

.blog-summary {
  background: #F5F5F2;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(44,60,84,0.04);
  padding: 24px 18px;
  margin-bottom: 20px;
  flex: 1 1 270px;
}

.contact-highlights dt {
  font-weight: 600;
  color: #35536A;
}
.contact-highlights dd {
  margin-bottom: 14px;
  margin-left: 0;
}

.text-section ul,
.text-section ol {
  margin-left: 22px;
  margin-bottom: 16px;
  color: #25384A;
}
.text-section ul li {list-style: disc inside; margin-bottom: 7px;}
.text-section ol li {list-style: decimal inside; margin-bottom: 7px;}

/* ===============
   BUTTONS / CTAs
================= */
.cta-primary, .btn, button, input[type=email]:not(.cookie-input), input[type=submit] {
  background: #35536A;
  color: #FFFFFF;
  padding: 13px 32px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 1px 5px rgba(44,60,84,0.05);
  transition: background 0.14s, color 0.15s, box-shadow 0.15s, transform 0.11s;
  cursor: pointer;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus, .btn:hover, .btn:focus {
  background: #A16622;
  color: #fff;
  box-shadow: 0 2px 18px rgba(161,102,34,0.10);
  transform: translateY(-1px) scale(1.03);
}
.cta-primary:active {transform: scale(0.97);}
.mobile-nav a.cta-primary {
  background: #35536A;
  color: #fff;
  width: 100%;
  text-align: left;
  margin-top: 12px;
  margin-bottom: 6px;
}

/* =============
   HEADER & NAV
=============== */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 20px 0 rgba(53,83,106,0.07);
  position: relative;
  z-index: 20;
}
header .container, header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header nav {
  flex: 1 1 0;
  padding: 14px 0 14px 0;
}
header nav a img {
  width: 58px;
  max-width: 100%;
  height: auto;
  margin-right: 16px;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  margin-left: 16px;
}
header nav ul li {
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 0;
  font-weight: 500;
  border-radius: 21px;
  transition: background 0.17s, color 0.17s;
}
header nav ul li a.cta-primary {
  margin-left: 10px;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: #A16622;
  background: #E7EDF2;
}
header nav ul li a.cta-primary:hover {
  background: #A16622;
  color: #fff;
}

/* MOBILE NAV MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #35536A;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.21s;
  z-index: 24;
  height: 44px;
  width: 44px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #A16622;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,56,74,0.97);
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0px 0 0 0;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 50;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  margin: 24px 28px 0 0;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A16622;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
  padding-right: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 4px 12px 0;
  width: 100%;
  border-bottom: 1px solid rgba(227,227,227,0.07);
  border-radius: 0;
  transition: color 0.17s, background 0.15s;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A16622;
  background: rgba(255,255,255,0.07);
}

@media (max-width: 1060px) {
  .container {
    max-width: 100%;
  }
  header nav ul {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header nav ul {
    gap: 12px;
  }
  section, .section {
    padding: 30px 8px;
  }
}
@media (max-width: 800px) {
  .feature-grid {
    gap: 16px;
  }
  .card-container {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .text-section, .text-image-section, .content-grid, .service-list, .feature-grid, .card-container {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .testimonial-card, .card {
    min-width: 0 !important; max-width: unset;
  }
  header nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 10px; padding-right: 10px;
  }
  section, .section {
    margin-bottom: 36px;
    padding: 22px 2px;
    border-radius: 11px;
  }
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============
   TESTIMONIALS
============== */
.testimonial-card {
  background: #fff;
  color: #25384A;
  box-shadow: 0 1px 14px 0 rgba(44,60,84,0.06);
  border-left: 6px solid #35536A;
  margin-right: 16px;
  max-width: 425px;
  min-width: 200px;
}
.testimonial-meta {
  font-size: 1rem;
  color: #35536A;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  font-weight: 600;
}
.testimonial-meta span {
  color: #B8864B;
  font-size: 1rem;
  margin-left: 4px;
  letter-spacing: 0.10em;
}

/* ===============
   CARDS GENERAL
================*/
.card {
  background: #fff;
  color: #25384A;
  box-shadow: 0 1px 10px 0 rgba(44,60,84,0.08);
  transition: box-shadow 0.2s, transform 0.16s;
  border-radius: 14px;
}
.card:hover {
  box-shadow: 0 3px 18px 1px rgba(53,83,106,0.13);
  transform: translateY(-1.5px) scale(1.012);
}
.card-content {
  padding: 24px 20px;
}

/* ===========================
   SECTION-SPECIFIC STYLING   
=============================*/
.service-list > div {
  background: #F5F5F2;
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(44,60,84,0.04);
  padding: 21px 20px 18px 20px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 200px;
}
.service-meta {
  margin-top: 10px;
  font-size: 1rem;
  color: #A16622;
  font-weight: bold;
}

/* Contact Highlights */
dl.contact-highlights {
  margin: 18px 0 25px 0;
}
dl.contact-highlights dt {
  margin-bottom: 4px;
  font-weight: 700;
  color: #35536A;
  font-family: 'Montserrat', Arial, sans-serif;
}
dl.contact-highlights dd {
  margin-left: 0;
  margin-bottom: 13px;
  color: #25384A;
}

/* Feature Items (for blocks with icon + text) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* ===============
    FOOTER
================= */
footer {
  background: #25384A;
  color: #fff;
  padding: 38px 0 16px 0;
  margin-top: 42px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 18px 0 rgba(53,83,106,0.12);
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #A16622;
}
footer div {
  text-align: center;
  font-size: 0.98rem;
}
@media (max-width: 768px) {
  footer {
    border-radius: 8px 8px 0 0;
    padding: 22px 0 10px 0;
    font-size: 0.96rem;
  }
}

/* ===========================
   COOKIE CONSENT BANNER + MODAL
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #25384A;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 22px 12px 18px 12px;
  box-shadow: 0 -2px 22px 0 rgba(53,83,106,0.17);
  z-index: 99;
  animation: cookieSlideIn 0.8s cubic-bezier(.68,-0.55,.27,1.55);
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: #35536A;
  color: #fff;
  border-radius: 28px;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-banner .cookie-btn.accept {
  background: #A16622;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #35536A;
  color: #A16622;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 15px 5px 9px 5px;
    align-items: flex-start;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}
@keyframes cookieSlideIn {
  from {transform: translateY(95%); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,56,74,0.81);
  display: flex; align-items: center; justify-content: center;
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #FFFFFF;
  color: #25384A;
  border-radius: 16px;
  box-shadow: 0 10px 40px 0 rgba(53,83,106,0.19);
  width: 95vw;
  max-width: 420px;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  position: relative;
  animation: fadePopup 0.29s cubic-bezier(.68,-0.45,.33,1.14)
}
@keyframes fadePopup {
  from {opacity: 0; transform: scale(0.91);}
  to   {opacity: 1; transform: scale(1);}
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px solid #F5F5F2;
}
.cookie-modal-content .cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
/* Switch toggle style */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background: #A3B1BC;
  transition: background 0.15s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #35536A;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  left: 3px; top: 2.5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(60,80,110,0.05);
  transition: transform 0.15s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal-content .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-content .cookie-btn {
  background: #35536A;
  color: #fff;
  border-radius: 22px;
  border: none;
  padding: 9px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal-content .cookie-btn.accept {
  background: #A16622;
}
.cookie-modal-content .cookie-btn:hover, .cookie-modal-content .cookie-btn:focus {
  background: #A16622;
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  color: #35536A;
  font-size: 1.92rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #A16622;
}

/* ===========================
   FORM ELEMENTS
=============================*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #A3B1BC;
  border-radius: 6px;
  margin-bottom: 16px;
  color: #25384A;
  background: #F5F5F2;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #35536A;
  box-shadow: 0 0 0 2px rgba(53,83,106,0.14);
}

/* ==================
   MICRO-INTERACTIONS
====================*/
.cta-primary, .btn, .card, .feature-grid li, .service-list > div, .mobile-menu, .mobile-nav a, .mobile-menu-close, .cookie-btn {
  transition: background 0.14s, color 0.15s, box-shadow 0.19s, transform 0.13s;
}

/* ===================
   UTILITY HELPERS
====================*/
.text-center {text-align: center;}
.mt-2 {margin-top: 16px;}
.mt-3 {margin-top: 24px;}
.testimonial-wrapper {
    display: flex;
}