/* ====================================================
   CSS RESET + NORMALIZE (Mobile-First, Vintage-Retro)
   ==================================================== */
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;
}
footer p {
  color: white;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #fff8ed;
}
body {
  background: #f7f2e2;
  color: #193B6A;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
*, *:before, *:after { box-sizing: inherit; }
img, svg {max-width: 100%; display: block;}
input, textarea, button, select { font: inherit; }
button, [type="button"], [type="submit"] { cursor: pointer; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ======================
   FONT FACE (Vintage!)
   ======================
   Montserrat for display, Roboto for body
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@font-face {
  font-family: 'Fira Mono';
  src: local('FiraMono-Regular'), url('https://fonts.gstatic.com/s/firamono/v13/N0bX2SlFPv1weGeLZDtQG4jO.ttf') format('truetype');
  font-display: swap;
}

:root {
  --color-primary: #193B6A;
  --color-secondary: #C8D32E;
  --color-accent: #FFFFFF;
  --color-bg: #f7f2e2;
  --color-bg-section: #fff8ed;
  --color-retro-blue: #49759c;
  --color-retro-mustard: #ebc51f;
  --color-retro-orange: #ea9c53;
  --color-retro-brown: #9b7041;
  --color-retro-dust: #d0cfc7;
  --vintage-shadow: 0 4px 20px 0 rgba(27,31,35,0.10), 0 1.5px 6px 0 rgba(180,167,125,0.05);
  --radius-lg: 22px;
  --radius-md: 12px;
  --transition: all 0.22s cubic-bezier(.41,.61,.21,1);
  --pattern1: repeating-linear-gradient(135deg, #f3e2be 0 11px, #efc97b 11px 22px);
  --pattern2: repeating-linear-gradient(135deg, #d9b682 0 5px, transparent 5px 20px);
  --title-font: 'Montserrat', 'Fira Mono', Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
  /* Spacing units */
  --space-xxs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 40px;
}

/* Page container & grid system */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ======================
   TYPOGRAPHY
   ====================== */
h1, h2, h3, h4 {
  font-family: var(--title-font);
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 1.5px 1.5px 0 var(--color-retro-mustard), 0 2px 6px rgba(100,70,30,0.09);
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

p, label, li, strong {
  font-family: var(--body-font);
  color: #28241a;
  font-size: 1rem;
}

.subheadline, .thank-you-message, .next-steps-info {
  font-size: 1.25rem;
  color: var(--color-retro-brown);
  margin-bottom: 18px;
  font-family: var(--body-font);
  font-weight: 400;
}
strong { font-weight: bold; }

ul, ol {
  margin-bottom: var(--space-md);
  margin-left: 1.5rem;
}
ul > li, ol > li {
  position: relative;
  margin-bottom: 8px;
}

.text-section {
  max-width: 700px;
}

/* =======================
   HEADER / NAVIGATION
   ======================= */
header {
  background: var(--pattern1);
  border-bottom: 2px solid var(--color-retro-mustard);
  box-shadow: 0 2px 16px 0 rgba(27,23,17,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
.logo img {
  width: 145px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(27,23,17,0.07);
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: var(--title-font);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 7px;
  transition: var(--transition);
  border: none;
  background: none;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-retro-mustard);
  color: #332313;
  text-decoration: none;
  outline: none;
}

.cta-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--title-font);
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: 1.09rem;
  border: none;
  border-radius: var(--radius-lg);
  padding: 12px 34px;
  margin-left: 8px;
  box-shadow: 0 2px 10px #e3ddcd77;
  transition: var(--transition);
  position: relative;
  z-index: 3;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-retro-orange);
  color: #261a03;
  box-shadow: 0 4px 18px #ca883266;
  transform: translateY(-3px) scale(1.03);
}

/* ==========================
   MOBILE MENU STYLES
   ========================== */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 101;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(27,23,17,.13);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-retro-orange);
  color: #fff;
  outline: 2px solid var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--pattern2), var(--color-bg);
  z-index: 200;
  box-shadow: 0 4px 36px #867bb933;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 30px 30px 30px;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.72,.11,.27,1);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-retro-mustard);
  color: #312a21;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22px; right: 22px;
  z-index: 5;
  box-shadow: 0 2px 12px #e3ddcd66;
  transition: var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-retro-orange);
  color: #fff;
  outline: 2px solid var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--title-font);
  font-size: 1.12rem;
  color: var(--color-retro-brown);
  padding: 12px 16px;
  border-radius: 9px;
  background: none;
  transition: var(--transition);
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-retro-mustard);
  color: var(--color-primary);
}

@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 899px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ======================
   SECTION & CARD STYLES
   ====================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  box-shadow: var(--vintage-shadow);
  position: relative;
}
.hero {
  background: var(--pattern1), var(--color-bg-section);
  border-bottom: 2.5px dashed var(--color-retro-orange);
  margin-bottom: 0;
  padding-top: 62px;
  padding-bottom: 46px;
}
.cta-section {
  background: var(--pattern2), var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px #e3ddcd88;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ======= FLEX LAYOUTS ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffef8;
  border-radius: var(--radius-md);
  box-shadow: var(--vintage-shadow);
  padding: 34px 26px 26px 26px;
  flex: 1 1 270px;
}
.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: #fffefc;
  border-left: 7px solid var(--color-retro-mustard);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px 0 #dabf883e;
  margin-bottom: 24px;
  font-size: 1.08rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================
   SECTION GRIDS
   ================ */

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid > li, .feature-grid > div {
  background: #faf7e6;
  border: 2px solid #efd59b;
  border-radius: var(--radius-md);
  padding: 26px 19px;
  box-shadow: var(--vintage-shadow);
  flex: 1 1 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 31%;
}
.feature-grid img { width: 42px; margin-bottom: 8px; }

.service-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card-list > li {
  flex: 1 1 320px;
  background: #fffef9;
  border-radius: var(--radius-md);
  min-width: 250px;
  border: 2px solid #ecd67c;
  box-shadow: 0 4px 14px #dac28318;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.service-card-list .cta-btn { margin-top: 6px; }

.brand-values-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--space-md);
}
.certifications,
.years-experience {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-xs);
  background: #f9eecb;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: 0 1px 7px #eac96931;
}

.service-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.service-detailed-list > li {
  flex: 1 1 340px;
  background: #fffefc;
  border-radius: var(--radius-md);
  border: 2px solid #ead497;
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.service-benefits, .strategy-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #faf7e9;
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}
.service-benefits > li,
.strategy-benefits > li { flex: 1 1 210px; }

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  background: #faf7e6;
  border-radius: var(--radius-md);
  padding: 24px 10px;
  margin-bottom: 16px;
  justify-content: center;
}
.stats-grid > li {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fffbed;
  border: 2px solid #efd59b;
  border-radius: var(--radius-md);
  padding: 22px 13px 8px 13px;
  box-shadow: 0 2px 9px #dec68914;
}
.stats-grid img { width: 38px; margin-bottom: 7px; }
.stats-grid strong { font-size: 2.1rem; color: var(--color-retro-orange);margin-bottom: 2px; }
.stats-grid span { font-size: 1rem; color: var(--color-primary); text-align: center; }

.partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.partner-logos img { height: 46px; }

/* FAQ section */
.strategy-faq {
  margin-top: 32px;
  padding: 24px 18px;
  background: #e8e0c6;
  border-radius: var(--radius-md);
}
.strategy-faq h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.strategy-faq ul { padding-left: 12px; }
.strategy-faq ul > li { margin-bottom: 14px; }
.strategy-faq strong { color: var(--color-retro-brown); }

.strategy-service-card {
  background: #fffef9;
  border-radius: var(--radius-md);
  border: 2px solid #eed691;
  box-shadow: 0 2px 12px #d5b07321;
  padding: 28px 24px 24px 24px;
  margin-bottom: 22px;
}

/* Workshops / List */
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.workshop-list > li {
  flex: 1 1 310px;
  background: #fdefd6;
  border-radius: var(--radius-md);
  border: 2px solid #ebc98a;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.workshop-benefit {
  color: var(--color-retro-brown);
  margin-top: 14px;
  font-style: italic;
}

/* ================
   TESTIMONIALS
   ================ */
.testimonials {
  background: var(--color-bg-section);
  border-top: 2px solid var(--color-retro-mustard);
  padding-bottom: 36px;
}
.testimonials h2, .testimonials h1 {
  color: var(--color-retro-blue);
}
.testimonial-card blockquote {
  color: #222;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card p {
  margin: 0;
  color: var(--color-retro-brown);
}

/* ========== CTA Section ========== */
.cta-section h2 {
  color: #58512a;
  text-shadow: 1px 1px 0 #ecdba3;
}
.cta-section p {
  color: #393211;
  font-size: 1.13rem;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 40px 0 18px 0;
  box-shadow: 0 -3px 20px #8d796633;
  margin-top: 60px;
  position: relative;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: var(--title-font);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 5px;
  transition: var(--transition);
  background: none;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-retro-mustard);
  color: var(--color-primary);
}
.footer-contact {
  color: var(--color-accent);
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.brand-credit {
  color: #f8ecd7;
  font-family: var(--body-font);
  font-size: 0.97rem;
  text-align: left;
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 19px;
  background: #fff6da;
  border-top: 2px solid var(--color-retro-brown);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 26px #e3ba6033, 0 1px 7px #dbc28630;
  padding: 24px 28px;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp 0.33s cubic-bezier(.41,.61,.21,1);
  transition: transform 0.3s;
}
@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
#cookie-consent-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  font-family: var(--title-font);
  border-radius: var(--radius-md);
  border: none;
  padding: 8px 20px;
  margin: 0 2px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
  box-shadow: 0 1px 5px #e3cfba23;
  transition: var(--transition);
}
.cookie-accept-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: var(--color-retro-orange);
  color: #fff;
}
.cookie-reject-btn {
  background: #d4be9f;
  color: var(--color-retro-brown);
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #c98f50;
  color: #fff;
}
.cookie-settings-btn {
  background: transparent;
  color: var(--color-retro-brown);
  border: 2px solid #ebc51f;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #f3eac6;
  color: var(--color-primary);
}

/* COOKIE PREFERENCES MODAL */
#cookie-preferences-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34, 28, 16, 0.66);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
#cookie-preferences-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff6da;
  padding: 42px 29px 27px 29px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 44px #aa8f6e2e;
  min-width: 340px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: fadeInUp .33s cubic-bezier(.41,.61,.21,1);
}
.cookie-modal-content h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}
.cookie-modal-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal-option label {
  font-size: 1.03rem;
  color: #312a21;
  font-family: var(--body-font);
}
.cookie-modal-close {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 6px 18px;
  align-self: flex-end;
  margin-top: 12px;
  font-size: 1rem;
  font-family: var(--title-font);
  font-weight: bold;
  box-shadow: 0 1px 6px #dccfbd31;
  transition: var(--transition);
}
.cookie-modal-close:hover {
  background: var(--color-retro-orange);
  color: #fff;
}

.cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 44px;
  height: 24px;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #e3ceae;
  transition: .2s;
  border-radius: 24px;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-secondary);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

.cookie-modal-category-desc {
  font-size: 0.972rem;
  color: #716a5a;
  font-style: italic;
}

/* ============================
   CONTACT + MAPS + LOCATION
   ============================ */
.contact-details, .map-location, .public-transport-info {
  background: #f3eac5;
  border-radius: var(--radius-md);
  padding: 17px 14px 11px 14px;
  margin-bottom: 13px;
  box-shadow: 0 1px 4px #e6cfb129;
}

.contact-details a {
  color: var(--color-primary);
  font-weight: bold;
}

/* ========================
   RESPONSIVE & MOBILE
   ======================== */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .service-card-list > li, .feature-grid > li, .feature-grid > div, .stats-grid > li, .service-detailed-list > li, .workshop-list > li {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    gap: 10px;
    flex-direction: row;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.42rem; }
  .section, .cta-section, .hero { padding: 23px 7px; }
  .feature-grid, .service-card-list, .service-detailed-list, .stats-grid, .workshop-list {
    flex-direction: column;
    gap: 12px;
  }
  .content-wrapper, .content-grid { gap: 20px; }
  .testimonial-card { flex-direction: column; gap: 8px; padding: 12px; font-size: 1rem; }
  .text-image-section { flex-direction: column; gap: 17px; }
  .partner-logos img { height: 37px; }
  footer .container { gap: 15px; }
  #cookie-consent-banner { flex-direction: column; padding: 15px 11px; gap: 10px; font-size: .97rem; }
  .cookie-btn-group { margin-left: 0; }
  #cookie-preferences-modal .cookie-modal-content { padding: 22px 6vw 13px 6vw; }
}

/* Spacing between sections/cards */
section, .section, .cta-section, .hero {
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
}
@media (max-width: 600px) {
  .section, .cta-section, .hero { margin-bottom: 30px; }
}

/* ===============================
   SHADOWS, EFFECTS, MICROINTERACTIONS
   =============================== */
.card, .testimonial-card, .feature-grid > li, .feature-grid > div, .service-card-list > li, .service-detailed-list > li, .stats-grid > li, .strategy-service-card, .workshop-list > li {
  transition: box-shadow .18s, transform .16s;
}
.card:hover, .testimonial-card:hover, .feature-grid > li:hover, .feature-grid > div:hover, .service-card-list > li:hover, .service-detailed-list > li:hover, .stats-grid > li:hover, .workshop-list > li:hover {
  box-shadow: 0 6px 40px #e3ba6066, 0 2px 16px #e6ca994d;
  transform: translateY(-3px) scale(1.015);
}

/* ===============
   MISC
   =============== */
::-webkit-scrollbar {width: 9px; background: #fbeccb; border-radius: 9px;}
::-webkit-scrollbar-thumb {background: #ecd67c; border-radius: 9px;}

/* Separator decorative (retro-style)! */
.section:after {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  margin: 33px auto 0 auto;
  border-radius: 2.5px;
  background: repeating-linear-gradient(90deg, #978155 0 11px, #e7d19f 11px 22px);
  opacity: 0.17;
}

/* ===================
   PRINT SUPPORT
   =================== */
@media print {
  body { background: #fff !important; }
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent-banner, #cookie-preferences-modal { display: none !important; }
  .section, .cta-section, .hero { box-shadow: none; border: none; }
}
