/* --- CSS RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #E8E2D0;
  color: #223346;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #223346;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: #222;
  margin-bottom: 0.5em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1.5px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-top: 0.5em;
}
h3 {
  font-size: 1.3rem;
}
strong {
  font-weight: 700;
}
p {
  margin-bottom: 1em;
  color: #223346;
}
/* --- CONTAINERS & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* --- FLEX LAYOUTS --- */
.card-container, .feature-grid, .features-list, .content-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.card {
  background: #fff;
  border-radius: 18px 44px 22px 38px;
  box-shadow: 0 4px 20px rgba(34,51,70,0.10), 0 0px 4px #DEB887;
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34,51,70,0.16), 0 0px 10px #DEB887;
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}
.feature {
  background: #F6F3EC;
  border-radius: 18px 44px 22px 38px;
  box-shadow: 0 2px 10px rgba(34,51,70,0.08);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 6px 30px rgba(34,51,70,0.20);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 10px;
}
.testimonial-slider > .testimonial-card {
  min-width: 340px;
  max-width: 430px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-left: 6px solid #DEB887;
  border-radius: 22px 42px 18px 30px;
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: 0 3px 20px rgba(34,51,70,0.08);
  transition: box-shadow 0.16s, transform 0.16s;
  color: #223346;
}
.testimonial-card blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  margin: 0 0 4px 0;
  color: #223346;
}
.testimonial-card cite {
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  color: #4b3c18;
  letter-spacing: 0.3px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(34,51,70,.15), 0 0 0 3px #DEB88733;
  transform: translateY(-2px) scale(1.015);
}
/* --- LISTS --- */
.service-list, .features-list, .amenities-list, .tour-list, .event-service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li, .amenities-list li, .tour-list li, .event-service-list li, .features-list li {
  position: relative;
  padding: 18px 20px 16px 32px;
  background: #ffffff;
  border-radius: 18px 40px 16px 30px;
  box-shadow: 0 2px 10px rgba(34,51,70,0.06);
  margin-bottom: 8px;
  font-size: 1.07em;
}
.features-list li img {
  width: 28px;
  vertical-align: middle;
  margin-right: 12px;
  display: inline-block;
}
.price-tag, .price-info {
  display: inline-block;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  color: #DEB887;
  background: #22334608;
  border-radius: 7px 14px 7px 13px;
  padding: 1px 10px;
  margin-left: 10px;
}
.inclusions {
  font-size: 1rem;
  color: #223346cc;
  margin-top: 10px;
  margin-bottom: 16px;
}
/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(80deg, #E8E2D0 70%, #DEB887 100%);
  position: relative;
  padding: 60px 0 40px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.hero .container {
  z-index: 1;
  position: relative;
}
.hero h1 {
  font-size: 2.6rem;
  color: #223346;
  text-shadow: 0 2px 0 #DEB88722;
  margin-bottom: 14px;
  font-family: 'Lora', serif;
}
.hero p {
  font-size: 1.25rem;
  color: #223346d0;
  margin-bottom: 18px;
  font-family: 'Montserrat',sans-serif;
}
.hero .cta {
  margin-top: 14px;
}
/* --- CTA BUTTONS --- */
.cta {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 16px 34px;
  border: none;
  border-radius: 32px 40px 22px 36px;
  box-shadow: 0 4px 14px rgba(34,51,70,.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.14s;
  margin-top: 10px;
  margin-bottom: 4px;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta.primary {
  background: #223346;
  color: #fff;
  border: 2px solid #DEB887;
}
.cta.primary:hover, .cta.primary:focus {
  background: #DEB887;
  color: #223346;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px #DEB88744;
}
.cta.secondary {
  background: #DEB887;
  color: #223346;
  border: 2px solid #223346;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #223346;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px #22334633;
}
/* --- NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px 0 #DEB88722;
  position: sticky;
  top: 0;
  z-index: 120;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  justify-content: flex-start;
}
.main-nav img {
  width: 48px;
  height: auto;
  margin-right: 20px;
  border-radius: 10px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #223346;
  padding: 6px 18px;
  border-radius: 14px 24px 12px 22px;
  transition: background 0.15s, color 0.15s;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #DEB88766;
  color: #222;
}
.main-nav .cta.primary {
  margin-left: 16px;
  padding: 12px 26px;
  font-size: 1rem;
}
/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #DEB887;
  color: #223346;
  font-size: 2.2rem;
  border: none;
  border-radius: 12px 22px 12px 22px;
  padding: 4px 18px;
  position: absolute;
  top: 13px;
  right: 18px;
  cursor: pointer;
  z-index: 151;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #223346;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 51, 70, 0.95);
  z-index: 160;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  padding-left: 0;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.82,0,0.18,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 20px 28px 10px 18px;
  margin-top: 8px;
  margin-left: 0;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 26px 40px;
  width: 100vw;
}
.mobile-nav a {
  font-size: 1.45rem;
  color: #DEB887;
  font-family: 'Lora', serif;
  font-weight: bold;
  padding: 8px 0;
  margin: 0;
  transition: color 0.18s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #DEB8871a;
  border-radius: 10px 20px 10px 20px;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 5px 13px;
  }
}
@media (max-width: 860px) {
  .main-nav a:not(.cta) {
    display: none;
  }
}
@media (max-width: 700px) {
  .main-nav {
    padding: 12px 6px 12px 10px;
    gap: 4px;
  }
  .main-nav .cta.primary {
    margin-left: 2px;
    padding: 7px 15px;
  }
  .main-nav img {
    width: 40px;
  }
}
@media (max-width: 650px) {
  .main-nav .cta.primary {
    display: none;
  }
  .main-nav img {
    margin-right: 10px;
    width: 32px;
  }
}
@media (max-width: 830px) {
  .mobile-menu-toggle {
    display: block;
  }
}
/* --- CARDS, FEATURES --- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  margin-bottom: 20px;
  flex: 1 1 280px;
}
/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.05rem;
  margin-top: 16px;
  margin-bottom: 18px;
  color: #223346ed;
}
/* --- FOOTER --- */
footer {
  background: #223346;
  color: #fff;
  padding: 38px 0 12px 0;
  margin-top: auto;
  position: relative;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #DEB887;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 3px 19px;
  border-radius: 10px 18px 8px 16px;
  transition: color 0.18s, background 0.16s;
}
.footer-menu a:hover {
  background: #DEB8872c;
  color: #fff;
}
.brand-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.brand-logo img {
  width: 58px;
  height: auto;
  border-radius: 13px;
  background: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 20px auto 0 auto;
  max-width: 1100px;
  padding: 0 20px;
}
.footer-bottom p {
  color: #fff;
  font-size: .98rem;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links img {
  width: 26px;
  height: 26px;
  filter: grayscale(0.2) contrast(1.3);
  opacity: 0.74;
  transition: filter 0.16s, opacity 0.15s;
}
.social-links img:hover {
  filter: none;
  opacity: 1;
}
/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #223346;
  color: #DEB887;
  display: flex;
  justify-content: center;
  padding: 22px 18px;
  z-index: 250;
  box-shadow: 0 -2px 10px #22334655;
  gap: 30px;
  align-items: center;
  font-size: 1rem;
  animation: bannerIn 0.8s;
}
@keyframes bannerIn {
  from { bottom: -90px; opacity: 0; }
  to   { bottom: 0; opacity: 1; }
}
.cookie-banner__text {
  max-width: 650px;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  border: none;
  padding: 10px 18px;
  margin: 0 4px;
  border-radius: 32px 32px 18px 22px;
  transition: background 0.14s, color 0.14s, transform 0.14s;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-btn.accept {
  background: #DEB887;
  color: #223346;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #223346;
  transform: scale(1.02);
}
.cookie-btn.reject {
  background: #fff;
  color: #223346;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #DEB887;
  color: #223346;
}
.cookie-btn.settings {
  background: #223346;
  color: #fff;
  border: 1px solid #DEB887;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #DEB887;
  color: #223346;
  border-color: #fff;
}
/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%,-55%) scale(1);
  background: #fff;
  color: #223346;
  min-width: 340px;
  max-width: 94vw;
  border-radius: 26px 36px 22px 32px;
  box-shadow: 0 6px 30px #22334633;
  z-index: 300;
  padding: 40px 40px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalIn 0.42s;
}
@keyframes cookieModalIn {
  from {transform: translate(-50%,-30%) scale(0.8); opacity: 0;}
  to {transform: translate(-50%,-55%) scale(1); opacity: 1;}
}
.cookie-modal__header {
  font-family: 'Lora',serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 22px;
  background: none;
  border: none;
  color: #223346;
  font-size: 2.1rem;
  cursor: pointer;
}
.cookie-modal__option {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal__toggle {
  width:28px;height:18px;
  border-radius:14px;
  background:#E8E2D0;
  position:relative;
  border:1px solid #DEB887cc;
  margin-left: 10px;
  transition: background 0.14s;
}
.cookie-modal__toggle input {
  display: none;
}
.cookie-modal__toggle--checked {
  background: #DEB887;
}
.cookie-modal__toggle-slider {
  position:absolute;border-radius:50%;top:2.5px;left:2.5px;width:13px;height:13px;background:#223346;transition:left 0.18s;}
.cookie-modal__toggle--checked .cookie-modal__toggle-slider {left:12px; background: #fff;}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal__desc {
  font-size: .95rem;
  color: #555;
  margin-bottom: 12px;
}
/* --- ANIMATIONS & HOVER STATES --- */
a, .cta, .card, .feature, .testimonial-card, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.22s, color 0.22s, box-shadow 0.16s, transform 0.15s;
}
.card:active, .feature:active, .cta:active {
  transform: scale(0.99);
}
/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1050px) {
  .testimonial-slider > .testimonial-card { min-width: 94vw; }
}
@media (max-width: 880px) {
  .feature-grid, .card-grid, .card-container, .content-grid, .testimonial-slider, .features-list {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .section, .hero {
    padding: 30px 8px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 800px) {
  .hero {
    padding-top: 30px;
    min-height: 280px;
  }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 700px) {
  .container {
    padding: 0 6vw;
  }
  .testimonial-card { min-width: 210px; max-width: 100vw; }
}
@media (max-width: 600px) {
  h1 {font-size: 1.3rem;}
  h2 {font-size: 1.1rem;}
  .card, .feature {
    padding: 16px 7px;
    border-radius: 13px 16px 13px 16px;
  }
  .testimonial-card {
    border-radius: 13px 16px 13px 16px;
    padding: 10px;
  }
  .cookie-modal {
    padding: 18px 12px 15px 14px;
    min-width: 90vw;
    border-radius: 17px 19px 16px 17px;
  }
  .mobile-nav {
    padding: 11px 14px;
    gap: 16px;
  }
  .footer-menu {
    gap: 8px;
  }
}
@media (max-width: 500px) {
  .container { padding: 0 2vw; }
  .section { padding: 22px 2vw; }
  .hero { padding: 16px 0 12px 0; }
}
/* --- UTILITY CLASSES & SPACING --- */
.gap-8 {gap:8px;}
.gap-16 {gap:16px;}
.gap-20 {gap:20px;}
.gap-24 {gap:24px;}
.mt-16 {margin-top:16px;}
.mb-24 {margin-bottom:24px;}
.mb-32 {margin-bottom:32px;}
.mt-0 {margin-top:0;}
.mb-0 {margin-bottom:0;}
/* --- VISUAL ENHANCEMENTS --- */
::-webkit-input-placeholder { color:#b5a583; opacity:1; }
::-moz-placeholder { color:#b5a583; opacity:1; }
:-ms-input-placeholder { color:#b5a583; opacity:1; }
::placeholder { color:#b5a583; opacity:1;}

/* --- OVERRIDES FOR ARTISTIC TOUCH --- */
body, .card, .feature, .testimonial-card, .hero, .footer-menu a {
  border-radius: 18px 44px 22px 38px;
}
h1, h2, .cta {
  font-family: 'Lora', serif;
  text-shadow: 0 1.5px 0 #DEB88722;
}
.card, .feature, .testimonial-card {
  border-width: 3px 0 0 0;
  border-top: 3px solid #DEB88744;
}
/* --- END --- */
