/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #f7f5f3;
  color: #222211;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #174E33;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, li { font-size: 1rem; color: #26291c; }
strong { color: #174E33; }
.subtitle {
  font-size: 1.25rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #4F4C47;
  font-weight: 400;
  margin-bottom: 28px;
}

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

/* Brand Color Palette */
:root {
  --clr-primary: #174E33;
  --clr-primary-rgb: 23,78,51;
  --clr-secondary: #64A89B;
  --clr-accent: #FFF3E3;
  --clr-gold: #CBA052;
  --clr-dark: #1b2126;
  --clr-background: #f7f5f3;
  --clr-white: #fff;
  --clr-testimonial-bg: #fffdf6;
  --shadow-card: 0 4px 24px 0 rgba(27,33,38,0.07);
}

/******************************
   LUXURY PREMIUM DETAILS
******************************/

/* Gold accent lines, dots, borders, subtle transitions */
.gold-accent {
  color: var(--clr-gold);
}
hr.gold-divider {
  border: none;
  border-top: 2px solid var(--clr-gold);
  width: 64px;
  margin: 24px 0;
}

/******************************
          HEADER
******************************/
header {
  background: var(--clr-white);
  border-bottom: 1px solid #ece6de;
  box-shadow: 0 1px 10px 0 rgba(203,160,82,0.06);
  position: sticky;
  z-index: 30;
  top: 0;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #222211;
  padding: 8px 4px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--clr-gold);
  background: rgba(203,160,82,0.07);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  border: none;
  border-radius: 32px;
  padding: 11px 32px;
  margin-left: 8px;
  box-shadow: 0 4px 24px 0 rgba(23,78,51,0.09);
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--clr-gold);
  color: var(--clr-primary);
  box-shadow: 0 4px 36px 0 rgba(203,160,82,0.17);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  border-radius: 30px;
  padding: 11px 32px;
  margin: 24px 0 0 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.03em;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

/******************************
    MOBILE NAVIGATION
******************************/
.mobile-menu-toggle {
  display: none;
  background: var(--clr-white);
  border: 2px solid var(--clr-gold);
  border-radius: 8px;
  font-size: 2rem;
  color: var(--clr-primary);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.15s, background 0.15s;
  z-index: 160;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--clr-gold);
  color: var(--clr-white);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 78, 51, 0.96);
  color: #f5f4ee;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 4px 32px 0 rgba(23, 78, 51, 0.13);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--clr-gold);
  font-size: 2.2rem;
  font-weight: bold;
  position: absolute;
  top: 18px;
  right: 30px;
  cursor: pointer;
  z-index: 160;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--clr-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  margin-top: 52px;
  align-items: flex-start;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 18px 30px;
  color: #fffbea;
  border-bottom: 1px solid rgba(203, 160, 82, 0.25);
  transition: background 0.17s, color 0.17s, padding-left 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(203,160,82,0.26);
  color: var(--clr-gold);
  padding-left: 48px;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/******************************
          SECTION
******************************/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-of-type {
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/******************************
     LAYOUT FLEX PATTERNS
******************************/
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.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;
}
.card-container, .features-grid, .service-cards, .testimonials, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--clr-testimonial-bg);
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(203,160,82,0.10);
  border-left: 4px solid var(--clr-gold);
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(23,78,51,0.14);
  border-left: 4px solid var(--clr-primary);
}

/******************************
         CARDS and GRIDS
******************************/
.features-grid > div,
.service-cards > div {
  background: var(--clr-white);
  border-radius: 15px;
  padding: 32px 24px 24px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border-top: 3px solid var(--clr-gold);
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  max-width: 320px;
  transition: box-shadow 0.14s, border 0.18s;
}
.features-grid > div:hover,
.service-cards > div:hover {
  border-top: 3px solid var(--clr-primary);
  box-shadow: 0 8px 36px 0 rgba(203,160,82,0.13);
}
.features-grid img, .service-cards img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(203,160,82,0.12));
}

/******************************
          FOOTER
******************************/
footer {
  background: var(--clr-primary);
  color: #fffbe8;
  padding: 38px 0 22px 0;
  border-top: 3px solid var(--clr-gold);
  font-size: 0.95rem;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #ffeabb;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--clr-gold);
}
.footer-contact {
  color: #fffbe8;
  font-size: 0.96rem;
  margin-bottom: 8px;
}
footer small {
  display: block;
  margin-top: 20px;
  color: #EBDCA8;
  font-size: 0.97rem;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/******************************
       OTHER COMPONENTS
******************************/
/* Highlighted card, review, grid, etc. */
.experience-highlights,
.featured-review, .participant-ratings, .confirmation-message {
  background: var(--clr-accent);
  color: var(--clr-primary);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(203,160,82,0.06);
  padding: 24px 20px;
  margin: 20px 0 0 0;
  font-weight: 500;
}
.confirmation-message {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.next-steps-info {
  background: rgba(100,168,155,0.07);
  border-radius: 10px;
  padding: 12px 18px;
  color: var(--clr-primary);
  margin: 8px 0 0 0;
  font-size: 0.98rem;
}

/******************************
       CONTACT / LISTS
******************************/
.quick-contact-details, .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}
.contact-details, .contact-instructions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}

/******************************
      FAQ Accordion (static)
******************************/
.faq-accordion > div {
  background: var(--clr-white);
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(203,160,82,0.08);
  padding: 18px 22px;
  margin-bottom: 16px;
  transition: box-shadow 0.12s;
}
.faq-accordion > div:hover,
.faq-accordion > div:focus-within {
  box-shadow: 0 2px 14px 0 rgba(23,78,51,0.12);
}

/******************************
   UL/OL Spacing & Style
******************************/
ul, ol {
  list-style: none;
  padding-left: 0;
}
ul > li, ol > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}
ul > li::before, ol > li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-size: 1.15em;
  line-height: 1;
  font-weight: bold;
  top: 2px;
}

/******************************
      Typography scale
******************************/
html { font-size: 16px; }
@media (max-width: 480px) {
  html { font-size: 14px; }
}
@media (min-width: 1440px) {
  html { font-size: 18px; }
}

/******************************
   STAR RATINGS
******************************/
.star-rating {
  display: flex;
  gap: 2px;
  flex-direction: row;
  align-items: center;
  margin-top: 4px;
}
.star-rating img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 0 #CBA052);
}

/******************************
      INTERACTIONS, HOVERS
******************************/
.features-grid > div:active,
.service-cards > div:active,
.card:active,
.card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(100,168,155,0.18);
  border-top: 3px solid var(--clr-secondary);
}

/******************************
     Cookie Consent Banner
******************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--clr-white);
  color: var(--clr-primary);
  border-top: 3px solid var(--clr-gold);
  box-shadow: 0 -4px 24px 0 rgba(203, 160, 82, 0.11);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 27px 20px 23px 20px;
  font-size: 1rem;
  animation: banner-slide-up 0.45s cubic-bezier(.77,0,.175,1);
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 320px;
  color: var(--clr-primary);
  font-size: 1.05em;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  min-width: 120px;
  padding: 9px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 1.01em;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 10px rgba(203,160,82,0.06);
}
.cookie-banner .accept {
  background: var(--clr-gold);
  color: var(--clr-primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--clr-primary);
  color: #fff;
}
.cookie-banner .reject {
  background: #eaeaea;
  color: var(--clr-primary);
  border: 2px solid #e1dacd;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-gold);
}
.cookie-banner .settings {
  color: var(--clr-gold);
  background: transparent;
  border: 2px solid var(--clr-gold);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

/******************************
      Cookie Settings Modal
******************************/
.cookie-modal {
  position: fixed;
  left: 0; right:0; top:0; bottom:0;
  background: rgba(28,34,40,0.56);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.32s cubic-bezier(.77,0,.175,1);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbea;
  color: var(--clr-primary);
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(203,160,82,0.23);
  width: 95vw;
  max-width: 390px;
  padding: 36px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: modal-slide-down 0.36s cubic-bezier(.77,0,.175,1);
}
@keyframes modal-slide-down {
  from { transform: translateY(-40px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal-content h2 {
  margin-bottom: 5px;
  color: var(--clr-primary);
  font-size: 1.25rem;
  font-weight: 700;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal-content .category-label {
  flex: 1 1 auto;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e1dacd;
  transition: background 0.16s;
  border-radius: 32px;
}
.cookie-switch input:checked + .slider {
  background: var(--clr-gold);
}
.cookie-switch .slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 2px rgba(203,160,82,0.12);
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-modal-content .essential {
  color: var(--clr-secondary);
  font-weight: bold;
  font-size: 0.97em;
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 5px;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-content button {
  min-width: 115px;
  padding: 9px 20px;
  border-radius: 22px;
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03em;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-content .accept-all {
  background: var(--clr-gold);
  color: var(--clr-primary);
}
.cookie-modal-content .accept-all:hover, .cookie-modal-content .accept-all:focus {
  background: var(--clr-primary);
  color: #fff;
}
.cookie-modal-content .close-modal {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-primary);
}
.cookie-modal-content .close-modal:hover, .cookie-modal-content .close-modal:focus {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

/******************************
   RESPONSIVE DESIGN & FLEX
******************************/
@media (max-width: 992px) {
  .features-grid > div, .service-cards > div {
    min-width: 200px;
    max-width: 48%;
    padding: 26px 14px 20px 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .text-image-section,
  .card-container,
  .content-grid,
  .features-grid,
  .service-cards,
  .testimonials,
  .faq-accordion {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  section, .section {
    padding: 26px 4vw;
  }
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.25rem !important;
  }
  .features-grid > div, .service-cards > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px 13px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal-content {
    padding: 18px 10px 16px 10px;
    max-width: 95vw;
  }
}
@media (max-width: 480px) {
  .features-grid > div, .service-cards > div {
    padding-left: 7px; padding-right: 7px;
    font-size: 0.98rem;
  }
  .footer-contact, .footer .container nav {
    font-size: 0.9rem;
  }
  .star-rating img {
    width: 16px;
    height: 16px;
  }
}

/******************************
    LUXURY PREMIUM MICRO-ANIMATIONS
******************************/
.card, .features-grid > div, .service-cards > div, .testimonial-card, .faq-accordion > div, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.17s, border 0.15s, transform 0.16s;
}
.card:hover, .features-grid > div:hover, .service-cards > div:hover, .testimonial-card:hover, .faq-accordion > div:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 38px 0 rgba(203,160,82,0.14);
}

/******************************
     ACCESSIBLE FOCUS STATES
******************************/
:focus {
  outline: 2px solid var(--clr-gold);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

/******************************
      PRINT OPTIMIZATION
******************************/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .section { padding: 0 !important; }
}
