/* -----------------------------------------
   CSS RESET & BASE STYLES
----------------------------------------- */
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;
}
body {
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FFF9F5;
  color: #233547;
}
html {
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}
a {
  color: #22486B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB81C;
  outline: none;
}
blockquote {
  font-style: italic;
  color: #6b5c41;
  background: #FFF4DE;
  border-left: 4px solid #FFB81C;
  margin: 0 0 16px 0;
  padding: 16px 24px;
  border-radius: 14px;
}

/* -----------------------------------------
   TYPOGRAPHY
----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, Times, 'Times New Roman', serif;
  margin-bottom: 12px;
  color: #22486B;
  font-weight: 800;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }

p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #334A5B;
  margin-bottom: 15px;
}
ul, ol {
  list-style-position: inside;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 2px;
}

strong, b {
  color: #22486B;
  font-weight: 700;
}

/*****************************************
  LAYOUT & CONTAINERS
*****************************************/
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF9F5;
  border-radius: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(224,161,84,0.13);
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(224,161,84,0.21);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/*****************************************
  HEADER
*****************************************/
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(150,120,55,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}

header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 10px;
  color: #22486B;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  background: #FFF4DE;
  color: #C26B11;
}

/*****************************************
  CTA BUTTON
*****************************************/
.cta-button {
  font-family: 'Roboto Slab', Georgia, serif;
  background: #FFB81C;
  color: #22486B;
  border: none;
  border-radius: 15px;
  font-size: 1.18rem;
  font-weight: bold;
  padding: 10px 32px;
  margin-left: 16px;
  box-shadow: 0 2px 6px rgba(255,184,28,0.17);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #fdae00;
  color: #2f5371;
  box-shadow: 0 5px 22px rgba(255,184,28,0.24);
}

/*****************************************
  HERO SECTIONS
*****************************************/
.hero {
  background: linear-gradient(145deg, #FFF9F5 60%, #FFF4DE 100%);
  padding: 0;
  margin-bottom: 60px;
  border-bottom: 2px solid #FFE4A3;
}
.hero .container {
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 10px;
}
.hero h1, .hero p {
  color: #22486B;
}
.hero p {
  opacity: 0.94;
  font-size: 1.12rem;
  margin-bottom: 28px;
  margin-top: 0;
}

/*****************************************
  FEATURES, BENEFITS, SERVICES
*****************************************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-left: 0;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(255,184,28,0.08);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 290px;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 22px rgba(255,184,28,0.16);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-grid h3 { margin-top: 0; font-size: 1.1rem; }

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-left: 0;
  margin-bottom: 18px;
}
.service-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 8px rgba(34,72,107,0.07);
  flex: 1 1 220px;
  min-width: 185px;
  max-width: 270px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.service-list li:hover { box-shadow: 0 7px 24px rgba(255,184,28,0.17); }
.service-list h3 { font-size: 1.07rem; }
.service-list p { font-size: 1rem; }

.service-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: disc inside;
  color: #C26B11;
  font-weight: 500;
  padding-left: 0;
  margin-bottom: 0;
}
.service-highlights li {
  background: #FFF8EA;
  padding: 7px 14px;
  border-radius: 13px;
  color: #C26B11;
  font-size: 0.99rem;
}

/*****************************************
  TESTIMONIALS
*****************************************/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFBF2;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(224,161,84,0.10);
  margin-bottom: 20px;
}
.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.star-ratings {
  color: #FFB81C;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.testimonial-meta {
  color: #575249;
  font-size: 0.98rem;
  font-style: italic;
}

/*****************************************
  OTHER CARDS & BOXES
*****************************************/
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.benefit-grid > div {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px rgba(255,184,28,0.10);
  flex: 1 1 190px;
  min-width: 190px;
  max-width: 260px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.benefit-grid > div:hover {
  box-shadow: 0 7px 22px rgba(255,184,28,0.19);
}
.benefit-grid img { width: 30px; height: 30px; margin-bottom: 7px; }

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.info-box {
  background: #FFF4DE;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(255,184,28,0.13);
  padding: 18px 16px;
  margin-bottom: 20px;
  min-width: 150px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.info-box img { width: 32px; height: 32px; }

/*****************************************
  FAQ SECTION
*****************************************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(222,170,60,0.10);
  padding: 18px 16px;
  transition: box-shadow 0.16s;
}
.faq-item:hover {
  box-shadow: 0 6px 20px rgba(255,184,28,0.17);
}
.faq-item h2 {
  font-size: 1.15rem;
  color: #22486B;
  margin-bottom: 9px;
}
.faq-item p {
  font-size: 0.99rem;
}

/*****************************************
  CALL TO ACTION, PROMPTS
*****************************************/
.call_to_action, .contact_prompt, .thank_you {
  background: #FFF4DE;
  border-radius: 27px;
  box-shadow: 0 2px 14px rgba(255,184,28,0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.thank_you ul.next-steps {
  margin: 24px 0;
  list-style: disc inside;
  color: #C26B11;
  font-size: 1.02rem;
  text-align: left;
}

/*****************************************
  MAP PLACEHOLDER
*****************************************/
.embedded-map-placeholder {
  width: 100%;
  height: 220px;
  background: #FFF4DE;
  border: 2px dashed #FFB81C;
  border-radius: 17px;
  color: #cfa611;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 1.04rem;
}

/*****************************************
  FOOTER
*****************************************/
footer {
  background: #22486B;
  color: #fff;
  padding: 38px 0 12px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 0;
}
footer img {
  max-width: 58px;
  margin-bottom: 13px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 10px;
}
footer nav a {
  color: #FFB81C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #fffae0;
}
.footer-contact {
  color: #fff;
  text-align: center;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 3px 0 2px;
  border-radius: 0;
  display: inline;
}

/*****************************************
  LEGAL + GENERIC LISTS
*****************************************/
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 9px rgba(34,72,107,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2 {
  color: #22486B;
}

/*****************************************
  CONTACT & INFO SECTIONS
*****************************************/
.contact_info, .contact, .map {
  background: #FFFBF2;
  border-radius: 19px;
  box-shadow: 0 1px 6px rgba(255,184,28,0.08);
  padding: 36px 20px;
  margin-bottom: 60px;
}
.contact_info ul, .contact ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  list-style: none;
  padding: 0;
}
.contact_info li img, .contact li img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
  border-radius: 0;
}

/*****************************************
  MYTH-BUSTER / QUICK TIPS
*****************************************/
.myth-buster, .quick-tips {
  background: #FFF4DE;
  border-left: 6px solid #FFB81C;
  border-radius: 14px;
  padding: 18px 20px 12px 20px;
  margin-bottom: 24px;
  margin-top: 10px;
  box-shadow: 0 1px 8px rgba(255,184,28,0.05);
}
.myth-buster h3, .quick-tips h3 {
  color: #C26B11;
  font-size: 1.07rem;
  margin-bottom: 7px;
}

/*****************************************
  RESPONSIVE FLEX
*****************************************/
@media (max-width: 999px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  .feature-grid, .benefit-grid, .service-list, .info-boxes, .card-container, .content-grid {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .hero .container {
    padding-top: 36px;
  }
  .section, .contact_info, .call_to_action, .contact, .thank_you, .map, .legal {
    padding: 22px 6px;
  }
  .footer-contact { font-size: 0.94rem; }
  .card, .benefit-grid > div, .feature-grid li, .service-list li, .info-box, .faq-item {
    min-width: 110px;
    max-width: 100%;
    padding: 14px 11px;
  }
  nav, header nav {
    font-size: 0.97rem;
    gap: 10px;
  }
  .cta-button {
    font-size: 1.08rem;
    padding: 8px 18px;
  }
}
/*****************************************
  FLEXBOX ELEMENTS (MANDATORY PATTERNS)
*****************************************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*****************************************
  MOBILE NAVIGATION
*****************************************/
header .mobile-menu-toggle {
  display: none;
  background: #FFB81C;
  color: #22486B;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  z-index: 150;
  transition: background 0.2s;
}
header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
  background: #FFD369;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF4DE;
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.62,.09,.24,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 30px;
  box-shadow: 0 0 99px rgba(34,72,107,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #C26B11;
  border: none;
  border-radius: 12px;
  font-size: 2.2rem;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 14px;
  transition: background 0.12s, color 0.13s;
  box-shadow: 0 1px 5px rgba(224,161,84,0.11);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE4A3;
  color: #A25108;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: #22486B;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.23rem;
  padding: 12px 10px;
  border-radius: 12px;
  background: none;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD369;
  color: #9c5b0d;
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  header .cta-button {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/*****************************************
  COOKIE CONSENT BANNER
*****************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF4DE;
  color: #22486B;
  padding: 22px 14px 20px 14px;
  box-shadow: 0 -2px 18px rgba(255,184,28,0.14);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  z-index: 4000;
  animation: fadeInUp 0.6s;
}
.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFB81C;
  color: #22486B;
  border: none;
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 18px;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
  box-shadow: 0 1px 3px rgba(224,161,84,0.07);
}
.cookie-btn.settings {
  background: #fff;
  color: #C26B11;
  border: 1.5px solid #FFD369;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD369;
  color: #A25108;
}
@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 10px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .cookie-banner__text {
    font-size: 0.97rem;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  content: '';
  position: fixed;
  top:0;left:0;
  width:100vw;height:100vh;
  background: rgba(34,72,107,0.22);
  z-index: 4100;
  transition: opacity 0.28s;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(255,184,28,0.20);
  width: 96vw;
  max-width: 380px;
  padding: 38px 24px 20px 24px;
  position: relative;
  text-align: left;
  animation: modalSlideIn 0.3s;
  z-index: 4150;
}
.cookie-modal h2 {
  font-size: 1.21rem;
  color: #22486B;
  margin-bottom: 14px;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.cookie-modal li {
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  background: #FFE6A0;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  border: 1px solid #FFB81C;
  flex-shrink: 0;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: #FFB81C;
}
.cookie-modal .cookie-toggle:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s, background 0.16s;
}
.cookie-modal .cookie-toggle[aria-checked="true"]:after {
  left: 18px;
  background: #FFF4DE;
}
.cookie-modal .cookie-info {
  font-size: 0.98rem;
  color: #22486B;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  background: #FFB81C;
  color: #22486B;
  border: none;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  font-size: 1.13rem;
  cursor: pointer;
  transition: background 0.14s;
  z-index: 4200;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #FFD369;
  color: #925304;
}
@media (max-width: 440px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 24px 6px 10px 10px;
  }
  .cookie-modal .close-btn {
    top: 8px;
    right: 8px;
  }
}

/*****************************************
  ANIMATIONS
*****************************************/
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@keyframes fadeInUp {
  0% {opacity:0; transform:translateY(50px);}
  100% {opacity:1; transform:translateY(0);}
}
@keyframes modalSlideIn {
  0% {transform: translateY(60px) scale(0.95); opacity: 0;}
  100% {transform: translateY(0) scale(1); opacity: 1;}
}

/*****************************************
  UTILITIES
*****************************************/
.hide { display: none !important; }

/*****************************************
  MICRO-INTERACTIONS & EFFECTS
*****************************************/
.card, .faq-item, .service-list li, .feature-grid li, .benefit-grid > div {
  transition: box-shadow 0.2s, background 0.18s;
}
.card:hover, .faq-item:hover, .service-list li:hover, .feature-grid li:hover, .benefit-grid > div:hover {
  box-shadow: 0 7px 22px rgba(255,184,28,0.15);
  background: #FFF4DE;
}
.cta-button:active, .cookie-btn:active {
  box-shadow: 0 1px 5px rgba(224,161,84,0.22);
}

/*****************************************
  COLOR & ACCESSIBILITY
*****************************************/
.testimonial-card blockquote,
.testimonial-card, .faq-item, .card {
  color: #22486B;
  background: #FFFBF2;
}
.testimonial-meta {
  color: #575249;
}

/*****************************************
  VISUAL SPACING (8, 16, 20, 24, 32, 48px)
*****************************************/
.section, .call_to_action, .contact_prompt, .thank_you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .benefit-grid, .content-grid, .service-list, .info-boxes {
  gap: 24px;
}
.card, .benefit-grid > div, .feature-grid li, .service-list li, .faq-item, .info-box {
  margin-bottom: 20px;
  padding: 20px 18px;
}
/**** FLEXBOX ENFORCEMENT RULES ****/
.card-container, .feature-grid, .benefit-grid, .service-list, .info-boxes, .content-grid, .text-image-section {
  display: flex;
  flex-wrap: wrap;
}
/**** NO GRID, NO COLUMNS ****/
/*
 * NO display: grid, NO grid-*, NO columns, NO column-count
 * This is strictly enforced – using flexbox for ALL layouts!
 */