/* =========================================================
   CSS RESET + NORMALIZE (no grid/no columns!)
   ========================================================= */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #fcfaec;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fcfaec;
  color: #22291c;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
a {
  color: #20603C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A8C256;
  text-decoration: underline;
}
ul, ol {
  list-style-position: outside;
  margin-left: 24px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* =========================================================
   RETRO / VINTAGE COLOR SCHEME
   ========================================================= */
:root {
  --retro-green: #20603C;  /* Brand primary */
  --retro-olive: #A8C256;  /* Brand secondary */
  --retro-cream: #F7FBF0;  /* Brand accent bg */
  --retro-beige: #eed9b6;  /* Vintage tan */
  --retro-brown: #756142;  /* Retro deep accent */
  --retro-orange: #e39347; /* 70s soft orange accent */
  --retro-yellow: #ffed97; /* pale yellow highlight */
  --retro-border: #B6AC8A;
  --retro-shadow: rgba(59, 36, 15, 0.08);
}

/* Typography for vintage/retro style */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--retro-green);
  text-shadow: 0 1px 0 #f6e9bc, 0 2px 2px #eed9b6;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  font-weight: 700;
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #363210;
}
strong, b {
  font-weight: 700;
  color: var(--retro-brown);
}
em, i {
  font-style: italic;
}

/* Retro divider */
hr {
  border: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--retro-green), var(--retro-green) 4px, transparent 4px, transparent 12px);
  margin: 32px 0 24px;
}

/* =============== CONTAINER & LAYOUTS =============== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
}

/* Spacing and Section Patterns (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--retro-cream);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--retro-shadow), 0 2px 0 #F7FBF0;
  border: 1.5px solid var(--retro-border);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 24px rgba(80, 54, 0, 0.19), 0 2px 0 #F7FBF0;
  transform: translateY(-2px) scale(1.03);
}
.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: #fff7e1;
  border: 2px dashed var(--retro-orange);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(191, 133, 39, 0.13);
  color: #3b2c05;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========= NAVIGATION HEADER ========== */
header {
  background: var(--retro-cream);
  border-bottom: 2px solid var(--retro-border);
  box-shadow: 0 2px 8px rgba(166, 187, 102, 0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 46px;
  width: auto;
  margin-right: 6px;
}
.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  letter-spacing: 0.04em;
  color: var(--retro-green);
  background: none;
  padding: 4px 8px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--retro-olive);
  color: var(--retro-brown);
}
/* MOBILE MENU BURGER BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-olive);
  border-radius: 8px;
  font-size: 2.1rem;
  color: #fff;
  padding: 4px 16px 4px 12px;
  margin-left: 20px;
  border: 2px solid var(--retro-green);
  box-shadow: 0 2px 6px #ede0be2c;
  transition: background 0.2s, color 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-green);
  color: var(--retro-yellow);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--retro-cream);
  box-shadow: 0 2px 32px 4px rgba(59, 47, 31, 0.18);
  z-index: 3000;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.4,1.15,.31,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 30px 18px 30px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--retro-green);
  color: #fff;
  font-size: 2rem;
  border-radius: 7px;
  padding: 6px 15px;
  margin-bottom: 32px;
  border: 2px solid var(--retro-brown);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--retro-olive);
  color: var(--retro-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #573e20;
  background: none;
  padding: 12px 0px 8px 0px;
  border-radius: 9px;
  text-shadow: 0 1px #ffed97;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--retro-brown);
  color: #ffe;
}

/* Hide main nav and show burger on small screens */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========= HERO BANNER AND CTA ========= */
.hero {
  background: var(--retro-yellow);
  border-bottom: 3.5px double var(--retro-green);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 16px #fceaaf44;
  padding: 48px 0 44px 0;
  margin-bottom: 64px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
  gap: 22px;
}
.hero h1 {
  font-size: 2.75rem;
  letter-spacing: 0.04em;
  color: var(--retro-green);
  line-height: 1.18;
}
.hero p {
  font-size: 1.16rem;
  color: #473f21;
  margin-bottom: 8px;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.19rem;
  letter-spacing: 0.02em;
  border-radius: 12px;
  padding: 15px 32px;
  margin-top: 12px;
  background: var(--retro-green);
  color: #fff;
  text-shadow: 0 2px #bee8ae55;
  border: 2.5px solid var(--retro-olive);
  box-shadow: 0 4px 18px 0 var(--retro-shadow);
  transition: background 0.23s, color 0.2s, transform 0.13s, border 0.17s;
}
.cta-button.primary {
  background: var(--retro-orange);
  color: #3b2c05;
  border: 2.5px solid var(--retro-brown);
}
.cta-button:active,
.cta-button:focus,
.cta-button:hover {
  background: var(--retro-olive);
  color: #fffebe;
  transform: scale(1.03);
  border-color: var(--retro-orange);
}

/* ============ FEATURES & CARDS =========== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid,
.value-cards,
.eco-features-grid,
.solutions-grid,
.tech-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-grid > div,
.value-cards > div,
.eco-features-grid > div,
.solutions-grid > div,
.tech-grid > div {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fffefb;
  border-radius: 14px;
  box-shadow: 0 2px 12px #eed9b62a;
  border: 2px solid #fbf5e2;
  padding: 25px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.17s;
}
.feature-grid > div:hover,
.value-cards > div:hover,
.eco-features-grid > div:hover,
.solutions-grid > div:hover,
.tech-grid > div:hover {
  box-shadow: 0 8px 28px rgba(172, 110, 21, 0.10);
  border-color: var(--retro-olive);
}
.feature-grid img,
.value-cards img,
.eco-features-grid img,
.solutions-grid img,
.tech-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 4px;
  filter: grayscale(0.19) contrast(1.1) sepia(0.08);
}

.feature-list,
.benefits-list,
.sustainability-benefits,
.business-solutions-list {
  margin-left: 16px;
  font-size: 1.06rem;
  margin-bottom: 24px;
  padding-left: 0;
  list-style-type: disc;
}

/* ========== SERVICES CARDS & PRICING ========== */
.service-list, .detailed-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-list > div,
.detailed-services-grid > div {
  background: #fffdf8;
  border: 1.7px solid var(--retro-olive);
  border-radius: 15px;
  box-shadow: 0 2px 13px #a4752982;
  padding: 22px 18px 20px;
  flex: 1 1 210px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(90deg, #eadfa5 60%, var(--retro-orange) 100%);
  color: #473600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.09rem;
  border-radius: 17px;
  padding: 5px 16px 6px 16px;
  border: 1.4px solid var(--retro-brown);
  box-shadow: 0 1px 3px #e3934744;
  letter-spacing: 0.03em;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--retro-cream);
  border-top: 2.5px dashed var(--retro-green);
  border-bottom: 2.5px dashed var(--retro-olive);
  padding: 38px 0 32px;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 230px;
  max-width: 370px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #2b2108;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 5px;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--retro-green);
  font-size: 1rem;
}
.testimonial-card div:last-child {
  font-size: 1.03rem;
  letter-spacing: 0.13em;
  color: var(--retro-orange);
}

/* ========== FOOTER ========== */
footer {
  background: var(--retro-green);
  color: #fffdf5;
  border-top: 4px double var(--retro-olive);
  padding: 36px 0 18px 0;
  font-size: 1rem;
  margin-top: 38px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
footer .logo img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 0;
}
.footer-nav a {
  color: #ffed97;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  opacity: .93;
  transition: color 0.13s, opacity 0.13s;
}
.footer-nav a:hover {
  color: var(--retro-orange);
  opacity: 1;
}
footer .address {
  font-size: 0.97rem;
  color: #eecd7e;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 5px;
}

/* ===================== MISC & COMPONENTS ===================== */
.value-hierarchy li,
.benefits-list li,
.sustainability-benefits li,
.business-solutions-list li,
.feature-list li {
  margin-bottom: 8px;
  font-size: 1.07rem;
}
.address-block,
.opening-hours {
  border-left: 5px solid var(--retro-olive);
  background: #fff5df;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 18px;
  color: #574906;
  font-size: 1rem;
}
.contact-info-snippet,
.contact-info {
  font-size: 1.08rem;
  color: #474011;
  background: #fff9e8;
  border-radius: 9px;
  padding: 12px 16px 10px 18px;
  margin-bottom: 18px;
  line-height: 1.65;
  border: 1.5px solid #e8efd3;
}
.
next-steps-info ul {
  margin-left: 18px;
}
.cost-savings-highlight {
  background: #fffbe9;
  border-left: 7px solid var(--retro-orange);
  color: #634409;
  padding: 14px 18px 14px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  border-radius: 11px;
}

.project-steps-timeline {
  background: #fffbe7;
  border-radius: 16px;
  border: 2px dotted var(--retro-brown);
  padding: 18px 22px 18px 22px;
  margin-bottom: 24px;
}
.project-steps-timeline ol {
  margin-left: 14px;
}
.project-steps-timeline li {
  font-size: 1.01rem;
  margin-bottom: 7px;
  color: var(--retro-green);
  font-weight: 600;
}

.application-examples ul {
  margin-left: 13px;
  font-size: 1.05rem;
}
.planning-consultation {
  background: #eefce5;
  border-radius: 12px;
  border-left: 5px solid var(--retro-green);
  padding: 10px 16px 10px 20px;
  margin-bottom: 12px;
  color: #33531b;
}

.expertise-list ul {
  padding-left: 19px;
  margin-top: 6px;
  font-size: 1.03rem;
}
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 25px;
}
.team-member-cards > div {
  background: #f7efe4;
  border: 2px solid var(--retro-olive);
  border-radius: 11px;
  padding: 17px 14px 11px 14px;
  min-width: 176px;
  flex: 1 1 180px;
  color: #463c19;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.thank-you {
  background: #fffbe7;
  border-radius: 20px;
  padding: 48px 20px 40px 20px;
  margin: 40px 0;
  box-shadow: 0 3px 10px #eed9b630;
  text-align: center;
}
.thank-you .next-steps-info {
  margin-top: 18px;
  margin-bottom: 16px;
  text-align: left;
}

/* ====== LEGAL/PRIVACY PAGES ====== */
.legal {
  background: #fffef9;
  border-radius: 20px;
  box-shadow: 0 3px 12px #eed9b630;
  padding: 48px 20px 40px 20px;
  margin: 58px 0 50px 0;
  color: #3e3a24;
}
.legal h1 {
  color: var(--retro-brown);
}
.legal h2 {
  color: var(--retro-green);
}
.legal ul {
  margin-left: 14px;
  margin-bottom: 18px;
  list-style: square inside;
}
.legal p,
.legal li {
  font-size: 1.05rem;
}

/* ============= FAQ ACCORDION ============= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion > div {
  background: #fffdf4;
  border-radius: 10px;
  box-shadow: 0 2px 6px #eed9b62a;
  padding: 22px 18px 18px 18px;
  border: 2px dashed #E3C187;
  cursor: pointer;
  transition: box-shadow 0.17s, border 0.18s;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 18px #ebc98533;
  border-color: var(--retro-olive);
}
.faq-accordion h3 {
  font-size: 1.12rem;
  color: var(--retro-green);
}
.faq-accordion p {
  font-size: 1rem;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1300px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 99vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-nav {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .hero h1 {
    font-size: 2.14rem;
  }
  .feature-grid, .value-cards, .eco-features-grid, .solutions-grid, .tech-grid
  { gap: 14px; }
  .footer-nav { gap: 10px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .content-grid, .feature-grid, .service-list, .detailed-services-grid, .solutions-grid,
  .eco-features-grid, .value-cards, .testimonial-slider, .team-member-cards, .tech-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features, .section {
    margin-bottom: 38px;
    padding: 26px 4px;
  }
  .hero {
    padding: 28px 0 25px 0;
    border-radius: 0 0 17px 17px;
    margin-bottom: 38px;
  }
  .hero h1 { font-size: 1.37rem; }
  .cta-button { width: 100%; text-align: center; }
  .main-nav, .footer-nav { gap: 0; flex-direction: column; }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 530px) {
  .hero, .section, .thank-you, .legal {
    padding-left: 3px; padding-right: 3px;
  }
  .footer-nav, footer .container {
    flex-direction: column;
    gap: 7px;
  }
}

/* ============= BUTTONS & INTERACTION STYLES ============= */
button,
.cta-button,
input[type="submit"],
input[type="button"] {
  box-shadow: 0 3px 9px #e2b75b28;
}
button:active,
.cta-button:active,
input[type="submit"]:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 1px 5px #c2a84766;
}

/*****************************
  COOKIE CONSENT BANNER
******************************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe6;
  border-top: 2.5px solid var(--retro-olive);
  box-shadow: 0 -2px 20px #eed9b640;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 16px 15px 16px;
  font-size: 1.02rem;
  transition: transform 0.3s cubic-bezier(.69,.28,.34,.85);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(130%);
}
.cookie-consent-banner-msg {
  color: #573e20;
  margin-bottom: 4px;
  max-width: 663px;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 9px;
  border: 1.8px solid var(--retro-green);
  background: var(--retro-olive);
  color: #fff;
  margin: 0 3px;
  transition: background 0.19s, color 0.18s, border 0.13s, transform 0.13s;
}
.cookie-btn:active {
  transform: scale(0.98);
}
.cookie-btn.accept {
  background: var(--retro-green);
  color: #fffbe7;
  border-color: var(--retro-olive);
}
.cookie-btn.accept:hover {
  background: var(--retro-orange);
  color: #3b2c05;
}
.cookie-btn.reject {
  background: #fffbe1;
  color: var(--retro-green);
  border-color: var(--retro-green);
}
.cookie-btn.reject:hover {
  background: #fbe0b9;
  color: var(--retro-brown);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--retro-brown);
  border-color: var(--retro-brown);
}
.cookie-btn.settings:hover {
  background: #ffed97;
  color: var(--retro-green);
}

/* Cookie preferences modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(53,48,21,0.44);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe6;
  border: 2px solid var(--retro-olive);
  border-radius: 16px;
  width: 98%;
  max-width: 420px;
  box-shadow: 0 8px 32px #eed9b690;
  padding: 30px 22px 20px 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: var(--retro-green);
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
  padding: 12px 6px 4px 12px;
  border-left: 4px solid var(--retro-olive);
  background: #f7f3d3;
  border-radius: 6px;
  color: #4d3a08;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #3c2b08;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--retro-green);
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.45rem;
  background: var(--retro-green);
  color: #fff;
  border-radius: 8px;
  padding: 4px 13px;
  border: 1.5px solid var(--retro-brown);
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: var(--retro-olive);
  color: #ffe;
}
.cookie-modal .cookie-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 21px;
}

/* ================== RETRO PATTERNS (figure, etc) ================== */
figure {
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
figcaption {
  color: #a37720;
  font-style: italic;
  font-size: 0.97rem;
  margin-top: 5px;
}

/* Retro Patterns on sections (optional) */
.section.patterned {
  background: repeating-linear-gradient(-45deg, #f7fbf0, #f7fbf0 32px, #f8eace 34px, #fef9e0 66px);
  border-radius: 14px;
  border: 1.2px solid var(--retro-olive);
}

/* ============= ACCESSIBILITY & SELECTION ============= */
::selection {
  background: #ffe393;
  color: #49430c;
}
:focus {
  outline: 2.5px solid var(--retro-olive);
  outline-offset: 2px;
}

/* ============= UTILITIES & OVERRIDES ============= */
.hide { display: none!important; }
.visible { display: block!important; }

/***********************************************
 * PRINT (basic tidy aesthetics)
 ***********************************************/
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display:none!important; }
  .container { max-width: 98vw; }
  body { background: #fff; color: #180c00; }
}
