/* ------------------------------------
   CSS RESET & BASE 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F6F2;
  color: #181A1B;
  font-family: 'Roboto', 'Times New Roman', Times, serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
ul, ol {
  margin-left: 24px;
}
a {
  color: #181A1B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B39115;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
b, strong {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: #181A1B;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  color: #302F2B;
  margin-bottom: 14px;
  line-height: 1.6;
}
p.subheadline {
  font-size: 1.25rem;
  color: #75591C;
  margin-bottom: 26px;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ------------------------------------
   LAYOUT CONTAINERS / FLEXBOX RULES
------------------------------------ */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,26,27,0.05), 0 1.5px 5px rgba(242,183,5,0.04);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24, 26, 27, 0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px 22px;
  min-width: 260px;
  flex: 1 1 300px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAF7ED;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(24,26,27,0.04);
  color: #181A1B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------------------------
   NAVIGATION & HEADER
------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(24,26,27,0.04);
  padding: 0 0 0 0;
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo-link {
  margin-right: 26px;
  display: flex;
  align-items: center;
  height: 40px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-right: 24px;
}
.nav-links a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: #302F2B;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.19s;
}
.nav-links a:hover, .nav-links a:focus {
  color: #F2B705;
  border-bottom: 2px solid #F2B705;
}
.cta.primary {
  background: #181A1B;
  color: #fff !important;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  border-radius: 6px;
  padding: 11px 28px;
  font-size: 1.14rem;
  box-shadow: 0 2px 7px rgba(24,27,18,0.08);
  letter-spacing: 0.02em;
  margin-left: 10px;
  border: 1.5px solid #181A1B;
  transition: background 0.22s, color 0.19s, box-shadow 0.14s, border 0.14s;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #F2B705;
  color: #181A1B !important;
  border: 1.5px solid #B39115;
  box-shadow: 0 3px 16px rgba(242,183,5, 0.14);
  text-decoration: none;
}
.cta.secondary {
  background: #fff;
  color: #181A1B !important;
  border: 1.5px solid #B39115;
  border-radius: 5px;
  padding: 10px 22px;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: background 0.18s, color 0.16s;
  display: inline-block;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F2B705;
  color: #fff !important;
}

/* Hamburger + mobile menu */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #181A1B;
  font-size: 2.3rem;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 24px;
  top: 15px;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(24,26,27,0.04);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6E5B2;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 52px rgba(24,26,27,0.23);
  z-index: 1020;
  transform: translateX(-105vw);
  opacity: 0;
  transition: transform 0.39s cubic-bezier(.81,-0.14,.48,1.19), opacity 0.19s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: #181A1B;
  border: none;
  cursor: pointer;
  margin: 19px 0 10px 18px;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 25px 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.13rem;
  color: #181A1B;
  padding: 17px 6px 8px 4px;
  border-bottom: 1.5px solid #EEEEEE;
  transition: color 0.19s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #F2B705;
}

/* Hide desktop nav on mobile, burger on desktop */
@media (max-width: 1100px) {
  .main-nav {  padding-right: 0; }
}
@media (max-width: 900px) {
  .main-nav {
    padding: 0 10px;
  }
  .nav-links {
    gap: 14px;
    margin-right: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    padding: 0 7px;
    height: 60px;
  }
  .nav-links,
  .main-nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .logo-link img {
    height: 30px;
  }
}

/* ------------------------------------
   HERO/SECTION LAYOUT & TYPOGRAPHY
------------------------------------ */
.hero {
  width: 100%;
  padding: 55px 0 50px 0;
  background: linear-gradient(155deg, #fff 60%, #FAF7ED 100%);
  margin-bottom: 60px;
  border-bottom: 2px solid #F2B70511;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}
.hero h1 {
  font-size: 2.7rem;
  color: #181A1B;
  font-family: 'Montserrat', Georgia, serif;
  margin-bottom: 13px;
  text-shadow: 0 1px 0 #F6E7C3;
}
.hero p.subheadline {
  color: #75591C;
}

/* ------------------------------------
   FEATURE GRIDS
------------------------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 32px;
  list-style: none;
  margin: 0 0 0 0;
}
.feature-grid li {
  background: #F7F6F2;
  border-radius: 9px;
  box-shadow: 0 2px 10px #F2B70518;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex: 1 1 230px;
  padding: 25px 22px;
  margin-bottom: 20px;
  transition: box-shadow .23s, border .14s;
  min-width: 215px;
  border: 1.5px solid #F2B70511;
}
.feature-grid li:hover {
  box-shadow: 0 6px 22px #B391150F;
  border: 1.5px solid #F2B70533;
}
.feature-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 5px;
}

/* ------------------------------------
   SERVICE CARDS
------------------------------------ */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-cards li {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #F2B70522;
  box-shadow: 0 2px 10px #F2B70512;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 22px 26px;
  margin-bottom: 20px;
  min-width: 230px;
  transition: box-shadow .21s;
}
.service-cards li:hover {
  box-shadow: 0 2px 16px #B391151c;
}
.service-cards .service-price {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.19rem;
  font-weight: 700;
  color: #F2B705;
  margin-top: 7px;
}

/* ------------------------------------
   FEATURES LIST
------------------------------------ */
.feature-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  background: #F7F6F2;
  border-radius: 6px;
  padding: 14px 20px;
  gap: 13px;
  font-size: 1rem;
  min-width: 200px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  color: #302F2B;
  border: 1.2px solid #F2B70517;
}
.feature-list img {
  width: 28px;
  height: 28px;
}

/* ------------------------------------
   COMMUNITY SECTION
------------------------------------ */
.community-highlights {
  list-style: disc inside;
  margin-left: 26px;
  margin-bottom: 24px;
  color: #181A1B;
  font-family: 'Montserrat', Georgia, serif;
}
.user-stories p {
  padding: 11px 16px 10px 16px;
  background: #FAF7ED;
  border-left: 4px solid #B39115;
  border-radius: 8px;
  color: #302F2B;
  margin-bottom: 13px;
  font-size: 1rem;
}
.text-center {
  text-align: center;
}
.member-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 7px;
  gap: 10px;
}
.member-map img {
  width: 168px;
  max-width: 100%;
}

/* ------------------------------------
   PARTNER LOGOS
------------------------------------ */
.partner-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 0;
  margin: 0;
}
.partner-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F7F6F2;
  border-radius: 7px;
  padding: 10px 20px;
  font-family: 'Montserrat', Georgia, serif;
  color: #75591C;
  min-width: 140px;
  font-size: 0.99rem;
}
.partner-list img {
  width: 31px;
  height: 31px;
}

/* ------------------------------------
   PROJECT CARDS (PROJETS PAGE)
------------------------------------ */
.project-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 13px;
}
.project-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px #B391150e;
  border: 1.5px solid #F2B70515;
  padding: 28px 23px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .16s,border .11s;
}
.project-card h3 {
  margin-bottom: 5px;
}
.project-card span {
  color: #B39115;
  font-size: 1.04rem;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.project-card:hover {
  box-shadow: 0 7px 20px #F2B70518;
  border: 1.5px solid #F2B70511;
}

.filters {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px 0;
}
.filters button {
  padding: 7px 17px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Georgia, serif;
  background: #F7F6F2;
  color: #181A1B;
  border: 1.5px solid #F2B70528;
  border-radius: 9px;
  margin-bottom: 0;
  transition: background .17s, color .13s, border .13s;
}
.filters button:hover, .filters button.active {
  background: #F2B705;
  color: #fff;
  border-color: #B39115;
}

/* ------------------------------------
   EVENT CALENDAR (WEBINAIRES PAGE)
------------------------------------ */
.event-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.event-item {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #F2B70520;
  box-shadow: 0 3px 14px #B391150e;
  padding: 26px 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow .18s, border .14s;
}
.event-item:hover {
  box-shadow: 0 5px 22px #B391150d;
  border: 1.5px solid #F2B70544;
}
.event-item h3 {
  margin-bottom: 4px;
}

/* ------------------------------------
   TESTIMONIALS
------------------------------------ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding: 20px 24px;
  background: #FAF7ED;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(24,26,27,0.04);
  color: #181A1B;
  min-width: 230px;
  max-width: 600px;
  position: relative;
  border: 1.5px solid #B3911512;
  font-size: 1.02rem;
}
.testimonial-card blockquote {
  color: #181A1B;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.14rem;
  font-weight: 400;
  margin: 0 0 10px 0;
  line-height: 1.35;
  quotes: '“' '”' '‘' '’';
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #F2B705;
  font-size: 2.2rem;
  line-height: 1;
  margin-right: 10px;
  vertical-align: sub;
}
.testimonial-card blockquote:after {
  content: close-quote;
  color: #F2B705;
  font-size: 2.2rem;
  margin-left: 5px;
  vertical-align: sub;
}
.testimonial-card div {
  color: #75591C;
  font-size: 0.99rem;
  font-family: 'Montserrat', serif;
  font-style: italic;
}

/* ------------------------------------
   CONTACT COORDINATES
------------------------------------ */
.contact-coord {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-coord li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
}
.contact-coord img {
  width: 21px;
  height: 21px;
}

/* ------------------------------------
   THANK YOU PAGES
------------------------------------ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 18px #B3911508;
  padding: 29px 28px;
  margin-top: 32px;
}
.text-section ul {
  margin-left: 24px;
}

/* ------------------------------------
   FOOTER
------------------------------------ */
footer {
  background: #181A1B;
  padding: 44px 0 0 0;
  color: #eee;
  font-family: 'Montserrat', Georgia, serif;
  margin-top: 90px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid #F2B70519;
}
.footer-nav a {
  color: #F2B705;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 400;
  margin-bottom: 9px;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 0.97rem;
  color: #EEE9D5;
  margin: 17px 0 7px 0;
}

/* ------------------------------------
   COOKIE CONSENT BANNER
------------------------------------ */
.cookie-consent {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #E9E3D6;
  color: #181A1B;
  box-shadow: 0 -2px 24px #181A1B21, 0 1px 6px #B391150c;
  z-index: 1400;
  padding: 23px 12px 15px 12px;
  border-radius: 13px 13px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(.6,0,.41,1.27), transform 0.41s cubic-bezier(.72,.17,.23,1.01);
  transform: translateY(0);
}
.cookie-consent.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110px);
}
.cookie-consent p {
  margin-bottom: 5px;
  flex: 3 1 240px;
  max-width: 480px;
}
.cookie-consent .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-consent button {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  border-radius: 7px;
  font-weight: 600;
  border: 1.5px solid #B3911524;
  padding: 9px 18px;
  background: #fff;
  color: #181A1B;
  cursor: pointer;
  margin-bottom: 0;
  min-width: 110px;
  transition: background .15s, border .13s, color .14s;
}
.cookie-consent .accept {
  background: #F2B705;
  color: #181A1B;
  border: 1.5px solid #B39115;
}
.cookie-consent .accept:hover {
  background: #181A1B;
  color: #fff;
  border: 1.5px solid #F2B705;
}
.cookie-consent .reject {
  background: #fff;
  color: #B39115;
  border: 1.5px solid #F2B70533;
}
.cookie-consent .reject:hover {
  background: #F5F5F5;
  color: #181A1B;
}
.cookie-consent .settings {
  background: #fff;
  color: #181A1B;
  border: 1.5px solid #B3911517;
}
.cookie-consent .settings:hover {
  background: #F2B705;
  color: #181A1B;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,26,27,0.25);
  z-index: 1450;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeInCookie 0.3s ease;
}
@keyframes fadeInCookie {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px #181A1B2b;
  padding: 38px 36px 28px 36px;
  max-width: 470px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: #181A1B;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.switch input {
  opacity: 0 !important;
  width: 0; height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F7F6F2;
  border-radius: 18px;
  border: 1.5px solid #F2B70522;
  transition: background 0.18s;
}
.switch input:checked + .slider {
  background: #F2B705;
}
.slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
  box-shadow: 0 1px 6px #B3911518;
}
.switch input:checked + .slider:before {
  transform: translateX(17px);
  background: #181A1B;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: #181A1B;
  font-size: 1.7rem;
  align-self: flex-end;
  margin-left: auto;
  cursor: pointer;
  margin-bottom: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
  justify-content: flex-end;
}

/* ------------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------------ */
@media (max-width: 1050px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .content-grid, .service-cards, .partner-list, .feature-list, .event-calendar, .card-container, .project-cards {
    gap: 16px;
  }
  .main-nav {
    height: 58px;
  }
  .hero {
    padding: 42px 0 38px 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 26px 0 24px 0;
    margin-bottom: 32px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
  .footer-nav {
    gap: 10px;
    padding-bottom: 6px;
  }
  .footer-info {
    flex-direction: column;
    gap: 6px;
    font-size: 0.95rem;
    margin-top: 13px;
    margin-bottom: 6px;
  }
  .feature-grid, .content-grid, .service-cards, .partner-list, .feature-list, .event-calendar, .card-container, .project-cards {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .feature-item, .project-card, .service-cards li, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper {
    gap: 15px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.29rem; }
  .hero h1 { font-size: 1.6rem; }
  p.subheadline { font-size: 1.04rem; }
  .cookie-modal-content {
    padding: 22px 8px 15px 8px;
  }
}
@media (max-width: 480px) {
  .footer-nav {gap:5px;}
  .footer-info {font-size:0.92rem;}
  .cookie-modal-content { max-width: 97vw; }
}

/* ------------------------------------
   SHADOWS & MICRO-INTERACTIONS
------------------------------------ */
.card, .feature-grid li, .service-cards li, .project-card, .event-item, .testimonial-card {
  transition: box-shadow 0.23s, border .15s, transform .18s;
}
.card:hover, .feature-grid li:hover, .service-cards li:hover, .project-card:hover, .event-item:hover, .testimonial-card:hover {
  box-shadow: 0 7px 24px #B3911512, 0 2.5px 8px #181A1B09;
  transform: translateY(-2.5px) scale(1.015);
  border-color: #F2B70533;
}
.cta, .cookie-consent button, .filters button {
  transition: background 0.19s, border 0.13s, color 0.13s, box-shadow 0.16s, transform 0.13s;
}
.cta:active, .cookie-consent button:active {
  transform: scale(0.97);
}

/* ------------------------------------
   SCROLLBAR (ELEGANT CLASSIC)
------------------------------------ */
body::-webkit-scrollbar {
  width: 8px;
  background: #F7F6F2;
}
body::-webkit-scrollbar-thumb {
  background: #F2B70533;
  border-radius: 6px;
}

/* ------------------------------------
   ACCESSIBILITY
------------------------------------ */
:focus {
  outline: 2px solid #B39115;
  outline-offset: 2px;
}
[tabindex="0"]:focus {
  outline: 2px solid #F2B705;
}

/* END */