/* ---------------------------------------------
   RESET & BASE STYLES
--------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #faf9f7;
  color: #181c20;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F9F8F6; /* subtle off-white luxury tone */
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1c2327;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
p, .text-section {
  color: #232929;
  font-size: 1rem;
  margin-bottom: 16px;
}
.text-section {
  line-height: 1.7;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* ---------------------------------------------
   BRAND COLORS & UTILITIES
--------------------------------------------- */
:root {
  --primary: #145464;
  --secondary: #C2A86B;
  --secondary-rgb: 194, 168, 107;
  --accent: #E7F6F2;
  --background: #F9F8F6;
  --surface: #fff;
  --text-main: #1c2327;
  --text-dark: #222;
  --text-light: #faf9f7;
  --muted: #7e8887;
  --shadow: 0 6px 32px rgba(20, 84, 100, 0.07), 0 1.5px 3px rgba(20,84,100,0.035);
  --radius: 16px;
}
.bg-primary { background: var(--primary); color: var(--text-light); }
.bg-secondary { background: var(--secondary); color: var(--text-light); }
.bg-accent { background: var(--accent); }
.gold-text { color: var(--secondary); }
.gold-bg { background-color: var(--secondary); color: #fff; }

/* Luxury Touches */
.luxury-underline {
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
  padding-bottom: 3px;
}

/* ---------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(20,84,100,0.09);
  z-index: 50;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
header img {
  height: 48px;
  max-width: 180px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  transition: color 0.15s;
  letter-spacing: 0.03em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:not(.cta):hover, .desktop-nav a:not(.cta):focus {
  color: var(--secondary);
  border-color: var(--secondary);
}
.desktop-nav .cta {
  background: var(--secondary);
  color: #fff!important;
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.desktop-nav .cta:hover, .desktop-nav .cta:focus {
  background: #978340;
  color: #fff;
  box-shadow: 0 8px 32px rgba(194,168,107,0.10);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 28px;
  top: 24px;
  z-index: 102;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ece6de, 0 4px 14px rgba(20,84,100,0.08);
  transition: box-shadow 0.18s, background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 0 0 3px var(--secondary), 0 8px 32px rgba(194,168,107,0.15);
}

/* MOBILE NAVIGATION MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px rgba(20,84,100,0.09);
  z-index: 999;
  transform: translateX(-105vw);
  transition: transform 0.37s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 30px 28px 14px 0;
  font-size: 2.4rem;
  background: none;
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-left: 32px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
@media (max-width: 1020px) {
  header .container {
    padding-left: 16px; padding-right: 16px;
  }
  .desktop-nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .desktop-nav .cta {padding: 10px 16px;}
  header img { max-width: 120px; height: 44px; }
}
@media (max-width: 780px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 781px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
}

/* ---------------------------------------------
   HERO SECTIONS
--------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #fff 60%, var(--accent) 100%);
  padding: 64px 0 48px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}
.hero h1 {
  font-size: 2.3rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.2rem;
  color: #384448;
  margin-bottom: 18px;
}
.hero .cta {
  margin-top: 4px;
}
@media (max-width: 620px) {
  .hero { padding: 32px 0 24px 0; }
}

/* ---------------------------------------------
   BUTTONS & CTA
--------------------------------------------- */
.cta {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 24px;
  border: none;
  font-size: 1.1rem;
  padding: 12px 36px;
  box-shadow: 0 1.5px 8px rgba(20,84,100,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s, box-shadow 0.19s;
  margin-top: 14px;
}
.cta:hover, .cta:focus {
  background: #baa764;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 28px rgba(194,168,107,0.17);
  text-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ---------------------------------------------
   FLEX LAYOUTS (MANDATORY PATTERNS)
--------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.24s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 36px rgba(194,168,107,0.14);
  transform: translateY(-3px) scale(1.016);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px 20px 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(20,84,100,0.08);
  padding: 20px;
  border-radius: 20px;
  min-width: 270px;
  max-width: 700px;
  margin: 0 0 20px 0;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--secondary);
  font-size: 1.08rem;
  color: #171e23;
  transition: box-shadow 0.18s, border-color 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left-color: #d3c28b;
  box-shadow: 0 10px 28px rgba(194,168,107,0.19);
}
.testimonial-card p {
  color: #181c20;
  font-weight: 500;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 16px 0 0 0;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  max-width: 315px;
  flex: 1 1 220px;
  border-left: 3.5px solid var(--secondary);
  transition: box-shadow 0.19s, border-color 0.17s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  border-left-color: #ad9b61;
  box-shadow: 0 7px 24px rgba(194,168,107,0.14);
}
.feature-grid img {
  width: 44px; height: 44px;
  margin-bottom: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------------------------------
   UL/LI Content Cards (Tours & Lists)
--------------------------------------------- */
ul {
  margin: 0;
  padding-left: 0;
}
ul li {
  margin-bottom: 22px;
  padding: 18px 0 0 0;
  font-size: 1.08rem;
  color: #232929;
  border-bottom: 1.5px solid #ece5cd;
}
ul li:last-child { border-bottom: none; margin-bottom: 0; }

/* ---------------------------------------------
   ADDRESS & CONTACT DETAILS
--------------------------------------------- */
.text-section strong {
  color: var(--primary);
  font-weight: 600;
}
.text-section em {
  color: var(--secondary);
  font-style: normal;
  font-weight: 500;
}

/* ---------------------------------------------
   FOOTER
--------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 48px;
  padding: 40px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
footer a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin: 0 12px;
  padding-bottom: 2px;
  transition: color 0.16s, border-bottom-color 0.18s;
  border-bottom: 2px solid transparent;
}
footer a:hover, footer a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: center;
}
footer img {
  height: 32px;
  margin-bottom: 0;
}
footer .text-section {
  font-size: 0.97rem;
  color: #d9e1de;
  text-align: center;
}

/* ---------------------------------------------
    COOKIE CONSENT BANNER & MODAL
--------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #fff;
  border-top: 2.5px solid var(--secondary);
  box-shadow: 0 -5px 24px rgba(20,84,100,0.08);
  z-index: 2000;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s, opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(300px);
  pointer-events: none;
}
.cookie-banner p {
  color: #24292c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial;
  font-weight: 500;
  padding: 10px 20px;
  box-shadow: 0 1.5px 8px rgba(194,168,107,0.05);
  margin: 0 2px;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
.cookie-btn:hover,.cookie-btn:focus{
  background: #978340;
}
.cookie-btn.reject {
  background: transparent;
  color: var(--secondary);
  border: 1.7px solid var(--secondary);
}
.cookie-btn.reject:hover,.cookie-btn.reject:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #255d6a;
  color: #fff;
}
/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,84,100,0.45);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity:1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity:0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 60px rgba(20, 84, 100, 0.18);
  max-width: 420px;
  width: 90%;
  padding: 40px 30px 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.16rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 10px 0;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-option strong { color: var(--secondary);}
.cookie-switch {
  appearance: none;
  width: 38px; height: 18px;
  background: #eceaea;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background 0.14s;
  margin-right: 8px;
}
.cookie-switch:checked {
  background: var(--secondary);
}
.cookie-switch:disabled {
  opacity: 0.5;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2.5px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(20,84,100,0.08);
  transition: left 0.18s;
}
.cookie-switch:checked:before {
  left: 21px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  color: var(--primary);
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
  min-width: 120px;
}

/* ---------------------------------------------
   RESPONSIVE LAYOUTS & FLEX ADJUSTMENTS
--------------------------------------------- */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .content-wrapper, .section, footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid { gap: 18px;}
}
@media (max-width: 768px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
  .hero { padding: 22px 0; }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card-container, .feature-grid {
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 100%;
  }
  .feature-grid {
    flex-direction: column;
    min-width: 0;
  }
  .feature-grid > div {
    min-width: 80vw;
    max-width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap:14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  h3 {
    font-size: 1rem;
  }
  .testimonials {
    gap: 10px;
  }
  .testimonial-card {
    font-size: 0.98rem;
  }
  .feature-grid img {
    width: 32px; height: 32px;
  }
  .cta { font-size: 1rem; padding: 10px 16px; }
}

/* ---------------------------------------------
   MICRO-INTERACTIONS / EFFECTS
--------------------------------------------- */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.19s, border-color 0.16s, transform 0.15s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(194,168,107,0.13);
}

.cta:active, .cookie-btn:active {
  transform: scale(0.98);
}

.cta:focus-visible, .cookie-btn:focus-visible, .mobile-menu-toggle:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #e0dac4;
  border-radius: 4px;
}

/* ---------------------------------------------
   MISCELLANEOUS
--------------------------------------------- */
a[aria-current], nav a.active {
  color: var(--secondary)!important;
  border-bottom-color: var(--secondary)!important;
  font-weight: 700;
}

/* ---------------------------------------------
   PRINT STYLES
--------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .section { box-shadow: none!important; border: none!important; }
}
