/* --------------------------------------------------------
   HEINTO PERCE - CREATIVE ARTISTIC FLEX-ONLY CSS
-------------------------------------------------------- */
/* 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,main,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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #F7EBD6; color: #234058; min-height: 100vh; }
img { max-width: 100%; display: block; border: 0; }
a { text-decoration: none; color: inherit; }
:focus { outline: 2px solid #A5B1BF; outline-offset: 2px; }
ul,ol { padding-left: 24px; margin-bottom: 20px; }
li { margin-bottom: 8px; }

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;700&display=swap');
body { font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; background: #F7EBD6; color: #234058; }
h1,h2,h3,h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 28px; color: #234058; text-shadow: 2px 3px 0 #A5B1BF11; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; color: #234058; text-shadow: 2px 2px 0 #A5B1BF0C; }
h3 { font-size: 1.38rem; font-weight: 700; margin-bottom: 12px; color: #234058; }
h4 { font-size: 1.1rem; font-weight: 700; color: #234058; }
p,ul,ol { font-size: 1rem; line-height: 1.7; color: #234058; margin-bottom: 16px; }
strong { font-weight: 700; color: #234058; }
em { color: #A5B1BF; font-style: italic; }

/* KEY COLORS */
:root {
  --brand-primary: #234058;
  --brand-secondary: #A5B1BF;
  --brand-accent: #F7EBD6;
  --brand-on-primary: #fff;
  --brand-shadow: rgba(35,64,88,0.08);
  --art-accent-1: #FF8277;
  --art-accent-2: #47C5F2;
  --art-accent-3: #FFD142;
  --art-accent-4: #6DD091;
  --art-accent-5: #B384DC;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section { margin-bottom: 60px; padding: 40px 20px; }
@media (max-width: 768px) {
  section { padding: 28px 8px; margin-bottom: 40px; }
  .container { padding: 0 8px; }
}

/* FLEXBOX UTILS */
.card-container, .card-grid, .feature-grid, .content-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 6px 32px var(--brand-shadow), 0 1.5px 3px var(--brand-secondary)11;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-content { display: flex; flex-direction: column; justify-content: center; }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 16px; }
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* HEADER */
header {
  width: 100%;
  background: var(--brand-primary);
  color: var(--brand-on-primary);
  padding: 0;
  margin-bottom: 0;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  min-height: 84px;
}
header img { height: 44px; width: auto; display: block; }
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.22s cubic-bezier(.44,.13,.59,.93);
  margin-bottom: 0;
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  margin: 4px auto 0 auto;
  height: 3px;
  background: var(--art-accent-1);
  border-radius: 2px;
  transition: width 0.22s cubic-bezier(.5,.19,.62,1.18);
}
header nav a:hover, header nav a:focus {
  color: var(--art-accent-1);
}
header nav a:hover::after, header nav a:focus::after {
  width: 60%;
}
.btn-primary {
  background: linear-gradient(90deg,var(--art-accent-1) 60%,var(--art-accent-3));
  color: var(--brand-primary);
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  padding: 13px 36px;
  margin-left: 22px;
  box-shadow: 0 4px 16px var(--art-accent-1)33, 0 1.5px 8px var(--brand-secondary)11;
  cursor: pointer;
  transition: 
    background 0.25s cubic-bezier(.5,.2,.6,.9),
    color 0.25s cubic-bezier(.5,.2,.6,.9),
    box-shadow 0.22s cubic-bezier(.45,.13,.47,1.11);
  letter-spacing: 0.3px;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--art-accent-2) 48%, var(--art-accent-5) 100%);
  color: #fff;
  box-shadow: 0 7px 32px var(--art-accent-2)25, 0 3px 12px var(--brand-secondary)12;
}
@media (max-width: 1024px) {
  header .container { flex-direction: column; align-items: flex-start; min-height: 60px; }
  header nav { margin-top: 2px; gap: 22px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    min-height: 56px;
    padding: 0 8px;
  }
  header nav { display: none; }
  .btn-primary { margin-left: 0; padding: 13px 24px; font-size: 1rem; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 1040;
  background: var(--art-accent-1);
  color: var(--brand-primary);
  border: none;
  border-radius: 100%;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  box-shadow: 0 3px 12px var(--brand-shadow);
  cursor: pointer;
  transition: background 0.24s cubic-bezier(.33,.12,.62,.91);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--art-accent-2);
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-primary);
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.43,.12,.71,1.32);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 24px 4px 0;
  background: var(--art-accent-2);
  color: #fff;
  border: none;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--brand-shadow);
  transition: background 0.2s cubic-bezier(.55,.18,.56,1.14);
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--art-accent-1); color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 650;
  font-size: 1.22rem;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 0;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--art-accent-3);
  color: var(--brand-primary);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* MAIN */
main { min-height: 60vh; width: 100%; }

/* SECTION/SPACING/TYPOGRAPHY */
.section { margin-bottom: 60px; padding: 40px 20px; }
@media (max-width: 768px) {
  .section { margin-bottom: 32px; padding: 20px 5px; }
}

/* CARDS & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px; position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 24px var(--brand-shadow), 0 1.5px 4px var(--brand-secondary)14;
  overflow: hidden;
  transition: box-shadow 0.24s cubic-bezier(.58,.19,.64,1.14), transform 0.19s cubic-bezier(.43,.17,.73,1.09);
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 36px var(--art-accent-1)15, 0 4px 12px var(--brand-secondary)11;
  transform: translateY(-3px) scale(1.012);
}

/* FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  min-width: 220px;
  flex: 1 1 260px;
  padding: 26px 18px 18px 18px;
  box-shadow: 0 5px 24px var(--brand-shadow), 0 1.5px 3px var(--brand-secondary)06;
  position: relative;
  min-height: 200px;
  transition: box-shadow 0.23s cubic-bezier(.55,.18,.7,1.09);
  margin-bottom: 20px;
}
.feature-grid > div img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 8px 34px var(--art-accent-2)09, 0 1.5px 10px var(--brand-secondary)11;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px; 
  }
  .feature-grid > div { min-width: 155px; flex: 1 1 140px; }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* MINI PRODUCT HIGHLIGHTS */
.mini-product-highlights {
  background: var(--art-accent-4);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 12px;
  margin-top: 22px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px var(--brand-secondary)10;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 22px;
  box-shadow: 0 5px 32px var(--brand-shadow), 0 1.5px 6px var(--brand-secondary)10;
  border-left: 6px solid var(--art-accent-1);
  position: relative;
  transition: box-shadow 0.23s, border-color 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 48px var(--art-accent-1)12, 0 2px 18px var(--brand-secondary)12;
  border-left-color: var(--brand-primary);
}
.testimonial-card p {
  color: #222; /* ensure strong contrast on white */
  font-size: 1.15rem;
  margin-bottom: 0;
  font-family: 'Open Sans',Arial,sans-serif;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 8px;
  }
}

/* FORMS/BUTTONS */
button,
.btn-primary,
input[type="submit"],
input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all .22s cubic-bezier(.58,.19,.48,1.07);
}
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid var(--brand-secondary);
  border-radius: 8px;
  padding: 10px 11px;
  margin-bottom: 16px;
  width: 100%;
  background: #fff;
  color: var(--brand-primary);
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus { border-color: var(--brand-primary); }

/* LINK/MICRO INTERACTIONS */
a:not(.btn-primary) {
  color: var(--brand-primary);
  transition: color 0.18s, text-decoration 0.13s;
  text-decoration: underline dashed 1.5px var(--art-accent-1)33;
}
a:not(.btn-primary):hover, a:not(.btn-primary):focus { color: var(--art-accent-2); text-decoration: underline solid 1.9px var(--art-accent-2); }

/* LISTS + ICONS */
ul,ol { margin-bottom: 20px; }
.text-section ul, .text-section ol {
  font-size: 1.07rem;
  margin-bottom: 10px;
  padding-left: 26px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.text-section strong { color: var(--brand-primary); }

/* FOOTER */
footer {
  background: var(--brand-primary);
  color: #fff;
  width: 100%;
  padding: 50px 0 20px 0;
  margin-top: 80px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
footer nav {
  display: flex; flex-wrap: wrap; gap: 22px;  justify-content: center; margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.22s;
  margin-bottom: 0;
}
footer nav a:hover, footer nav a:focus { color: var(--art-accent-3); }
.footer-brand img {
  margin: 0 0 10px 0;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 3px 12px var(--brand-secondary)10);
}
footer p { color: #fff; font-size: 1rem; opacity: 0.92; }
@media (max-width: 768px) {
  footer { padding: 34px 0 12px 0; margin-top: 42px; }
  footer .container { gap: 16px; }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1300;
  background: #234058fa;
  color: #fff;
  padding: 28px 26px 22px 26px;
  border-radius: 16px;
  box-shadow: 0 4px 32px var(--brand-secondary)33, 0 2px 10px #1115;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  animation: slideUp 0.4s cubic-bezier(.5,1.15,.56,1.19);
}
@keyframes slideUp {
  from { transform: translateY(160px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p { flex: 1 1 350px; color: #fff; margin-bottom: 0; }
.cookie-consent-banner .cookie-btns {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
}
.cookie-consent-banner button {
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  border: none;
  font-weight: 700;
}
.cookie-consent-banner .accept-cookies {
  background: var(--art-accent-1);
  color: #fff;
}
.cookie-consent-banner .reject-cookies {
  background: var(--art-accent-2);
  color: #fff;
}
.cookie-consent-banner .settings-cookies {
  background: var(--art-accent-3);
  color: var(--brand-primary);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  filter: brightness(1.10);
  box-shadow: 0 3px 12px var(--brand-shadow);
}
@media (max-width: 600px) {
  .cookie-consent-banner { flex-direction: column; gap: 10px; padding: 17px 8px 12px 8px; }
  .cookie-consent-banner .cookie-btns { flex-direction: column; gap: 7px; }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1400;
  transform: translate(-50%,-50%) scale(.92);
  background: #fff;
  color: var(--brand-primary);
  border-radius: 20px;
  box-shadow: 0 10px 80px var(--brand-shadow), 0 8px 32px var(--brand-secondary)19;
  min-width: 320px;
  max-width: 95vw;
  width: 400px;
  padding: 44px 36px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInPop 0.28s cubic-bezier(.43,.08,.66,1.17);
}
@keyframes fadeInPop { from { opacity: 0; transform: translate(-50%,-46%) scale(.85); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
.cookie-modal h3 { font-size: 1.3rem; color: var(--brand-primary); margin-bottom: 8px; }
.cookie-modal .cookie-categories {
  display: flex; flex-direction: column; gap: 13px; margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex; flex-direction: row; align-items: center; gap: 22px;
  font-size: 1.02rem;
}
.cookie-modal label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--art-accent-1);
  width: 22px;
  height: 22px;
  border: 2px solid var(--brand-secondary);
  border-radius: 4px;
}
.cookie-modal .cookie-buttons {
  display: flex; flex-direction: row; gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus { color: var(--art-accent-1); }
@media (max-width: 600px) {
  .cookie-modal { width: 98vw; min-width: 0; max-width: 99vw; padding: 24px 5px 14px; }
}

/* CONTENT PAGES - UNIQUE ARTISTIC TOUCHES */
section {
  background: linear-gradient(98deg, #fff 85%, var(--art-accent-3) 140%);
  border-radius: 24px 56px 24px 32px/40px 24px 48px 28px;
  box-shadow: 0 5px 28px var(--brand-shadow), 0 1.5px 5px var(--brand-secondary)08;
  margin-bottom: 60px;
  position: relative;
}
section::before {
  content: '';
  position: absolute;
  left: -22px; top: 38px;
  width: 72px; height: 12px;
  background: var(--art-accent-2);
  opacity: .12;
  border-radius: 10px;
  z-index: 0;
}
section:nth-child(2n)::before { background: var(--art-accent-5); opacity: .10; }
section:nth-child(3n)::before { background: var(--art-accent-1); opacity: .09; }
@media (max-width: 900px) { section { border-radius: 20px 35px 24px 28px/30px 24px 23px 18px; } }
@media (max-width:600px) {
  section { border-radius: 18px 16px 18px 18px/18px 18px 18px 18px; margin-bottom: 36px; }
  section::before { display:none; }
}

/* TEXT-IMAGE SECTIONS / ADDRESS BLOCKS */
.text-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
  margin-bottom: 24px;
}
.text-section > * { flex: 1 1 220px; }
.text-section img, .text-section svg {
  max-width: 122px;
  border-radius: 12px;
  background: var(--art-accent-4)14;
}
@media (max-width: 768px) {
  .text-section { flex-direction: column; gap: 12px; }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.13rem; }
  .container { padding: 0 9px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.06rem; }
  .container, .content-wrapper { padding: 0; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.21rem; }
  h2 { font-size: 1.01rem; }
  section { padding: 12px 2px; }
  footer { padding: 20px 0 8px 0; }
}

/* ANIMATIONS / MICRO-INTERACTIONS */
.card, .feature-grid>div, .testimonial-card, section {
  transition: box-shadow 0.23s, transform 0.2s;
}
.card:active, .feature-grid>div:active, .testimonial-card:active, section:active {
  transform: scale(.98);
}

/* Z-INDEX LAYERS */
header, footer { z-index: 100; position: relative; }
main { z-index: 50; position: relative; }

/* SPACING ENFORCEMENT */
.card, .feature-grid>div, .testimonial-card, section {
  margin-bottom: 20px !important;
}
.card-container, .feature-grid, .content-grid, .text-image-section {
  gap: 24px !important;
}
@media (max-width:768px) {
  .card-container, .feature-grid, .content-grid, .text-image-section { gap: 14px !important; }
}

/* UTILITIES */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.w-100 { width: 100% !important; }
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }

/* VISUAL ARTISTIC ACCENTS (decoration, for creative punch) */
h1:after, h2:after {
  content: '';
  display: block;
  margin-top: 5px;
  width: 44px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg,var(--art-accent-1),var(--art-accent-2),var(--art-accent-4));
  opacity: 0.78;
}
h2:after { width: 32px; height: 4px; margin-top: 2px; }

/* ARTISTIC LIST-BULLETS */
.text-section ul li, ul li {
  position: relative;
  padding-left: 20px;
}
.text-section ul li:before, ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--art-accent-2),var(--art-accent-1));
  box-shadow: 0 2px 4px var(--brand-shadow);
}

/* PRINT SUPPORT (optional) */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal {display: none !important;}
  section, .card, .feature-grid>div, .testimonial-card {box-shadow: none !important; background: #fff !important;}
}
