/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  background: #f9f8f6;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1d3128;
  letter-spacing: .01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #276047;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(50,53,62,.07);
}

@media (max-width: 1024px) {
  section {
    padding: 28px 10px;
    margin-bottom: 38px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 22px 0;
    margin-bottom: 28px;
    border-radius: 12px;
  }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.subheadline {
  color: #6d756b;
  font-size: 1.12rem;
  margin-bottom: 12px;
  font-weight: 400;
}

/* TYPOGRAPHY SCALE */
p, li, address, .testimonial-details {
  font-size: 1rem;
  color: #232323;
}
.price {
  font-weight: 700;
  color: #B22E2E;
  background: #EAD9B6;
  padding: 1px 10px;
  border-radius: 12px;
  margin-left: 4px;
  font-size: 0.98em;
}

strong, b {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #276047;
  transition: color .18s cubic-bezier(.4,0,.2,1);
  font-weight: 500;
}
a:hover, a:focus {
  color: #b7974c;
  text-decoration: underline;
  outline: none;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 12px 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(39,96,71,0.08);
  border: none;
  outline: none;
  transition: background .18s, color .18s, box-shadow .18s;
  background: #276047;
  color: #fff;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}
.btn-primary::after {
  content: '';
  display: block;
  position: absolute;
  left: 16px; top: 50%;
  width: 10px; height: 10px;
  background: #b7974c;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.13;
  pointer-events: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1d3128;
  color: #ead9b6;
  box-shadow: 0 4px 18px rgba(178,46,46,.13),0 2px 8px rgba(39,96,71,0.12);
}

.btn-secondary {
  background: #EAD9B6;
  color: #232323;
  border: 1.5px solid #c1a45b;
  font-weight: 600;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fffbe7;
  color: #b22e2e;
  border-color: #b7974c;
}

/* HEADER STYLES */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 14px rgba(187,193,181, 0.11);
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 10px;
  transition: color .16s;
  color: #276047;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ead9b6;
  color: #b22e2e;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #276047;
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EAD9B6;
  outline: none;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,39,31,0.82);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transform: translateX(100%);
  transition: transform .40s cubic-bezier(.53,.13,.37,1.16);
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 28px 20px 0;
  background: #EAD9B6;
  color: #b22e2e;
  border: 2px solid #b7974c;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fffbe7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 36px 40px 24px;
  width: 100%;
  align-items: flex-end;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.35;
  font-weight: 700;
  padding: 8px 16px;
  min-width: 180px;
  border-radius: 10px;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAD9B6;
  color: #b22e2e;
}
@media (max-width: 500px) {
  .mobile-nav {
    padding: 0 12px 36px 8px;
  }
  .mobile-nav a {
    min-width: 120px;
    font-size: 1.1rem;
  }
}

/* CARDS, FEATURES, FLEX LAYOUTS */
.features-grid, .card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.feature-card, .card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(50,53,62,.08);
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1.5px solid #ead9b6;
  transition: box-shadow .2s, transform .17s, border-color .16s;
}
.feature-card:hover, .card:hover {
  box-shadow: 0 6px 28px rgba(178,46,46,0.08),0 6px 22px rgba(39,96,71,.09);
  border-color: #b7974c;
  transform: translateY(-4px) scale(1.025);
}
.feature-card img {
  width: 42px; height: 42px;
  margin-bottom: 7px;
  object-fit: contain;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* OTHER GRIDS */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* LISTS */
ul, ol {
  margin-bottom: 20px;
  margin-left: 18px;
  padding-left: 0;
}
.service-list, .tips-list, .country-list, .category-list, .workshop-list, .event-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  list-style: none;
  margin-bottom: 16px;
  width: 100%;
  font-size: 1.05rem;
}
.service-list li, .tips-list li, .country-list li, .workshop-list li, .event-highlights li {
  margin-bottom: 8px;
  border-left: 4px solid #EAD9B6;
  padding-left: 12px;
  background: #faf8f3;
  border-radius: 6px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #273628;
  line-height: 1.6;
}
.category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.category-list li, .country-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #EAD9B6;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #276047;
  min-width: 120px;
  box-shadow: 0 2px 7px rgba(178,46,46,0.04);
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.category-list li img, .country-list li img {
  width: 28px; height: 28px;
  object-fit: contain;
}

@media (max-width: 800px) {
  .category-list, .country-list {
    flex-direction: column;
    gap: 14px;
  }
}


/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 13px;
  background: #fff9f2;
  box-shadow: 0 2px 12px rgba(53, 47, 27, 0.10);
  margin-bottom: 20px;
  border: 1.5px solid #EAD9B6;
  max-width: 740px;
  transition: border-color .16s, box-shadow .18s;
}
.testimonial-card:hover {
  border-color: #b7974c;
  box-shadow: 0 8px 30px rgba(178,46,46, 0.07);
}
.testimonial-card blockquote {
  color: #232323;
  font-style: italic;
  font-size: 1.13rem;
  margin-right: 24px;
  margin-bottom: 0;
  border-left: 3px solid #B22E2E;
  padding-left: 16px;
}
.testimonial-details {
  font-size: 0.97rem;
  color: #6d756b;
  font-style: normal;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
  }
  .testimonial-card blockquote {
    margin-right: 0;
    padding-left: 10px;
    font-size: 1rem;
  }
}

/* CTA block */
.cta-block {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 18px 0 0 0;
}
@media (max-width:600px) {
  .cta-block {
    flex-direction: column;
    gap: 10px;
  }
}

/* FOOTER */
footer {
  background: #23281c;
  color: #ead9b6;
  padding-top: 40px;
  padding-bottom: 26px;
  margin-top: 50px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
  flex: 1 1 240px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
}
.footer-brand strong {
  color: #ead9b6;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-brand span {
  color: #b7974c;
  font-size: 0.94em;
}
footer address {
  font-style: normal;
  font-size: 0.96em;
  color: #ead9b6;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  flex: 1 1 140px;
}
.footer-nav a {
  color: #ead9b6;
  font-weight: 500;
  transition: color .14s;
  font-size: 1em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #b7974c;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex: 1 1 80px;
  margin-bottom: 12px;
}
.footer-social img {
  width: 30px;
  height: 30px;
  filter: brightness(1.15) saturate(.8);
  transition: filter .16s;
  opacity: .9;
}
.footer-social img:hover {
  filter: drop-shadow(0 1px 3px #b7974c88) brightness(1.38) saturate(1.2);
}
.footer-copyright {
  text-align: right;
  width: 100%;
  color: #9c936b;
  font-size: 0.95em;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 1000px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-copyright {
    text-align: left;
  }
}

/* TEXT BLOCKS FOR LEGALES */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #232323;
  background: #fff;
  border-radius: 7px;
  padding: 18px 12px 12px 10px;
}
.text-section h2, .text-section h3 {
  margin-bottom: 8px;
  margin-top: 8px;
}
.text-section ul {
  margin-bottom: 8px !important;
}
.text-section li {
  margin-bottom: 6px;
  color: #274039;
  font-size: 1.01em;
}
@media (max-width: 500px) {
  .text-section {
    padding: 4px 0 0 0;
    gap: 12px;
  }
}

/* ADDRESS */
address {
  color: #6f7c67;
  font-size: 0.98em;
  font-style: normal;
  margin-bottom: 8px;
}

/* RESPONSIVE HEADINGS */
@media (max-width:700px) {
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #23281c;
  color: #ead9b6;
  padding: 24px 10px 20px 20px;
  box-shadow: 0 -2px 12px rgba(50,53,62,0.09);
  z-index: 2015;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  transition: transform .4s, opacity .35s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  font-size: 1.05rem;
  color: #ead9b6;
  margin-bottom: 6px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-end;
  flex: 1 1 120px;
}
.cookie-banner button {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 20px;
  cursor: pointer;
  margin-right: 8px;
  margin-top: 0;
  margin-bottom: 0;
  transition: background .16s, color .16s, box-shadow .12s;
  box-shadow: 0 2px 6px rgba(246, 207, 16, 0.04);
}
.cookie-banner .accept-all {
  background: #b7974c;
  color: #fff;
  margin-right: 8px;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #ead9b6;
  color: #b22e2e;
}
.cookie-banner .reject-all {
  background: #B22E2E;
  color: #fff;
  margin-right: 8px;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #91251d;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #232323;
  border: 1.5px solid #ead9b6;
  margin-right: 0;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #ead9b6;
  color: #232323;
}
@media (max-width:768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 2vw 14px 6vw;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  z-index: 2240;
  background: rgba(39, 96, 71, 0.52);
  backdrop-filter: blur(2px);
  transition: opacity .35s, transform .35s;
  opacity: 1;
  transform: scale(1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
}
.cookie-modal-box {
  min-width: 300px;
  max-width: 410px;
  background: #fff;
  color: #232323;
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(68,54,13, .15);
  padding: 38px 30px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cookie-modal-box h3 {
  font-size: 1.25rem;
  color: #276047;
  margin-bottom: 6px;
}
.cookie-modal-box .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal-box .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #ead9b6;
  font-size: 1.02rem;
  color: #333;
}
.cookie-modal-box .category-toggle {
  margin-left: auto;
  min-width: 34px;
}
.cookie-modal-box .category-toggle input[type='checkbox'] {
  accent-color: #b7974c;
  width: 18px; height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 16px;
  font-size: 1.6rem;
  background: #ead9b6;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  text-align: center;
  color: #b22e2e;
  cursor: pointer;
  transition: background .14s;
  z-index: 2260;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fffbe7;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
@media (max-width:600px) {
  .cookie-modal-box {
    min-width: 96vw; max-width: 96vw;
    padding: 20px 6vw 20px 5vw;
  }
}

/* Miscellaneous */
::-webkit-input-placeholder { color: #aab394; }
::-moz-placeholder { color: #aab394; }
:-ms-input-placeholder { color: #aab394; }
::placeholder { color: #aab394; }

hr {
  border: none;
  border-top: 1.5px solid #ead9b6;
  margin: 28px 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* UTILITIES */
.hide { display: none !important; }

/* Accessibility focus outline */
:focus-visible {
  outline: 2px solid #B22E2E;
  outline-offset: 2px;
}

/* Custom gold shadow/accent for luxury */
.luxury-gold-shadow {
  box-shadow: 0 8px 32px rgba(217, 183, 92, 0.16)!important;
  border-color: #b7974c!important;
}

/* Hide scroll (when modal/menu open) */
body.menu-open, body.modal-open {
  overflow: hidden;
}
