/* --------------------------------------------------
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F6F5EF;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #2E221B;
  font-size: 16px;
  line-height: 1.7;
}
*, *:before, *:after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
ul, ol { list-style-position: inside; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button, input, select, textarea { font-family: inherit; font-size: 100%; outline: none; }

/* --------------------------------------------------
   Vintage Retro Brand Variables (fallbacks included)
-------------------------------------------------- */
:root {
  --brand-primary: #20425A;
  --brand-primary-dark: #163443;
  --brand-secondary: #83A9BA;
  --brand-accent: #F6F7F9;
  --retro-sand: #F6F5EF;
  --retro-carmine: #B14E3A;
  --retro-sun: #EFC872;
  --retro-mint: #85A392;
  --retro-cream: #FCF6E1;
  --retro-brown: #6B5945;
  --retro-border: #E7DFCF;
  --retro-shadow: rgba(32, 66, 90, 0.13);
  --font-display: 'Montserrat', 'Futura', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* Old fallback for major colors */
body {
  background: var(--retro-sand, #F6F5EF);
  color: #2E221B;
}

/* --------------------------------------------------
   Typography Scale: Vintage Retro
-------------------------------------------------- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 20px;
  text-shadow: 0 2px 0 #ead9be44;
}
@media (min-width: 600px) {
  h1, .hero h1 { font-size: 2.9rem; }
}
h2 {
  font-family: var(--font-display);
  color: var(--retro-carmine, #B14E3A);
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  h2 { font-size: 2.1rem; }
}
h3 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary-dark);
  margin-bottom: 9px;
}
p, li, ul, ol { font-family: var(--font-body); font-size: 1rem; margin-bottom: 14px; }
ul, ol { padding-left: 0; margin-left: 0; }
strong, b { font-weight: 700; }

/* --------------------------------------------------
   Container, Sections, Hero
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  background: none;
}
.hero {
  padding: 0 0 50px 0;
  background: var(--retro-cream, #FCF6E1);
  border-bottom: 1.5px dashed var(--retro-border, #E7DFCF);
  box-shadow: 0 3px 18px -10px var(--retro-shadow);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 40px 0 0 0;
}
@media (min-width: 700px) {
  .hero .content-wrapper {
    padding: 60px 0 0 0;
  }
}

/* --------------------------------------------------
   Header & Navigation
-------------------------------------------------- */
header {
  background: var(--brand-primary);
  color: #fff;
  width: 100%;
  position: relative;
  box-shadow: 0 2px 12px 2px #17304020;
  z-index: 1003;
  border-bottom: 6px double var(--retro-sun, #EFC872);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}
header img { height: 44px; width: auto; }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.07rem;
  color: #fff;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--retro-sun, #EFC872);
  color: var(--brand-primary);
}
/* Primary Button Top-Nav */
.button-primary {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--retro-carmine, #B14E3A);
  color: #fff;
  border-radius: 28px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  border: none;
  box-shadow: 0 4px 20px -12px #b14e3a85;
  cursor: pointer;
  transition: background .20s, transform .10s, box-shadow .15s;
  margin-left: 8px;
}
.button-primary:hover, .button-primary:focus {
  background: var(--retro-sun, #EFC872);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 22px -11px #EFC87270;
}
.button-link {
  color: var(--brand-primary);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  font-size: 1rem;
  letter-spacing: .9px;
  padding: 0 10px 2px 2px;
  cursor: pointer;
  text-decoration: underline dotted var(--retro-carmine, #B14E3A);
  transition: color .15s;
}
.button-link:hover, .button-link:focus {
  color: var(--retro-carmine, #B14E3A);
}

/* Hamburger & Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-carmine, #B14E3A);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 7px 14px 5px 14px;
  margin-left: 16px;
  cursor: pointer;
  transition: background .18s, color .2s;
  position: relative;
  z-index: 1010;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--retro-sun); }
@media (max-width: 1024px) {
  .main-nav, header .button-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  z-index: 2000;
  background: var(--retro-cream, #FCF6E1);
  color: var(--brand-primary);
  transform: translateX(-120vw);
  transition: transform .40s cubic-bezier(.73,0,.35,1);
  box-shadow: 3px 0 38px -15px #C59E7080;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--retro-carmine, #B14E3A);
  align-self: flex-end;
  margin: 20px 24px 12px 0;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:focus { outline: 2px solid var(--retro-sun); }
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 24px 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-primary);
  padding: 18px 0 13px 0;
  font-size: 1.1rem;
  border-bottom: 1px dashed var(--secondary, #83A9BA);
  width: 100%;
  transition: background .17s, color .17s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--retro-sun, #EFC872);
  color: var(--retro-carmine, #B14E3A);
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 32px 0 14px 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.93;
  text-decoration: underline dotted #EFC872;
  transition: color .17s, opacity .15s;
}
.footer-nav a:hover { color: var(--retro-sun, #EFC872); opacity: 1; }
.footer-contact {
  margin-bottom: 7px;
  color: #F6F7F9;
  opacity: .94;
}

/* --------------------------------------------------
   Section Spacing & Flexbox Layouts
-------------------------------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid, .features-grid, .services-list, .benefit-grid, .project-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features-grid, .services-list, .benefit-grid, .project-list {
  margin-top: 10px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .features-grid, .services-list, .benefit-grid, .project-list, .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
.feature-item, .service-item, .benefit-item, .project-item {
  background: var(--retro-cream, #FCF6E1);
  border-radius: 14px;
  box-shadow: 0 4px 32px -16px var(--retro-shadow);
  border: 2px solid var(--retro-border, #E7DFCF);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 18px 22px 18px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .13s;
}
.feature-item:hover, .service-item:hover, .benefit-item:hover, .project-item:hover {
  box-shadow: 0 10px 40px -12px #B14E3A40;
  transform: translateY(-3px) scale(1.025);
}
.feature-item img, .service-item img, .benefit-item img { max-width: 52px; border-radius: 7px; margin-bottom: 2px; background: #fff; }

/* Projects & Timeline */
.timeline, .project-highlights, .success-metrics ul {
  margin-top: 15px;
  margin-bottom: 18px;
  background: var(--retro-cream, #FCF6E1);
  border: 1.8px dashed var(--retro-sun, #EFC872);
  border-radius: 19px;
  padding: 19px 26px 13px 26px;
  font-size: 1.08rem;
}
.timeline li, .project-highlights li, .success-metrics li { padding-left: 12px; margin-bottom: 10px; }

/* Steps, Processes, and Accordions */
.process-steps, ol {
  list-style-type: decimal-leading-zero;
  margin-left: 21px;
  margin-bottom: 18px;
}
.process-steps li, ol li {
  margin-bottom: 14px;
  padding-left: 4px;
  font-size: 1.04rem;
  font-family: var(--font-body);
}

.faq-accordion, .faq-item {
  width: 100%;
  margin-bottom: 20px;
}
.faq-item {
  background: var(--brand-accent);
  border-radius: 12px;
  border: 2px solid var(--retro-border);
  box-shadow: 0 2px 12px -6px var(--retro-shadow);
  padding: 14px 20px 14px 20px;
  transition: box-shadow .2s;
  margin-bottom: 16px;
}
.faq-item h3 {
  font-size: 1.11rem;
  color: var(--brand-primary-dark);
}

/* --------------------------------------------------
   Contact Details & Map Section
-------------------------------------------------- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.address-block, .phone-email-block, .business-hours {
  background: var(--retro-cream, #FCF6E1);
  border: 1.4px solid var(--retro-border);
  border-radius: 14px;
  box-shadow: 0 2px 9px -3px var(--retro-shadow);
  padding: 17px 15px 10px 15px;
  min-width: 210px; flex: 1 1 190px;
  display: flex; flex-direction: column; gap: 7px;
  align-items: flex-start;
}
.address-block img, .phone-email-block img, .business-hours img {
  width: 26px; margin-bottom: 2px;
}
.map-embed {
  border: 2px dashed var(--retro-carmine, #B14E3A);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  margin-bottom: 17px;
  text-align: center;
}

/* --------------------------------------------------
   Testimonial Cards & Slider
-------------------------------------------------- */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--brand-accent, #F6F7F9);
  border-radius: 16px;
  border: 2px solid var(--retro-sun, #EFC872);
  box-shadow: 0 4px 24px -8px var(--retro-shadow);
  padding: 26px 28px;
  width: 100%;
  max-width: 340px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: transform .15s, box-shadow .15s;
  color: #27313c;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px -10px var(--retro-carmine, #B14E3A44);
  transform: translateY(-3px) scale(1.018);
}
@media (max-width: 820px) {
  .testimonials-slider, .testimonial-cards { flex-direction: column; gap: 20px; }
}
.testimonial-info {
  display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.star-rating { color: var(--retro-sun, #EFC872); font-size: 1.2em; letter-spacing: 2px; }

.success-metrics ul {
  background: var(--retro-sand, #F6F5EF);
  border: 1.2px dashed var(--brand-secondary,#83A9BA);
  border-radius: 14px;
  padding: 16px;margin-bottom: 20px;
  font-weight: 500; font-size: 1.01rem;
}

/* ----------------------
   Cards (universal)
------------------------- */
.card, .card-content {
  background: var(--retro-cream, #FCF6E1);
  border-radius: 13px;
  border: 1.6px solid var(--retro-border);
  box-shadow: 0 2px 13px -7px var(--retro-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 16px;
  margin-bottom: 20px;
  min-width: 189px;
}
.card h3 {
  font-size: 1.12rem;
  color: var(--retro-carmine);
  margin-bottom: 9px;
}

/* ----------------------
   Timeline Graphics, Logos
------------------------- */
.certification-logos, .timeline-graphic {
  display: flex;
  flex-wrap: wrap; gap: 25px;
  align-items: center;
  margin: 14px 0 22px 0;
}
.certification-logos img { height: 48px; width: auto; filter: sepia(.27); opacity: 0.93; border-radius: 6px; }
.timeline-graphic img { width: 100%; max-width: 550px; display: block; margin: 0 auto; }

/* ----------------------
   Map, Thank You, Misc
------------------------- */
.thank-you {
  background: var(--retro-mint,#85A392); color:#fff;
  border-radius: 16px;
  border: 1.4px solid var(--retro-border);
  box-shadow: 0 8px 44px -20px var(--retro-shadow);
  padding: 40px 12px;
  margin-top: 30px;
}
.thank-you h1, .thank-you h2 { color: #fff; }

/* --------------------------------------------------
   Spacing Consistency & Responsive Padding
-------------------------------------------------- */
@media (max-width: 700px) {
  .container, .section {
    padding-left: 8px; padding-right: 8px;
  }
  .section { padding: 30px 5px; }
}

/* --------------------------------------------------
   Shadows & Effects
-------------------------------------------------- */
.card, .feature-item, .service-item, .benefit-item, .project-item, .testimonial-card, .faq-item {
  box-shadow: 0 4px 24px -8px var(--retro-shadow, #20425a22);
}

/* --------------------------------------------------
   Micro-interactions: Hover, Focus, Animation
-------------------------------------------------- */
button, a.button-primary {
  transition: background .19s, color .14s, box-shadow .15s, transform .11s;
}
.button-primary:active {
  transform: scale(.97);
}
.project-item:hover, .benefit-item:hover, .service-item:hover, .feature-item:hover {
  box-shadow: 0 6px 36px -10px #B14E3A33;
  transform: scale(1.024) translateY(-2px);
}

/* Accordion micro-interaction: open (JS should toggle .open) */
.faq-item.open { background: #fff5ed; border-color: var(--retro-carmine, #B14E3A); box-shadow: 0 13px 28px -10px #EFC87233; }

/* --------------------------------------------------
   Cookie Consent Banner
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--retro-brown, #6B5945);
  color: #fff6e2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 26px 20px 26px;
  z-index: 3200;
  box-shadow: 0 -2px 22px -6px #16141144;
  font-size: 1rem;
  animation: slideupCookie .68s cubic-bezier(.89, -.2, .38, 1.16);
}
@keyframes slideupCookie {
  from { transform: translateY(130%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  flex: 2 1 300px;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  padding: 9px 20px;
  margin: 0 3px;
  cursor: pointer;
  box-shadow: 0 2px 8px -2px var(--retro-shadow);
  transition: background .17s, color .18s, transform .11s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--retro-sun, #EFC872);
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn.accept:hover {
  background: var(--retro-carmine, #B14E3A); color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: transparent;
  color: #fff6e2;
  border: 2px solid var(--retro-sun, #EFC872);
}
.cookie-banner .cookie-btn.reject:hover {
  background: #fff6e216; 
  color: var(--retro-sun, #EFC872);
}
.cookie-banner .cookie-btn.settings {
  background: var(--retro-brown, #6B5945);
  color: #fff6e2;
  border: 1.2px solid #fff6e2;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #fff6e241;
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap:12px; padding: 22px 10px; }
  .cookie-banner p { font-size: .98rem; }
}

/* Cookie Preferences Modal */
.cookie-modal-bg {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 4000; background: rgba(39,33,28,.60);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .23s;
}
.cookie-modal {
  background: #fff8ef;
  border-radius: 18px;
  box-shadow: 0 8px 38px -8px #EFC87271;
  padding: 34px 24px 34px 24px;
  min-width: 320px; max-width: 390px;
  animation: fadeinModal .4s cubic-bezier(.61, .01, .32, .94);
  position: relative;
  z-index: 4002;
}
@keyframes fadeinModal {
  from { transform: scale(.79); opacity: .5; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: var(--retro-carmine, #B14E3A);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-cat {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 11px;
  font-family: var(--font-body);
}
.cookie-modal .toggle-switch {
  position: relative; width: 38px; height: 22px;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0; width: 0; height: 0;
}
.toggle-slider {
  position: absolute; cursor: pointer; top: 0; left: 0;
  right: 0; bottom: 0; background: #DED1B6 ; transition: .2s;
  border-radius: 24px;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--retro-carmine, #B14E3A);
}
.toggle-slider:before {
  position: absolute; content: "";
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(15px);
}
.cookie-modal .cookie-cat-label {
  font-weight: 600; font-size: 1.025em;
  color: var(--brand-primary);
}
.cookie-modal .always-on {
  color: var(--retro-sun, #EFC872);
  font-weight: 600;
  font-size: .99em;
}
.cookie-modal .modal-actions {
  margin-top: 19px;
  display: flex; gap: 12px;
  flex-direction: row; justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute; top: 12px; right: 18px;
  background: none; color: var(--retro-carmine, #B14E3A);
  font-size: 1.3em; border: none; cursor: pointer; transition: color .2s;
}
.cookie-modal-close:hover { color: var(--retro-sun, #EFC872); }

/* --------------------------------------------------
   Media Queries for Responsive Layouts
-------------------------------------------------- */
@media (max-width: 992px) {
  .container { max-width: 99vw; }
  .footer-nav, .footer-contact { flex-direction: column; align-items: start; gap: 6px; }
}
@media (max-width: 700px) {
  h1, .hero h1 { font-size: 1.33rem; }
  h2 { font-size: 1.07rem; }
  .footer-nav { font-size: .97rem; gap: 12px; }
}

/* --------------------------------------------------
   Nostalgic Visual/Pattern Effects for Retro Feel
-------------------------------------------------- */
body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  opacity: .053;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, #E7DFCF 0 1.5px, transparent 2.5px 22px), repeating-linear-gradient(45deg,#E7DFCF 0 1.5px, transparent 2.5px 22px);
  /* old paper lines */
}

.section, .card, .hero, .feature-item, .service-item, .benefit-item, .project-item, .testimonial-card, .faq-item {
  position: relative;
  z-index: 2;
}
.section:before {
  content: "";
  position: absolute;
  left: 14px; top: 14px;
  width: 60px; height: 60px;
  background: url('/assets/icons/scatter-flowers.svg') no-repeat;
  opacity: .08;
  pointer-events: none;
  z-index: 1;
}
/* Hide in mobile to avoid overlay issues */
@media (max-width: 600px) {
  .section:before { display: none; }
}

/* --------------------------------------------------
   Utility & Helper Classes
-------------------------------------------------- */
.muted { color: #AF9C84; font-size: .91em; font-style: italic; }
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }

/* Hide visually but keep accessible for screen readers */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; border:0; }

/* --------------------------------------------------
   Accessibility
-------------------------------------------------- */
a:focus, button:focus { outline: 2px solid var(--retro-carmine, #B14E3A); outline-offset: 2px; }

/* END OF VINTAGE RETRO FLEXBOX CSS */
