/* RESET & BASELINE ------------------------ */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #F7F9FB;
  color: #374D5B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #5682a3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #374D5B;
}
ul, ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}
ul {
  list-style: disc inside;
}
li {
  margin-bottom: 0.5em;
}
blockquote {
  margin: 0 0 0.5em 0;
  font-style: italic;
  color: #65727b;
  border-left: 4px solid #AEC8CA;
  padding-left: 16px;
}
table { border-collapse: collapse; width: 100%; background: #fff; border-radius: 16px; box-shadow: 0 3px 16px 0 rgba(74,128,174,0.08); overflow: hidden; }
th, td { padding: 12px 14px; text-align: left; }
th { background: #ECF5F7; color: #374D5B; font-family: 'Montserrat', Arial, sans-serif; }
td { border-top: 1px solid #ECF5F7; color: #374D5B; }
strong { font-weight: 600; }

/* TYPOGRAPHY --------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #374D5B;
  margin: 0 0 16px 0;
}
h1 { font-size: 2.5rem; letter-spacing: 0.04em; line-height: 1.2; font-weight: 700; }
h2 { font-size: 2rem; letter-spacing: 0.02em; line-height: 1.24; font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 500; }
.subheadline {
  font-size: 1.2rem;
  color: #65727b;
  margin-bottom: 24px;
  font-weight: 400;
}

/* FLEXBOX LAYOUTS ---------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(143,191,236,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(74,128,174,0.15);
  transform: translateY(-2px) scale(1.012);
}
.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: center;
  gap: 20px;
  padding: 20px 32px;
  background: #F6F4FB;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 rgba(0,0,0,0.02),0 1px 6px 0 rgba(101,124,168,0.08);
  border: 1px solid #ECE6FF;
  color: #262A2E;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #374D5B;
  font-style: italic;
  border: none;
  background: none;
  padding: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION ------------------------- */
.hero {
  background: linear-gradient(180deg, #F9EBEA 0%, #F0F6F7 100%);
  padding: 56px 0 32px 0;
  margin-bottom: 60px;
}
.hero h1 {
  color: #374D5B;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* FEATURES GRID (Flex only) ------------ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
}
.feature {
  background: #F7F8FA;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(191,173,236,0.08);
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 250px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature img {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
}
.feature:hover {
  box-shadow: 0 6px 24px 0 rgba(191,173,236,0.18);
  transform: translateY(-2px) scale(1.013);
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.feature p {
  font-size: 1rem;
  color: #525967;
  font-weight: 400;
}

/* QUICK FACTS, PROMISES, IMAGES -------- */
.quick-facts p, .certificates p {
  font-size: 1rem;
  margin-bottom: 6px;
}
.certificates img {
  height: 24px;
  width: 24px;
  margin-right: 10px;
  vertical-align: middle;
}
.service-promises {
  margin-top: 20px;
  padding: 16px 0 0 0;
}

/* TEAM LISTS --------------------------- */
.team-bio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 0 0;
}
.team-member {
  background: #FCFBFE;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(190,210,234,0.10);
  padding: 28px 20px;
  min-width: 260px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #374D5B;
}
.team-member blockquote {
  color: #7A6CB1;
  font-size: 1rem;
  font-style: italic;
  border-left: 3px solid #C9CCF2;
  padding-left: 12px;
}

/* PRICE TABLE -------------------------- */
.price-table {
  margin: 30px 0 32px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(111,167,214,0.06);
}
.price-table table {
  border-radius: 14px;
}
.add-on-prices, .service-tiers {
  margin-top: 28px;
}

/* CTA BUTTONS --------------------------- */
.cta, .content-wrapper .cta {
  display: inline-block;
  background: #D6C08B;
  color: #374D5B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 14px 38px;
  box-shadow: 0 2px 14px 0 rgba(214,192,139,0.11);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.13s;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.02em;
}
.cta:hover, .cta:focus {
  background: #E6D6B2;
  color: #2C3A46;
  box-shadow: 0 4px 22px 0 rgba(214,192,139,0.18);
  transform: translateY(-1px) scale(1.016);
  outline: none;
}

/* CTA SECTION  -------------------------- */
.cta-section {
  background: linear-gradient(180deg, #F5FBF8 0%, #F7EBF6 100%);
  border-radius: 26px;
  margin: 80px 0 48px 0;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: #374D5B;
  margin-bottom: 18px;
}
.booking-reminder {
  color: #65727b;
  font-size: 1rem;
  margin-top: 14px;
}

/* FAQ ---------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 0 0;
}
.faq-item {
  background: #F7F4FB;
  border-radius: 14px;
  padding: 22px 20px;
  min-width: 240px;
  flex: 1 1 290px;
  color: #374D5B;
}
.faq-item h3 {
  font-size: 1.08rem;
}

/* FOOTER ----------------------------- */
footer {
  background: #F0F6F7;
  border-top: 2px solid #ECF2F9;
  padding: 30px 0 16px 0;
  margin-top: 64px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-content a img {
  height: 54px;
  margin-bottom: 16px;
}
.footer-content nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-content nav a {
  color: #7A6CB1;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-content nav a:hover {
  color: #374D5B;
}
.contact-info {
  font-size: 1rem;
  color: #5C6980;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info a {
  color: #5682a3;
  text-decoration: underline;
  font-size: 1rem;
}
footer p {
  margin: 0 0 6px 0;
}

/* MAP, ICONS, REMINDERS ---------------- */
.text-section img, .map-direction img {
  vertical-align: middle;
  margin-right: 8px;
  height: 28px;
  width: 28px;
}
.map-direction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0 0 0;
  color: #374D5B;
}

/* MOBILE MENU -------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 24px;
  background: #D6C08B;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  color: #374D5B;
  width: 52px;
  height: 52px;
  z-index: 3001;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E5DECA;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FCFBFE;
  box-shadow: 0 12px 62px 0 rgba(94,68,132,0.19);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.6,-0.22,.35,1.04);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: #D6C08B;
  border: none;
  border-radius: 50%;
  font-size: 1.7rem;
  color: #374D5B;
  width: 48px;
  height: 48px;
  z-index: 4002;
  transition: background 0.14s, color 0.16s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EEE7CF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 96px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #7A6CB1;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 24px;
  letter-spacing: .01em;
  width: 220px;
  text-align: center;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7ECF7;
  color: #374D5B;
}

/* MAIN NAVIGATION & DESKTOP HEADER------- */
header {
  background: #FCFBFE;
  box-shadow: 0 2px 18px 0 rgba(193,181,240,0.09);
  min-height: 64px;
  position: sticky;
  top: 0;
  z-index: 1010;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}
header nav a {
  color: #7A6CB1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.11rem;
  padding: 7px 18px;
  border-radius: 20px;
  transition: background 0.12s, color 0.13s;
}
header nav a.cta {
  background: #D6C08B;
  color: #374D5B;
  padding: 12px 30px;
  font-size: 1.13rem;
  border-radius: 24px;
  font-weight: 700;
  margin-left: 10px;
  transition: background 0.15s, color 0.15s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #E5DECA;
  color: #374D5B;
}
header nav a:hover, header nav a:focus {
  background: #EFEDEE;
  color: #374D5B;
  text-decoration: none;
}
header nav a img {
  height: 42px;
  margin-right: 20px;
  vertical-align: middle;
}

/* Hide mobile nav on desktop */
.mobile-menu, .mobile-menu-toggle {
  display: none;
}

/* TEXT/CONTENT/SECTION SPACING --------- */
.text-section {
  margin: 0 0 20px 0;
  font-size: 1.07rem;
}
.text-section ul {
  margin: 12px 0 18px 18px;
}
.service-outcome-descriptions, .notes-text {
  margin-top: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .team-bio-list, .features-grid, .faq-list, .content-grid {
  gap: 24px;
}
.card, .feature, .testimonial-card, .faq-item, .team-member {
  margin-bottom: 20px;
}

/* COOKIE CONSENT BANNER ----------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F0F6F7;
  color: #374D5B;
  font-size: 1rem;
  box-shadow: 0 -1px 22px 0 rgba(191,173,236,0.10);
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 22px 18px 22px;
  border-radius: 26px 26px 0 0;
  transition: transform 0.33s cubic-bezier(.6,-0.22,.35,1.04), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner__content {
  flex: 1;
  min-width: 180px;
  max-width: 510px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: #D6C08B;
  color: #374D5B;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 26px;
  margin-left: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(214,192,139,0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E5DECA;
  color: #2C3A46;
}
.cookie-btn.reject {
  background: #fff;
  color: #7A6CB1;
  border: 1px solid #D6C08B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F8F3EA;
}
.cookie-btn.settings {
  background: #ECF5F7;
  color: #374D5B;
  border: 1px solid #AEC8CA;
  margin-right: 0;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E6EFFF;
}

/* COOKIE MODAL ------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(60,50,140,0.14);
  z-index: 9500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FCFBFE;
  border-radius: 22px;
  padding: 34px 30px 26px 30px;
  min-width: 316px;
  max-width: 95vw;
  box-shadow: 0 4px 32px 0 rgba(151,149,208,0.16);
  position: relative;
}
.cookie-modal h3 {
  margin-top: 0;
}
.cookie-modal .cookie-categories {
  margin: 20px 0 28px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #D6C08B;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-category .essential {
  color: #7A6CB1;
  font-size: 0.98rem;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #ECE6FF;
  color: #7A6CB1;
  border: none;
  border-radius: 50%;
  font-size: 1.23rem;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #D6C08B;
  color: #374D5B;
}

/* RESPONSIVE ---------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
  }
  .content-wrapper {
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 780px;
  }
  .features-grid, .team-bio-list, .faq-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {font-size: 15px;}
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 0;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 14px;
  }
  .mobile-menu {
    display: flex;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .features-grid, .team-bio-list, .faq-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature, .faq-item, .card, .team-member {
    min-width: 0;
    width: 100%;
    padding: 22px 10px;
  }
  .hero {
    padding: 38px 0 24px 0;
    margin-bottom: 38px;
  }
  .cta-section {
    margin: 54px 0 26px 0;
    padding: 32px 10px;
  }
  .section {
    margin-bottom: 38px;
    padding: 20px 4px;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
  .map-direction { align-items: flex-start; }
  .cookie-banner {
    padding: 16px 6px 12px 6px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.96rem;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .cookie-modal {
    min-width: 84vw;
    padding: 18px 8px 14px 12px;
  }
}
@media (max-width: 500px) {
  html {font-size: 14px;}
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .cta, .content-wrapper .cta {
    padding: 12px 16px;
    font-size: 1.01rem;
  }
  .cookie-btn {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}

/* SOFT PASTEL / DREAMY EFFECTS ---------- */
body, .hero, .cta-section, .feature, .testimonial-card, .faq-item, .footer-content, .card, .team-member {
  box-shadow: 0 2px 16px 0 rgba(191,173,236,0.05), 0 4px 26px 0 rgba(129,204,221,0.04);
}
.cta-section, .feature, .testimonial-card, .faq-item, .footer-content, .card, .team-member {
  border: 1.5px solid #EEE7FA;
}
h1, h2, h3, h4, h5, h6 { text-shadow: 0 1px 6px #e7ebed;}
/* Pastel accent hover for buttons */
.cta:active, .cookie-btn:active, .header nav a.cta:active {
  background: #F5E6FF;
  color: #374D5B;
}

/* MICRO-INTERACTIONS & TRANSITIONS ------ */
.cta, .card, .feature, .testimonial-card, .faq-item, .team-member, .mobile-menu, .cookie-btn {
  transition: box-shadow 0.18s, transform 0.15s, background 0.18s, color 0.13s;
}

/* UTILITY CLASSES ------------------------ */
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* END OF STYLE.CSS */
