/* ===== RESET & BASE STYLES ===== */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF7EB;
  color: #252122;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #0D3B66;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F25C54;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
blockquote {
  font-style: italic;
  color: #6C6147;
  border-left: 4px solid #EDAE49;
  padding-left: 20px;
  margin: 16px 0 24px;
}

/* ===== VINTAGE RETRO BRAND COLOR PALETTE/STYLE ===== */
:root {
  --primary: #0D3B66;
  --secondary: #43B0A5;
  --accent: #F4F4F4;
  --vintage-yellow: #EDAE49;
  --vintage-red: #F25C54;
  --beige-bg: #FFF7EB;
  --brown: #6C6147;
  --offwhite: #F9F8F6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; line-height: 1.2; margin-bottom: 18px; }
h2 { font-size: 1.8rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.05rem; margin-bottom: 8px; }
p, ul, ol, dl { font-size: 1rem; margin-bottom: 12px; }
.subheadline {
  font-size: 1.2rem;
  color: var(--brown);
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* ===== LAYOUT CONTAINERS & SPACING ===== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .service-cards, .articles, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.content-grid { gap: 20px; justify-content: space-between; }
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: var(--offwhite);
  box-shadow: 0 3px 12px 0 rgba(34,31,31,0.10), 0 1.5px 0 0 var(--vintage-yellow);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 2px rgba(34,31,31,0.12),0 2px 0 0 var(--vintage-yellow);
  transform: translateY(-4px);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FAF3E6;
  border: 2px dashed var(--vintage-yellow);
  border-radius: 16px;
  padding: 20px 28px 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(67,59,34,0.08);
  color: #252122;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===== NAVIGATION & HEADER ===== */
header {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border-bottom: 4px solid var(--vintage-yellow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 0;
}
.logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  color: #fff;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--vintage-yellow);
  transition: width 0.2s;
  margin: 2px auto 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--vintage-yellow);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav .cta {
  background: var(--vintage-red);
  color: #fff;
  padding: 9px 22px;
  border-radius: 20px 18px 22px 17px;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 2px 8px 0 rgba(242,92,84,0.16);
  border: none;
  transition: background 0.19s, color 0.19s;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: var(--vintage-yellow);
  color: var(--primary);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 202;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--primary);
  z-index: 201;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.5, .185, .55, 1);
  box-shadow: 2px 0 12px 2px rgba(34,31,31,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 32px 8px 0;
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24px 32px 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.16rem;
  padding: 12px 0;
  position: relative;
  border-bottom: 1px solid var(--accent);
  font-weight: 600;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active, .mobile-nav a:focus {
  color: var(--vintage-yellow);
}

@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .logo img { height: 38px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 62px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo img {
    height: 34px;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--primary);
  color: #fff;
  padding: 70px 0 40px 0;
  border-bottom: 7px double var(--vintage-yellow);
  position: relative;
}
.hero-section .container {
  justify-content: center;
  align-items: center;
}
.hero-section .content-wrapper {
  max-width: 740px;
  align-items: flex-start;
}
.hero-section h1 {
  color: #fff;
  text-shadow: 1.5px 1.5px 0 var(--vintage-yellow);
  margin-bottom: 12px;
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.2px;
}
.hero-section .subheadline {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 22px;
}
.hero-section .cta {
  background: var(--vintage-yellow);
  color: var(--primary);
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 13px 32px;
  border-radius: 26px 22px 28px 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px 0 rgba(34,31,31,0.16);
  transition: background 0.18s, color 0.18s, transform 0.08s;
  margin-top: 16px;
  display: inline-block;
  text-shadow: none;
}
.hero-section .cta:hover, .hero-section .cta:focus {
  background: var(--vintage-red);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}

/* ===== FEATURES & CARDS ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature {
  background: var(--offwhite);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 24px 18px;
  min-width: 230px;
  flex: 1 1 240px;
  max-width: 260px;
  box-shadow: 0 3px 12px 0 rgba(67,59,34,0.07);
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  transition: border 0.17s, box-shadow 0.17s;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  height: 40px;
  margin-bottom: 8px;
}
.feature h3 {
  color: var(--primary);
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.feature:hover, .feature:focus {
  border-color: var(--vintage-yellow);
  box-shadow: 0 12px 32px 0 rgba(237,174,73,0.15);
}

.benefit-list {
  list-style: disc inside square;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.benefit-list li {
  font-size: 1.05rem;
}

.process-overview {
  background: var(--offwhite);
  border-top: 3px dashed var(--brown);
  border-bottom: 3px dashed var(--vintage-yellow);
  margin-bottom: 60px;
  padding: 44px 20px 38px 20px;
}
.process-steps {
  list-style: decimal inside;
  margin-bottom: 24px;
}
.process-steps li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--primary);
}

/* ===== SERVICE CARDS ===== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 36px;
}
.service-card {
  background: var(--beige-bg);
  border: 2.5px solid var(--secondary);
  border-radius: 18px;
  box-shadow: 0 5px 12px 0 rgba(67,59,34,0.10);
  padding: 24px 20px;
  min-width: 225px;
  flex: 1 1 240px;
  max-width: 260px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: border 0.15s, box-shadow 0.17s, transform 0.17s;
  margin-bottom: 20px;
}
.service-card:hover {
  border-color: var(--vintage-yellow);
  box-shadow: 0 12px 28px 0 rgba(237,174,73,0.12);
  transform: translateY(-4px) scale(1.025);
}
.service-card img {
  height: 34px; margin-bottom: 10px;
}

/* ===== TESTIMONIALS ===== */
.stars {
  color: var(--vintage-red);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  letter-spacing: 2px;
  margin-bottom: 3px;
}
.testimonial-card blockquote {
  border-left: none;
  color: #212129;
  background: none;
  font-style: italic;
  font-size: 1.05rem;
  padding-left: 0;
  margin-bottom: 8px;
}
.testimonial-card .author {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

/* ===== ARTICLES, FAQ & GLOSSARY STYLE ===== */
.articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-bottom: 4px;
}
.articles li {
  background: var(--beige-bg);
  border-left: 5px solid var(--vintage-yellow);
  padding: 15px 18px;
  border-radius: 8px;
  font-size: 1.04rem;
}
.faq-list, .glossary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list dt, .glossary-list dt {
  font-weight: bold;
  color: var(--vintage-red);
  margin-bottom: 3px;
  font-family: 'Montserrat', sans-serif;
}
.faq-list dd, .glossary-list dd {
  margin-left: 14px;
  color: #39332B;
  margin-bottom: 8px;
}

/* ===== BUTTONS & LINKS ===== */
.cta {
  display: inline-block;
  background: var(--vintage-yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 11px 32px;
  border-radius: 23px 20px 25px 18px;
  border: none;
  letter-spacing: 1px;
  margin-top: 12px;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.07s;
  box-shadow: 0 4px 16px 0 rgba(67,59,34,.08);
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: var(--vintage-red);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  margin-top: 48px;
  border-top: 5px double var(--vintage-yellow);
  padding-top: 30px;
}
footer .container {
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.footer-nav a {
  color: var(--accent);
  transition: color 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vintage-yellow);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 1rem;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}
.footer-branding {
  font-size: 0.98rem;
  color: #CCBFA3;
  padding-bottom: 22px;
  text-align: center;
}

/* ===== ABOUT / GENERIC TEXT SECTIONS ===== */
.text-section {
  background: var(--offwhite);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 2px 10px 0 rgba(67,59,34,0.05);
  margin-bottom: 30px;
  border-left: 7px solid var(--vintage-yellow);
}

/* ===== OFFICE INFO & CONTACT ===== */
.office-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.office-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-embed {
  background: var(--accent);
  border-radius: 10px;
  padding: 18px 12px;
  margin-top: 12px;
  font-size: 0.98rem;
}

/* ===== CASE STUDIES ===== */
.case-study {
  background: var(--beige-bg);
  border-left: 6px solid var(--vintage-red);
  border-radius: 11px;
  padding: 20px 18px 16px 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px 0 rgba(34,31,31,0.07);
}

/* ===== SPECIAL LIST STYLES ===== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.services-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--offwhite);
  padding: 12px 10px;
  border-radius: 7px;
  font-size: 1.04rem;
  margin-bottom: 2px;
  border-left: 4px dotted var(--vintage-yellow);
}
.services-list img {
  height: 26px;
  margin-right: 6px;
}

/* ===== MEDIA QUERIES: RESPONSIVENESS ===== */
@media (max-width: 900px) {
  .feature-grid, .service-cards,
  .card-container, .content-grid, .footer-contact {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3, h4 { font-size: 1.01rem; }
  .hero-section {
    padding: 40px 0 25px 0;
    border-bottom-width: 5px;
  }
  .feature-grid, .service-cards, .card-container, .content-grid, .footer-contact {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service-card, .card {
    min-width: 92vw;
    max-width: 99vw;
    padding-left: 16px; padding-right: 14px;
  }
  .section { /* mandatory pattern */
    margin-bottom: 38px;
    padding: 20px 8px;
  }
  .card { padding: 18px 12px; }
  .testimonial-card { padding: 16px 10px 16px 12px; }
  .text-section { padding: 16px 8px; }
  .footer-contact { gap: 14px; }
  .articles li { padding: 10px 7px; }
  .mobile-nav { gap: 18px; padding: 22px 15px 0 22px; }
  .main-nav { display: none !important; } /* hide desktop nav */
  .text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
}
@media (max-width: 480px) {
  html, body { font-size: 14px; }
  .hero-section { padding: 24px 0 14px 0; }
  .footer-branding { padding-bottom: 14px; font-size: 0.93rem; }
}

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffbe7;
  border-top: 3px dashed var(--vintage-yellow);
  color: #252122;
  z-index: 9999;
  box-shadow: 0 -2px 18px 0 rgba(67,59,34,0.22);
  padding: 22px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  font-size: 1rem;
  animation: banner-slide-in 0.55s cubic-bezier(.85,.01,.59,1.02);
}
@keyframes banner-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .button-group {
  display: flex; flex-direction: row; gap: 12px; margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 18px;
  padding: 8px 24px;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(67,59,34,0.05);
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .accept-all {
  background: var(--vintage-yellow);
  color: var(--primary);
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner .reject-all {
  background: var(--accent);
  color: var(--vintage-red);
  border: 1.7px solid var(--vintage-red);
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--beige-bg);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--secondary);
  color: #fff;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,33,34,0.70);
  z-index: 10010;
  display: none;
  justify-content: center;
  align-items: center;
  animation: modal-fade-in 0.32s cubic-bezier(.85,.01,.59,1.02);
}
.cookie-modal.open { display: flex; }
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe7;
  color: #252122;
  border-radius: 12px;
  box-shadow: 0 12px 36px 0 rgba(237,174,73,0.09);
  padding: 38px 22px 24px 24px;
  width: 92vw; max-width: 432px;
  text-align: left;
  position: relative;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-content-pop 0.27s cubic-bezier(.46, .98, .53, 1.03);
}
@keyframes modal-content-pop {
  from { transform: scale(0.90); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  color: var(--vintage-yellow);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-size: 1.18rem;
}
.cookie-modal-content label {
  font-size: 1rem; cursor: pointer; margin-bottom: 7px; display: flex; align-items: center; gap: 9px;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: var(--vintage-yellow);
  margin-right: 6px;
}
.cookie-modal-content .close-btn {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none;
  font-size: 2rem; color: #888; cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-content .close-btn:hover, .cookie-modal-content .close-btn:focus {
  color: var(--vintage-red);
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-content .modal-actions button {
  border: none;
  border-radius: 16px;
  padding: 7px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(67,59,34,0.05);
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-content .modal-actions .save {
  background: var(--vintage-yellow);
  color: var(--primary);
}
.cookie-modal-content .modal-actions .save:hover, .cookie-modal-content .modal-actions .save:focus {
  background: var(--vintage-red); color: #fff;
}
.cookie-modal-content .modal-actions .cancel {
  background: var(--beige-bg);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-modal-content .modal-actions .cancel:hover, .cookie-modal-content .modal-actions .cancel:focus {
  background: var(--secondary); color: #fff;
}

/* ===== MICRO-ANIMATIONS ===== */
.feature, .card, .service-card, .testimonial-card, .case-study, .articles li, .text-section {
  transition: box-shadow 0.19s, transform 0.17s, border 0.14s;
}
.feature:hover, .service-card:hover, .card:hover, .testimonial-card:hover, .case-study:hover, .articles li:hover, .text-section:hover {
  box-shadow: 0 5px 20px 0 rgba(239,193,50,0.096), 0 2px 0 0 var(--vintage-yellow);
  transform: scale(1.012);
}

/* ===== ACCESSIBILITY ===== */
::-webkit-selection {
  background: var(--vintage-yellow);
  color: var(--primary);
}
::selection {
  background: var(--vintage-yellow);
  color: var(--primary);
}
a:focus, button:focus {
  outline: 2px solid var(--vintage-red);
  outline-offset: 1.5px;
}

/* ===== SPECIAL VINTAGE PATTERNS & VISUALS ===== */
.section, .text-section, .hero-section, .testimonial-card, .service-card, .feature {
  background-image: repeating-linear-gradient(135deg, rgba(245,236,224,0.09) 0 20px, transparent 20px 40px), repeating-linear-gradient(25deg, rgba(237,174,73,0.05) 0 18px, transparent 18px 50px);
}

/* ===== PRINT ===== */
@media print {
  header, footer, .cookie-banner { display: none !important; }
  .container { max-width: 100vw !important; padding: 0 !important; }
}
