/* CSS 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F8F6F3;
  color: #222144;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #8C1C1C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #2F2E48;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  margin: 0 0 1.25em 0;
  padding: 0;
}

/* FONT IMPORTS (if allowed by project) - fallback to system if not available */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

/* GENERAL CONTAINER & SPACING PATTERNS */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

/*********************************
 * HEADER & MAIN NAV
 *********************************/
header {
  background: linear-gradient(90deg, #8C1C1C 0%, #EFD7B1 100%);
  box-shadow: 0 2px 12px rgba(140,28,28,0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(239,215,177,0.23);
  color: #222144;
}
.button.primary {
  background: linear-gradient(90deg, #8C1C1C 0%, #2F2E48 100%);
  color: #fff;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.03em;
  padding: 13px 32px;
  font-size: 1.11rem;
  font-weight: 700;
  border-radius: 32px;
  margin-left: 24px;
  box-shadow: 0 4px 20px 0 rgba(47,46,72,0.06);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.18s;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: linear-gradient(90deg, #2F2E48 0%, #8C1C1C 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px 0 rgba(47,46,72,0.12);
}

/*********************************
 * MOBILE MENU
 *********************************/
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 9px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  display: none;
  transition: background 0.18s;
  z-index: 9991;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(239,215,177,0.2);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #222144;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 28px 28px;
  z-index: 9998;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  box-shadow: 2px 0 22px 0 rgba(47,46,72,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #EFD7B1;
  font-size: 2.2rem;
  padding: 2px 8px 14px 2px;
  margin-bottom: 36px;
  align-self: end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  border-radius: 7px;
  padding: 11px 9px;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8C1C1C;
  color: #EFD7B1;
}

/*********************************
 * HERO SECTION
 *********************************/
.hero {
  background: linear-gradient(120deg, #EFD7B1 55%, #fff 100%);
  padding: 64px 0 36px 0;
  margin-bottom: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 700;
  color: #8C1C1C;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #2F2E48;
  margin-bottom: 32px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  max-width: 600px;
}
.hero .button.primary {
  margin-top: 16px;
}

/*********************************
 * FEATURES/HIGHLIGHTS GRID
 *********************************/
.feature-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(47,46,72,0.075);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid li:hover {
  box-shadow: 0 14px 32px 0 rgba(140,28,28,0.10);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img {
  height: 48px;
  width: 48px;
}
.feature-grid h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #2F2E48;
  margin-bottom: 6px;
}
.feature-grid p {
  font-size: 1.04rem;
  color: #222144;
  opacity: 0.93;
}

/*********************************
 * SERVICE/TOUR LIST & PRICING
 *********************************/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 6px;
}
.service-list li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(47,46,72,0.06);
  padding: 32px 24px 26px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.service-list li:hover {
  box-shadow: 0 12px 34px 0 rgba(140,28,28,0.12);
  transform: translateY(-2px) scale(1.015);
}
.service-list h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #8C1C1C;
  margin-bottom: 4px;
}
.service-list .price {
  color: #2F2E48;
  font-weight: 700;
  font-size: 1.04rem;
  margin-top: 10px;
}

/*********************************
 * TESTIMONIALS
 *********************************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 32px 22px 32px;
  margin-bottom: 20px;
  background: #F9F8F3;
  border-radius: 18px;
  border-left: 4px solid #8C1C1C;
  box-shadow: 0 3px 16px 0 rgba(140,28,28,0.06);
  max-width: 530px;
  transition: box-shadow 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 26px 0 rgba(140,28,28,0.12);
}
.testimonial-card p {
  color: #232132;
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-name {
  font-size: 1rem;
  color: #8C1C1C;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
}

/*********************************
 * FOOTERS
 *********************************/
footer {
  background: linear-gradient(90deg, #2F2E48 0%, #8C1C1C 100%);
  color: #fff;
  font-size: 1rem;
  margin-top: 56px;
  padding-top: 32px;
  padding-bottom: 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.footer-brand,
.footer-contact,
.footer-menu,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand {
  max-width: 290px;
  gap: 13px;
}
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 2px;
}
.footer-brand p {
  color: #fff;
  opacity: 0.90;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
}
.footer-contact h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.footer-contact p {
  color: #fff;
  opacity: 0.92;
  font-size: 0.97rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: sub;
  margin-right: 7px;
}
.footer-menu {
  gap: 7px;
  min-width: 200px;
}
.footer-menu a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #EFD7B1;
  opacity: 0.93;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
.footer-social {
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  height: 24px;
  width: 24px;
  filter: grayscale(0.22);
  transition: filter 0.2s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0) drop-shadow(0 5px 8px #efd7b144);
}
.copyright {
  padding: 12px 0 16px 0;
  display: flex;
  justify-content: center;
  color: #efd7b1;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.82;
}

/*********************************
 * TYPOGRAPHY
 *********************************/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #2F2E48;
  font-weight: 700;
  margin-bottom: 10px;
}
h1 { font-size: 2.52rem; line-height: 1.14; }
h2 { font-size: 2.05rem; line-height: 1.20; }
h3 { font-size: 1.15rem; line-height: 1.4; }
h4 { font-size: 1.03rem; }
h5, h6 { font-size: 0.98rem; }
p, li, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  color: #222144;
  opacity: 0.98;
}
strong { font-weight: 700; }

/*********************************
 * CARD & FLEX UTILS
 *********************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(47,46,72,0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********************************
 * FAQ LIST
 *********************************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 17px 0 rgba(239,215,177,0.08);
  padding: 24px 22px 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.16s;
}
.faq-item:hover {
  box-shadow: 0 12px 27px 0 rgba(140,28,28,0.13);
}
.faq-item h3 {
  font-size: 1.06rem;
  color: #8C1C1C;
  margin-bottom: 10px;
}
.faq-item p, .faq-item a {
  color: #232132;
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.faq-item a {
  text-decoration: underline;
}

/*********************************
 * LISTS & TEXT SECTIONS
 *********************************/
.text-section {
  padding: 0 0 8px 0;
  max-width: 660px;
}
.text-section ul, .text-section ol, ul, ol {
  list-style: disc inside;
  margin-left: 22px;
  margin-bottom: 18px;
}
.text-section ul li, ul li, .text-section ol li, ol li {
  margin-bottom: 8px;
}
.text-section strong { color: #8C1C1C; }

/*********************************
 * MAP
 *********************************/
.map {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(140,28,28,0.08);
  padding: 21px 18px 14px 18px;
  margin-bottom: 20px;
}

/*********************************
 * OL (ORDERED STEPS)
 *********************************/
ol {
  list-style-type: decimal inside;
  color: #2F2E48;
  margin-bottom: 18px;
  margin-left: 0;
  padding-left: 20px;
}
ol li {
  margin-bottom: 8px;
}

/*********************************
 * COOKIES BANNER AND MODAL
 *********************************/
.cookie-consent-banner {
  position: fixed;
  z-index: 12000;
  left: 0; right: 0; bottom: 0;
  background: rgba(239,215,177,0.98);
  color: #222144;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 -4px 18px #8C1C1C22;
  gap: 24px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: bottom 0.4s;
}
.cookie-consent-banner.hidden {
  bottom: -160px;
  pointer-events: none;
  opacity: 0.03;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: 30px;
}
.cookie-consent-banner .button {
  font-size: 1.01rem;
  padding: 9px 22px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  font-family: 'Oswald', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-consent-banner .button.accept {
  background: #8C1C1C;
  color: #fff;
}
.cookie-consent-banner .button.accept:hover, .cookie-consent-banner .button.accept:focus {
  background: #2F2E48;
}
.cookie-consent-banner .button.reject {
  background: #fff;
  color: #222144;
  border: 1.5px solid #8C1C1C;
}
.cookie-consent-banner .button.reject:hover, .cookie-consent-banner .button.reject:focus {
  background: #8C1C1C;
  color: #fff;
}
.cookie-consent-banner .button.settings {
  background: #efd7b1;
  color: #8C1C1C;
  border: 1.5px solid #8C1C1C;
}
.cookie-consent-banner .button.settings:hover, .cookie-consent-banner .button.settings:focus {
  background: #8C1C1C;
  color: #efd7b1;
}

/* Cookie Modal Popup */
.cookie-modal {
  position:fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(47,46,72,0.44);
  z-index: 13000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  color: #222144;
  border-radius: 19px;
  box-shadow: 0 7px 38px 0 rgba(140,28,28,0.18);
  min-width: 320px;
  max-width: 95vw;
  padding: 32px 28px 20px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-dialog h3 {
  color: #8C1C1C;
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 10px 4px 10px 0;
}
.cookie-modal-category label {
  font-size: 1.04rem;
  user-select: none;
  cursor: pointer;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #8C1C1C;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.cookie-modal-category .required {
  color: #2F2E48;
  font-weight: 700;
  padding-left: 0.6em;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  font-size: 1.7rem;
  color: #8C1C1C;
  border: none;
  background: none;
  cursor: pointer;
  padding: 2px 7px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 9px;
}
.cookie-modal-actions .button {
  font-size: 1.01rem;
  padding: 9px 22px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  font-family: 'Oswald', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: #EFD7B1;
  color: #8C1C1C;
  border: 1.5px solid #8C1C1C;
}
.cookie-modal-actions .button.accept {
  background: #8C1C1C;
  color: #fff;
  border: none;
}
.cookie-modal-actions .button.accept:hover {
  background: #2F2E48;
}
.cookie-modal-actions .button.cancel {
  background: #fff;
  color: #2F2E48;
}
.cookie-modal-actions .button.cancel:hover, .cookie-modal-actions .button.cancel:focus {
  background: #8C1C1C;
  color: #fff;
}

/*********************************
 * RESPONSIVE & ADAPTIVE QUERIES
 *********************************/
@media (max-width: 1020px) {
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  header .container {
    gap: 14px;
  }
  footer .container {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-brand, .footer-contact, .footer-menu, .footer-social {
    margin-bottom: 12px;
  }
}
@media (max-width: 860px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-list li {
    min-width: 170px;
    width: 100%;
    max-width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 16px;
    height: auto;
    min-height: 68px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    padding: 0 8px;
    height: 58px;
    min-height: 56px;
    gap: 8px;
  }
  .logo img {
    height: 34px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .button.primary {
    font-size: 1rem;
    padding: 11px 20px;
    margin-left: 12px;
  }
  .container {
    padding: 0 4px;
  }
  .section {
    margin-bottom: 33px;
    padding: 27px 6px;
  }
  .hero {
    min-height: 180px;
    padding: 38px 0 14px 0;
  }
  .hero h1 {
    font-size: 1.39rem;
  }
  .hero .subheadline {
    font-size: 1rem;
    margin-bottom: 16px;
    max-width: 98vw;
  }
  .feature-grid, .service-list, .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .feature-grid li, .service-list li, .card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 25px 10px 20px 10px;
  }
  .testimonial-card {
    padding: 16px 9px 13px 16px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .faq-list, .faq-item {
    gap: 13px;
    padding: 18px 8px 14px 8px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    padding: 20px 10px 14px 10px;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
    width: 100%;
  }
  .cookie-modal-dialog {
    min-width: 72vw;
    padding: 15px 8px 11px 8px;
  }
}
@media (max-width: 580px) {
  h1 { font-size: 1.31rem; }
  h2 { font-size: 1.13rem; }
  .footer-brand img, .footer-social a img {
    height: 25px;
  }
  .footer-contact img {
    height: 14px;
    width: 14px;
  }
}

/*********************************
 * TRANSITIONS & MICRO-ANIMATIONS
 *********************************/
.button, .cookie-modal-actions .button, .button.primary {
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.17s;
}
.card, .service-list li, .feature-grid li, .faq-item, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.12s;
}
.card:hover, .service-list li:hover, .feature-grid li:hover, .faq-item:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.015);
}

/*********************************
 * Z-INDEX
 *********************************/
.header { z-index: 1000; }
.mobile-menu { z-index: 9998; }
.cookie-consent-banner { z-index: 12000; }
.cookie-modal { z-index: 13000; }

/*********************************
 * ACCESSIBILITY FOCUS STATES
 *********************************/
a, button, .button {
  outline: none;
}
a:focus, .button:focus, button:focus, .mobile-menu-toggle:focus, .cookie-modal-close:focus {
  box-shadow: 0 0 0 2px #8C1C1C55;
  outline: none;
}

/*********************************
 * UTILITY CLASSES
 *********************************/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pt-12 { padding-top: 12px !important; }
pb-12 { padding-bottom: 12px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/*********************************
 * PRINT OPTIMIZATION
 *********************************/
@media print {
  header, footer, .button, .mobile-menu, .cookie-consent-banner, .cookie-modal { display: none !important; }
  main { padding: 0; }
  body { background: #fff; color: #000; }
}
