/* 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,
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 {
  scroll-behavior: smooth;
}
body {
  background: #F7F2EC;
  color: #244344;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}
ul, ol {
  list-style: none;
}
a {
  color: #244344;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:focus {
  outline: 2px solid #B39E7D;
}
a:hover {
  color: #a0875a;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1d3334;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.15rem;
}
dt {
  font-weight: 600;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline, .mission-statement, .vision-statement {
  font-size: 1.15rem;
  color: #4a3b2a;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 24px;
}
strong {
  font-weight: 600;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(163,143,122,0.09), 0 0.5px 1.5px rgba(163,143,122,0.03);
  padding: 40px 24px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.hero {
  background: linear-gradient(97deg, #fbecd6 50%, #F7F2EC 100%);
  padding-top: 40px;
  padding-bottom: 20px;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(176,158,125,0.08);
  margin-bottom: 24px;
}
.hero .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.card-container, .feature-grid, .usp-grid, .benefit-grid, .experience-grid, .quotes, .testimonial-slider, .guest-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(176,158,125,0.11);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 20px 22px 20px;
  flex: 1 1 220px;
  transition: box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(176,158,125,0.16);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7F2EC;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(176,158,125,0.10);
  color: #1d3334;
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  color: #244344;
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #a0875a;
  font-style: italic;
}
.testimonial-card div {
  color: #B39E7D;
  font-size: 1.2rem;
  margin-left: 0;
  letter-spacing: 1.2px;
}

.feature-item, .special-offers ul, .consultant-profiles, .icon-list, .values-list, .group-benefit-list, .safety-highlights, .gdpr-overview, .user-rights-list, .service-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img, .usp-grid img, .experience-grid img, .benefit-grid img, .benefit-icons img, .icon-list img, .values-list img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  border-radius: 12px;
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(176,158,125,0.04);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 20px 0 12px 0;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #244344;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background 0.22s, color 0.21s;
}
.main-nav a:not(.button-primary):hover {
  background: #F7F2EC;
  color: #a0875a;
}
.main-nav img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-right: 10px;
}
.button-primary {
  background: #B39E7D;
  color: #fff !important;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 11px 34px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(176,158,125,0.10);
  transition: background 0.16s, box-shadow 0.18s, color 0.13s;
  outline: none;
  display: inline-block;
  text-align: center;
}
.button-primary:hover, .button-primary:focus {
  background: #a0875a;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(176,158,125,0.14);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 2rem;
  background: #fff;
  border: none;
  color: #B39E7D;
  border-radius: 50%;
  padding: 10px 12px;
  cursor: pointer;
  z-index: 102;
  box-shadow: 0 3px 24px rgba(176,158,125,0.14);
  transition: background 0.2s, box-shadow 0.23s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7F2EC;
  color: #a0875a;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(247,242,236,0.99);
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.40s cubic-bezier(0.7,0,0.25,1);
  box-shadow: 12px 0 36px 0 rgba(176,158,125,0.12);
  padding-top: 32px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.35s  cubic-bezier(0.55,0,0.1,1);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 26px;
  background: #fff;
  border: none;
  color: #B39E7D;
  font-size: 2rem;
  border-radius: 50%;
  padding: 6px 12px;
  box-shadow: 0 2px 16px 0 rgba(176,158,125,0.14);
  cursor: pointer;
  transition: background 0.21s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B39E7D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  padding: 38px 40px;
}
.mobile-nav a {
  color: #244344;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 12px;
  width: 100%;
  transition: background 0.13s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F2EC;
  color: #a0875a;
}
@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 980px) {
  .main-nav a {
    font-size: 0.97rem;
    padding: 8px 9px;
  }
  .main-nav img {
    width: 38px;
    height: 38px;
  }
  .hero {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 799px) {
  .main-nav {
    gap: 8px;
    padding: 16px 0 10px 0;
  }
}
@media (max-width: 768px) {
  header {
    border-radius: 0 0 24px 24px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .section {
    padding: 22px 9px;
  }
  .hero {
    border-radius: 0 0 24px 24px;
    padding-top: 16px;
    padding-bottom: 8px;
  }
}

/* RESPONSIVE FLEX TRANSITIONS */
@media (max-width: 860px) {
  .feature-grid, .benefit-grid, .usp-grid, .experience-grid, .quotes, .testimonial-slider, .guest-stories {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 600px) {
  .content-wrapper, .section {
    margin-bottom: 36px;
    padding: 12px 4px;
  }
  .card, .testimonial-card {
    min-width: 0;
    flex: 1 1 100%;
    padding: 16px 8px 16px 8px;
  }
  .feature-grid div, .usp-grid div, .benefit-grid div, .experience-grid div {
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.text-section > ul, .text-section > ol {
  margin-left: 10px;
  margin-bottom: 12px;
}
.text-section address {
  font-style: normal;
  margin-bottom: 7px;
}

/* SPECIAL FLEX SECTIONS */
.feature-grid, .usp-grid, .benefit-grid, .experience-grid, .benefit-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
}
.feature-grid > div, .usp-grid > div, .benefit-grid > div, .experience-grid > div {
  flex: 1 1 235px;
  min-width: 220px;
  background: #fcf7ef;
  border-radius: 18px;
  padding: 22px 15px 20px 15px;
  box-shadow: 0 2px 12px 0 rgba(176,158,125,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s;
}
.feature-grid > div:hover, .usp-grid > div:hover, .benefit-grid > div:hover, .experience-grid > div:hover {
  box-shadow: 0 4px 22px 0 rgba(176,158,125,0.12);
}

/* LISTS & ICON BULLETS */
.icon-bullets li, .icon-list li, .values-list li, .group-benefit-list li, .safety-highlights li, .inclusivity-features li, .special-offers li, .service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.6;
}
.icon-bullets img, .icon-list img, .values-list img, .group-benefit-list img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  margin-right: 6px;
}

/* STEP PROCESS */
.step-by-step-process {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: stepcount;
  margin: 12px 0 18px 0;
}
.step-by-step-process li {
  position: relative;
  padding-left: 36px;
  font-size: 1.02rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.step-by-step-process li:before {
  content: counter(stepcount);
  counter-increment: stepcount;
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: #B39E7D;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(176,158,125,0.13);
}

/* ACCORDIONS, FAQ, ETC. */
.faq-snippet {
  background: #fcf7ef;
  border-radius: 16px;
  padding: 16px 14px;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px 0 rgba(176,158,125,0.05);
}

/* RATING SUMMARY */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fcf7ef;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 1.04rem;
  color: #1d3334;
  box-shadow: 0 1px 8px 0 rgba(176,158,125,0.08);
}

/* SPECIAL CLASSES */
.pricing-snippet, .pricing-overview {
  font-size: 1rem;
  color: #1d3334;
  background: #fcf7ef;
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 7px;
  font-style: italic;
  box-shadow: 0 1px 6px 0 rgba(176,158,125,0.05);
}
.special-interest-list ul {
  margin-left: 0;
  margin-right: 0;
  gap: 8px;
}

.highlighted-event {
  background: #fff8ec;
  border:1px solid #F7F2EC;
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow: 0 1px 8px 0 rgba(176,158,125,0.10);
  margin-top: 24px;
}

/********************/
/* FOOTER */
/********************/
footer {
  background: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 24px 0 rgba(176,158,125,0.06);
  padding: 36px 0 0 0;
  margin-top: 56px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding-bottom: 10px;
}
.footer-nav a {
  color: #a0875a;
  font-size: 1.02rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 4px 13px;
  border-radius: 10px;
  transition: background 0.12s, color 0.10s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #F7F2EC;
  color: #244344;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 9px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}
.footer-info img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F7F2EC;
}
.footer-info p {
  color: #B39E7D;
  font-size: 1rem;
}

/********************/
/* COOKIE CONSENT BANNER */
/********************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #fff8ec;
  color: #1d3334;
  border-top: 2px solid #B39E7D;
  box-shadow: 0 -3px 24px 0 rgba(176,158,125,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 20px 28px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  transition: opacity 0.34s, transform 0.39s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}
.cookie-banner button {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-right: 0;
  transition: background 0.17s, color 0.14s, box-shadow 0.12s;
  cursor: pointer;
}
.cookie-banner .accept-btn {
  background: #B39E7D;
  color: #fff;
  margin-right: 2px;
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: #a0875a;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #fcf7ef;
  color: #1d3334;
  border: 1px solid #B39E7D;
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: #B39E7D;
  color: #fff;
  border-color: #B39E7D;
}
.cookie-banner .settings-btn {
  background: #fff;
  border: 1px solid #B39E7D;
  color: #a0875a;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #faefd8;
  color: #244344;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 16px;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
  }
}

/********************/
/* COOKIE MODAL */
/********************/
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,67,68,0.12);
  z-index: 1222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-content {
  background: #fff8ec;
  border-radius: 28px;
  box-shadow: 0 6px 36px 0 rgba(176,158,125,0.18);
  padding: 36px 30px 26px 30px;
  max-width: 430px;
  min-width: 260px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1rem;
  color: #1d3334;
  position: relative;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 17px;
  color: #1d3334;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  margin-bottom: 7px;
}
.cookie-category .toggle {
  width: 40px;
  height: 22px;
  background: #fcf7ef;
  border-radius: 12px;
  position: relative;
  transition: background 0.23s;
  border: 1px solid #B39E7D;
  cursor: pointer;
}
.cookie-category .toggle[data-checked="true"] {
  background: #B39E7D;
}
.cookie-category .toggle-switch {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px 0 rgba(176,158,125,0.05);
  transition: left 0.23s cubic-bezier(0.46,0.09,0.38,1.1);
}
.cookie-category .toggle[data-checked="true"] .toggle-switch {
  left: 20px;
}
.cookie-category .toggle[aria-disabled="true"] {
  background: #B39E7D;
  opacity: 0.65;
  cursor: not-allowed;
}
.cookie-modal-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-footer button {
  padding: 8px 19px;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: #B39E7D;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(176,158,125,0.05);
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-footer button.settings-dismiss {
  background: #fcf7ef;
  color: #a0875a;
  border: 1px solid #B39E7D;
}
.cookie-modal-footer button.settings-dismiss:hover {
  background: #B39E7D;
  color: #fff;
}
@media (max-width: 460px) {
  .cookie-modal-content {
    padding: 17px 6px 14px 8px;
    min-width: 0;
  }
}

/*********************
  MICRO-INTERACTIONS
*********************/
.button-primary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-footer button {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.15s;
}
.card, .testimonial-card, .feature-grid > div, .usp-grid > div, .benefit-grid > div, .experience-grid > div {
  transition-property: box-shadow;
  transition-duration: 0.17s;
}
.main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.13s, color 0.14s;
}

/***** WHITE SPACE/RESPONSIVE - SIZING *****/
.section, .content-wrapper, .feature-grid > div, .usp-grid > div, .benefit-grid > div, .experience-grid > div, .testimonial-card, .card {
  margin-bottom: 20px;
}

/* Special mentions for map & address blocks */
.static-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: #fcf7ef;
  padding: 22px;
  border-radius: 15px;
  margin-top: 10px;
  font-size: 0.97rem;
  color: #a0875a;
}
.static-map img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
}

/* Accessibility: reduce motion if system set */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/****** CUSTOM SCROLLBAR for brand character ******/
html {
  scrollbar-width: thin;
  scrollbar-color: #B39E7D #F7F2EC;
}
::-webkit-scrollbar {
  width: 8px;
  background: #F7F2EC;
}
::-webkit-scrollbar-thumb {
  background: #B39E7D;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a0875a;
}
