/* =======================================================
   CSS RESET & NORMALIZATION (mobile-first)
======================================================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F8F5F1;
}
body {
  color: #223B57;
  background: #F8F5F1;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #5CBD9E;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #223B57;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
:focus {
  outline: 2px dashed #5CBD9E;
  outline-offset: 2px;
}

/* =======================================================
   BRAND FONTS for Creative Artistic Feel
======================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  color: #223B57;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 24px;
  font-style: italic;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-style: italic;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.tagline {
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #5CBD9E;
  margin-left: 10px;
  letter-spacing: .12em;
}
p, ul, ol, li {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 1rem;
}

section ul,
section ol {
  margin-left: 30px;
  margin-bottom: 20px;
}
section li {
  margin-bottom: 8px;
}

/* Artistic letter spacing for creative look */
.section h1, .section h2, .main-title, .cta-button {
  letter-spacing: 0.04em;
}

/* =======================================================
   GENERAL LAYOUT: CONTAINER, SECTIONS, WRAPPER
======================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(35, 59, 87, 0.05), 0 1.5px 4px rgba(92, 189, 158, 0.08);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(35,59,87,.10);
  padding: 28px 20px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(35,59,87,.18);
  transform: translateY(-6px) scale(1.02) rotate(-1deg);
  z-index: 3;
}

.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;
}

/* Used for testmonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F5F1;
  border-left: 6px solid #5CBD9E;
  margin-bottom: 20px;
  border-radius: 22px;
  box-shadow: 0 1.5px 7px rgba(35,59,87,.08);
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-family: 'Montserrat', cursive, sans-serif;
  color: #223B57;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 10px 0;
  letter-spacing: .01em;
}
.testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
  color: #223B57;
  font-size: 1rem;
  font-weight: 500;
  opacity: .85;
  margin-left: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
  background: #fff;
  padding: 20px 16px 16px 16px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(92,189,158,0.05);
  margin-bottom: 16px;
  transition: box-shadow .16s, transform .16s;
  border-left: 4px solid #5CBD9E;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature-item h3 {
  margin-top: 2px;
  margin-bottom: 6px;
  color: #223B57;
}
.feature-item:hover {
  box-shadow: 0 8px 22px rgba(92,189,158,.12);
  transform: translateY(-4px) scale(1.015) rotate(-0.5deg);
}

.service-list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: circle inside;
  font-size: 1rem;
}
.service-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.booking-steps ol {
  padding-left: 20px;
  margin-bottom: 0;
}

/* Gift ideas & team highlights */
.gift-ideas ul, .team-highlights ul, .service-highlights ul, .workshop-topics ul, .next-steps ul {
  margin-top: 6px;
  margin-bottom: 18px;
  padding-left: 24px;
}
.thanks-message {
  font-family: 'Montserrat', cursive, sans-serif;
  color: #5CBD9E;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 12px;
}

/* =======================================================
   HEADER & NAVIGATION
======================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(35,59,87,.09);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 12px 0 0 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px 0;
  padding: 0 20px;
}
.logo-area img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #F8F5F1;
  box-shadow: 0 0 6px rgba(35,59,87,.06);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 12px 20px;
  font-size: 1.02rem;
}
.main-nav a {
  color: #223B57;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: 7px;
  padding: 6px 14px;
  transition: background .18s, color .14s;
  margin-bottom: 4px;
}
.main-nav a:hover, .main-nav a.active {
  background: #5CBD9E;
  color: #fff;
}
.main-nav .cta-button {
  background: #5CBD9E;
  color: #fff;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px rgba(92,189,158,.08);
  border: none;
  font-size: 1.08rem;
  letter-spacing: .06em;
  transition: background .18s, color .16s, box-shadow .18s, transform .14s;
  margin-left: 8px;
}
.main-nav .cta-button:hover, .main-nav .cta-button:focus {
  background: #223B57;
  color: #fff;
  transform: scale(1.04) translateY(-2px) rotate(-2deg);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =======================================================
   MOBILE NAVIGATION (Slides in)
======================================================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #223B57;
  background: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  margin: 4px 16px 4px 0;
  z-index: 100;
  transition: background .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #5CBD9E;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 500;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 8px 36px rgba(35,59,87,.13);
  display: flex;
  flex-direction: column;
  padding: 0 0 64px 0;
}
.mobile-menu.active {
  transform: translateX(0);
  display: flex;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #223B57;
  background: #F8F5F1;
  border-radius: 8px;
  align-self: flex-end;
  margin: 16px 26px 8px 0;
  padding: 2px 10px;
  z-index: 10;
  transition: background .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #5CBD9E;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 36px 32px 0 32px;
}
.mobile-nav a {
  color: #223B57;
  font-size: 1.25rem;
  margin-bottom: 2px;
  padding: 12px 8px 12px 0;
  border-radius: 5px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #5CBD9E;
  color: #fff;
}

/* ========== Hide main nav & show burger on mobile ========== */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =======================================================
   CTA BUTTON
======================================================== */
.cta-button {
  background: #5CBD9E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 22px;
  margin-top: 18px;
  display: inline-block;
  letter-spacing: .07em;
  border: none;
  cursor: pointer;
  box-shadow: 0 1.5px 14px rgba(35,59,87,.10);
  transition: background .18s, box-shadow .16s, transform .18s;
}
.cta-button:hover, .cta-button:focus {
  background: #223B57;
  color: #fff;
  box-shadow: 0 4px 26px rgba(35,59,87,.16);
  transform: scale(1.05) translateY(-1px) rotate(-1deg);
}

/* =======================================================
   FOOTER
======================================================== */
footer {
  background: #223B57;
  padding: 36px 0 16px 0;
  color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -2px 22px rgba(35,59,87,.09);
  margin-top: 60px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-menu a {
  color: #5CBD9E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .15s;
  text-decoration: underline dotted;
}
.footer-menu a:hover {
  color: #fff;
}
.footer-contact {
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: .94;
  margin-top: 12px;
}
.footer-contact a {
  color: #5CBD9E;
  cursor: pointer;
}
.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

/* =======================================================
   COOKIE CONSENT BANNER & MODAL
======================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #223B57;
  box-shadow: 0 -4px 24px rgba(92,189,158,0.12);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 22px 30px 22px 20px;
  font-size: 1.05rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: transform .30s cubic-bezier(.5,1.8,.4,1), opacity .18s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
}
.cookie-btn {
  background: #5CBD9E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 14px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 6px 0;
  transition: background .15s, color .12s, transform .14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #223B57;
  transform: scale(1.05) rotate(-2deg);
}
.cookie-btn.settings-btn {
  background: #F8F5F1;
  color: #223B57;
  border: 2px solid #5CBD9E;
  font-weight: 600;
}
.cookie-btn.settings-btn:hover {
  background: #5CBD9E;
  color: #fff;
}

/*. COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10010;
  background: rgba(34,59,87,0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .20s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #223B57;
  border-radius: 26px;
  box-shadow: 0 8px 32px rgba(92,189,158,0.19);
  padding: 34px 32px 32px 32px;
  max-width: 420px;
  min-width: 270px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-content h2 {
  margin-top: 0;
  color: #5CBD9E;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.cookie-toggle {
  width: 36px;
  height: 18px;
  border-radius: 18px;
  background: #E9ECEF;
  position: relative;
  cursor: pointer;
  transition: background .14s;
}
.cookie-toggle.on {
  background: #5CBD9E;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform .14s;
}
.cookie-toggle.on::before {
  transform: translateX(18px);
}
.cookie-toggle.disabled {
  background: #A1A1A1;
  cursor: not-allowed;
  opacity: .7;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #F8F5F1;
  color: #223B57;
  border-radius: 50%;
  padding: 5px 12px;
  font-size: 1.5rem;
  border: none;
  transition: background .14s, color .14s;
  z-index: 30;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #5CBD9E;
  color: #fff;
}

/* =======================================================
   CARD LAYOUTS & CREATIVE ARTISTIC ELEMENTS
======================================================== */
/* Add swash/curve effect at card border using pseudo for artist look */
.card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 40px;
  width: 60px;
  height: 18px;
  background: #5CBD9E;
  opacity: .07;
  border-radius: 60px 10px 40px 90px;
  transform: rotate(-5deg);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.feature-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 32px;
  background: #5CBD9E;
  opacity: .08;
  border-radius: 0 16px 32px 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(3px);
}

/* Accent scribble for headline flair */
h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 8px;
  margin-top: 8px;
  background: #5CBD9E;
  border-radius: 6px;
  opacity: .22;
}

/* Artistic font for creative headlines */
@media (min-width: 900px) {
  h1, h2 {
    font-size: 2.8rem;
    font-style: italic;
    letter-spacing: 0.09em;
  }
}

/* =======================================================
   RESPONSIVE (Mobile-First, Flex Wrap)
======================================================== */
@media (max-width: 768px) {
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.2rem;}
  .container { max-width: 96vw; }
  .section { padding: 26px 7px; margin-bottom: 36px; }
  .content-grid, .card-container { gap: 12px; }
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
    padding: 16px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  .main-nav, .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .logo-area {
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    font-size: .98rem;
    padding: 17px 8px 17px 8px;
  }
  .cookie-banner .cookie-buttons { margin-left: 0; }
  .footer-contact {
    font-size: .95rem;
  }
}

/* Dress up scrollbars for arty look */
::-webkit-scrollbar {
  width: 11px;
  background: #F8F5F1;
}
::-webkit-scrollbar-thumb {
  background: #5CBD9E;
  border-radius: 7px;
  border: 2px solid #F8F5F1;
}

/* =======================================================
   UTILITIES (Spacing, Hide, Show)
======================================================== */
.hide { display: none !important; }
.show { display: block !important; }
.mt-24 { margin-top: 24px !important; }
.mb-36 { margin-bottom: 36px !important; }

/* Ensure links in cards are highly visible */
.card a,
.feature-item a {
  color: #5CBD9E;
  text-decoration: underline wavy;
  font-weight: 500;
  transition: color .15s;
}
.card a:hover,
.feature-item a:hover {
  color: #223B57;
}

/* Map Placeholder styles */
.map p {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223B57;
  margin: 12px 0 0 0;
  font-size: 1rem;
  background: #F8F5F1;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(92,189,158,.07);
}

/* Forms & Inputs—minimalistic artistic styling */
input, textarea, select {
  padding: 8px 11px;
  border-radius: 8px;
  border: 1.3px solid #5CBD9E;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  box-shadow: 0 1.5px 7px rgba(92,189,158,.07);
  margin-bottom: 16px;
  width: 100%;
  transition: border-color .13s, box-shadow .13s;
}
input:focus, textarea:focus {
  border-color: #223B57;
  box-shadow: 0 0 0 3px rgba(92,189,158,.15);
}

/* Spacing for .contact-details and .contact-form-info */
.contact-details, .contact-form-info {
  background: #F8F5F1;
  border-radius: 13px;
  padding: 18px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 9px rgba(35,59,87,.07);
}
.contact-details img, .contact-details a {
  margin-right: 8px;
  vertical-align: middle;
  max-width: 150px;
}

/* Animate section entrance */
.section, .feature-item, .card, .testimonial-card {
  animation: fadeinup .8s cubic-bezier(.5,1.5,.7,1.2);
}
@keyframes fadeinup {
  from { opacity:0; transform: translateY(32px) scale(.96); }
  to   { opacity:1; transform: none; }
}

/* Subtle playful hover for creative look */
.feature-item:hover, .card:hover, .testimonial-card:hover {
  transition: box-shadow .18s, transform .18s;
  box-shadow: 0 7px 28px rgba(92,189,158,.14);
  transform: scale(1.02) translateY(-2px) rotate(-.7deg);
}

/* Misc layout for card wrappers, text-sections, team-highlights etc. */
.text-section, .team-highlights, .service-highlights, .workshop-topics, .gift-ideas, .next-steps {
  background: #FAFAFA;
  border-radius: 9px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 7px rgba(92,189,158,.03);
}

/* Highlight code blocks for legal pages */
pre, code {
  background: #F8F5F1;
  color: #223B57;
  padding: 3px 6px;
  border-radius: 6px;
}

/* For large screens, artistic flex rows for key grids */
@media (min-width: 1000px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: row;
    gap: 36px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .feature-item { min-width: 260px; max-width: 390px; }
  .card { max-width: 400px; }
}

/* Prevent absolute overlaps except for decorative */
.card, .feature-item, .testimonial-card {
  position: relative;
  z-index: 1;
}

/* Ensure testimonial text is always readable */
.testimonial-card, .testimonial-card blockquote, .testimonial-meta {
  color: #223B57 !important; /* contrast enforcement */
}

/* Decorative dotted underline for .cta-button on hover */
.cta-button:hover {
  text-decoration: underline dotted #F8F5F1 2px;
}

/* Accessibility: High contrast for all interactive elements, esp. in review/testimonial sections and buttons */
.cta-button, .cookie-btn, .cookie-banner {
  border: none;
  outline: none;
}

/* END CSS */
