/* RESET & BASELINE */
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,
main, 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;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #121212;
  color: #F0F0F0;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #181818;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #FFA500;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus-visible {
  outline: 2px solid #FFA500;
}
a:hover {
  color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #FEFEFE;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

/* HEADER / NAVIGATION */
header {
  background-color: #181818;
  border-bottom: 2px solid #353535;
  position: relative;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 50px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
nav a {
  font-weight: 600;
  font-size: 1rem;
  color: #FEFEFE;
  position: relative;
  letter-spacing: 0.01em;
  padding: 8px 8px 8px 0px;
  transition: color .18s;
}
nav a:hover, nav a:focus {
  color: #FFA500;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FFA500 80%, #868686 100%);
  color: #171717;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  padding: 12px 32px;
  border: none;
  border-radius: 27px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px 0 rgba(15,15,15,0.09);
  cursor: pointer;
  transition: background .24s, color .18s, box-shadow .24s;
  text-shadow: none;
}
.cta-btn:focus-visible {
  outline: 2px solid #FFA500;
}
.cta-btn:hover {
  background: #FFA500;
  color: #222;
  box-shadow: 0 4px 18px 0 rgba(255,165,0,0.20);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 22px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  color: #FFA500;
  font-size: 2.2rem;
  z-index: 120;
  cursor: pointer;
  transition: color .21s;
}
.mobile-menu-toggle:focus-visible {
  outline: 2px solid #FFA500;
}
.mobile-menu-toggle:hover {
  color: #FFF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.98);
  box-shadow: 0 0 40px 12px rgba(8,8,8,0.18);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.44,0,.57,1);
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFA500;
  font-size: 2.2rem;
  margin: 20px 32px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color .18s;
  z-index: 1201;
}
.mobile-menu-close:focus-visible {
  outline: 2px solid #FFA500;
}
.mobile-menu-close:hover {
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  width: 100%;
  padding: 36px 36px 0 0;
}
.mobile-nav a {
  font-size: 1.24rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 0px;
  transition: color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFA500;
  outline: none;
}
@media (max-width: 1024px) {
  header .container nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header .container nav { display: flex; }
  .cta-btn { display: inline-block; }
}

/* FOOTER STYLES */
footer {
  width: 100%;
  background: #161616;
  border-top: 2px solid #353535;
  margin-top: 60px;
  color: #F2F2F2;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 16px 32px 16px;
  flex-wrap: wrap;
}
footer nav {
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #F0F0F0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color .18s;
}
footer nav a:hover { color: #FFA500; }
.brand-footer {
  min-width: 90px;
  max-width: 120px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
footer .contact-info,
footer .social-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .contact-info img {
  margin-right: 8px;
}
footer .social-media {
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
footer .social-media a {
  display: flex;
  transition: filter .21s;
}
footer .social-media a:hover {
  filter: brightness(1.4);
}
@media (max-width: 1040px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ---- SECTIONS and SPACING ---- */
.section,
.hero, .about, .services, .features, .cta, .contact, .thank-you, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}
.section:last-child,
.testimonials:last-child {
  margin-bottom: 0;
}

/* CARDS & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 40px;
}
.card {
  background: #1F2123;
  color: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(19,19,19,.16);
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #292929;
  transition: box-shadow .23s, border .23s;
}
.card:hover {
  box-shadow: 0 5px 30px #FFA50033, 0 0 0 2px #FFA500;
  border-color: #FFA500;
}
.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;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(29,29,29,.11);
  border: 1.5px solid #DDC175;
  margin-bottom: 24px;
  margin-top: 12px;
  position: relative;
  min-width: 220px;
  max-width: 670px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: box-shadow .2s, border .2s;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  color: #262626;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card cite {
  display: block;
  color: #8A7400;
  font-size: 0.96rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-style: normal;
  margin-left: 12px;
  font-weight: 600;
}
.testimonial-card:hover {
  border-color: #FFA500;
  box-shadow: 0 3px 22px #FFA50033, 0 0 0 1.5px #FFA500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* LISTS */
ul, ol {
  margin-left: 0;
  padding-left: 1.2em;
  margin-bottom: 18px;
  color: inherit;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.7;
  list-style-type: disc;
}
ul li img {
  display: inline-block;
  max-width: 27px;
  margin-right: 10px;
  vertical-align: middle;
}

/* HERO (Index) */
.hero {
  background: #222226;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 12px 32px rgba(82,82,82,0.15);
  border-bottom: 2.5px solid #FFA50088;
  padding-top: 56px;
  padding-bottom: 44px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #FFF;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  max-width: 670px;
}
.hero p {
  max-width: 520px;
  color: #F3CB97;
  font-size: 1.22rem;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* FEATURES/ABOUT/SERVICES/CONTACT SECTIONS */
.features, .about, .services, .contact, .cta, .thank-you {
  background: #202124;
  box-shadow: 0 1px 0px 0px #2A2A2C inset;
  border-radius: 24px;
}
.features h1,
.features h2 {
  color: #FFA500;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.about {
  background: #242629;
  color: #F0F0F0;
}
.services {
  background: #1F2324;
  color: #F0F0F0;
}
.services ul > li, .features ul > li {
  background: #26282A;
  color: #FFF7F0;
  border-radius: 10px;
  padding: 18px 18px 18px 16px;
  box-shadow: 0 1px 8px #0002;
  border: 1.5px solid #242124;
  margin-bottom: 12px;
  transition: box-shadow .16s, border .18s, background .13s;
}
.services ul > li:hover,
.features ul > li:hover {
  border: 1.5px solid #FFA500;
  box-shadow: 0 3px 15px #FFA50014;
}
.features ul > li strong,
.services ul > li strong {
  color: #FFA500;
  font-weight: 700;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/* CTA Section */
.cta {
  background: #16181b;
  border-radius: 18px;
  box-shadow: 0 1px 6px #23232321;
  text-align: center;
}
.cta h2 {
  color: #FFA500;
  font-size: 2rem;
}
.cta p {
  color: #E1E1DD;
  margin-bottom: 18px;
}

/* TABLES */
table {
  width: 100%;
  background: #191B20;
  color: #F7F7F7;
  border-collapse: collapse;
  border-radius: 12px;
  margin-top: 18px;
  margin-bottom: 32px;
  box-shadow: 0 1px 8px #0003;
  overflow: hidden;
}
th, td {
  padding: 14px 10px;
  text-align: left;
}
th {
  background: #2C2C2C;
  color: #FFA500;
  font-size: 1.07rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border: 1px solid #353535;
}
td {
  border: 1px solid #232323;
}
tr:nth-child(even) td {
  background: #222226;
}
tr:nth-child(odd) td {
  background: #191B20;
}

/* THANK YOU SECTION */
.thank-you {
  background: #202124;
  color: #FFF7F0;
  border-radius: 24px;
  text-align: center;
}
.thank-you h1 {
  color: #FFA500;
  font-size: 2rem;
  margin-bottom: 16px;
}

/* CONTACT PAGE */
.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 18px;
  font-size: 1rem;
}
.contact .contact-info h2 {
  color: #FFA500;
  margin-bottom: 8px;
  font-size: 1.17rem;
}
.contact-info img {
  margin-right: 8px;
  vertical-align: middle;
  max-width: 22px;
  display: inline-block;
}


/* ------------ INTERACTIVE BUTTONS ------------ */
button,
input[type=button],
input[type=submit],
input[type=reset] {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background .19s, color .15s, box-shadow .19s;
  padding: 12px 32px;
  background: #FFA500;
  color: #161616;
  box-shadow: 0 1px 9px #FFA50022, 0 1px 2px #0001;
}
button:active {
  box-shadow: 0 0 2px #FFA50080 inset;
}
button:focus-visible {
  outline: 2px solid #FFA500;
}
button:hover {
  background: #e09a38;
}


/* ------------ COOKIE BANNER ------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2300;
  display: flex;
  justify-content: center;
  background: rgba(30, 30, 30, 0.99);
  box-shadow: 0 -2px 25px #0009;
  border-top: 2px solid #FFA50080;
  padding: 32px 10px;
  gap: 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #FFF;
  font-size: 1rem;
  animation: cookieBannerSlideIn .5s cubic-bezier(.18,.85,.57,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1;
  min-width: 180px;
  max-width: 600px;
  margin-right: 28px;
  color: #FFF;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner__btn, .cookie-banner__btn--accent {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  padding: 9px 22px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .14s, box-shadow .17s;
  color: #181818;
  background: #FFA500;
  box-shadow: 0 1px 7px #FFA50022;
}
.cookie-banner__btn--secondary {
  background: #dedede;
  color: #151611;
}
.cookie-banner__btn--accent {
  box-shadow: 0 1px 11px #FFA50077;
  color: #222;
  font-weight: 700;
}
.cookie-banner__btn:focus-visible {
  outline: 2px solid #FFA500;
}
.cookie-banner__btn:hover { background: #e09a38; color: #FFF; }
.cookie-banner__btn--secondary:hover {
  background: #FAFAFA;
  color: #FFA500;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 6px;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%) scale(0.98);
  min-width: 320px;
  max-width: 420px;
  z-index: 2400;
  background: #23201a;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px #0007;
  padding: 34px 28px 26px 28px;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity .24s, transform .23s;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieModalIn .35s cubic-bezier(.15,.9,.62,1);
}
@keyframes cookieModalIn {
  from { transform: translateX(-50%) scale(0.8); opacity: 0; }
  to { transform: translateX(-50%) scale(1); opacity: 1; }
}
.cookie-modal.open {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scale(1);
}
.cookie-modal__close {
  background: none;
  border: none;
  position: absolute;
  right: 20px;
  top: 15px;
  color: #FFA500;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color .15s;
  z-index: 2;
}
.cookie-modal__close:hover { color: #FFF; }
.cookie-modal__title {
  color: #FFA500;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
}
.cookie-modal__category input[type='checkbox'] {
  accent-color: #FFA500;
  width: 20px; height: 20px;
  margin-right: 0;
  border-radius: 5px;
}
.cookie-modal__category label {
  font-size: 1rem;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal__actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-modal__btn {
  padding: 9px 18px;
  background: #FFA500;
  color: #191919;
  border: none;
  border-radius: 19px;
  font-weight: 600;
  transition: background .13s, color .13s;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.cookie-modal__btn:hover { background: #e09a38; color: #fff; }

/* SCROLLBAR DESIGN */
/* For webkit browsers only */
::-webkit-scrollbar { width: 8px; background: #222226; }
::-webkit-scrollbar-thumb { background: #353535; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #FFA50088; }

/* --------- UTILITY --------- */
.d-none {
  display: none !important;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

/* ----------- RESPONSIVE LAYOUT ----------- */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .card-container, .content-grid, footer .container {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
    max-width: 100vw;
  }
  .section, .hero, .about, .services, .features, .cta, .contact, .thank-you, .testimonials {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
}

/* --------------- INDUSTRIAL MODERN AESTHETIC --------------- */
body, .section, .about, .services, .features, .contact {
  /* subtle metal look via monochrome and shadow */
  background: #181818;
  color: #eee;
}
.hero, .cta {
  background: #202020;
  border-bottom: 2px solid #FFA50099;
}
.card, .services ul > li, .features ul > li {
  background: #232323;
  border: 1.5px solid #3E3E3E;
  color: #FFFDC7;
  box-shadow: 0 2px 18px 0 rgba(100,100,100,0.11);
}
.card, .services ul > li, .features ul > li, .testimonial-card {
  border-radius: 12px;
}

h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: .03em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  color: #FFA500;
}

/* Metallic accent lines */
.section h2, .content-wrapper h2 {
  border-left: 6px solid #919191;
  padding-left: 13px;
  margin-bottom: 18px;
}

/* Shadows for urban depth */
.card, .testimonial-card, .services ul > li, .features ul > li {
  box-shadow: 0 4px 32px 0 rgba(100,100,100,0.12), 0 1.5px 0px 0 #51515123 inset;
}

/* Buttons as metal discs */
button, .cta-btn, .cookie-banner__btn, .cookie-modal__btn {
  background: linear-gradient(105deg, #FFA500 80%, #EEE7A0 100%);
  color: #191919;
  border: none;
  border-radius: 27px;
  box-shadow: 0 2px 17px 0 #FFA5003a, 0 2px 4px #23232316;
  transition: background .19s, box-shadow .16s, color .15s;
}
button:active, .cta-btn:active, .cookie-banner__btn:active, .cookie-modal__btn:active {
  box-shadow: 0 1px 3px #FFA50028;
  background: #e09a38;
  color: #fff;
}

/* Cards metallic border on hover */
.card:hover, .services ul > li:hover, .features ul > li:hover, .testimonial-card:hover {
  border-color: #D4D1C4;
  box-shadow: 0 6px 28px #FFA50036, 0 0 0 1.7px #FFA50066;
}

/* Urban feel typography for Slogans */
.hero h1, .about h1, .cta h2, .thank-you h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #FFA500;
  text-shadow: 2px 2px 8px #19191977;
}

/* Spacing Between Visual Elements */
.section > *, .features > *, .about > *, .services > *, .testimonials > *, .cta > * {
  margin-bottom: 20px;
}
.section > *:last-child, .features > *:last-child, .about > *:last-child, .services > *:last-child, .testimonials > *:last-child, .cta > *:last-child {
  margin-bottom: 0;
}

/* INDIVIDUAL PAGE UTILITY */
@media (max-width: 550px) {
  .card,
  .testimonial-card,
  .services ul > li,
  .features ul > li {
    max-width: 98vw;
    padding: 12px 8px;
    font-size: 0.99rem;
  }
  .hero h1 { font-size: 1.36rem; }
  h1, h2 { font-size: 1.14rem; }
}

/* Animation on entry for cards */
.card, .testimonial-card, .cta-btn {
  animation: fadeSlideUp .8s cubic-bezier(.15,0,.38,1) both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MICRO-INTERACTIONS */
a, button, .cta-btn, .cookie-banner__btn, .cookie-modal__btn {
  transition: color .16s, background .19s, box-shadow .19s, border-color .19s;
}
a:active, button:active, .cta-btn:active {
  color: #FFEABB;
}
/* Focus highlight for accessibility */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px solid #FFA500;
  outline-offset: 1.5px;
}

/* --------- NO GRID, FLEXBOX ONLY --------- */
/* All container layouts: ONLY display: flex! */
/* --- (Already used as specified above) --- */

