/* -------------------------------------------------------
    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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
av, footer, header, main, section, article {
  display: block;
}
a {
  color: #223349;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #111;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

/* -------------------------------------------------------
    BRAND TYPOGRAPHY
------------------------------------------------------- */
h1, h2, h3, h4, .tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.12rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
}
strong {
  color: #111;
  font-weight: 700;
}
.tagline {
  font-size: 1.05rem;
  color: #7b7b7b;
  letter-spacing: 0.03em;
}

/* Typography scale for responsiveness */
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.6rem; }
  h3 { font-size: 1.7rem; }
  body { font-size: 18px; }
}

/* -------------------------------------------------------
    LAYOUT CONTAINERS & SECTIONS
------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 12px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}

/* Flex patterns - mandatory classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(30, 30, 30, 0.08);
  padding: 24px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(25, 25, 25, 0.14);
}
.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: 22px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(24,24,24,0.07);
  min-width: 260px;
  margin-bottom: 24px;
  transition: box-shadow 0.25s, background 0.2s;
}
.testimonial-card:hover {
  background: #eaeaea;
  box-shadow: 0 8px 32px 0 rgba(24,24,24,0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Utility Flex Classes (for custom combos) */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}

/* -------------------------------------------------------
    HEADER & NAVIGATION
------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(20, 25, 33, 0.02);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  padding: 4px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #223349;
  position: relative;
  border-radius: 5px;
  transition: color 0.28s, background 0.2s;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: #e9e9e9;
  color: #111;
}

/* Active nav underline (optional) */
.main-nav a.active {
  border-bottom: 2px solid #111;
}

/* Logo
-------------------------------- */
header a > img {
  height: 36px;
  width: auto;
}

/* Primary Button
-------------------------------- */
.btn-primary,
.main-nav .btn-primary,
.mobile-nav .btn-primary {
  background: #111;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  border: none;
  border-radius: 22px;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(34,51,73,0.04);
  transition: background 0.17s, color 0.19s, box-shadow 0.2s, transform 0.13s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #223349;
  color: #fff;
  box-shadow: 0 8px 28px 0 rgba(34,51,73,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* -------------------------------------------------------
    MOBILE NAVIGATION (BURGER / OVERLAY)
------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #111;
  cursor: pointer;
  z-index: 100;
  border-radius: 7px;
  padding: 7px 14px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f0f0f0;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.6,.09,.54,1.08), opacity 0.15s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #181818;
  font-size: 2.4rem;
  padding: 16px 24px 16px 16px;
  cursor: pointer;
  margin: 0;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #63A69F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 40px 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #223349;
  padding: 10px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 5px;
  width: 100%;
  transition: background 0.22s, color 0.16s;
}
.mobile-nav a:not(.btn-primary):hover,
.mobile-nav a:not(.btn-primary):focus {
  background: #efefef;
  color: #111;
}
.mobile-nav .btn-primary {
  margin-top: 18px;
  width: 100%;
  text-align: center;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .header .container {
    gap: 13px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 861px) {
  .mobile-menu {
    display: none !important;
  }
}


/* -------------------------------------------------------
    HERO & CTA SECTIONS
------------------------------------------------------- */
.hero {
  background: #111;
  color: #fff;
  padding: 60px 0 64px 0;
  display: flex;
  align-items: center;
}
.hero h1, .hero p, .hero a {
  color: #fff;
}
.hero .btn-primary {
  margin-top: 30px;
  background: #fff;
  color: #181818 !important;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(100,100,100,0.09);
  border: 1.5px solid #222;
  transition: background 0.13s, color 0.12s, border 0.18s;
}
.hero .btn-primary:hover,
.hero .btn-primary:focus {
  background: #111;
  color: #fff !important;
  border-color: #fff;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 42px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

.cta-final, .modetipps-cta, .blog-cta, .confirmation-section {
  background: #f7f7f7;
  border-top: 1px solid #ececec;
  padding: 48px 0 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-final h2, .modetipps-cta h2, .blog-cta h2, .confirmation-section h1 {
  text-align: center;
  color: #181818;
}
.cta-final .btn-primary, .modetipps-cta .btn-primary, .confirmation-section .btn-primary {
  display: inline-block;
  margin-top: 30px;
}

/* -------------------------------------------------------
    FEATURE & CARD GRIDS
------------------------------------------------------- */
.features, .feature-grid, .trend-list, .occasion-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid, .trend-list, .occasion-grid {
  width: 100%;
}
@media (max-width: 900px) {
  .feature-grid, .trend-list, .occasion-grid {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .trend-list, .occasion-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-card, .trend-block, .occasion-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(24,24,24,0.06);
  padding: 30px 26px 26px 26px;
  flex: 1 1 270px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.feature-card:hover, .trend-block:hover, .occasion-card:hover {
  box-shadow: 0 8px 36px 0 rgba(24,24,24,0.18);
  transform: translateY(-2px) scale(1.03);
}
.feature-card img, .trend-block img, .occasion-card img {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .feature-card, .trend-block, .occasion-card {
    padding: 20px 14px 18px 14px;
    min-width: 0;
  }
}

/* -------------------------------------------------------
    TESTIMONIALS & LISTS
------------------------------------------------------- */
.testimonials {
  background: #f2f2f2;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  color: #181818;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 280px;
  box-shadow: 0 2px 18px 0 rgba(34,34,34,0.06);
  border-radius: 18px;
  padding: 28px 24px 20px 24px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.testimonial-card .customer {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #888;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .testimonial-list {
    gap: 18px;
  }
  .testimonial-card {
    padding: 19px 13px 15px 13px;
    min-width: 0;
    max-width: 100%;
  }
}

/* -------------------------------------------------------
    BLOG POSTS, LISTS, DETAILS
------------------------------------------------------- */
.blog-articles .post-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 30px;
}
.blog-articles .post-list li {
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 1px 12px 0 rgba(30,30,30,0.04);
  padding: 28px 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
}
.blog-articles .post-list li a {
  align-self: flex-end;
  font-size: 0.98rem;
  font-weight: 600;
  color: #223349;
  margin-top: 9px;
  transition: color 0.17s, text-decoration 0.08s;
  border-bottom: 1.5px solid #ccc;
}
.blog-articles .post-list li a:hover,
.blog-articles .post-list li a:focus {
  color: #181818;
  border-bottom: 1.5px solid #111;
}
@media (max-width: 700px) {
  .blog-articles .post-list {
    gap: 18px;
  }
  .blog-articles .post-list li {
    padding: 15px 8px 15px 11px;
  }
}

/* -------------------------------------------------------
    SPECIAL SECTIONS / LEGAL, ABOUT, MAP
------------------------------------------------------- */
.legal-section {
  background: #f7f7f7;
  padding: 48px 0 48px 0;
}
.legal-section h1, .legal-section h2 {
  color: #223349;
}
.legal-section ul {
  margin-top: 10px;
  margin-bottom: 22px;
  padding-left: 20px;
  color: #222;
}
.legal-section li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  padding: 8px 0;
  color: #223349;
}
.contact-info-list img {
  height: 24px; width: 24px;
}
.map-snippet {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 1rem;
  color: #111;
  box-shadow: 0 1.5px 8px 0 rgba(34,51,73,0.06);
}

/* -------------------------------------------------------
    FOOTER
------------------------------------------------------- */
footer {
  background: #181818;
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 50px 0 36px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-weight: 600;
  color: #f7f7f7;
  font-size: 1rem;
  padding: 1.5px 0;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #63A69F;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.footer-brand img {
  height: 45px;
  width: auto;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
}
.footer-social img {
  width: 26px;
  height: 26px;
  opacity: 0.74;
  transition: opacity 0.18s;
}
.footer-social img:hover {
  opacity: 1.0;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .footer-nav, .footer-brand, .footer-social {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 20px 0 16px 0;
    margin-top: 20px;
  }
}

/* -------------------------------------------------------
    COOKIE CONSENT BANNER & MODAL
------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #111;
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 9000;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 4px 31px 0 rgba(10,10,24,0.18);
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 320px;
  font-size: 1rem;
  color: #fff;
  margin-right: 22px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-consent-banner .btn-cookie {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  padding: 9px 22px;
  border: none;
  border-radius: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 1px 7px 0 rgba(30,30,30,0.03);
}
.btn-cookie.accept {
  background: #223349;
  color: #fff;
}
.btn-cookie.accept:hover,
.btn-cookie.accept:focus {
  background: #fff;
  color: #111;
}
.btn-cookie.reject {
  background: #fff;
  color: #181818;
}
.btn-cookie.reject:hover,
.btn-cookie.reject:focus {
  background: #181818;
  color: #fff;
}
.btn-cookie.settings {
  background: #63A69F;
  color: #fff;
}
.btn-cookie.settings:hover,
.btn-cookie.settings:focus {
  background: #223349;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 10px 16px 10px;
    gap: 14px;
  }
  .cookie-consent-banner .cookie-message {
    margin-right: 0;
    margin-bottom: 13px;
    font-size: 0.93rem;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.72);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  box-shadow: 0 8px 36px 0 rgba(17,17,17,0.24);
  padding: 36px 32px 28px 32px;
  min-width: 310px;
  max-width: 95vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 100000;
  transform: translateY(15px);
  opacity: 1;
  animation: cookieModalFadeIn 0.33s cubic-bezier(.7,.19,.19,.92);
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 8px 20px 8px;
    width: 98vw;
    min-width: 0;
  }
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(15px); }
}
.cookie-modal h2 {
  color: #223349;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-size: 1.01rem;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #e1e1e1;
  border-radius: 16px;
  transition: background 0.2s;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #222;
  border-radius: 50%;
  transition: transform 0.21s, background 0.2s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #63A69F;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  background: #fff;
  transform: translateX(20px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie-modal-close {
  background: none;
  border: none;
  color: #181818;
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .btn-cookie-modal-close:hover,
.cookie-modal .btn-cookie-modal-close:focus {
  color: #63A69F;
}

/* -------------------------------------------------------
    UTILITY CLASSES
------------------------------------------------------- */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-60 { margin-bottom: 60px; }
.mt-30 { margin-top: 30px; }
.mt-18 { margin-top: 18px; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.rounded-8 { border-radius: 8px; }
.rounded-16 { border-radius: 16px; }
.shadow-light { box-shadow: 0 2px 8px 0 rgba(30,30,30,0.07); }

/* Forms (if present) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: #181818;
  background: #fff;
  border: 1.5px solid #d4d4d4;
  border-radius: 7px;
  padding: 10px 13px;
  outline: none;
  transition: border 0.19s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #63A69F;
  box-shadow: 0 2px 12px 0 rgba(99, 166, 159, 0.07);
}
button:focus {
  outline: 2px solid #63A69F;
  outline-offset: 1px;
}

/* -------------------------------------------------------
    MONOCHROME SOPHISTICATED ADJUSTMENTS
------------------------------------------------------- */
body {
  background: #fff;
  color: #181818;
}
.section, .container, .card, .feature-card, .trend-block, .occasion-card, .testimonial-card, .about-teaser, .about-history, .modetipps-list, .footer-brand, .cta-final, .map-snippet, .contact-info-list {
  border-radius: 0.5em;
}
.section {
  background: #fff;
}
.hero {
  background: linear-gradient(105deg,#181818 70%,#223349 100%);
  color: #fff;
}
.feature-card, .trend-block, .occasion-card {
  background: #fff;
  color: #181818;
  border: 1.5px solid #ededed;
}
.testimonial-card {
  background: #faf9f9;
  border: 1.5px solid #e6e6e6;
}

/* Dramatic contrast for monochrome sophistication */
h1, h2, h3 {
  color: #111;
}
.btn-primary {
  background: #111;
  color: #fff;
}
footer {
  background: #181818;
  color: #fafafa;
}

/* Subtle shadows, more elegant spacing for card elements */
.card, .feature-card, .trend-block, .occasion-card, .testimonial-card {
  box-shadow: 0 2.5px 18px 0 rgba(20,20,20,0.08);
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .feature-card:hover, .trend-block:hover, .occasion-card:hover {
  box-shadow: 0 6px 28px 0 rgba(20,18,23,0.21);
  transform: translateY(-3px) scale(1.01);
}

/* List styling in monochrome sophisticated palette */
ul, ol {
  padding-left: 26px;
}
ul li::marker, ol li::marker {
  color: #989898;
}

/* Accessible focus indicators */
a:focus, button:focus, .btn-primary:focus {
  outline: 2.5px solid #63A69F;
  outline-offset: 2px;
  z-index: 2;
}

/* -------------------------------------------------------
    RESPONSIVE FLEXBOX PATTERNS
------------------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
  .content-wrapper {
    max-width: 820px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  .content-wrapper {
    max-width: 95vw;
  }
}
@media (max-width: 600px) {
  .feature-grid, .trend-list, .occasion-grid, .testimonial-list {
    flex-direction: column;
    gap: 13px;
  }
  .feature-card, .trend-block, .occasion-card {
    min-width: 0;
    width: 100%;
  }
}

/* -------------------------------------------------------
    SCROLLBAR STYLES FOR SOPHISTICATED LOOK
------------------------------------------------------- */
::-webkit-scrollbar {
    width: 12px;
    background: #f3f3f3;
}
::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    border-radius: 8px;
}

/* ------------------------------------------------------
    END OF MONOCHROME_SOPHISTICATED CSS
------------------------------------------------------ */