/* =======================
   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, main, 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F5F5F5;
  color: #1A1A22;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1A1A22;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, button:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* =======================
   TYPOGRAPHY
   ======================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  color: #1A1A22;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, .contact-details p {
  color: #31313B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}

/* =============
   CONTAINER
   ============= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===========================
   HEADER + NAVIGATION
   =========================== */
header {
  background: #1A1A22;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px 0 rgba(26,26,34,.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 32px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-size: 1rem;
  color: #F5F5F5;
  padding: 8px 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  transition: color .2s;
}
.desktop-nav a:hover {
  color: #D4AF37;
}
header .cta.primary {
  margin-left: 36px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  z-index: 1050;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 340px;
  height: 100dvh;
  background: #1A1A22;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -4px 0 24px 0 rgba(26,26,34,.13);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 2.2rem;
  margin-left: auto;
  margin-right: 16px;
  margin-top: 18px;
  display: block;
  cursor: pointer;
  z-index: 2050;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding: 0 32px 24px 32px;
}
.mobile-nav a {
  color: #F5F5F5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 4px;
  border-radius: 5px;
  transition: background .2s, color .2s;
  margin-right: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #D4AF37;
  color: #1A1A22;
}

/**** Hide Desktop Nav and Show Mobile Nav on Mobile ****/
@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================
   MAIN & SECTIONS
   ======================= */
main {
  background: #F5F5F5;
  min-height: 60vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
}
section .container {
  padding-left: 10px;
  padding-right: 10px;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ===================
   FLEXBOX LAYOUTS
   =================== */
.feature-grid, .service-list, .feature-list, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
  list-style: none;
}
.feature-grid > li, .service-list > li, .feature-list > li, .values-list > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(26,26,34,.07), 0 1.5px 6px 0 rgba(212,175,55,.06);
  padding: 28px 24px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-left: 4px solid #D4AF37;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.feature-grid > li:hover, .service-list > li:hover, .feature-list > li:hover {
  box-shadow: 0 8px 34px 0 rgba(212,175,55,.11), 0 2px 12px 0 rgba(26,26,34,.08);
  transform: translateY(-3px) scale(1.02);
}
.values-list {
  padding-left: 0;
  margin-top: 16px;
  gap: 20px;
}
.values-list > li {
  background: #FAFAFB;
  border-radius: 12px;
  font-weight: 600;
  padding: 14px 22px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 6px 0 rgba(212,175,55,.07);
}

/**** Special Flex Containers from Spec ****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(26,26,34,.06);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 32px;
  box-shadow: 0 3px 16px 0 rgba(26,26,34,.09);
  margin-bottom: 20px;
  border-left: 4px solid #D4AF37;
  color: #222;
  max-width: 680px;
  width: 100%;
}
.testimonial-card p { color: #222; font-size: 1.07rem; font-style: italic; }
.testimonial-card span {
  font-size: 1rem;
  color: #684E15;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** Cards for FAQ ****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.faq-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(26,26,34,.06);
  padding: 22px 24px;
  border-left: 4px solid #D4AF37;
  transition: box-shadow 0.18s, transform 0.18s;
}
.faq-card:hover {
  box-shadow: 0 8px 32px 0 rgba(212,175,55,.10);
  transform: translateY(-2px) scale(1.01);
}
.quick-links {
  margin-top: 24px;
}
.quick-links h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.quick-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.quick-links a {
  color: #D4AF37;
  font-weight: 600;
  font-size: 1rem;
}
.quick-links a:hover { color: #b49b2a; }

/**** Steps (Reservations) ****/
.step-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  list-style: decimal inside;
  margin: 36px 0;
  padding-left: 10px;
}
.step-list > li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(26,26,34,.05);
  padding: 24px 18px 18px 28px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
}

/**** Contact Details ****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #31313B;
  font-weight: 500;
}
.address-map {
  margin-top: 20px;
  background: #FAFAFA;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 1rem;
  box-shadow: 0 1px 6px 0 rgba(26,26,34,.03);
  color: #2B2B2B;
}
.address-map strong {
  color: #D4AF37;
  font-weight: 700;
}
.address-map em {
  font-size: 0.98rem;
  color: #626262;
}

/**** White Space & Gaps ****/
.section, section, .content-wrapper, .feature-grid, .service-list,
.feature-list, .values-list, .step-list, .address-map,
.contact-details, .faq-accordion, .quick-links ul, .testimonial-card {
  gap: 20px;
}

/* =============
   BUTTONS / CTA
   ============= */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 38px;
  padding: 12px 36px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 3px 16px 0 rgba(212,175,55,.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.16s;
  border: none;
  margin-top: 18px;
  margin-bottom: 8px;
}
.cta.primary {
  background: #D4AF37;
  color: #1A1A22;
  border: 2px solid #D4AF37;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1A1A22;
  color: #D4AF37;
  box-shadow: 0 7px 32px 0 rgba(212,175,55,.14);
  border: 2px solid #D4AF37;
  transform: translateY(-2px) scale(1.02);
}
.cta.secondary {
  background: #fff;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #D4AF37;
  color: #fff;
  border: 2px solid #D4AF37;
  box-shadow: 0 5px 24px 0 rgba(212,175,55,.12);
  transform: translateY(-2px) scale(1.01);
}

/**** General Button Styles (including cookie banner) ****/
button, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  padding: 10px 28px;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #1A1A22;
  color: #fff;
  padding: 28px 0 18px 0;
}
footer .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 6px;
}
.footer-nav a {
  font-size: 1.07rem;
  color: #D4AF37;
  opacity: 1;
  transition: color .16s;
}
.footer-nav a:hover {
  color: #fff;
}
footer span {
  font-size: .97rem;
  color: #F5F5F5;
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 16px 0 rgba(26,26,34,.12);
  border-top: 3px solid #D4AF37;
  z-index: 3000;
  padding: 24px 20px 24px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: cookie-slide-in 0.38s cubic-bezier(.3,1.35,.4,1.00);
}
@keyframes cookie-slide-in {
  from {transform: translateY(100%);}
  to {transform: translateY(0);}
}
.cookie-banner p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
  margin-right: 8px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 9px 24px;
  border: 1.5px solid #D4AF37;
  background: #fff;
  color: #D4AF37;
  margin-left: 7px;
  margin-right: 7px;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.primary, .cookie-btn.accept {
  background: #D4AF37;
  color: #1A1A22;
}
.cookie-btn.primary:hover, .cookie-btn.accept:hover {
  background: #bda33a;
  color: #fff;
}
.cookie-btn.secondary, .cookie-btn.settings {
  background: #fff;
  color: #D4AF37;
}
.cookie-btn.secondary:hover, .cookie-btn.settings:hover {
  background: #F5F5F5;
  color: #684E15;
}
.cookie-btn.reject {
  background: #fff;
  color: #1A1A22;
  border: 1.5px solid #b2b2b6;
}
.cookie-btn.reject:hover {
  background: #f0ede7;
}

/**** Cookie Modal ****/
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,26,34, 0.35);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fade-in 220ms cubic-bezier(.38,1.19,.29,.96);
}
@keyframes fade-in {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px 0 rgba(26,26,34,.23);
  width: 95%;
  max-width: 410px;
  padding: 38px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: scale-in 220ms cubic-bezier(.38,1.19,.29,.96);
  position: relative;
}
@keyframes scale-in {
  from {transform: scale(0.92); opacity:0;}
  to {transform: scale(1); opacity:1;}
}
.cookie-modal h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: #D4AF37;
}
.cookie-modal .cookie-cat {
  margin-bottom: 10px;
  font-weight: 600;
  color: #1A1A22;
}
.cookie-modal-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #362c09;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 14px;
  border: 1.5px solid #D4AF37;
  background: #F5F5F5;
  position: relative;
  transition: border 0.18s;
}
.cookie-toggle[aria-checked="true"] {
  background: #D4AF37;
  border: 1.5px solid #D4AF37;
}
.cookie-toggle-switch {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s cubic-bezier(.38,1.19,.29,.96);
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-switch {
  transform: translateX(18px);
  background: #f8efe1;
}
.cookie-modal .cookie-btn-row {
  margin-top: 18px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin: 0;
}
.cookie-modal .cookie-btn:nth-child(1) {
  margin-right: 10px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  section, .section { padding: 26px 2vw 26px 2vw; }
  .content-wrapper { padding-left: 0; padding-right: 0; }
  .feature-grid, .service-list, .feature-list, .values-list, .step-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > li, .service-list > li, .feature-list > li, .values-list > li, .step-list > li {
    min-width: 180px;
    max-width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .contact-details p, .address-map, .faq-card {
    font-size: 0.97rem;
    padding: 14px 11px;
  }
  .testimonial-card {
    padding: 15px 12px;
    font-size: 0.98rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 10px 20px 13px;
  }
  .mobile-nav {
    padding: 0 18px 24px 18px;
    font-size: 1.0rem;
    gap: 18px;
  }
}

@media (max-width: 540px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  section, .section { padding: 16px 2vw 16px 2vw; }
  .cta, .cta.primary, .cta.secondary {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .feature-grid > li, .service-list > li, .feature-list > li, .values-list > li, .step-list > li, .card {
    padding: 16px 8px;
  }
}

/* ==============
   ANIMATIONS
   ============== */
.cta, .cta.primary, .cta.secondary, .cookie-btn, button, .feature-grid>li, .service-list>li, .testimonial-card, .card, .faq-card {
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
}

/* ===============
   MICRO DETAILS
   =============== */
.feature-grid > li img, .service-list > li img, .feature-list > li img {
  width: 36px;
  height: 36px;
  margin-bottom: 3px;
}

/* ===============
   MISC
   =============== */
ul, ol {
  margin-bottom: 16px;
  padding-left: 22px;
}
::-webkit-scrollbar {
  width: 8px; background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #e4dde3;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* ===============
   UTILITY CLASSES
   =============== */
.hide {
  display: none !important;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: #D4AF37; }
.text-dark { color: #1A1A22; }
.bg-gold { background: #D4AF37; color: #1A1A22; }
.bg-dark { background: #1A1A22; color: #fff; }
.bg-light { background: #F5F5F5; }
.rounded { border-radius: 16px; }
.shadow {
  box-shadow: 0 3px 12px 0 rgba(120,100,28,.10);
}

/* ===============
   PRINTING SAFETY
   =============== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  .mobile-menu, .mobile-menu-close, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
