/* CSS RESET & NORMALIZATION */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #FCFBFA;
  color: #40434E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #7A6DAB;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B6A07A;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Roboto', serif;
  font-weight: 700;
  color: #40434E;
}
h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 1.65rem; margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }
p { margin-bottom: 16px; }
strong, b { font-weight: 700; }

body, input, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* SOFT PASTEL PALETTE */
:root {
  --primary: #40434E;
  --secondary: #B6A07A;
  --accent: #F9F6F2;
  --pastel-rose: #FCE7F3;
  --pastel-blue: #E0E7FA;
  --pastel-mint: #EAF7F2;
  --pastel-yellow: #FFF8E1;
  --pastel-lav: #F3EAFD;
  --box-shadow: 0 2px 24px 0 rgba(170, 153, 178, 0.12);
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(180deg, var(--pastel-lav) 0%, #F9F6F2 100%);
  box-shadow: 0 2px 8px 0 rgba(180,155,210,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
header img {
  height: 46px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Merriweather', 'Roboto', serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-rose);
  color: var(--secondary);
}
.cta-btn {
  background: var(--secondary);
  color: #fff;
  font-family: 'Merriweather', 'Roboto', serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 26px;
  padding: 12px 36px;
  box-shadow: 0 4px 16px 0 rgba(182, 160, 122, 0.10);
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  letter-spacing: 0.04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #c0a575;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(182, 160, 122, 0.20);
  outline: none;
}

.mobile-menu-toggle {
  background: #fff;
  border: 1px solid #E3DFD9;
  color: var(--primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: background 0.18s, box-shadow 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--pastel-lav);
  box-shadow: 0 2px 12px 0 rgba(180,155,210,0.08);
  outline: none;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 320px;
  background: var(--pastel-rose);
  box-shadow: -4px 0 32px 0 rgba(170, 153, 178, 0.18);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,.2,.2,1);
  display: flex;
  flex-direction: column;
  padding: 22px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  align-self: flex-end;
  padding: 6px 22px 0 0;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: var(--primary);
  padding: 8px 0 8px 4px;
  border-radius: 10px;
  width: 92%;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
}

@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN & SECTION LAYOUTS */
main {
  min-height: 60vh;
}
section {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--box-shadow);
  position: relative;
}
section > .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (max-width: 640px) {
  section {
    padding: 28px 6px;
  }
}

/* LAYOUT PATTENS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-blue);
  border-radius: 18px;
  box-shadow: var(--box-shadow);
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 240px;
}
.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;
  padding: 20px;
  background: var(--pastel-mint);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(130, 201, 180, 0.08);
  margin-bottom: 20px;
  color: #40434E;
  font-size: 1.05rem;
  position: relative;
  min-width: 240px;
}
.testimonial-meta {
  color: #624987;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GENERAL CARDS & LISTS */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.5;
}
ul li img {
  width: 26px;
  height: 26px;
  margin-right: 6px;
  flex-shrink: 0;
}

/* ADDRESS & FOOTER */
footer {
  background: linear-gradient(180deg, #F9F6F2 60%, var(--pastel-lav) 100%);
  border-top: 1px solid #EDE6F6;
  padding: 46px 0 16px 0;
  margin-top: 28px;
  font-size: 0.93rem;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  display: flex;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
  align-items: center;
}
footer nav a {
  color: #695770;
  font-size: 0.97rem;
  border-radius: 7px;
  padding: 3px 8px;
  transition: background 0.15s, color 0.18s;
}
footer nav a:hover,footer nav a:focus {
  background: var(--pastel-rose);
  color: var(--secondary);
}
address {
  font-style: normal;
  margin-bottom: 8px;
  color: #6D646F;
}
.footer-meta {
  margin-top: 8px;
  color: #B6A07A;
  font-size: 0.94rem;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: var(--pastel-yellow);
  border: 1px dashed #B6A07A;
  border-radius: 14px;
  color: #B6A07A;
  text-align: center;
  padding: 30px 0;
  margin: 24px 0 0 0;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

/* FAQ BLOCK */
.faq {
  background: var(--pastel-blue);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(170, 192, 225, 0.08);
  padding: 22px 16px;
  margin: 0 0 26px 0;
}
.faq h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.11rem;
  margin: 20px 0 6px;
  color: var(--primary);
  font-weight: 600;
}
.faq p {
  font-size: 0.98rem;
  margin-bottom: 14px;
}

/* TEXT SECTION (for legal & contact) */
.text-section {
  background: var(--pastel-mint);
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 10px 0 rgba(130, 201, 180, 0.06);
}
.text-section h2, .text-section h3 {
  margin-top: 10px;
}

/* BUTTONS */
button, .button {
  font-family: 'Merriweather', 'Roboto', serif;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.15s;
  margin-right: 10px;
  margin-top: 4px;
  box-shadow: 0 2px 10px 0 rgba(182, 160, 122, 0.10);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #a28c5c;
  outline: none;
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 8px 24px 0 rgba(182, 160, 122, 0.20);
}

/* SPECIAL BUTTONS FOR COOKIE-MODAL */
.cookie-btn {
  border-radius: 22px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Merriweather', 'Roboto', serif;
  font-weight: 700;
  margin-right: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept:hover,.cookie-btn.accept:focus {
  background: #a28c5c;
}
.cookie-btn.reject {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 1px solid #C2C8DF;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #dde3f4;
  color: var(--secondary);
}
.cookie-btn.settings {
  background: var(--pastel-mint);
  color: var(--primary);
  border: 1px solid #9FDBCB;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #c2f4e4;
  color: var(--secondary);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe8;
  border-top: 2px solid var(--pastel-lav);
  box-shadow: 0 -2px 24px 0 rgba(180,155,210,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 20px;
  z-index: 1400;
  gap: 24px;
  transition: transform 0.35s cubic-bezier(.4,.2,.2,1), opacity 0.2s;
  font-size: 1.1rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  flex: 2;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(68, 56, 110, 0.16);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; visibility: visible;
  transition: opacity 0.24s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal-content {
  background: #fff;
  padding: 36px 26px 26px 26px;
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(170, 153, 178, 0.14);
  min-width: 310px;
  min-height: 230px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  color: #40434E;
}
.cookie-modal-content h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 500;
  color: #40434E;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: var(--secondary);
  margin-right: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #C0A7DB;
  font-size: 24px;
  align-self: flex-end;
  cursor: pointer;
  position: absolute;
  right: 28px; top: 18px;
  transition: color 0.1s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  color: #B6A07A;
}
.cookie-desc {
  font-size: 0.98rem;
  color: #6E587F;
}

/* TRANSITIONS for interactive elements */
.card, .testimonial-card, .content-wrapper, .text-section, .faq {
  transition: box-shadow 0.19s cubic-bezier(.4,.2,.4,1), transform 0.17s cubic-bezier(.4,.2,.4,1);
}
.card:hover, .testimonial-card:hover, .faq:hover {
  box-shadow: 0 6px 32px 0 rgba(170, 153, 178, 0.16);
  transform: translateY(-2px) scale(1.01);
}

/* TYPOGRAPHY SCALE */
@media (max-width: 680px) {
  h1 {font-size: 1.36rem;}
  h2 {font-size: 1.13rem; margin-bottom: 8px;}
  .testimonial-card, .card {font-size: 0.98rem;}
}
@media (min-width: 681px) {
  h1 {font-size: 2.25rem;}
  h2 {font-size: 1.66rem;}
}

/* RESPONSIVE FLEX LAYOUTS */
@media (max-width: 820px) {
  .card-container, .content-grid, .text-image-section, .features {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .card, .testimonial-card {
    min-width: 100%;
  }
  .section {
    padding: 28px 8px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .footer-meta {
    text-align: center;
  }
}

/* WHITE SPACE AND SPACING */
main > section, section {
  margin-bottom: 60px;
}
.card, .testimonial-card, .faq, .text-section {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 18px;
}

/* MICRO-INTERACTIONS */
.cta-btn, .button, button, .cookie-btn {
  transition: background 0.18s, color 0.17s, transform 0.14s, box-shadow 0.18s;
}

/* FORM ELEMENTS (if needed) */
input, textarea, select {
  border: 1px solid #E3DFD9;
  border-radius: 11px;
  background: #fff;
  padding: 10px 13px;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #B6A07A;
  outline: none;
  background: var(--pastel-yellow);
}

/* ACCESSIBILITY & CONTRAST */
.testimonial-card, .testimonial-meta, .faq, .text-section {
  color: #40434E;
  background-clip: padding-box;
}

/* HIDE elements visually, utility */
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* Z-INDEX LAYERS */
header {z-index:1000;}
.mobile-menu {z-index:1200;}
.cookie-banner {z-index:1400;}
.cookie-modal {z-index:1500;}

/* SCROLLBAR (subtle pastel) */
::-webkit-scrollbar {
  width: 10px;
  background: var(--pastel-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-mint);
  border-radius: 12px;
}

/* PRINT FRIENDLY */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {display:none!important;}
  section, .section, .content-wrapper {box-shadow:none; background:#fff;}
}

/* END OF SOFT PASTEL STYLE */