/* 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;
}
body {
  line-height: 1.6;
  color: #21446B;
  background: #F9FAFB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #21446B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #F4A13B;
  text-decoration: underline;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
strong, b {
  font-weight: bold;
}

/* BRAND COLORS AS CUSTOM PROPERTIES */
:root {
  --primary: #21446B;
  --secondary: #F4A13B;
  --accent: #F9FAFB;
  --grey: #ECEFF1;
  --dark: #11253B;
  --text: #21446B;
  --white: #fff;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
h1 span, h2 span, h3 span {
  color: var(--secondary);
}
p, ul li, ol li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

/* CREATIVE ARTISTIC ACCENTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 28px;
  box-shadow: 0 4px 28px 0 rgba(33,68,107,0.08);
}
section.cta {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 38px;
}
.hero {
  background: linear-gradient(120deg, #F4A13B 70%, #21446B 130%);
  color: var(--white);
  padding: 64px 20px 40px 20px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 42px rgba(33,68,107,0.12);
}
.hero h1, .hero p {
  color: var(--white) !important;
}
.hero .button.primary {
  background: var(--white);
  color: var(--primary);
}
.hero .button.primary:hover {
  background: #ffe7c5;
  color: var(--primary);
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FLEXBOX LAYOUTS */
.feature-grid, .property-cards, .services-grid, .team-intros, .reference-highlights, .blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(33,68,107,0.07);
  padding: 30px 22px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #21446B;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(33,68,107,0.06);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 420px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(33,68,107,0.14);
  transform: translateY(-4px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px 38px 18px 18px;
  box-shadow: 0 2px 10px 0 rgba(244, 161, 59,0.09);
  padding: 24px 20px 24px 20px;
  min-width: 220px;
  flex: 1 1 240px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(33,68,107,0.06);
  padding: 26px 20px;
  min-width: 220px;
  flex: 1 1 230px;
  margin-bottom: 20px;
}
.reference-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(33,68,107,0.07);
  padding: 26px 20px;
  margin-bottom: 20px;
  flex: 1 1 250px;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(33,68,107,0.08);
  padding: 24px 18px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px 0 rgba(33,68,107,0.14);
  transform: translateY(-4px) scale(1.03);
}
.faq-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(33,68,107,0.06);
  margin-bottom: 18px;
  padding: 16px 18px;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 14px 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 36px;
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-top: 12px;
  box-shadow: 0 2px 8px 0 rgba(33,68,107,0.07);
}
.button.primary {
  background: var(--primary);
  color: var(--white);
}
.button.primary:hover, .button.primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
}
.button.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 24px 0 rgba(244,161,59,0.20);
}

/* CHIPS & TAGS */
.chip, .tag {
  display: inline-block;
  background: var(--accent);
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.98rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-right: 8px;
  margin-bottom: 6px;
  border: 1px solid var(--secondary);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.chip:hover, .tag:hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 8px 0 rgba(244,161,59,0.14);
}

/* ACCENTUATED ELEMENTS */
ul.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
ul.credentials-list li {
  background: var(--accent);
  border-left: 6px solid var(--secondary);
  padding: 10px 18px;
  border-radius: 14px;
}

/* HEADER & MOBILE MENU */
header {
  background: var(--white);
  padding: 0;
  border-bottom: 2px solid #eceff1;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
header .button.primary {
  padding: 10px 22px;
  font-size: 0.96rem;
  margin-top: 0;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid var(--secondary);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--white);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(120deg,var(--secondary) 70%, var(--primary) 140%);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1002;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(0.7,0,.3,1);
  box-shadow: 0 4px 32px 0 rgba(33,68,107,0.12);
  padding: 32px 24px 24px 32px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 6px 20px 6px 12px;
  margin-bottom: 30px;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 6px;
  border-radius: 8px;
  transition: background 0.12s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--white);
  color: var(--secondary);
}

/* SECTIONS & GAP 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;
}

/* TESTIMONIAL & REVIEW SECTIONS */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.review-summaries ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  padding-left: 0;
}
.review-summaries li {
  background: #f4f7fb;
  color: var(--primary);
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 1.05rem;
  font-weight: 500;
}
.client-feedback {
  background: #F4A13B11;
  color: #21446B;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 0.98rem;
  font-style: italic;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 38px 0 24px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 70px;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
}
footer .footer-menu a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.17s;
}
footer .footer-menu a:hover {
  color: var(--white);
  text-decoration: underline;
}
footer .impressum-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.95rem;
}
footer .impressum-links a {
  color: #fff;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.1s;
}
footer .impressum-links a:hover {
  border-color: var(--secondary);
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 6px;
}
.social-links a img {
  height: 34px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px #f4a13b44);
  transition: filter 0.2s, transform 0.2s;
}
.social-links a:hover img {
  filter: brightness(1) saturate(1.2) drop-shadow(0 4px 16px #f4a13b88);
  transform: scale(1.1) rotate(-6deg);
}
footer img[alt="HeimVorteil Dortmund"] {
  margin-top: 20px;
  height: 50px;
  opacity: 0.88;
  filter: drop-shadow(0 3px 14px #F4A13B44);
}

/* CONTACT SECTION */
.contact-methods {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px 0 rgba(33,68,107,0.07);
  padding: 12px 16px;
}
.contact-info img {
  height: 24px;
}
.address-block {
  background: #f7eee1;
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 14px;
}

/* INPUTS (BLOG QUICKSEARCH) */
input[type="text"], input[type="email"], input[type="tel"] {
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  padding: 10px 16px;
  margin: 6px 0;
  font-size: 1rem;
  outline: none;
  transition: border 0.15s, box-shadow 0.16s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 0 0 2px #ffe7c555;
}

.quick-search {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.categories-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

/* OLs & Lists for process flows */
ol.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
ol.process-steps li {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 14px;
  padding: 11px 18px;
  font-weight: bold;
  font-size: 1rem;
}

/* BLOG CARD LINKS */
.blog-card a {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 14px;
  display: inline-block;
  transition: color 0.15s, text-decoration 0.13s;
}
.blog-card a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.cookie-banner-inner {
  max-width: 460px;
  width: 97vw;
  background: var(--primary);
  color: #fff;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -4px 22px 0 rgba(33,68,107,0.13);
  padding: 22px 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(60px);
  pointer-events: all;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.33,1,0.68,1);
  font-size: 1.07rem;
}
.cookie-banner.open .cookie-banner-inner {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner .button {
  padding: 10px 20px;
  font-size: 0.96rem;
}
.cookie-banner .button.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .button.accept:hover, .cookie-banner .button.accept:focus {
  background: var(--white);
  color: var(--primary);
}
.cookie-banner .button.reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .button.reject:hover {
  background: #fffbf2;
  color: #e26a00;
}
.cookie-banner .button.settings {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}
.cookie-banner .button.settings:hover {
  background: #ffe7c6;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1202;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,68,107,0.36);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(33,68,107,0.18);
  padding: 36px 24px 22px 24px;
  max-width: 390px;
  width: 96vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 2px;
}
.cookie-close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 9px;
  padding: 4px 13px;
  font-size: 1.38rem;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.14s;
}
.cookie-close-modal:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category strong {
  color: var(--secondary);
  font-size: 1.07em;
}
.cookie-toggle {
  appearance: none;
  outline: none;
  border: 1.5px solid var(--primary);
  width: 38px;
  height: 20px;
  border-radius: 16px;
  background: #f9fafb;
  position: relative;
  transition: background 0.14s, border-color 0.15s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--secondary);
  border-color: #f4a13b;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  box-shadow: 0 1px 2px #0001;
  transition: left 0.2s;
}
.cookie-toggle:checked::after {
  left: 19px;
}
.cookie-category[aria-disabled="true"] .cookie-toggle {
  opacity: 0.44;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal .button {
  padding: 9px 18px;
  font-size: 0.99rem;
}

/* ANIMATION SEQUENCES */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(60px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity:0; transform: translateX(-24px); }
  to { opacity:1; transform: translateX(0); }
}
@keyframes highlightStroke {
  0%   { box-shadow: 0 0 0 0 #f4a13b44; }
  80%  { box-shadow: 0 0 0 13px #f4a13b22; }
  100% { box-shadow: 0 0 0 0 #f4a13b00; }
}
.card:focus-within, .feature-item:focus-within {
  animation: highlightStroke 1.2s 1;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
}
@media (max-width: 991px) {
  .container { max-width: 760px; }
  .feature-grid, .property-cards, .services-grid, .team-intros, .reference-highlights, .blog-cards {
    gap: 16px;
  }
  .team-member, .service-item, .feature-item, .reference-item, .testimonial-card, .blog-card {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .main-nav, header .button.primary { display: none; }
  .mobile-menu-toggle { display: inline-block; z-index: 1010; }
  .section, section { padding: 26px 6vw; }
  .container { padding: 0 6vw; }
  .feature-grid, .property-cards, .services-grid, .team-intros, .reference-highlights, .blog-cards {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper { gap: 12px; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .contact-methods {
    flex-direction: column;
    gap: 14px;
  }
  .footer .container, footer .container {
    gap: 18px;
    padding: 0 8px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.07rem; }
  .button { font-size: 0.94rem; padding: 11px 16px; }
  .mobile-nav a { font-size: 1.1rem; padding: 10px 4px; }
  .cookie-modal-content { padding: 20px 6vw 12px 6vw; max-width: 98vw; }
}

/* ARTISTIC UNIQUE VISUAL ACCENTS */
.hero, section.cta, .section.cta {
  position: relative;
  overflow: hidden;
}
.hero::before, section.cta::before {
  content: '';
  position: absolute;
  left: -80px; top: -60px;
  width: 260px; height: 180px;
  background: radial-gradient(circle at 80% 30%, #ffe7c5 60px, transparent 150px);
  z-index: 0;
  opacity: 0.56;
}
.hero::after, section.cta::after {
  content: '';
  position: absolute;
  right: -50px; bottom: -50px;
  width: 180px; height: 110px;
  background: radial-gradient(circle at 42% 68%, #ffe7c566 50px, transparent 110px);
  z-index: 0;
}
.content-wrapper > * {
  position: relative;
  z-index: 1;
}

/* UTILITIES FOR VIBRANT -CREATIVE LAYOUTS */
.artistic-shadow {
  box-shadow: 0 0 0 6px #F4A13B22, 0 3px 24px 0 #21446B18;
}
.rounded-xl {
  border-radius: 28px;
}
.bg-primary {
  background: var(--primary);
  color: #fff;
}
.bd-secondary {
  border: 2px solid var(--secondary);
}

/* HIGHLIGHTED TEXT */
.highlight {
  background: linear-gradient(90deg, #FFF2DE 0, #F4A13B33 100%);
  border-radius: 10px;
  padding: 0 6px;
  color: #21446B;
}

/* A11Y FOCUS RINGS */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* === END OF CSS === */
