/* =====================================================
   CSS RESET & NORMALIZE
   ===================================================== */
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: #FFFCEB;
  color: #284D31;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
}
img {
  border: none;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* =============================================
   BRAND VINTAGE RETRO THEME VARIABLES
   ============================================= */
:root {
  /* Vintage retro color palette (inspired by the brand but retrofied) */
  --primary: #284D31;              /* Deep vintage green */
  --secondary: #EFE93A;            /* Lemon yellow */
  --accent: #FDFBFD;               /* Eggshell white */
  --retro-orange: #F7B32B;         /* Retro orange */
  --retro-berry: #985F6F;          /* Retro berry */
  --retro-blue: #39A0ED;           /* Blue accent */
  --retro-brown: #735D47;          /* Classic brown */
  --background-main: #FFFCEB;
  --background-pattern: #F6EDD9;
  --card-bg: #FFF5CB;
  --card-border: #E7C884;
  --text-main: #284D31;
  --text-light: #FFFFFF;
  --text-muted: #735D47;
  --shadow-main: 0 4px 18px 0 rgba(100,48,15,0.07);
  --radius-main: 18px;
  --radius-soft: 10px;
  --pattern-dot: radial-gradient(circle, #EFE93A 1.5px, transparent 1.5px);

  /* Font stack (vintage feeling) */
  --font-display: 'Montserrat', 'Futura', 'Gill Sans', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Georgia', 'Times New Roman', serif;
}

/* ===============================================
  BASE TYPOGRAPHY
=============================================== */
html {
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--background-main);
  color: var(--text-main);
  font-size: 1rem;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: var(--primary);
  letter-spacing: 0.02em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p, li, blockquote {
  font-family: var(--font-body);
  color: var(--text-main);
  font-size: 1.0625rem;
  margin-bottom: 12px;
  font-weight: 400;
}

blockquote {
  background: var(--card-bg);
  border-left: 8px solid var(--retro-berry);
  border-radius: var(--radius-soft);
  margin: 20px 0;
  padding: 22px 32px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--retro-brown);
  font-style: italic;
  box-shadow: 0 2px 6px rgba(115,93,71,0.10);
}

strong { font-weight: 800; color: var(--primary); }
em { color: var(--retro-berry); }

/* ================================================
   CONTAINER
================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* ===========================================
  HEADER / NAVIGATION
=========================================== */
header {
  background: var(--background-pattern) center top repeat;
  box-shadow: 0 2px 8px rgba(115,93,71,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
header a img {
  height: 46px;
  width: auto;
  margin-right: 18px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.015em;
  color: var(--retro-brown);
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  font-weight: 700;
}
.main-nav a:not(.btn-primary):hover, 
.main-nav a:not(.btn-primary):focus {
  background: var(--secondary);
  color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  border-radius: var(--radius-soft);
  padding: 10px 22px;
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-weight: 900;
  box-shadow: 0 3px 12px 0 rgba(100,48,15,0.07);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.1s;
  outline: none;
}
.btn-primary:hover,.btn-primary:focus {
  background: var(--retro-orange);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.btn-secondary {
  background: var(--retro-orange);
  color: var(--text-light);
  border-radius: var(--radius-soft);
  padding: 10px 22px;
  font-size: 1.01rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.015em;
  border: none;
  transition: background 0.2s, color 0.18s, transform 0.1s;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(255, 173, 51, 0.08);
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: 12px;
  z-index: 120;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--retro-orange);
}

/* ===============================================
   MOBILE MENU
================================================ */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 3000;
  /* Slide-in default hidden */
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
  padding-top: 38px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--secondary);
  margin: 12px 0 8px 24px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  margin-top: 12px;
  width: 100%;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.55rem;
  padding: 10px 8px;
  border-radius: var(--radius-soft);
  font-weight: 900;
  letter-spacing: 0.025em;
  transition: background 0.18s, color 0.18s;
  text-align: left;
  width: 100%;
  display: block;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: var(--retro-orange);
  color: #fff;
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* ===============================================
   PAGE SECTIONS & LAYOUT FLEXBOX
================================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===============================================
   FLEXBOX LAYOUT CLASSES
================================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  border: 1.5px solid var(--card-border);
  padding: 32px 22px;
}
.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;
  background: var(--card-bg);
  border-radius: var(--radius-soft);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(40,77,49,0.13);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ================================
 SPECIAL PAGE GRIDS / CARDS
================================ */
.service-grid, .blog-grid, .team-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.service-card, .team-member, .blog-grid > article {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 28px 18px 20px 18px;
  min-width: 240px;
  max-width: 320px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 0.16s, box-shadow 0.19s;
  margin-bottom: 20px;
}
.service-card:hover, .blog-grid > article:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 34px -8px rgba(247,179,43,0.14),var(--shadow-main);
  border-color: var(--retro-orange);
}
.service-card img, .team-member img {
  height: 54px;
  width: 54px;
  margin-bottom: 16px;
}
.service-card h3, .team-member h3, .blog-grid article h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--retro-brown);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.service-card p, .team-member p, .blog-grid article p {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--primary);
}
/* Team grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.team-member {
  align-items: center;
  text-align: left;
}
/* Blog grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.blog-grid > article {
  min-width: 240px;
  max-width: 325px;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-main);
  padding: 28px 18px 22px 18px;
}
/* Featured article */
.featured-article {
  margin: 30px 0 16px 0;
  background: var(--retro-blue);
  color: #fff;
  border-radius: var(--radius-main);
  padding: 32px 26px;
  box-shadow: 0 4px 28px rgba(57,160,237,0.08);
}
.featured-article h3 { color: #fff; }

/* List highlight special (about & values) */
.values-highlight {
  margin: 16px 0;
  padding: 22px 24px;
  background: var(--retro-berry);
  color: #fff;
  border-radius: var(--radius-soft);
  font-family: var(--font-display);
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(152,95,111,0.09);
}
.values-highlight h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.values-highlight ul {
  margin-left: 18px;
}
.values-highlight li {
  list-style: disc;
  margin-bottom: 4px;
}
/* Use cases */
.use-cases {
  margin: 22px 0;
}
.use-cases h3 { color: var(--retro-orange); font-family: var(--font-display); font-weight: 800; }
.use-cases ul {
  margin-left: 18px;
}
.use-cases li {
  list-style: circle;
  margin-bottom: 4px;
}

/* Table styling (angebote) */
table {
  width: 100%;
  margin: 22px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card-bg);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 10px rgba(40,77,49,0.13);
  overflow: hidden;
}
thead th {
  background: var(--retro-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.03rem;
  padding: 14px 10px;
  text-align: left;
}
tbody td {
  padding: 12px 11px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
  border-top: 1.5px solid var(--card-border);
}
tr:nth-child(even) td {
  background: #FFF7E0;
}
table, thead, tbody, tr, th, td { border: none; }

/* ================================
  FOOTER
================================ */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding-top: 30px;
  padding-bottom: 30px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav, .footer-contact, .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-orange);
}
.footer-brand img {
  height: 38px;
  margin-bottom: 7px;
}
.footer-brand span {
  font-size: 1rem;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-contact p {
  color: var(--secondary);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ================================
  FORMS & INPUTS
================================ */
input[type="email"] {
  border: 2px solid var(--card-border);
  border-radius: var(--radius-soft);
  padding: 10px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-right: 12px;
  outline: none;
  transition: border-color 0.17s;
  background: #fff;
}
input[type="email"]:focus {
  border-color: var(--retro-berry);
}

form button.btn-primary {
  margin-top: 12px;
  display: inline-block;
}

/* ================================
  MAP PLACEHOLDER (Kontakt)
================================ */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--background-pattern);
  border-radius: var(--radius-soft);
  padding: 16px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 5px rgba(40,77,49,0.10);
  font-family: var(--font-display);
  color: var(--retro-brown);
  font-size: 1.03rem;
}
.map-placeholder img {
  height: 46px;
  width: 46px;
}

/* ================================
  FAQ & SIMPLE UL/LI
================================ */
ul {
  margin: 10px 0;
}
ul > li {
  list-style: disc;
  margin-left: 22px;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.03rem;
}
/* Force remove margin-bottom in some context (flex, etc) */
ul > li:last-child { margin-bottom: 0; }

/* ================================
  CTA Banners
================================ */
section .btn-primary, section .btn-secondary {
  margin-top: 8px;
  align-self: flex-start;
}

/* ================================
  SPECIAL PATTERNS / DECORATIVE VINTAGE EFFECTS
================================ */
section {
  /* dotted subtle vintage feel top border */
  border-top: 5px dotted var(--card-border);
  border-radius: 0 0 var(--radius-soft) var(--radius-soft);
  box-shadow: 0 1.5px 7px 0 rgba(40,77,49,0.03);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23EFE93A'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 34px auto;
  background-position: left top;
}

section:first-of-type { border-top: none; background: none; }

/* ===============================================
   RESPONSIVE LAYOUT & TYPOGRAPHY
================================================ */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .service-grid, .blog-grid, .team-grid, .service-list {
    gap: 16px;
    justify-content: flex-start;
  }
  .service-card, .team-member, .blog-grid > article {
    max-width: 96vw;
    min-width: 90vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.13rem; }
  .container {
    padding: 0 6px;
  }
  header .container {
    flex-direction: row;
    padding: 9px 6px;
  }
  .blog-grid, .service-grid, .team-grid, .service-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  ul > li {
    font-size: 1rem;
    margin-bottom: 6px;
    margin-left: 16px;
  }
  section {
    padding: 26px 5px;
    margin-bottom: 38px;
  }
  .footer-nav, .footer-contact, .footer-brand {
    gap: 7px;
  }
  footer .container {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 490px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.1rem; }
  section {
    padding: 22px 1.5vw;
    margin-bottom: 20px;
  }
}

/* ===============================================
   TESTIMONIALS (CARD STYLE)
================================================ */
.testimonial-card {
  background: #fffbe8;
  border: 2px solid var(--card-border);
  border-radius: var(--radius-soft);
  box-shadow: 0 3px 16px 0 rgba(247,179,43,0.10);
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 660px;
}
.testimonial-card blockquote {
  margin: 0 0 6px 0;
  background: none;
  border: none;
  color: var(--primary);
  padding: 0;
  font-size: 1.09rem;
}
.testimonial-card p {
  color: var(--retro-brown);
  margin: 0;
  font-size: 1.01rem;
  font-weight: 700;
}

/* ===============================================
   COOKIE CONSENT BANNER & MODAL
================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4800;
  background: var(--retro-berry);
  color: #fff; 
  padding: 24px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  box-shadow: 0 -3px 16px 0 rgba(152,95,111,0.15);
  font-family: var(--font-body);
  font-size: 1.02rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.29s cubic-bezier(.22,1,.36,1);
}
.cookie-banner.hidden { 
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.cookie-banner button {
  border: none;
  border-radius: var(--radius-soft);
  padding: 10px 18px;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: bold;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
.cookie-banner button:nth-child(2) {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-banner button:nth-child(3) {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--retro-berry);
  color: #fff;
  transform: scale(1.06);
}
/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,77,49,0.69);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe8;
  color: var(--primary);
  border-radius: var(--radius-main);
  padding: 38px 34px 28px 34px;
  max-width: 410px;
  box-shadow: 0 8px 46px 0 rgba(40,77,49,0.23);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 5200;
  font-family: var(--font-body);
  font-size: 1.06rem;
  animation: modalPopIn 0.36s cubic-bezier(.32,1.53,.78,1.15) 1;
}
@keyframes modalPopIn {
  0% { transform: scale(0.88) translateY(30px); opacity: 0.2 }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 { font-size: 1.2rem; color: var(--primary); font-family: var(--font-display);}
.cookie-modal label { display: flex; align-items: center; gap: 9px; font-size: 1.02rem; margin-bottom: 11px; }
.cookie-modal .category {
  margin: 7px 0 13px 0;
  padding: 8px 0 7px 0;
  border-bottom: 1px dashed var(--card-border);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--retro-orange);
  width: 18px; height: 18px;
  margin-right: 2px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal button {
  border: none;
  border-radius: var(--radius-soft);
  padding: 10px 18px;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: bold;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
.cookie-modal button.close-modal {
  background: transparent;
  color: var(--retro-berry);
  border: 1px solid var(--retro-berry);
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 7px;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-modal button.close-modal:hover, .cookie-modal button.close-modal:focus {
  background: var(--retro-berry);
  color: #fff;
}
@media (max-width:570px) {
  .cookie-modal { max-width: 97vw; padding: 21px 6vw 15px 6vw; }
  .cookie-banner {flex-direction: column; gap: 16px; padding: 13px 6px; font-size: 0.98rem;}
}

/* ================================
  ANIMATIONS
================================ */
section, .service-card, .testimonial-card, .blog-grid article, .team-member, .featured-article, .values-highlight, .footer-brand, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.19s;
}

/* ================================
  FOCUS STATE (Accessibility)
================================ */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--retro-blue);
  outline-offset: 2px;
}

/* ================================
  MISCELLANEOUS: Utility, fix, dialogs
================================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Hide JS-only elements by default */
.mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none; }

/* When open, these get display: flex or block from JS */
