/* CSS RESET & NORMALIZE (for retro look & reliability) */
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: #FCF5E5;
  color: #293241;
}
ol, ul, li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
button, input, select, textarea {
  font: inherit;
}

/* == VINTAGE RETRO CUSTOM PROPERTIES == */
:root {
  --primary: #1E3C72;
  --secondary: #FFD700;
  --accent: #FFFFFF;
  --vintage-bg: #FCF5E5;
  --retro-red: #D7263D;
  --retro-orange: #FF774C;
  --retro-blue: #467599;
  --retro-green: #97B374;
  --retro-brown: #A47854;
  --pattern-dot: repeating-radial-gradient(circle, #e7e3db, #e7e3db 2px, transparent 2.5px, transparent 10px);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* == TYPOGRAPHY == */
h1, .h1 {
  font-family: var(--font-display), sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--primary);
  margin-bottom: 24px;
  text-shadow: 2px 2px 0 #ffd70070;
}
h2, .h2 {
  font-family: var(--font-display), sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--retro-brown);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--retro-blue);
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: var(--font-body), sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 500;
}
body, p, li, dd {
  font-family: var(--font-body), sans-serif;
  font-size: 1rem;
  color: #293241;
}
small {
  font-size: 0.88rem;
}

strong, b {
  font-weight: 700;
  color: var(--primary);
}
em, i {
  font-style: italic;
}

ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}
ul li,
ol li {
  margin-bottom: 8px;
}

dt {
  font-weight: 700;
  color: var(--retro-red);
  margin-bottom: 4px;
}
dd {
  margin-bottom: 15px;
}

/* == LAYOUT CONTAINERS == */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-bg);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(44,37,39,0.05), 0 1px 1px #ebd9b5;
  border: 1px solid #ede3c6;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbe7;
  border: 1.5px solid #cfb177;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(168,120,84,0.07), 0 2px 2px #e7e3db;
  overflow: hidden;
  flex: 1 1 260px;
  padding: 28px 20px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(168,120,84,0.18);
}

.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: #fffbe7;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #ecd374;
  box-shadow: 0 2px 8px rgba(45,45,0,0.08);
  transition: box-shadow 0.22s, transform 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(45,45,0,0.15);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card p {
  flex: 1;
  color: #3e4430;
  font-style: italic;
}
.testimonial-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.testimonial-card span:last-child {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-top: 3px;
  letter-spacing: 1px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbe7;
  border: 1.5px solid #cfb177;
  border-radius: 14px;
  padding: 24px 18px;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: 0 2px 16px #ffe48732;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0 18px 0;
  border-top: 2px dashed #e6d2a5;
}
.footer-wrapper nav,
.footer-wrapper .social-icons {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-wrapper nav {
  min-width: 140px;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 7px;
}
.footer-wrapper p {
  color: #89714f;
  font-size: 0.98rem;
  line-height: 1.61;
}

/* == NAVIGATION == */
header {
  position: relative;
  background: #fffbe7;
  border-bottom: 3px solid #FFD70033;
  box-shadow: 0 1px 6px 0 #d7cab186;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  font-family: var(--font-display), sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.04em;
}
.main-nav > a {
  padding: 7px 16px;
  border-radius: 6px;
  color: var(--primary);
  transition: background 0.2s, color 0.15s;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: var(--secondary);
  color: #6d5412;
}
.main-nav img {
  width: 124px;
  padding-right: 14px;
}

/* == MOBILE NAVIGATION (BURGER) == */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 14px;
  background: var(--secondary);
  color: #614700;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 4px 14px;
  cursor: pointer;
  z-index: 102;
  box-shadow: 0 2px 8px #e4bc1d44;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fdeda5;
  color: #be9110;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffbe7;
  box-shadow: 4px 0 32px #c5b27255;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.52,.01,.35,1.44);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  background: none;
  font-size: 2.2rem;
  color: var(--retro-brown);
  border: none;
  cursor: pointer;
  z-index: 112;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.23rem;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.25s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-brown);
  color: var(--accent);
}

@media (max-width: 1020px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .main-nav img {
    width: 98px;
    padding-right: 8px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
 /* Responsive retro magic */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 34px 4vw;
    margin-bottom: 40px;
  }
  .content-wrapper, .feature-grid, .content-grid, .event-grid, .card-container {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding: 18px 0 8px 0;
  }
  .cta-section {
    padding: 18px 4vw;
    gap: 14px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* == BUTTONS == */
.button, .main-nav > a.button, .mobile-nav a.button {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-display), sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  background: var(--primary);
  color: var(--secondary);
  letter-spacing: 0.08em;
  box-shadow: 0 2px 6px #d7cab150;
  margin-top: 8px;
  transition: background 0.19s, color 0.19s, box-shadow 0.21s, transform 0.13s;
  cursor: pointer;
  position: relative;
  outline: none;
}
.button.primary {
  background: var(--primary);
  color: var(--secondary);
}
.button.primary:hover,
.button.primary:focus {
  background: var(--retro-orange);
  color: #fff;
  box-shadow: 0 8px 24px #ff774c59;
  transform: translateY(-2px) scale(1.045);
}
.button.secondary {
  background: var(--secondary);
  color: var(--retro-brown);
}
.button.secondary:hover,
.button.secondary:focus {
  background: var(--retro-brown);
  color: #fff;
}
/* Outlined Retro Button Variant */
.button.outline {
  background: transparent;
  color: var(--retro-brown);
  border: 2.5px solid var(--retro-brown);
}
.button.outline:hover {
  background: var(--retro-brown);
  color: var(--secondary);
}

/* == BLOG & FEATURE CARDS == */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #fffbe7;
  border: 1.5px solid #cfb177;
  border-radius: 14px;
  box-shadow: 0 2px 12px #f0dcc671;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 330px;
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 18px #ffd7004f;
}
.feature-grid img {
  width: 54px;
  margin: 0 auto 8px auto;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list > div {
  background: #fffbe7;
  border: 1.5px solid #cfb177;
  border-radius: 14px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 245px;
  padding: 26px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #e7e3db5c;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s;
}
.service-list > div:hover {
  box-shadow: 0 4px 18px #ffd70059;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-preview {
  background: #fffbe7;
  border: 1.5px solid #cfb177;
  border-radius: 12px;
  box-shadow: 0 2px 8px #e4bc1d25;
  padding: 22px 14px;
  flex: 1 1 230px;
  max-width: 320px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.21s;
}
.blog-preview a {
  color: var(--retro-orange);
  font-weight: 700;
  text-decoration: underline wavy 1.5px;
  transition: color 0.16s;
}
.blog-preview a:hover {
  color: var(--retro-red);
}
.blog-preview:hover {
  box-shadow: 0 6px 20px #ff774c33;
}

.event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.event-card {
  background: #fffbe7;
  border: 1.5px solid #cfb177;
  border-radius: 12px;
  box-shadow: 0 2px 8px #e7e3db52;
  padding: 24px 16px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-card a {
  margin-top: 10px;
  align-self: flex-end;
  padding: 8px 21px;
  background: var(--retro-red);
  color: #fff;
  font-family: var(--font-display);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.19s, color 0.15s, transform 0.10s;
  box-shadow: 0 2px 7px #d7263d27;
  cursor: pointer;
  text-decoration: none;
}
.event-card a:hover {
  background: var(--retro-orange);
  transform: translateY(-2px) scale(1.08);
}

.event-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 1.04rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.event-filter span {
  color: var(--retro-blue);
  font-weight: 600;
}
.event-filter button {
  background: var(--accent);
  color: var(--retro-blue);
  border: 1.2px solid var(--retro-blue);
  border-radius: 7px;
  padding: 5px 18px;
  margin-left: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.event-filter button:hover {
  background: var(--retro-blue);
  color: #fff;
}

.category-list {
  margin-top: 25px;
  background: #f4e9c4;
  border: 1.5px solid #cfb177;
  border-radius: 12px;
  padding: 24px 20px;
  max-width: 320px;
  box-shadow: 0 2px 14px #e6d2a544;
}
.category-list h3 {
  color: var(--retro-brown);
  font-size: 1.11rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.category-list ul {
  padding-left: 0;
}
.category-list li {
  color: #886200;
  margin-bottom: 7px;
  font-family: var(--font-body);
}

.map-snippet {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 12px 5px;
  background: #f4e9c4;
  border-radius: 12px;
  margin-top: 8px;
}
.map-snippet img {
  width: 40px;
  height: 40px;
}
.map-snippet p {
  font-size: 1rem;
  color: #87691c;
  font-style: italic;
}

.faq-section dl {
  margin-bottom: 8px;
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe7;
  border-top: 3px dashed #FFD700;
  box-shadow: 0 -4px 22px #b0986c38;
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 28px 24px 28px;
  justify-content: space-between;
  min-height: 80px;
  animation: banner-slideup 0.85s cubic-bezier(.48,1.26,.56,1);
}
@keyframes banner-slideup {
  from {transform: translateY(100%); opacity:0}
  to {transform: translateY(0); opacity:1}
}
.cookie-banner p {
  flex: 1;
  font-size: 1rem;
  color: #3e4430;
  margin-right: 14px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 22px;
  cursor: pointer;
  border: none;
  transition: background 0.17s, color 0.16s;
}
.cookie-banner .accept {
  background: var(--retro-green);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--retro-blue);
  color: var(--secondary);
}
.cookie-banner .reject {
  background: #efddca;
  color: var(--retro-red);
  border: 1.5px solid var(--retro-red);
}
.cookie-banner .reject:hover {
  background: var(--retro-red);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--secondary);
  color: #6d5412;
  border: 1px solid #cfb177;
}
.cookie-banner .settings:hover {
  background: #fdebc2;
  color: #b78922;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 12px 16px 12px;
    min-height: 0;
  }
  .cookie-banner .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 11px;
  }
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 6px;
  }
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 201;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(31,30,17,0.3);
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.cookie-modal {
  background: #fffdf9;
  border: 2.5px solid var(--secondary);
  border-radius: 16px;
  max-width: 400px;
  width: 96vw;
  padding: 32px 26px 18px 26px;
  z-index: 202;
  box-shadow: 0 12px 46px #cfb17749;
  animation: modal-pop 0.6s cubic-bezier(.31,1.42,.56,1.06);
}
@keyframes modal-pop {
  from {transform: scale(0.8); opacity:0}
  60% {transform: scale(1.07);}
  to {transform: scale(1); opacity:1}
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.32rem;
  margin-bottom: 17px;
}
.cookie-modal .category {
  margin-bottom: 16px;
  padding: 12px 10px 11px 10px;
  border-radius: 10px;
  background: #f5e5b2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
}
.cookie-modal label {
  font-family: var(--font-body);
  color: #89714f;
  font-size: 1.01rem;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 22px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #e7e3db;
  border-radius: 15px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--retro-green);
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 6px #b0986c22;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(15px);
}
.cookie-modal .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 24px;
}
.cookie-modal .modal-buttons button {
  padding: 9px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.17s, color 0.16s;
  cursor: pointer;
  box-shadow: 0 2px 8px #e4bc1d19;
}
.cookie-modal .accept { background: var(--retro-green); color: #fff; }
.cookie-modal .accept:hover { background: var(--retro-blue); color: var(--secondary); }
.cookie-modal .reject { background: #efddca; color: var(--retro-red); border: 1.5px solid var(--retro-red); }
.cookie-modal .reject:hover { background: var(--retro-red); color: #fff; }
.cookie-modal .settings { background: var(--secondary); color: #6d5412; border: 1px solid #cfb177; }
.cookie-modal .settings:hover { background: #fdebc2; color: #b78922; }

@media (max-width: 480px) {
  .cookie-modal {
    padding: 14vw 4vw;
    min-width: 0;
  }
}

/* == RETRO PATTERNS & DECOR == */
body {
  background: var(--vintage-bg) var(--pattern-dot);
}
.section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fffdf9;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  left: -110px; top: -60px;
  width: 200px; height: 200px;
  background: #FFD70033;
  border-radius: 50%;
  z-index: 0;
}
.section:nth-child(even)::after {
  left: auto;
  right: -110px;
  top: -90px;
}
.section > * {
  position: relative;
  z-index: 2;
}

/* == GENERAL INTERACTIONS & MICRO-ANIMATIONS == */
a, .button, .main-nav > a, .feature-grid > div, .service-list > div, .blog-preview, .event-card {
  transition: box-shadow 0.17s, color 0.18s, background 0.18s, transform 0.14s;
}

a:focus-visible, button:focus-visible {
  outline: 2px dashed var(--retro-orange);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #ecd374;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #cfb177;
  border-radius: 12px;
}

/* == SPACING FIXES TO GUARANTEE NO ELEMENT OVERLAP == */
section, .section {
  margin-bottom: 60px !important;
}
.card, .card-container > * {
  margin-bottom: 20px!important;
}
.feature-grid, .service-list, .event-grid, .card-container, .blog-grid, .content-grid {
  gap: 24px !important;
}

.content-wrapper > *,
.content-wrapper > .section,
.content-wrapper > .card,
.content-wrapper > .feature-grid > *,
.content-wrapper > .service-list > *,
.content-wrapper > .event-grid > * {
  margin-bottom: 20px;
}

/* == PRINT & SCREEN CONTRAST IMPROVEMENTS == */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, .card, .feature-grid > div, .service-list > div, .event-card, .testimonial-card { box-shadow: none !important; border-color: #bbb !important; }
}

/* == HIDE COOKIE BANNER WHEN ACCEPTED == */
.cookie-banner.hide {
  display: none !important;
}

/* == ACCESSIBILITY == */
[tabindex]:focus {
  outline: 2px dashed var(--retro-blue) !important;
  outline-offset: 3px;
}
