/* 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F6F9;
  color: #243238;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.23s linear;
}
button, input, select, textarea {
  font-family: inherit;
}
ul, ol {
  list-style: none;
}

/* VARIABLES (manual for fallback) */
:root {
  --color-primary: #243238;
  --color-secondary: #C9B797;
  --color-accent: #F3EFEA;
  --color-bg: #F6F6F9;
  --color-pink: #F6D4E6;
  --color-blue: #D3E6F7;
  --color-lilac: #EAE6FA;
  --color-mint: #D6F5EF;
  --color-yellow: #FBF6E6;
  --shadow-soft: 0 6px 32px rgba(180,166,186,0.11), 0 1.5px 6px rgba(180,166,186,0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

/* BRAND TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-primary);
  letter-spacing: -1px;
  line-height: 1.13;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--color-primary);
  line-height: 1.17;
  margin-bottom: 14px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-primary);
  line-height: 1.22;
  margin-bottom: 10px;
}
p, ul, ol, li, b, strong, span, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #4C6173;
  margin-bottom: 12px;
  font-weight: 400;
}
b, strong {
  color: #243238;
  font-weight: 600;
}

/* CONTAINER & LAYOUTS */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUTS */
.features, .category-grid, .feature-grid, .posts-list, .card-container, .content-grid, .testimonials, .services, .footer-nav, .footer-contact, .main-nav, .mobile-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-container {
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.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;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px 28px;
  margin-bottom: 24px;
  max-width: 460px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #FAF6FD 0%, #F6D4E6 100%);
  box-shadow: 0 0.5px 5px rgba(162,162,180,0.03);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
header img {
  height: 40px;
  width: auto;
  margin-right: 18px;
  flex-shrink: 0;
}
.main-nav {
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  padding: 8px 6px;
  color: #736579;
  border-radius: var(--radius-sm);
  transition: background 0.22s, color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-pink);
  color: var(--color-primary);
}
.cta-button {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  font-size: 1.09rem;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(225,200,220,0.09);
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.18s, color 0.2s, box-shadow 0.2s;
  text-align: center;
  outline: none;
  letter-spacing: 0.5px;
}
.cta-button:hover, .cta-button:focus {
  background: #EAE6FA;
  color: #6C4D90;
  box-shadow: 0 14px 28px rgba(180,166,186,0.17);
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: #B893AC;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
  margin-left: 14px;
  z-index: 32;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-pink);
  color: #685b71;
}

/* Hide main-nav/cta on mobile, show burger */
@media (max-width: 1050px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1051px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(98deg, #F6D4E6 0 60%, #D6F5EF 100%);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.8,.1,.3,1);
  box-shadow: -2px 0 24px 2px rgba(110,150,180,0.10);
  padding: 0 16px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.7rem;
  color: #8677A3;
  padding: 12px 18px 8px 18px;
  margin-top: 18px;
  border-radius: var(--radius-md);
  z-index: 1100;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EAE6FA;
  color: #4F376F;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  align-items: flex-start;
  margin-top: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.17rem;
  color: #4F376F;
  padding: 16px 0 10px 12px;
  border-radius: var(--radius-md);
  letter-spacing: 0.2px;
  transition: background 0.17s, color 0.19s;
  width: 100%;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D3E6F7;
  color: #377690;
}

/* HERO SECTION */
.hero {
  width: 100%;
  background: linear-gradient(117deg, #F6D4E6 26%, #D6F5EF 80%);
  padding: 60px 0 50px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2.5px 22px 0 rgba(205,185,210,0.065);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
  gap: 18px;
}
.hero h1 {
  font-size: 2.7rem;
  background: none;
  color: #1c2633;
}
.hero p {
  font-size: 1.22rem;
  color: #587090;
  margin-bottom: 24px;
}
.about-image-placeholder, .map-placeholder {
  width: 100%;
  height: 180px;
  min-height: 100px;
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, #F3EFEA 40%, #EAE6FA 100%);
  box-shadow: 0 2px 14px rgba(170,150,180,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FEATURES / CATEGORIES / LISTS */
.feature-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .category-grid li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 20px 20px 20px;
  box-shadow: var(--shadow-soft);
  text-align: left;
  min-width: 180px;
  min-height: 176px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature-grid li:hover, .feature-grid li:focus,
.category-grid li:hover, .category-grid li:focus {
  box-shadow: 0 12px 38px rgba(180,166,186,0.17);
  transform: translateY(-4px) scale(1.015);
}
.feature-grid img, .category-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  filter: drop-shadow(0px 8px 28px #d6f5ef33);
}

/* POSTS LIST, SERVICES */
.posts-list li, .services ul li {
  background: #F3EFEA;
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #304757;
  transition: background 0.19s;
}
.posts-list li:hover, .services ul li:hover {
  background: #EAE6FA;
}
.categories-overview {
  margin-top: 13px;
  font-size: 1rem;
  color: #736579;
}

.process-stepper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 0 12px;
}
.process-stepper li {
  position: relative;
  padding-left: 22px;
  color: #5C5470;
  margin-bottom: 6px;
}
.process-stepper li:before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 10px;
  border-radius: 99px;
  background: #D3E6F7;
  box-shadow: 0 0 0 2.5px #EAE6FA;
}

/* TESTIMONIALS */
.testimonials {
  width: 100%;
  gap: 26px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  color: #243238;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px 0 rgba(190,170,200,0.10);
  padding: 28px 36px 26px 24px;
  min-width: 250px;
  width: 100%;
  max-width: 440px;
  margin-right: 30px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 32px 0 rgba(190,170,200,0.14);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  color: #4C6173;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.testimonial-card b {
  display: block;
  margin-top: 8px;
  font-size: 0.99rem;
  color: #795d86;
}
.star-rating {
  color: #F6D4E6;
  letter-spacing: 1.5px;
  font-size: 1.18rem;
  margin-top: 2px;
}

/* LEGAL/CONTENT SECTIONS */
.legal {
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 32px 0;
}
.legal h1, .legal h2, .legal h3 {
  margin-bottom: 10px;
}
.legal p, .legal ul, .legal ol {
  margin-bottom: 14px;
}

/* CONTACT PAGE */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 1.01rem;
  color: #4C6173;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-info img {
  width: 22px;
  height: 22px;
}
.opening-hours {
  font-size: 0.97rem;
  color: #6B7482;
  margin-bottom: 16px;
}
.map-placeholder {
  width: 100%;
  height: 170px;
  background: #EAE6FA;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B3A1BC;
  font-size: 1.1rem;
  margin-top: 14px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #EAE6FA 0%, #D6F5EF 88%);
  padding: 32px 0 18px 0;
  margin-top: 42px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
}
footer img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-nav {
  flex-direction: column;
  gap: 3px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 0.97rem;
  color: #72677A;
  margin-bottom: 6px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #4F376F;
  text-decoration: underline;
}
.footer-contact {
  flex-direction: column;
  gap: 2px;
  font-size: 0.97rem;
  color: #6B7482;
}
.footer-contact a {
  color: #4F376F;
  transition: color 0.19s;
}
.footer-contact a:hover {
  color: #AD8BB2;
}


/* CTA SECTIONS */
.cta {
  width: 100%;
  background: linear-gradient(99deg,#D6F5EF 30%,#F6D4E6 100%);
  padding: 52px 0 48px 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 2.5px 22px 0 rgba(205,185,210,0.065);
  margin-bottom: 60px;
  text-align: center;
}
.cta h2, .cta h1 {
  text-align: center;
  font-size: 2.15rem;
  color: #243238;
  margin-bottom: 16px;
}
.cta .cta-button {
  margin: 0 auto;
}

/* GENERAL CARDS */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 32px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 14px 28px rgba(180,166,186,0.14);
  transform: translateY(-4px) scale(1.012);
}

/* BUTTONS */
button ,.cta-button {
  outline: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.23s, background 0.23s, color 0.22s;
}
button:active {
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #F3EFEA;
  color: #223144;
  font-size: 1.08rem;
  box-shadow: 0 -3px 18px rgba(180,166,186,0.13);
  border-radius: 18px 18px 0 0;
  padding: 28px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 3001;
  animation: slideUpBanner 420ms cubic-bezier(.36,1.49,.36,1) 1;
  opacity: 0.98;
}
@keyframes slideUpBanner {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 0.98;}
}
.cookie-consent .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-consent .cookie-btn {
  min-width: 144px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 9px 0 rgba(210,176,210,0.09);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 8px;
  margin-bottom: 4px;
  font-weight: 600;
  transition: background 0.14s, color 0.14s, box-shadow 0.16s;
}
.cookie-consent .cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-consent .cookie-btn.reject {
  background: #EAE6FA;
  color: #6C4D90;
}
.cookie-consent .cookie-btn.settings {
  background: #F6D4E6;
  color: #785f75;
}
.cookie-consent .cookie-btn:hover, .cookie-consent .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 22px 0 #EAE6FA55;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(74,52,92,0.36);
  z-index: 3100;
  animation: fadeInOverlay 0.25s linear 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 7px 44px 0 rgba(170,140,200,0.13);
  padding: 36px 38px 32px 38px;
  max-width: 410px;
  min-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalPopIn 0.19s cubic-bezier(.5,1.4,.49,1) 1;
}
@keyframes modalPopIn {
  from { transform: scale(0.85) translateY(40px); opacity: 0;}
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  color: #785f75;
}
.cookie-category {
  margin-bottom: 20px;
  font-size: 1.08rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type=checkbox] {
  accent-color: #AD8BB2;
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.cookie-category span {
  font-weight: 600;
  color: #685b71;
}
.cookie-modal-actions {
  width: 100%;
  display: flex;
  gap: 12px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 110px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  background: #EAE6FA;
  color: #816f95;
  border: none;
  box-shadow: 0 2px 14px rgba(180,166,186,0.09);
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-actions button.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal-actions button.reject {
  background: #F6D4E6;
  color: #785f75;
}
.cookie-modal-actions button:focus, .cookie-modal-actions button:hover {
  background: var(--color-primary);
  color: #fff;
}


/* ANIMATIONS */
a, .cta-button, .main-nav a, .mobile-nav a, .card, .testimonial-card, .feature-grid li, .category-grid li {
  transition: background 0.18s, color 0.19s, box-shadow 0.19s, transform 0.18s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  header .container, footer .container {
    gap: 10px;
    padding: 0 12px;
  }
  .feature-grid, .category-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 11px 0;
    border-radius: 0 0 18px 18px;
  }
  .section {
    margin-bottom: 42px;
    padding: 22px 6px;
  }
  .features, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid, .category-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 18px 10px 18px 10px;
    margin-right: 0;
  }
  .testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta {
    padding: 22px 0 18px 0;
  }
  .cta h1, .cta h2 {
    font-size: 1.33rem;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 7px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .about-image-placeholder, .map-placeholder {
    height: 90px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .main-nav {
    display: none !important;
  }
}
@media (max-width: 560px) {
  h1, .hero h1 {
    font-size: 1.37rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .feature-grid li, .category-grid li {
    padding: 18px 10px 13px 10px;
    min-height: 80px;
  }
  .cookie-consent {
    padding: 18px 4vw;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 20px 10px 14px 10px;
  }
}

/* VISUAL HIERARCHY & WHITE SPACE */
.section, .about, .services, .features, .cta, .testimonials, .legal, .card-container, .content-grid {
  margin-bottom: 60px;
}

/* UTILITIES */
.d-flex {
  display: flex!important;
}
.align-center {
  align-items: center!important;
}
.flex-col {
  flex-direction: column!important;
}
.gap-20 {
  gap: 20px!important;
}

/* END OF CSS */
