/* --------------------------------------------------
   CSS RESET & BASELINE
-------------------------------------------------- */
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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2EEEA;
  color: #32281d;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}
ul, ol {
  list-style: none;
}

/* --------------------------------------------------
   VARIABLES (RETRO COLORS, COMMON)
-------------------------------------------------- */
:root {
  --color-primary: #215A6D;
  --color-secondary: #F2EEEA;
  --color-accent: #FFC83D;
  --color-dark: #32281d;
  --color-light: #fff9ec;
  --color-text: #32281d;
  --color-muted: #968c83;
  --color-card-bg: #f7f2ec;
  --color-vintage-bg: #e4d5be;
  --color-border: #dfcbb0;
  --color-retro-red: #d35c4e;
  --color-retro-green: #6eb48c;
  --shadow-retro: 0 2px 12px 0 rgba(34,28,18,0.10);
  --radius-retro: 14px;
  --pattern-url: url('data:image/svg+xml;utf8,<svg width="18" height="18" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" fill="%23f7f2ec"/><rect y="9" width="18" height="9" fill="%23e4d5be"/><circle cx="5" cy="5" r="1" fill="%23dcc398" opacity=".18"/><circle cx="13" cy="13" r="1" fill="%23b7925b" opacity=".09"/></svg>');
}

/* --------------------------------------------------
   TYPOGRAPHY (RETRO)
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: var(--color-secondary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--color-primary);
  font-variation-settings: 'wght' 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  text-shadow: 1px 1px 0 #e4d5be, 0 2px 0 #fff7e2;
}
h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
p, li, blockquote {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 13px;
}
blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--color-retro-red);
  font-style: italic;
  border-left: 5px solid var(--color-retro-red);
  background: #fff7e2;
  padding: 16px 24px;
  margin: 0 0 12px 0;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
a:hover, .footer-nav a:hover, .main-nav a:hover, .mobile-nav a:hover {
  color: var(--color-accent);
}

/* --------------------------------------------------
   BASIC LAYOUT & CONTAINER
-------------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
main {
  padding-bottom: 60px;
}
.content-wrapper {
  padding: 0 0 10px 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-pattern, var(--color-card-bg));
  border-radius: var(--radius-retro);
  box-shadow: var(--shadow-retro);
  position: relative;
}

/* --------------------------------------------------
   RETRO PATTERNS (BACKGROUND)
-------------------------------------------------- */
.section {
  background: var(--color-card-bg) var(--pattern-url);
  background-repeat: repeat;
}
.hero {
  background: var(--color-vintage-bg) var(--pattern-url);
  background-size: auto;
  border-bottom: 6px solid var(--color-primary);
  border-radius: 0 0 var(--radius-retro) var(--radius-retro);
  margin-bottom: 60px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta {
  background: var(--color-retro-green) url('data:image/svg+xml;utf8,<svg width="18" height="18" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" fill="%236eb48c"/><rect y="12" width="18" height="6" fill="%23a4d5c2"/></svg>');
  background-repeat: repeat;
  border-radius: var(--radius-retro);
  box-shadow: 0 3px 16px 0 rgba(38,65,45,0.09);
  margin-bottom: 60px;
}
.cta h2, .cta p {
  color: #203b2a;
}

/* --------------------------------------------------
   NAVIGATION (DESKTOP & MOBILE BURGER MENU)
-------------------------------------------------- */
header {
  width: 100%;
  box-shadow: 0 2px 14px 0 rgba(34,28,18,0.04);
  background: var(--color-secondary);
  border-bottom: 2px solid var(--color-border);
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 12px 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 7px 14px;
  border-radius: 5px;
  transition: background 0.18s;
}
.main-nav a.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  margin-left: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 0 #e7b119;
  padding: 8px 22px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: background 0.18s, box-shadow 0.18s;
}
.main-nav a.btn-primary:hover {
  background: #ffd770;
  box-shadow: 0 4px 10px 0 #ffeab0;
  color: var(--color-primary);
}
header img {
  display: block;
  height: 48px;
  max-width: 160px;
  margin-right: 28px;
}

/* MOBILE MENU TOGGLE (HAMBURGER) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 17px;
  z-index: 1030;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.2rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(34,28,18,0.10);
  transition: background 0.20s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd770;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--color-vintage-bg);
  z-index: 2004;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
  box-shadow: 0 10px 32px 0 rgba(60,52,34,0.15);
  transition: transform 0.33s cubic-bezier(.77,0,.18,.99), opacity 0.2s;
  transform: translateX(-105%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 20px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.20s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ffd770;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 86px;
  width: 100vw;
  padding: 0 24px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  padding: 15px 0;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #e0dacb;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ffe9af;
  color: var(--color-retro-red);
}

/* HIDE DESKTOP NAV ON MOBILE, SHOW BURGER */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --------------------------------------------------
   FLEXBOX STRUCTURE FOR ALL LAYOUTS (NO GRID)
-------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature-grid > div {
  background: var(--color-light);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-retro);
  box-shadow: var(--shadow-retro);
  padding: 26px 22px 22px 22px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.22s, box-shadow 0.19s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  transform: translateY(-7px) scale(1.025) rotate(-1.1deg);
  box-shadow: 0 8px 36px -3px #ffeab0;
  border-color: var(--color-accent);
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 38px;
}
.card {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-retro);
  box-shadow: 0 2px 8px 0 rgba(34,28,18,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
  position: relative;
  padding: 32px 24px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #ede4da;
  border: 2.5px solid var(--color-accent);
  transform: translateY(-6px) scale(1.015) rotate(-1.1deg);
}
.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: #fffdf8;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-retro);
  box-shadow: 0 2px 16px 0 rgba(34,28,18,0.10);
  margin-bottom: 24px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 #ffd770;
  border-color: var(--color-accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 10px 0 35px 0;
}

/* --------------------------------------------------
   BUTTON & LINK STYLES (RETRO/VINTAGE)
-------------------------------------------------- */
.btn-primary, a.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 #ffe5a3;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  padding: 12px 38px;
  margin: 8px 0 0 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  position: relative;
}
.btn-primary:focus, .btn-primary:hover, a.btn-primary:hover, a.btn-primary:focus {
  background: #ffd770;
  color: var(--color-primary);
  transform: translateY(-4px) scale(1.03) rotate(-1.2deg);
  box-shadow: 0 4px 16px 0 #ffeab0;
}

/* Secondary retro button */
.btn-secondary {
  display: inline-block;
  background: var(--color-retro-red);
  color: #fff;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 26px;
  margin: 5px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.14s, color 0.14s, transform 0.18s;
  outline: none;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: #b84435;
  color: #fffde7;
  transform: translateY(-3px) scale(1.025);
}

/* Button micro-interactions for accessibility */
.btn-primary:active, .btn-secondary:active {
  transform: scale(.97);
}

/* --------------------------------------------------
   LAYOUT: FORMS, CONTACT, FOOTER
-------------------------------------------------- */
.contact-info-block {
  background: #f7ebe3;
  border-radius: var(--radius-retro);
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 8px 0 rgba(221,200,150,0.08);
  padding: 26px 24px 22px 24px;
  margin-bottom: 28px;
  font-size: 1rem;
}
.map-embed {
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  background: #ded3c1 url('data:image/svg+xml;utf8,<svg width="14" height="14" xmlns="http://www.w3.org/2000/svg"><rect width="14" height="14" fill="%23ded3c1"/><circle cx="6" cy="6" r="1" fill="%23dcc398" opacity=".17"/></svg>');
  border-top: 3px solid var(--color-primary);
  padding: 48px 0 32px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 6px;
  transition: color 0.2s, text-decoration 0.1s;
}
.footer-nav a:hover {
  color: var(--color-retro-red);
  text-decoration: underline dotted;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.social-links a {
  border-radius: 50%;
  background: var(--color-light);
  box-shadow: 0 2px 5px 0 #e8e2d0;
  padding: 8px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center; justify-content: center;
  transition: background 0.17s, box-shadow 0.17s;
}
.social-links a:hover {
  background: var(--color-accent);
  box-shadow: 0 4px 14px #ffeab0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.contact-info img {
  width: 19px;
  height: 19px;
  margin-right: 8px;
}
.contact-info a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.15s;
}
.contact-info a:hover {
  color: var(--color-accent);
}

/* --------------------------------------------------
   TESTIMONIALS RETRO CARD (STRONG CONTRAST)
-------------------------------------------------- */
.testimonial-card blockquote,
.testimonial-card p {
  color: #3a2912;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #93523b;
  border-left: 4px solid var(--color-retro-red);
  padding-left: 18px;
  background: #f7f1e0;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--color-primary);
}

/* --------------------------------------------------
   RESPONSIVENESS (MOBILE FIRST)
-------------------------------------------------- */
@media (max-width: 1140px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div {
    min-width: 180px;
    max-width: 100%;
  }
  .client-logos {
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-grid, .section {
    padding: 28px 8px;
  }
  .hero {
    min-height: 180px;
    padding: 30px 8px 27px 8px;
  }
  .feature-grid, .card-container, .card-grid, .client-logos {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: normal;
  }
  .feature-grid > div {
    margin-bottom: 16px;
    max-width: 100%;
  }
  .content-wrapper {
    padding: 0;
  }
  .section { margin-bottom: 42px; }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL (RETRO STYLE)
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 2110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 18px 18px 18px;
  gap: 18px;
  background: var(--color-vintage-bg);
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 -2px 16px 2px #dbc39873;
  animation: cookieFadeIn 0.38s cubic-bezier(.77,0,.18,.99);
}
@keyframes cookieFadeIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p, .cookie-banner span {
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  margin-top: 3px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary, .cookie-banner .btn-settings {
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  margin: 0 2px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-banner .btn-primary:hover, .cookie-banner .btn-primary:focus {
  background: #ffd770;
  color: var(--color-primary);
}
.cookie-banner .btn-secondary {
  background: var(--color-retro-red);
  color: #fff;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #b84435;
  color: #fffde7;
}
.cookie-banner .btn-settings {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #163c49;
  color: #fffbe4;
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #f7efe3;
  border: 4px solid var(--color-accent);
  border-radius: 22px;
  min-width: 310px;
  max-width: 95vw;
  min-height: 230px;
  z-index: 2350;
  box-shadow: 0 8px 48px 2px rgba(210,180,41,0.14);
  display: none;
  flex-direction: column;
  padding: 32px 36px 28px 36px;
  animation: modalPopIn 0.31s cubic-bezier(.82,0,.18,1.02);
}
.cookie-modal.open { display: flex; }
@keyframes modalPopIn {
  from { transform: translate(-50%,-35%) scale(.8); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.35rem;
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 23px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  min-width: 92px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px; right: 18px;
  background: var(--color-accent);
  border-radius: 50%;
  border: none;
  width: 38px; height: 38px;
  font-size: 1.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #ffd770;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 6px 16px 7px;
    min-width: 85vw;
  }
}

/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,20,5,0.17);
  z-index: 2320;
}
.cookie-modal.open ~ .cookie-modal-overlay {
  display: block;
}

/* --------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
-------------------------------------------------- */
.btn-primary, .btn-secondary, .main-nav a, .card, .testimonial-card {
  transition: background 0.16s, color 0.16s, box-shadow 0.17s,
    transform 0.18s, border 0.12s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-6px) scale(1.018) rotate(-0.8deg);
}
.social-links a:hover {
  transform: scale(1.10) rotate(4deg);
}
.feature-grid > div:hover {
  transform: translateY(-7px) scale(1.025) rotate(-1.1deg);
}

/* --------------------------------------------------
   MISC (PATTERNS & RETRO ELEMENTS DECORATION)
-------------------------------------------------- */
.feature-grid > div::after {
  content: '';
  display: block;
  width: 44px; height: 5px;
  background: var(--color-retro-red);
  border-radius: 3px;
  margin-top: 10px;
  opacity: 0.18;
}
.feature-grid > div:last-child::after {
  background: var(--color-retro-green);
  opacity: 0.12;
}

/* Patterned top edge for hero */
.hero::before {
  content: '';
  display: block;
  height: 11px;
  width: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="37" height="11" xmlns="http://www.w3.org/2000/svg"><rect width="37" height="11" fill="%23ffc83d"/><rect width="21" height="7" fill="%23e4d5be" opacity="0.5"/><ellipse cx="32" cy="8" rx="3" ry="2" fill="%23215A6D" opacity="0.19"/></svg>');
  position: absolute;
  left: 0; top: -8px;
}

/* --------------------------------------------------
   SPECIAL CASES (Z-INDEX FIX)
-------------------------------------------------- */
.mobile-menu, .mobile-menu-toggle { z-index: 2004; }
.cookie-banner { z-index: 2110; }
.cookie-modal { z-index: 2350; }
.cookie-modal-overlay { z-index: 2320; }


/* --------------------------------------------------
   PRINT OVERRIDE
-------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle,
  .cta, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  main { padding: 0 !important; }
}
