/* RESET & BASE STYLES (normalize, box-sizing, base typography) */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F9F9F5;
  color: #26374D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #E8A960;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #be883a;
  text-decoration: underline;
}

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FCFCFA;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(38,55,77,0.06);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #26374D;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
p, ul, ol {
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 22px;
}
ul {
  list-style: disc;
}
li img {
  height: 28px;
  width: 28px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
  border-radius: 6px;
}
strong {
  font-weight: 600;
}

em {
  color: #be883a;
  background: #FEFBF8;
  padding: 2px 4px;
  border-radius: 6px;
}

/* BUTTONS / CTAs */
.cta, button, .mobile-menu-toggle, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 30px;
  padding: 13px 34px;
  min-width: 120px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.25s;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(232,169,96,0.09);
  position: relative;
}
.cta.primary, .cta {
  background: #E8A960;
  color: #26374D;
  letter-spacing: 0.02em;
}
.cta.primary:hover, .cta.primary:focus, 
.cta:hover, .cta:focus {
  background: #f0b65c;
  color: #26374D;
  box-shadow: 0 3px 18px 0 rgba(232,169,96,0.18);
}
button.secondary {
  background: #FAE8ED;
  color: #B7496C;
}
button.secondary:hover, button.secondary:focus {
  background: #F6C6D1;
  color: #96294a;
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: #FAF8F5;
  box-shadow: 0 2px 10px -2px rgba(38,55,77,0.07);
  padding: 0;
  position: relative;
  z-index: 15;
}
.logo img {
  height: 60px;
  width: auto;
  margin-right: 18px;
  border-radius: 14px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #26374D;
  padding: 7px 10px;
  border-radius: 18px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6E6C5;
  color: #E8A960;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  background: #E8A960;
  color: #26374D;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 28px;
  transition: background 0.2s, color 0.15s;
  box-shadow: 0 2px 6px 0 rgba(38,55,77,0.06);
  border: none;
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f0b65c;
}

/* Hide mobile nav on desktop */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253,253,252,0.97);
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.82,0,0.17,1);
  z-index: 99;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 36px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 32px 4px rgba(38,55,77,0.09);
}
.mobile-menu-close {
  background: #F4F1ED;
  color: #26374D;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.9rem;
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6E6C5;
}
.mobile-nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: #26374D;
  padding: 10px 0 10px 8px;
  border-radius: 16px;
  width: 100%;
  transition: background 0.17s, color 0.15s;
  min-width: 110px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6E6C5;
  color: #E8A960;
}

/* Hide main nav, Show mobile toggle on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* LAYOUT FLEXBOX PATTERNS (NO GRID USED) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #FFF9F6;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(38,55,77,0.07);
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow 0.23s, transform 0.26s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 34px 0 rgba(38,55,77,0.14);
  transform: translateY(-2px) scale(1.014);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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 {
  background: #F7EBFA;
  color: #26374D;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 20px 22px;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(158,120,226,0.10);
  font-size: 1.08rem;
  min-width: 210px;
}
.testimonial-card p {
  margin: 0 10px 0 0;
  font-weight: 500;
  color: #26374D;
}
.testimonial-card span {
  color: #A180C2;
  font-size: 0.97rem;
  font-family: 'Montserrat', sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img {
  margin-bottom: 0;
}

/* Mini staff intro link */
.mini-staff-intro {
  margin-top: 16px;
  font-size: 1.02rem;
  color: #AD70E4;
}
.mini-staff-intro a {
  color: #AD70E4;
  text-decoration: underline;
}

/* FOOTER */
footer {
  width: 100%;
  background: #F8F6F2;
  padding-top: 38px;
  padding-bottom: 22px;
  border-top: 1.5px solid #f3e8dd;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #26374D;
}
.footer-nav a {
  color: #828193;
  font-size: 0.97rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E8A960;
}
.footer-logo img {
  height: 56px;
  border-radius: 12px;
  margin-bottom: 7px;
  box-shadow: 0 1px 8px 0 rgba(38,55,77,0.06);
}
.brand-credit {
  color: #a1a0ae;
  font-size: 0.96rem;
  margin-top: 7px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .footer-logo img {
    height: 36px;
  }
  .footer-nav {
    font-size: 0.98rem;
    gap: 12px;
  }
  .brand-credit {
    font-size: 0.91rem;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    min-width: 90vw;
    max-width: 99vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav {
    display: none !important;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.08rem; }
  .section { padding: 11px 2px; }
}

/* SOFT PASTEL DESIGN TWEAKS */
body {
  background: linear-gradient(120deg, #F4F1ED 0%, #F6E6C5 60%, #E2F5EC 100%);
}
.section {
  background: #FFFFFFBB;
  box-shadow: 0 3px 24px 0 rgba(172,163,233,0.06);
}
.card {
  background: #F5EFFB;
  box-shadow: 0 6px 18px 0 rgba(181,190,232,0.11);
}
.testimonial-card {
  background: #EDF4FB;
  border: 1px solid #D6D9E6;
}

/*  COOKIE BANNER  */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF9F6;
  color: #26374D;
  box-shadow: 0 -1.5px 18px 3px rgba(38,55,77,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 16px;
  z-index: 1999;
  font-size: 1.02rem;
}
.cookie-banner-message {
  flex: 1 1 0;
  max-width: 710px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cta {
  min-width: 110px;
  font-size: 1rem;
  padding: 10px 20px;
}
.cookie-banner .settings {
  background: #E2F5EC;
  color: #363869;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #C7E4D8;
  color: #26374D;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.99rem;
    padding: 14px 4vw 16px 4vw;
  }
  .cookie-banner-message {
    max-width: none;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,55,77,0.18);
  backdrop-filter: blur(2px);
  z-index: 2010;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  padding: 20px;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 40px 0 rgba(72,62,137,0.16);
  padding: 36px 28px;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid #E3DCF6;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
}
.cookie-cat-row .toggle {
  width: 44px;
  height: 24px;
  background: #F7F1FF;
  border-radius: 20px;
  position: relative;
  transition: background 0.16s;
  cursor: pointer;
  margin-left: 12px;
}
.cookie-cat-row .toggle[data-checked='true'] {
  background: #E8A960;
}
.cookie-cat-row .toggle .knob {
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.23s cubic-bezier(0.65,0.05,0.36,1);
  box-shadow: 0 1px 5px 0 rgba(38,55,77,0.07);
}
.cookie-cat-row .toggle[data-checked='true'] .knob {
  left: 22px;
}
.cookie-cat-row .toggle[aria-disabled='true'] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 96vw;
    padding: 18px 7px;
  }
}

/* MICRO-ANIMATIONS */
.cta, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner .cta, .cookie-banner .settings {
  transition: background 0.18s, color 0.17s, box-shadow 0.24s, transform 0.16s;
}
.card, .testimonial-card, .section {
  transition: box-shadow 0.23s, transform 0.22s, background 0.18s;
}
.card:active { transform: scale(0.995); }
.cta:active, button:active { transform: scale(0.98); }
.mobile-menu.open { transition: transform 0.38s cubic-bezier(0.55,0.05,0.37,1); }

/* GENERAL UTILITIES */
.d-none {
  display: none !important;
}

/* ENHANCED PASTEL SCHEME (OVERRIDE BRAND) */
body, .section, .card, .testimonial-card, .cookie-banner, .cookie-modal {
  font-family: 'Roboto', Arial, sans-serif;
}

/* WHITE SPACE CONSISTENCY */
.section, .card, .testimonial-card {
  margin-bottom: 32px;
}
.card-container, .content-grid {
  gap: 24px;
}

/* Misc */
.store-map {
  background: #F3F5FB;
  padding: 11px 14px;
  border-radius: 11px;
  font-size: 1.05rem;
  color: #8865B4;
  margin-top: 7px;
  margin-bottom: 18px;
}

/* Accessibility/high contrast for testimonial text */
.testimonial-card p, .testimonial-card span {
  color: #26374D;
}

/* ----- END CSS ----- */
