/* -----------------------------------
   Quernspint Exklusivimmobilien
   Playful Dynamic Style 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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222851;
  background: #F8FAFF;
  /* smooth bg color transitions */
  transition: background 0.3s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
}
a {
  color: #255fff;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E3C896;
  outline-offset: 2px;
}

/* -----------------------------------
   BRAND VARIABLES - fallback for custom properties
----------------------------------- */
:root {
  --color-primary: #29334D;
  --color-secondary: #9EA3B0;
  --color-accent: #E3C896;
  --color-playful1: #FFE06E;
  --color-playful2: #78E6DC;
  --color-playful3: #FEA49F;
  --color-playful4: #627FFF;
  --color-success: #44D992;
  --color-error: #F95F62;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

/* ------ Layout Containers ------ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 800px;
}

/* ------ Section Spacing ------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* ------ Headings & Typography ------ */
h1, h2, h3, h4 {
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  position: relative;
  /* Fun highlight animation */
  background: linear-gradient(90deg, #FFE06E 0%, #FEA49F 100%);
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: highlight-move 4s ease-in-out infinite alternate;
}
@keyframes highlight-move {
  0% {background-position: 0 40%;}
  100% {background-position: 100% 60%;}
}
h2 {
  font-size: 2rem;
  margin-top: 10px;
  background: linear-gradient(90deg, #78E6DC 10%, #FFE06E 70%);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: h2-gradient 7s ease-in-out infinite alternate;
}
@keyframes h2-gradient {
  0% {background-position: 0% 0%;}
  100% {background-position: 100% 100%;}
}
h3 {
  font-size: 1.4rem;
  margin-top: 8px;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1.02rem;
  font-family: var(--font-body);
  color: #2f385b;
  line-height: 1.75;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
blockquote {
  background: var(--color-playful1);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 24px 0;
  padding: 20px 32px 20px 32px;
  border-left: 6px solid var(--color-accent);
  border-radius: 0 24px 24px 0;
  box-shadow: 0 6px 20px rgba(255,224,110,.08);
}
ul, ol {
  margin: 0 0 12px 18px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
li {
  position: relative;
  padding-left: 12px;
}
ul li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-playful3);
  position: absolute;
  left: 0; top: 0.7em;
  transform: translateY(-50%);
  transition: background 0.2s;
}
ol li::before {
  display: none;
}

/* Fun Font Pairing */
body, p, li {
  font-family: var(--font-body);
}
h1, h2, h3, h4, blockquote {
  font-family: var(--font-display);
}

/* Energetic Emphasis */
.cta.primary, .cta.primary:visited {
  background: var(--color-playful2);
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(120,230,220,0.17), 0 1.5px 0px #FFF inset;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  margin-top: 15px;
  text-shadow: 0 2px 12px rgba(120,230,220,0.05);
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-playful3);
  color: #fff;
  transform: translateY(-2px) scale(1.02) rotate(-1.5deg);
  box-shadow: 0 8px 24px rgba(254,164,159,0.13) , 0 0px 0px #FFF inset;
}
.cta.secondary {
  background: var(--color-playful1);
  color: var(--color-primary);
}

/* Links within nav footer */
nav a {
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color 0.18s;
  padding: 8px 0;
}
nav a:last-child {
  margin-right: 0;
}
nav a:hover, nav a.active {
  color: var(--color-accent);
  text-decoration: underline;
}

/* -----------------
   HEADER & NAVBAR
------------------- */
header {
  background: #fff;
  padding: 0;
  border-bottom: 4px solid var(--color-accent);
  box-shadow: 0 3px 15px rgba(41,51,77,.05);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
header img {
  height: 54px;
  width: auto;
}
header .cta.primary {
  margin: 0 0 0 24px;
  padding: 10px 22px;
  font-size: 1rem;
  box-shadow: 0 3px 10px #78E6DC22;
}

/* Hamburger menu - Mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--color-playful3);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 8px 16px;
  margin-left: auto;
  transition: background 0.18s, transform 0.21s;
  cursor: pointer;
  z-index: 125;
  position: relative;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-playful4);
  transform: scale(1.08) rotate(4deg);
}
@media (max-width: 1050px) {
  header .container {
    padding: 10px 6px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta.primary {
    display: none;
  }
}

/* Animated Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.74,.05,.87,.44);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0.96;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-playful3);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 7px 13px;
  margin: 24px 24px 4px 0;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.22s, color 0.17s, transform 0.21s;
  z-index: 58;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-playful4);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  width: 100%;
  padding-left: 38px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: bold;
  padding: 14px 0;
  border-radius: 9px;
  transition: background 0.17s, color 0.17s;
  margin-right: 0;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #fff;
  background: var(--color-playful3);
}
@media (max-width: 500px) {
  .mobile-nav {
    padding-left: 17px;
  }
}

/* ---------------------
   MAIN & GLOBAL SPACING
---------------------- */
main {
  min-height: 50vh;
  /* space for footer and cookie banner! */
  margin-bottom: 120px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 32px 8px;
  }
  main { margin-bottom: 88px; }
}

/* ----------------
   CARD CONTAINERS
------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(120,230,220,0.13), 0 2px 8px #E3C89613;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 250px;
  transition: box-shadow 0.22s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover, .card:focus {
  transform: translateY(-6px) scale(1.025) rotate(-1.5deg);
  box-shadow: 0 22px 38px rgba(254,164,159,0.07), 0 5px 15px #78E6DC22;
  z-index: 3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fffdfa;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px #FFE06E19, 0 2px 8px #29334D0d;
  border-left: 8px solid var(--color-playful2);
  transition: box-shadow 0.18s, border-color 0.22s;
  min-width: 240px;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left: 8px solid var(--color-playful3);
  box-shadow: 0 10px 36px #FEA49F33,0 3px 15px #29334D13;
}
.testimonial-card p {
  color: #252c4a;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 0.98rem;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FUN playfulness - icon animation */
.content-wrapper img[src*='icon-'], .feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 6px #FFE06E55);
  animation: swingicon 2.5s infinite linear alternate;
}
@keyframes swingicon {
  0% {transform: rotate(-8deg) scale(1.03);}
  40% {transform: rotate(2deg) scale(1.11);}
  80% {transform: rotate(-3deg) scale(1.04);}
  100% {transform: rotate(4deg) scale(1.032);}
}

/* ----------------------------
    BUTTONS & INTERACTIVES
----------------------------- */
button, .button, .cta {
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 1.09rem;
  box-shadow: 0 2px 6px rgba(120,230,220,0.09);
  background: var(--color-playful2);
  color: var(--color-primary);
  transition: background .19s, color .14s, transform .14s, box-shadow .18s;
  margin-top: 14px;
}
.button:hover, .cta:hover, .button:focus, .cta:focus {
  background: var(--color-playful3);
  color: #fff;
  box-shadow: 0 7px 28px #FEA49F22;
  transform: scale(1.045) rotate(-2deg);
}
.button:active, .cta:active {
  background: var(--color-accent);
  color: #fff;
}

/* ----------------------------------
   Cookie Consent Banner & Modal
----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffdfa;
  color: var(--color-primary);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 -3px 24px #FFE06E11, 0 1px 4px #29334D0b;
  padding: 20px 28px 16px 28px;
  z-index: 2100;
  font-size: 1.05rem;
  line-height: 1.55;
  border-top: 3px solid var(--color-accent);
  animation: cookie-pop 0.7s cubic-bezier(.60,1.59,.23,1.01);
}
@keyframes cookie-pop {
  from {transform: translateY(32px) scale(.97); opacity: 0;}
  to   {transform: none; opacity: 1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.cookie-banner button {
  background: var(--color-playful2);
  color: var(--color-primary);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: 30px;
  box-shadow: 0 2px 7px #78E6DC22;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.16s, color .13s, transform .13s;
}
.cookie-banner .accept {
  background: var(--color-success);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #2CC885;
  color: #fff;
}
.cookie-banner .reject {
  background: var(--color-error);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #D71F2C;
}
.cookie-banner .settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-playful1);
}
@media (max-width: 850px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 14px 14px 14px;
    font-size: 0.98rem;
  }
}

/* Cookie Modal Overlay */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(41,51,77,0.14);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.3s cubic-bezier(.67,.01,1,.37);
}
@keyframes fade-in-modal {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 22px;
  box-shadow: 0 9px 34px #29334D29, 0 2px 9px #E3C89621;
  padding: 34px 38px 28px 38px;
  max-width: 420px;
  width: 92vw;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.38rem;
  margin-bottom: 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.04rem;
  padding: 8px 0;
}
.cookie-category-row .toggle-switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}
.toggle-switch input[type='checkbox'] {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: var(--color-playful2);
  border-radius: 26px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.12s;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px #78E6DC23;
  transition: transform 0.15s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-playful3);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 11px 26px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 13px;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 1.36rem;
  cursor: pointer;
  transition: color 0.16s, transform 0.14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--color-error);
  transform: scale(1.2);
}
@media (max-width: 550px) {
  .cookie-modal {
    padding: 26px 6vw 11px 6vw;
    font-size: 1rem;
  }
}

/* ----------- FORMS & INPUTS (minimal since not shown) ---------- */
input[type="text"], input[type="email"], textarea {
  border: 1.5px solid var(--color-secondary);
  border-radius: 10px;
  font-size: 1.07rem;
  padding: 12px 18px;
  outline: none;
  transition: border-color 0.17s;
  margin-bottom: 16px;
}
input:focus, textarea:focus {
  border-color: var(--color-accent);
}

/* ------------ FOOTER --------------- */
footer {
  background: #fff;
  padding: 30px 0 18px 0;
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 -9px 32px #FFE06E11;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-bottom: 9px;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 3px;
  font-size: 1rem;
  align-items: center;
}
.footer-contact img {
  width: 20px; height: 20px;
  vertical-align: middle;
  margin-right: 5px;
  filter: drop-shadow(0 1px 2px var(--color-playful1));
}
footer small {
  color: var(--color-secondary);
  font-size: 0.92rem;
  margin-top: 12px;
}
@media (max-width: 700px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  footer .container {
    font-size: 1rem;
  }
  footer nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* --------------------------
   RESPONSIVE BREAKPOINTS
--------------------------- */
@media (max-width: 1050px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.13rem; }
  p, li { font-size: 0.98rem; }
}
@media (max-width: 500px) {
  .container { padding: 0 3vw; }
  .content-wrapper { gap: 16px; }
  main { margin-bottom: 115px; }
}

div.card-container,.content-grid,.feature-item, ul, ol, .footer-contact, header .container, .testimonial-card, .cookie-banner, .cookie-modal-actions, .cookie-categories, .mobile-nav, .card {
  /* Safeguard to always use flex patterns */
  display: flex;
}

/* ---------------------------
 PLAYFUL ANIMATIONS
---------------------------- */
.cta, .button, .mobile-menu-toggle, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.17s, color 0.13s, transform 0.13s, box-shadow 0.15s;
}
.cta:active, .button:active, .mobile-menu-toggle:active, .cookie-banner button:active, .cookie-modal-actions button:active {
  box-shadow: 0 2px 7px #FEA49F22, 0 0px #78E6DC14;
  transform: scale(0.97);
}

/* Subtle bounce on card hover for playful feel */
.card:hover, .testimonial-card:hover {
  animation: card-bounce 0.39s cubic-bezier(.16,1.2,.64,1.03);
}
@keyframes card-bounce {
  0%   { transform: translateY(0) scale(1) rotate(0deg); }
  13%  { transform: translateY(-2px) scale(1.04) rotate(-1deg); }
  33%  { transform: translateY(-10px) scale(1.08) rotate(0deg); }
  60%  { transform: translateY(-2px) scale(1.03) rotate(1deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

/* -----------------------------------
           ELEMENT UTILITIES
-------------------------------------*/
/* Add shadow, rounding, etc., to all strong brand blocks */
.section, .text-section {
  border-radius: 22px;
  box-shadow: 0 6px 18px #E3C89615;
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, .text-section {
    padding: 28px 8px;
    border-radius: 11px;
    margin-bottom: 40px;
  }
}

/* Visual separation for about, privacy, etc. */
.text-section {
  background: #f7faff;
  box-shadow: 0 4px 19px #78E6DC15, 0 1px 5px #E3C89608;
}
ul, ol {
  gap: 8px;
}
/* Icon adjust in contact pages */
.text-section img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
}

/* Highlight <strong> inside ul, so it's more playful */
ul strong {
  color: var(--color-playful4);
}

/* -----------------------------------
         PRINT & SELECTION
--------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #222 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-banner {
    display: none !important;
  }
}
::selection {
  background: var(--color-playful1);
  color: var(--color-primary);
}

/* -----------------------------
         A11Y & CONTRAST
------------------------------*/
main, section, nav, .testimonial-card {
  color-scheme: only light; /* Avoid prefers-dark for contrast control */
}
.testimonial-card p, .testimonial-card span {
  color: #1e223c;
}

/* -----------------------------------
         EXTRAS & DETAILS
--------------------------------------*/
h1, h2 {
  text-shadow: 0 1px 9px #fff6;
}
.card, .testimonial-card, .section, .text-section {
  animation: fade-up 0.7s ease-in;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* Hide elements for accessibility if needed */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* -----------------------------------
[!] CSS GRID AND COLUMNS ARE NOT USED
[!] Only Flexbox for layouts everywhere
[!] No position: absolute except for icon accents, cookies modal close button
[!] No overlapping due to adequate padding + gap
[!] Class selectors match provided HTML
-------------------------------------- */