/* ===== CSS RESET & NORMALIZATION ===== */
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, 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: #F6F3E3; /* subtle vintage beige background */
  color: #2A2921;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
  padding-left: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ===== VINTAGE RETRO BRAND COLORS & TYPE ===== */
:root {
  --primary: #174A6E;
  --secondary: #26C6DA;
  --accent: #F4F8FB;
  --retro-beige: #F6F3E3;
  --retro-yellow: #FFD167;
  --retro-orange: #DE7E21;
  --retro-brown: #A66F24;
  --retro-blue: #3E9DD3;
  --retro-green: #84B59A;
  --retro-red: #CB5034;
  --retro-shadow: rgba(44, 37, 15, 0.15);
  --white: #fff;
  --black: #2a2921;
  --border: #e3dac9;
  --text-main: #2a2921;
  --text-light: #846338;
}

/* ===== VINTAGE FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--retro-brown);
}
h4,h5,h6 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
p, ul, ol, li, blockquote {
  color: var(--text-main);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
blockquote {
  font-family: 'Montserrat', Georgia, serif;
  color: var(--retro-brown);
  border-left: 4px solid var(--primary);
  margin-bottom: 10px;
  padding-left: 18px;
  background: var(--retro-yellow);
  border-radius: 6px;
  font-size: 1.1em;
  font-style: italic;
}
strong {
  color: var(--retro-brown);
  font-weight: 700;
}

/* ===== BASIC LAYOUT & CONTAINERS ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.content-wrapper {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 18px var(--retro-shadow);
  margin-bottom: 60px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  align-items: center;
  text-align: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ===== MAIN NAVIGATION ===== */
header {
  background: var(--retro-yellow);
  box-shadow: 0 2px 10px var(--retro-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 20px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 7px;
  letter-spacing: 1.4px;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}
.main-nav .nav-cta {
  background: var(--retro-orange);
  color: var(--white);
  border-radius: 18px;
  padding: 10px 28px;
  margin-left: auto;
  box-shadow: 0 2px 6px var(--retro-shadow);
  font-size: 1.08em;
  transition: background 0.21s, color 0.21s, transform 0.12s;
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
  transform: scale(1.05);
}

header img {
  max-height: 54px;
  margin-right: 11px;
}

/* ===== MOBILE NAV ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: var(--white);
  font-size: 2.1rem;
  padding: 6px 16px;
  border-radius: 11px;
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 101;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-brown);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-yellow);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.57,1.89,.48,.71);
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: block;
  background: var(--retro-red);
  color: var(--white);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 16px; right: 22px;
  z-index: 1100;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 60px 0 0 50px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.23em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 9px 0px 9px 6px;
  border-radius: 7px;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--white);
}
@media (max-width: 1150px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 990px) {
  .main-nav {
    font-size: .99em;
    gap: 7px;
  }
  .main-nav .nav-cta {
    font-size: 1em;
    padding: 9px 17px;
  }
}
@media (max-width: 820px) {
  .main-nav, .main-nav .nav-cta {
    font-size: .92em;
  }
  .main-nav img {
    max-height: 39px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1.1px;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--retro-shadow);
  text-transform: uppercase;
  outline: none;
  transition: background 0.23s, color 0.22s, box-shadow 0.18s, transform 0.15s;
  border: none;
  margin-top: 22px;
}
.btn-primary {
  background: var(--primary);
  color: var(--retro-yellow);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 20px var(--retro-shadow);
}
.btn-secondary {
  background: var(--retro-orange);
  color: var(--white);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px var(--retro-shadow);
}

/* ===== CARDS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--retro-shadow);
  padding: 30px 28px;
  min-width: 230px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card h3 {
  color: var(--retro-orange);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ===== FEATURE GRID (Index) ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid > div {
  background: var(--retro-beige);
  border: 1.5px dashed var(--retro-orange);
  border-radius: 15px;
  flex: 1 1 200px;
  min-width: 230px;
  max-width: 320px;
  padding: 26px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 7px var(--retro-shadow);
  position: relative;
  transition: transform 0.19s, box-shadow 0.22s;
}
.feature-grid > div:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 8px 26px var(--retro-shadow);
  background: var(--retro-yellow);
}
.feature-grid img {
  max-width: 48px;
  margin-bottom: 11px;
}

/* ===== TEAM LIST (about) ===== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
  align-items: flex-start;
  justify-content: flex-start;
}
.team-list > div {
  background: var(--retro-beige);
  border: 1.5px solid var(--retro-orange);
  border-radius: 13px;
  box-shadow: 0 1px 7px var(--retro-shadow);
  flex: 1 1 180px;
  min-width: 170px;
  max-width: 320px;
  padding: 19px 14px 13px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.17s, background 0.16s;
}
.team-list > div h3 {
  color: var(--retro-brown);
}

/* ===== VALUES ===== */
.values ul {
  margin-top: 10px;
  padding-left: 14px;
}
.values li {
  margin-bottom: 7px;
  list-style-type: circle;
  color: var(--text-light);
}
.values strong {
  color: var(--retro-orange);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: var(--retro-brown);
}
.trust-badges img {
  max-width: 23px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* ==== PRICING TABLE ===== */
.pricing-table {
  background: var(--retro-beige);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px var(--retro-shadow);
  border: 2px solid var(--retro-brown);
}
.pricing-table th {
  background: var(--retro-orange);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12em;
  text-transform: uppercase;
}
.pricing-table td {
  font-size: 1rem;
  background: var(--white);
}
.pricing-table tr:nth-child(even) td {
  background: var(--retro-beige);
}

/* ==== TESTIMONIALS & QUOTES CARDS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--retro-yellow);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1px 9px var(--retro-shadow);
  border: 1.5px solid var(--primary);
  flex-direction: row;
  max-width: 650px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-main);
  transition: box-shadow 0.18s, background 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 22px var(--retro-shadow);
  background: var(--retro-beige);
}
.testimonial-card blockquote {
  border: none;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  color: var(--retro-brown);
  font-style: italic;
  font-size: 1.12rem;
}
.testimonial-card p {
  margin-left: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ==== SERVICE CARDS (Services page) ==== */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.service-card {
  background: var(--retro-beige);
  border: 1.5px solid var(--retro-orange);
  border-radius: 15px;
  box-shadow: 0 1px 8px var(--retro-shadow);
  padding: 27px 18px 22px 18px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, background 0.2s, transform 0.16s;
}
.service-card h2 {
  font-size: 1.24em;
  color: var(--retro-orange);
  margin-bottom: 7px;
}
.service-card:hover, .service-card:focus-within {
  background: var(--retro-yellow);
  box-shadow: 0 9px 28px var(--retro-shadow);
  transform: translateY(-4px) scale(1.025);
}
.service-card .btn {
  margin-top: 16px;
}

.service-highlight {
  background: var(--retro-yellow);
  border-radius: 15px;
  padding: 22px 20px 18px 20px;
  max-width: 420px;
  margin: 0 auto 26px auto;
  box-shadow: 0 2px 12px var(--retro-shadow);
  border: 1.8px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-highlight h3 {
  font-size: 1.22em;
  color: var(--retro-brown);
  margin-bottom: 7px;
}

/* ==== FOOTER ==== */
footer {
  background: var(--retro-brown);
  color: var(--retro-yellow);
  padding: 32px 0 0 0;
  margin-top: 30px;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 21px;
}
footer .footer-nav a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.17s, color 0.17s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}
footer img {
  max-height: 48px;
  margin-right: 12px;
}
.address-block {
  font-size: 1em;
  color: var(--retro-yellow);
}
footer .copyright {
  margin-top: 26px;
  text-align: right;
  font-size: .98em;
  color: var(--retro-yellow);
  opacity: 0.8;
  padding-bottom: 15px;
}

/* ==== FAQ LIST ==== */
.faq-list h2 {
  color: var(--retro-orange);
  margin-top: 32px;
  margin-bottom: 13px;
}
.faq-list h3 {
  font-size: 1.06em;
  margin-top: 17px;
  color: var(--primary);
}
.faq-list p {
  margin-left: 12px;
  color: var(--text-main);
  font-size: 1em;
  margin-bottom: 6px;
}

/* ==== CONTACT PAGE ==== */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.contact-info li {
  margin-bottom: 11px;
  font-size: 1.044em;
}
.contact-info strong {
  color: var(--retro-brown);
  font-weight: 800;
}
.contact-info a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.contact-info a:hover {
  color: var(--retro-brown);
}

/* ==== TABLES ==== */
th, td {
  border-bottom: 1.5px solid var(--border);
}
tr:last-child td {
  border-bottom: none;
}

/* ==== ADDITIONAL LAYOUT FLEX CONTAINERS ==== */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.project-summaries {
  margin-bottom: 18px;
}
.milestones, .impact-statements {
  margin-bottom: 16px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: var(--retro-beige);
  border-top: 2px solid var(--retro-brown);
  box-shadow: 0 -2px 17px var(--retro-shadow);
  z-index: 3000;
  padding: 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1.04em;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieslidein .5s cubic-bezier(.66,-.01,.58,1.12);
}
@keyframes cookieslidein {
  from { transform: translateY(100%); opacity: 0; }
  to {   transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner .btn {
  min-width: 115px;
  font-size: 1em;
  border-radius: 22px;
  box-shadow: 0 1px 7px var(--retro-shadow);
  padding: 10px 20px;
  margin-top: 0;
}
.cookie-banner .btn-primary {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.cookie-banner .btn-primary:hover, .cookie-banner .btn-primary:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}
.cookie-banner .btn-secondary {
  background: var(--retro-orange);
  color: var(--white);
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.cookie-banner .btn-settings {
  background: var(--retro-yellow);
  color: var(--primary);
  border: 1px solid var(--retro-brown);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}

/* ==== COOKIE MODAL (popover) ==== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32, 18, 8, 0.39);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalfadein .3s cubic-bezier(.35,1.7,.38,.97);
}
@keyframes modalfadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 30px 24px 30px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 42px var(--retro-shadow);
  border: 2px solid var(--retro-brown);
  font-size: 1rem;
  animation: cookieslidein .35s cubic-bezier(.66,-.01,.58,1.12);
  position: relative;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.36rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.08em;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .toggle-switch {
  width: 38px;
  height: 21px;
  background: var(--retro-beige);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--retro-orange);
}
.cookie-modal .toggle-switch input[type='checkbox'] {
  opacity: 0;
  width: 0; height: 0;
  display: none;
}
.cookie-modal .toggle-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 17px; height: 17px;
  background: var(--retro-yellow);
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px var(--retro-shadow);
}
.cookie-modal .toggle-switch input:checked + .slider {
  left: 18px;
  background: var(--retro-orange);
}
.cookie-modal .cookie-modal-buttons {
  margin-top: 17px;
  display: flex;
  gap: 13px;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal .btn {
  min-width: 123px;
  font-size: 1em;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 15px;
  background: var(--retro-orange);
  color: var(--white);
  border-radius: 50%;
  height: 32px;
  width: 32px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 3600;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--retro-brown);
}


/* ==== RESPONSIVE DESIGN: MOBILE-FIRST ==== */
@media (max-width: 1024px) {
  .container {
    max-width: 99vw;
    padding: 0 13px;
  }
  .feature-grid, .team-list, .service-grid {
    gap: 15px;
  }
  .testimonial-card, .card {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 35px 10px;
  }
}
@media (max-width: 790px) {
  .feature-grid > div, .team-list > div, .service-card {
    min-width: 165px;
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.06rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .content-wrapper {
    padding: 25px 8px;
    gap: 12px;
    margin-bottom: 37px;
  }
  .section { padding: 25px 7px; }
  .feature-grid, .service-grid, .team-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .feature-grid > div, .team-list > div, .service-card {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 8px 13px 8px;
    margin-bottom: 16px;
    max-width: 100vw;
  }
  .testimonial-card p { margin-left: 0; }
  .mobile-menu {
    padding-top: 30px;
  }
  .mobile-nav {
    margin: 38px 0 0 18px;
    gap: 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  .btn { font-size: 1em; padding: 11px 15px; }
  .container { padding: 0 2px; }
  .content-wrapper { padding: 12px 1px; }
  .cookie-banner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-nav { font-size: .95em; }
}

/* ===== MICRO-INTERACTIONS & HOVER EFFECTS ===== */
a, .btn, .feature-grid > div, .testimonial-card, .service-card, .main-nav a, .mobile-nav a, .footer-nav a {
  transition-property: color, background, box-shadow, transform, border, opacity;
  transition-duration: .15s, .2s, .19s, .13s, .14s;
}

/* ===== VINTAGE PATTERNS & NOSTALGIC ELEMENTS ===== */
body {
  background-image: repeating-linear-gradient(135deg, #F6F3E3 0 18px, #F4E2B8 18px 36px, transparent 36px 54px);
  background-size: 80px 80px;
}
.content-wrapper, .card, .testimonial-card, .service-card, .feature-grid > div {
  background-image: repeating-linear-gradient(90deg, transparent, transparent 7px, #fff4e3 8px, transparent 15px);
}
/* Decorative corner accent for headings */
h1, h2 {
  position: relative;
}
h1::before, h2::before {
  content: '';
  width: 42px;
  height: 7px;
  background: var(--retro-yellow);
  display: block;
  position: absolute;
  left: -4px; top: -19px;
  border-radius: 5px;
  box-shadow: 1px 1px 7px var(--retro-shadow);
}

/* ===== REMOVE OUTLINES IN RESET, RESTORE FOR FOCUS STATES ===== */
a:focus, button:focus, .btn:focus, input:focus, .mobile-menu-close:focus {
  outline: 2px dotted var(--retro-orange);
  outline-offset: 2px;
}

/* ==== GENERAL SPACING UTILITIES ==== */
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }

/* ===== END CSS ===== */
