/* ============================== */
/*         CSS RESET& BASICS      */
/* ============================== */
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6; 
  background: #F6E7D7;
  color: #242320;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #4B4D3E; 
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #CD6A3D; /* retro red-brown highlight */
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

/* =============== BRAND VINTAGE RETRO COLORS =============== */
:root {
  --primary: #1D3557; /* Navy blue */
  --secondary: #457B9D; /* Blue */
  --accent: #F1FAEE; /* Pale beige */
  --bg-main: #F6E7D7; /* Cream retro */
  --bg-alt: #F9F5EF;
  --cta: #CD6A3D; /* Retro red-brown */
  --yellow: #FFC857; /* Mustard */
  --green: #6A994E; /* Olive green */
  --brown: #A27B5C; /* Retro brown */
  --dark: #332B22;
  --white: #FFF;
}

/* =============== FONTS =============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700,900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  letter-spacing: .5px;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  text-shadow: 2px 2px 0 #FFE395;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
.subtitle, .confirmation-message {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
}
p, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  background: var(--bg-alt);
  padding: 18px 26px;
  border-left: 5px solid var(--yellow);
  margin-bottom: 12px;
  border-radius: 12px;
}

/****************************************/
/* ============ LAYOUTS ================ */
/****************************************/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-main);
  border-radius: 30px 30px 18px 18px;
  box-shadow: 0 4px 18px rgba(120,80,50,0.06);
}

/*********** FLEX CONTAINERS ***********/
.card-container,
.feature-grid,
.service-cards,
.impact-stats,
.blog-post-list,
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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: var(--bg-alt);
  border-radius: 14px 24px 12px 8px;
  box-shadow: 0 2px 8px rgba(120,80,50,0.13);
  margin-bottom: 20px;
  border: 2.5px dashed var(--cta);
  transition: box-shadow .2s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(205,106,61,0.20);
  border-color: var(--yellow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** CARD PATTERNS *****/
.card,
.service-card,
.case-study-summary,
.blog-highlight {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 16px 24px 12px 8px;
  box-shadow: 0 2px 8px rgba(61,47,13,0.08);
  padding: 24px 20px 18px 20px;
  border: 2px solid var(--yellow);
  transition: box-shadow .17s, border-color .2s;
}
.card:hover, .service-card:hover, .blog-highlight:hover {
  box-shadow: 0 12px 36px rgba(255,200,87,0.17);
  border-color: var(--cta);
  z-index: 2;
}

/****************************************/
/* ======= HEADER & NAVIGATION ========= */
/****************************************/
header {
  width: 100vw;
  background: linear-gradient(90deg, #F6E7D7 85%, #FFE395 100%);
  padding-bottom: 0px;
  box-shadow: 0 2px 12px rgba(140, 100, 57, 0.07);
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 26px;
}
.main-nav > a img {
  max-height: 38px;
}
.main-nav ul {
  display: flex;
  gap: 18px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: bold;
  letter-spacing: .03em;
  color: var(--primary);
  padding: 7px 8px;
  border-radius: 6px;
  transition: background .13s, color .16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus, .main-nav ul li.active > a {
  background: var(--yellow);
  color: var(--dark);
}
.cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 48px 20px 30px 20px;
  font-size: 1.12rem;
  font-weight: 800;
  font-family: 'Montserrat',Arial,sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(205,106,61,0.09);
  transition: background .24s, color .17s, box-shadow .14s, border-color .2s;
  text-transform: uppercase;
}
.cta.primary {
  background: var(--cta);
  color: var(--bg-main);
  margin-left: 16px;
  border: 2px solid var(--cta);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--yellow);
  color: var(--primary);
  border-color: var(--brown);
  box-shadow: 0 8px 28px rgba(255,200,87,0.21);
}
.cta.secondary {
  background: var(--yellow);
  color: var(--primary);
  border: 2px solid var(--yellow);
  margin-left: 8px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--cta);
  color: var(--accent);
  border-color: var(--cta);
  box-shadow: 0 10px 40px rgba(205,106,61,.11);
}

/***** MOBILE MENU BUTTON *****/
.mobile-menu-toggle {
  display: none;
  background: var(--cta);
  color: var(--accent);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 45;
  box-shadow: 0 4px 10px rgba(205,106,61,0.14);
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--yellow);
  color: var(--dark);
}

/***** SLIDE MOBILE MENU OVERLAY *****/
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(90deg,#F6E7D7 90%,#FFE395 100%);
  z-index: 1040;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.6,.02,.22,1);
  box-shadow: 4px 0 36px rgba(128,90,45,0.11);
  padding: 32px 22px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--cta);
  color: var(--accent);
  font-size: 2rem;
  border: none;
  border-radius: 22px 10px 30px 13px;
  width: 47px;
  height: 47px;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(205,106,61,0.13);
  transition: background .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--yellow);
  color: var(--dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1.32rem;
  padding: 12px 6px;
  border-radius: 8px;
  font-weight: bold;
  transition: background .13s, color .11s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--yellow);
  color: var(--dark);
}

/****************************************/
/* =============== HERO ================ */
/****************************************/
.hero {
  background: linear-gradient(98deg,#FFE395 10%, #F6E7D7 83%);
  border-bottom: 3px solid var(--brown);
  margin-bottom: 40px;
  padding: 50px 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero .content-wrapper {
  max-width: 680px;
  margin: 0 auto;
  align-items: flex-start;
  text-align: left;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 2px 2px 0 #FFC857;
}
.hero .cta.primary {
  margin-top: 24px;
}

/****************************************/
/* ================ FEATURES =========== */
/****************************************/
.features {
  background: var(--bg-alt);
  border-radius: 22px 22px 10px 24px;
  margin-bottom: 54px;
  padding: 40px 0 36px 0;
}
.feature-grid {
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li {
  background: var(--accent);
  border-radius: 16px 24px 12px 8px;
  padding: 20px 16px 16px 16px;
  flex: 1 1 235px;
  box-shadow: 0 2px 8px rgba(77,75,65,0.13);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid var(--brown);
  min-width: 210px;
  transition: box-shadow .2s, border-color .2s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px rgba(255,200,87,0.14);
  border-color: var(--cta);
}
.feature-grid img {
  height: 36px;
  margin-bottom: 13px;
}

/****************************************/
/* =============== SERVICES ============ */
/****************************************/
.services-list li,
.price-list li,
.service-benefits li {
  font-size: 1.08rem;
  font-family: inherit;
  color: var(--primary);
  padding-left: 20px;
  position: relative;
  margin-bottom: 11px;
}
.services-list li:before,
.price-list li:before,
.service-benefits li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 1.1em;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.service-card {
  flex: 1 1 240px;
  min-width: 210px;
  background: var(--white);
  border: 2.5px solid var(--yellow);
  border-radius: 16px 24px 12px 8px;
  box-shadow: 0 2.5px 8px rgba(235,156,74,0.07);
  margin-bottom: 20px;
  padding: 20px 16px 20px 20px;
  transition: box-shadow .14s, border-color .18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card h3 {
  color: var(--brown);
  margin-bottom: 8px;
}
.service-card .service-price {
  font-size: 1.12rem;
  background: var(--yellow);
  color: var(--primary);
  border-radius: 16px;
  padding: 3px 14px;
  font-weight: bold;
  margin-top: 16px;
}
.service-card:hover {
  box-shadow: 0 10px 30px rgba(205,106,61,0.10);
  border-color: var(--cta);
}

/****************************************/
/* ======= TESTIMONIALS/REVIEWS ======== */
/****************************************/
.testimonials, .testimonial-slider {
  width: 100%;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--brown);
  font-family: 'Montserrat',Arial,sans-serif;
  margin-top: 9px;
  font-style: italic;
  opacity: .75;
}
.testimonials h2 {
  color: var(--cta);
}

/****************************************/
/* =========== CTA BANNER ============== */
/****************************************/
.cta-banner {
  background: var(--primary);
  color: var(--accent);
  border-radius: 28px 16px 10px 22px;
  padding: 36px 0;
  text-align: center;
  margin-bottom: 54px;
}
.cta-banner h2 {
  color: var(--accent);
  margin-bottom: 19px;
}
.cta-banner .cta {
  box-shadow: 0 4px 16px rgba(241,250,238,0.12);
}

/****************************************/
/* ============== FOOTER =============== */
/****************************************/
footer {
  background: linear-gradient(95deg, #F9F5EF 85%, #FFC857 100%);
  margin-top: 60px;
  padding: 28px 0 8px 0;
  border-top: 2.5px solid var(--brown);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-menu a {
  color: var(--dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: .84;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background .11s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--yellow);
  color: var(--primary);
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  color: #895F3D;
  opacity: .92;
}

/****************************************/
/* ======== OTHER CONTENT LAYOUTS ====== */
/****************************************/
.text-section, .company-info, .contact-details, .brand-mission, .team-short-intro {
  margin-bottom: 24px;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.values-list li strong {
  color: var(--cta);
}

/****************************************/
/* =============== FAQ ================= */
/****************************************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--bg-alt);
  border-radius: 17px 17px 4px 17px;
  box-shadow: 0 2px 8px rgba(61,47,13,0.06);
  padding: 18px 22px 13px 22px;
  margin-bottom: 17px;
  border: 2px dashed var(--brown);
  transition: border-color .2s;
}
.faq-item:hover {
  border-color: var(--cta);
}

/****************************************/
/* ============= BLOG ================== */
/****************************************/
.blog-intro {
  background: var(--bg-main);
  border-radius: 14px 34px 24px 12px;
  padding: 38px 0 32px 0;
}
.highlighted-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.blog-highlight {
  flex: 1 1 250px;
  background: var(--accent);
  border-radius: 18px 24px 8px 24px;
  border: 2px solid var(--yellow);
  box-shadow: 0 1px 8px rgba(205,106,61,0.08);
  padding: 20px 16px 16px 20px;
  margin-bottom: 20px;
  transition: border-color .12s, box-shadow .12s;
}
.blog-highlight:hover {
  border-color: var(--cta);
  box-shadow: 0 8px 24px rgba(205,106,61,0.12);
}
.blog-highlight h3 {
  color: var(--secondary);
}
.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-post-list li a {
  color: var(--primary);
  text-decoration: underline dotted var(--cta) 1.5px;
  font-size: 1.07rem;
  padding-left: 10px;
}
.blog-post-list li a:hover {
  color: var(--cta);
  text-decoration: underline solid var(--cta) 2px;
}

/****************************************/
/* ============== CONTACT ============== */
/****************************************/
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-email, .contact-address, .contact-hours, .contact-phone {
  color: var(--primary);
  font-weight: bold;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-alt);
  border-radius: 16px 22px 8px 20px;
  padding: 13px 20px;
  margin-top: 22px;
  color: var(--brown);
  font-size: 1.03rem;
}

/****************************************/
/* =========== THANK YOU PAGE ========== */
/****************************************/
.thank-you {
  background: var(--bg-main);
  border-radius: 30px 20px 18px 12px;
  padding: 48px 0 40px 0;
  text-align: center;
}
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you h2 {
  color: var(--cta);
}
.next-steps-info {
  color: var(--primary);
  margin-bottom: 30px;
}

/****************************************/
/* ========= COOKIE CONSENT ============ */
/****************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: linear-gradient(94deg, #F0DEBA 90%, #EFC769 100%);
  color: var(--dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  justify-content: space-between;
  padding: 22px 8vw 18px 7vw;
  box-shadow: 0 1px 12px 1px rgba(205,106,61,0.12);
  font-size: 0.98rem;
  border-top: 3px solid var(--brown);
  min-height: 58px;
  animation: cookieFadeIn .5s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner__text {
  flex: 2 1 280px;
  line-height: 1.5;
  color: var(--primary);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 9px;
  align-items: center;
}
.cookie-btn {
  background: var(--yellow);
  color: var(--primary);
  border: 2px solid var(--yellow);
  border-radius: 22px 14px 14px 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 7px 22px;
  font-size: 1rem;
  margin: 0 5px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(232,159,84,0.09);
  transition: background .14s, color .13s, border-color .2s;
}
.cookie-btn.accept {
  background: var(--cta);
  color: var(--accent);
  border: 2px solid var(--cta);
}
.cookie-btn.accept:hover {
  background: var(--yellow);
  color: var(--primary);
}
.cookie-btn.reject {
  background: #FFF4EC;
  color: var(--cta);
  border: 2px solid var(--cta);
}
.cookie-btn.reject:hover {
  background: var(--bg-alt);
  color: var(--brown);
  border-color: var(--brown);
}
.cookie-btn.settings {
  background: none;
  color: var(--primary);
  border: 2px dashed var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--bg-alt);
  color: var(--cta);
  border-color: var(--cta);
}

/***** Cookie Modal Popup *****/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  background: rgba(38,26,13,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}
.cookie-modal__panel {
  background: var(--accent);
  border-radius: 20px 34px 18px 18px;
  box-shadow: 0 2px 30px 3px rgba(205,106,61,0.21);
  padding: 37px 24px 29px 28px;
  width: 90vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalSlide .42s ease;
}
@keyframes cookieModalSlide {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal__panel h2 {
  color: var(--cta);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  padding: 10px 13px 10px 16px;
  border-radius: 12px 14px 6px 10px;
  margin-bottom: 11px;
}
.cookie-category label {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 19px;
  background: #D9E3DC;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background .15s;
  margin-left: 10px;
  cursor: pointer;
  border: none;
}
.cookie-switch:checked {
  background: var(--green);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  background: #FFF;
  border-radius: 50%;
  transition: left .18s;
  box-shadow: 0 1px 3px rgba(50,45,34,0.12);
}
.cookie-switch:checked:before {
  left: 19px;
  background: var(--yellow);
}

/****************************************/
/* =========== RESPONSIVE ============== */
/****************************************/
@media (max-width: 1200px) {
  .container { max-width: 920px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav {
    gap: 11px;
    padding: 13px 7px;
  }
  .main-nav ul {
    gap: 9px;
  }
  .card-container, .feature-grid, .service-cards {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.04rem; }
  .section {
    margin-bottom: 36px;
    padding: 25px 6px;
  }
  .features, .cta-banner, .thank-you, .hero, .blog-intro {
    padding: 20px 0 12px 0;
    border-radius: 16px 12px 15px 7px;
  }
  .main-nav ul, .main-nav .cta.primary { display: none; }
  .main-nav {
    padding: 13px 0 11px 12px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu, .footer-info {
    flex-direction: column;
    gap: 8px;
  }
  .service-cards, .highlighted-posts, .feature-grid, .case-study-cards, .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .card, .service-card, .case-study-summary, .blog-highlight, .testimonial-card {
    min-width: unset !important;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 15px 5vw 21px 5vw;
    gap: 8px 14px;
    font-size: 0.95rem;
  }
  .cookie-banner__actions { gap: 8px; justify-content: flex-start; }
}
@media (max-width: 520px) {
  .container { padding: 0 4px !important; }
  .hero .content-wrapper { padding: 0 3px; }
  .mobile-menu {
    padding: 12px 4px 12px 8px;
  }
  .cookie-modal__panel {
    padding: 22px 6px 22px 10px;
  }
  h1, h2, h3 { margin-bottom: 8px; }
}

/****************************************/
/* ============= PRINT ================= */
/****************************************/
@media print {
  * { background: none !important; color: #222 !important; box-shadow: none !important; }
  header, footer, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  main, .container, .content-wrapper {
    padding: 0 !important; margin: 0 !important;
  }
  .card, .service-card, .testimonial-card { border: none !important; box-shadow: none !important; }
}
