/* --- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F0ED;
  color: #23272F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.2em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #294258;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D9A66B;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #294258;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 12px; }
h3 { font-size: 1.125rem; margin-bottom: 8px; }

/* --- SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
p, li {
  font-size: 1rem;
  line-height: 1.75;
  color: #294258;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(41,66,88,0.045);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 32px;
  min-height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
}
header > a img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #294258;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 10px 0;
  opacity: 0.93;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #D9A66B;
  border-bottom: 2px solid #D9A66B;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 30px;
  background: #D9A66B;
  color: #294258;
  border-radius: 27px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px 0 rgba(41,66,88,0.10);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  outline: none;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-left: 0;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #294258;
  color: #F4F0ED;
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #294258;
  cursor: pointer;
  display: none;
  z-index: 130;
  margin-left: 24px;
  line-height: 1;
  padding: 8px 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #D9A66B;
  color: #294258;
}

/* --- MOBILE NAV MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #f4f0edee;
  box-shadow: 0 0 80px rgba(41,66,88,0.09);
  z-index: 1000;
  padding: 44px 24px 24px 24px;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #294258;
  position: absolute;
  right: 24px;
  top: 20px;
  cursor: pointer;
  z-index: 1101;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #D9A66B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #294258;
  font-weight: 600;
  padding: 16px 0 8px 0;
  border-bottom: 1px solid rgba(41,66,88,0.09);
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D9A66B;
}

/* --- HERO HEADER --- */
.hero {
  background: #D9A66B;
  color: #294258;
  display: flex;
  align-items: center;
  min-height: 320px;
  padding: 56px 0 56px 0;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 16px 42px 0 rgba(41,66,88,0.09);
}
.hero .container {
  align-items: center;
}
.hero h1 {
  color: #294258;
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.hero h2 {
  color: #294258;
  font-size: 1.375rem;
  margin-bottom: 30px;
}
.hero .cta-btn {
  font-size: 1.1rem;
}


/* --- FEATURE AREAS --- */
.features {
  background: #F4F0ED;
  box-shadow: 0 4px 32px rgba(41,66,88,0.07);
  border-radius: 2rem;
  margin-top: -32px;
  z-index: 9;
  position: relative;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 24px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff8ef;
  border-radius: 1.4rem;
  padding: 30px 24px 22px 24px;
  box-shadow: 0 3px 24px 0 rgba(41,66,88,0.08);
  flex: 1 1 220px;
  min-width: 212px;
  max-width: 286px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 6px rgba(217,166,107,0.13));
}
.feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #294258;
  font-size: 1.13rem;
  margin: 0 0 5px 0;
}
.feature-item p {
  font-size: 1rem;
  color: #294258;
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 6px rgba(41,66,88,0.15);
  transform: translateY(-6px) scale(1.025);
}

/* --- SERVICE TEASERS / TILES / PREVIEWS --- */
.services-preview .service-teasers,
.service-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 16px 0 28px 0;
}
.service-teaser, .service-tile {
  background: #fff8ef;
  border-radius: 1.1rem;
  box-shadow: 0 3px 16px 0 rgba(217,166,107,0.09);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 190px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.13s;
  position: relative;
}
.service-teaser h3, .service-tile h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #294258;
  font-size: 1.14rem;
  margin-bottom: 7px;
}
.service-teaser p, .service-tile p {
  font-size: 1rem;
  color: #294258;
}
.service-teaser:hover, .service-tile:hover {
  box-shadow: 0 5px 24px 5px rgba(217,166,107,.17);
  transform: translateY(-3px) scale(1.017);
}

/* --- PROJECT CARDS --- */
.project-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.project-card {
  background: #fff8ef;
  border-radius: 1.2rem;
  box-shadow: 0 3px 16px 0 rgba(217,166,107,0.09);
  flex: 1 1 260px;
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.13s;
  position: relative;
}
.project-card:hover {
  box-shadow: 0 8px 36px 3px rgba(41,66,88,0.09);
  transform: translateY(-6px) scale(1.025);
}
.project-card h2 {
  font-size: 1.17rem;
  color: #294258;
  margin-bottom: 7px;
}
.project-card span {
  font-weight: 600;
  color: #D9A66B;
  font-size: 1rem;
  margin-top: 7px;
  display: block;
}

/* --- TESTIMONIALS --- */
.testimonials, .testimonials-slider {
  width: 100%;
}
.testimonials-slider,
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card {
  background: #FFF;
  border-radius: 1.1rem;
  box-shadow: 0 6px 30px 0 rgba(41,66,88,0.14);
  padding: 20px 24px 12px 24px;
  margin-bottom: 20px;
  color: #25252a;
  min-width: 220px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.18s, transform .14s;
  min-height: 144px;
}
.testimonial-card p {
  color: #23272F;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #294258;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.testimonial-card .rating {
  color: #D9A66B;
  font-size: 1.22rem;
  font-weight: bold;
  letter-spacing: 0.18em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 12px 32px 0 rgba(41,66,88,0.17), 0 1.5px 18px 0 rgba(217,166,107,0.09);
  transform: translateY(-5px) scale(1.018);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: #294258;
  color: #F4F0ED;
  border-radius: 2.5rem 2.5rem 0 0;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 0 -12px 36px 0 rgba(41,66,88,0.09);
}
.cta-banner h2,
.cta-banner .cta-btn {
  color: #F4F0ED;
}
.cta-banner h2 {
  font-size: 1.6rem;
  color: #D9A66B;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-banner .cta-btn {
  background: #D9A66B;
  color: #294258;
  margin: 10px 0 22px 0;
  box-shadow: 0 3px 18px 0 rgba(217,166,107,.10);
}
.cta-banner .cta-btn:hover {
  background: #fff8ef;
  color: #294258;
}
.cta-banner .contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.cta-banner .contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F4F0ED;
  font-size: 1rem;
}
.cta-banner .contact-details img {
  width: 22px;
  height: 22px;
}

/* --- CONTACT DETAILS --- */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
}
.contact-details li {
  font-size: 1rem;
  color: #294258;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details img {
  width: 20px;
  height: 20px;
}

/* --- MAP PLACEHOLDER (CONTACT.HTML) --- */
.map-placeholder {
  margin-top: 28px;
  background: repeating-linear-gradient(-45deg, #F4F0ED, #F4F0ED 20px, #fff 20px, #fff 40px);
  border: 2px dashed #D9A66B;
  min-height: 130px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #D9A66B;
  font-size: 1.06rem;
}

/* --- TEXT-IMAGE & USP/LIST/REFERENCE/TEAM --- */
.text-image-section, .reference-list ul, .usp ul, .team ul, .legal-text ul, .service-overview ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.faq-item {
  background: #fff8ef;
  border-radius: 1.05rem;
  padding: 18px 20px 10px 20px;
  box-shadow: 0 2px 16px 0 rgba(217,166,107,.09);
  margin-bottom: 14px;
  transition: box-shadow 0.2s, transform .1s;
}
.faq-item h2 { font-size: 1.1rem; margin-bottom: 6px; }
.faq-item p {
  font-size: 1rem;
  color: #294258;
}
.faq-item:hover {
  box-shadow: 0 4px 21px 0 rgba(41,66,88,0.12);
  transform: translateY(-4px) scale(1.012);
}

/* --- THANK YOU / LEGAL TEXT --- */
.thank-you, .legal-text {
  background: #fff8ef;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(217,166,107,0.094);
  padding: 36px 24px;
  margin-bottom: 60px;
}
.legal-text h1, .thank-you h1 {
  color: #294258;
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.legal-text h2, .thank-you h2 {
  color: #D9A66B;
  font-size: 1.15rem;
  margin-top: 22px;
}

/* --- FOOTER --- */
footer {
  background: #294258;
  color: #F4F0ED;
  padding: 32px 0;
  margin-top: 40px;
}
footer li {
  color: white !important;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
}
.footer-brand img {
  height: 50px;
  width: auto;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a {
  color: #D9A66B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.93;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #fff8ef;
}
.contact-info ul {
  color: #F4F0ED;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  background: #294258f7;
  box-shadow: 0 -4px 48px rgba(41,66,88,0.10);
  padding: 24px 10vw 24px 10vw;
  gap: 30px;
  transition: transform 0.32s cubic-bezier(.67,.11,.35,.93);
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  color: #F4F0ED;
  font-size: 1rem;
  flex: 1 1 300px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 1.3rem;
  padding: 9px 21px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.22s, color 0.22s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #D9A66B;
  color: #294258;
  box-shadow: 0 6px 18px 0 rgba(217,166,107,.12);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFF8EF;
  color: #294258;
}
.cookie-btn.reject {
  background: #fff8ef;
  color: #294258;
  border: 1px solid #D9A66B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #D9A66B;
  color: #294258;
}
.cookie-settings-btn {
  background: transparent;
  color: #D9A66B;
  border: 1px dashed #D9A66B;
  padding: 8px 16px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #D9A66B;
  color: #294258;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,70vh) scale(0.97);
  background: #FFF;
  color: #294258;
  border-radius: 1.7rem;
  box-shadow: 0 12px 46px #2942582c;
  padding: 36px 28px 24px 28px;
  min-width: 320px;
  z-index: 4100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.33s cubic-bezier(.70,.15,.35,.8);
}
.cookie-modal.show {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  margin-bottom: 20px;
}
.cookie-modal .cookie-category-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0;
}
.cookie-category-row label {
  flex: 1;
  font-size: 1rem;
  color: #294258;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: #D9A66B;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-modal .cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 8px 19px;
}

@media (max-width: 1200px) {
  .container { max-width: 960px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-item,
  .service-teaser, .service-tile,
  .project-card, .testimonial-card {
    min-width: 160px;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 8px;
    min-height: 58px;
  }
  header > a img, .footer-brand img {
    height: 37px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section,
  .cta-banner,
  .thank-you,
  .legal-text {
    padding: 22px 7vw;
    border-radius: 0.9rem;
  }
  .features .feature-grid,
  .services-preview .service-teasers,
  .service-tiles,
  .project-cards,
  .testimonials-slider {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-teaser, .service-tile,
  .project-card, .testimonial-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .content-wrapper {
    gap: 18px;
  }
  .cta-banner .contact-details ul, .contact-details ul {
    gap: 6px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer-brand img {
    height: 28px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding: 40px 0 30px 0;
    min-height: 180px;
    border-radius: 0 0 1.2rem 1.2rem;
  }
  .hero h1 { font-size: 1.6rem; }
  .hero h2 { font-size: 1rem; }
  .cta-banner h2 { font-size: 1.12rem; }
  .faq-item h2 { font-size: 1rem; }
}
@media (max-width: 530px) {
  .container {
    padding: 0 3vw;
  }
  .section, .thank-you, .legal-text, .cta-banner {
    padding: 8vw 2vw;
  }
  .cookie-banner {
    padding: 19px 2vw 19px 2vw;
    flex-direction: column;
    gap: 10px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 24px 10px 12px 10px;
    font-size: 0.98rem;
  }
}

/* --- ARTISTIC / CREATIVE / VIBRANT DECOR --- */
.hero, .cta-banner {
  position: relative;
  overflow: hidden;
}
.hero:before, .cta-banner:before {
  content: '';
  display: block;
  position: absolute;
  top: -60px; left: -80px;
  width: 210px; height: 180px;
  background: rgba(217,166,107,0.24);
  border-radius: 95px 110px 140px 110px;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
  mix-blend-mode: lighten;
}
.hero:after, .cta-banner:after {
  content: '';
  display: block;
  position: absolute;
  right: -52px; bottom: -30px;
  width: 130px; height: 140px;
  background: rgba(41,66,88,0.08);
  border-radius: 80px 60px 40px 110px;
  z-index: 0;
  pointer-events: none;
  filter: blur(7px);
}

/* --- ANIMATIONS --- */
.cta-btn, .feature-item, .service-teaser, .service-tile, .project-card, .testimonial-card, .faq-item, .cookie-btn, .cookie-settings-btn {
  transition: box-shadow 0.18s, background 0.2s, color 0.18s, transform 0.14s;
}

/* -- Artistic Font Tweaks -- */
h1, h2, h3 {
  letter-spacing: 0.016em;
  text-rendering: geometricPrecision;
}
h1 {
  text-shadow: 0 2px 10px rgba(217,166,107,0.14);
}

/* --- Misc & Utility --- */
::-webkit-scrollbar { width: 9px; background: #FFF8EF; }
::-webkit-scrollbar-thumb { background: #D9A66B; border-radius: 7px; }

/* Hide visually when not needed */
.mobile-menu-close { display: block; }
.mobile-menu:not(.active) { pointer-events: none; }
.cookie-modal:not(.show) { pointer-events: none; }

/* --- Typography Hierarchy --- */
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #294258;
}
h4 { font-size: 1.06rem; }
h5 { font-size: 0.99rem; }
h6 { font-size: 0.93rem; }

/* --- Ensuring NO Overlap --- */
.feature-grid, .service-teasers, .service-tiles, .project-cards, .testimonials-slider {
  gap: 24px;
}

.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; }

/* --- End enforced patterns --- */