/* 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-size: 100%;
  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.5;
  background: #f4efe8;
  color: #23293c;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}
ul,ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* BRAND COLORS & TYPOGRAPHY */
:root {
  --primary: #23293c;
  --secondary: #8098bc;
  --accent: #f4efe8;
  --gold: #c4a963;
  --text: #23293c;
  --text-dark: #1A1B24;
  --text-light: #fff;
  --border: #eae5dc;
  --shadow: 0 6px 20px 0 rgba(35, 41, 60, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --transition: all 0.25s cubic-bezier(.48,.17,.65,.87);
  --card-radius: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p, ul li, ol li {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.65;
}
strong {
  color: var(--primary);
  font-weight: 700;
  font-family: 'Montserrat',Arial,sans-serif;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(35,41,60,0.048);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
header a img {
  height: 48px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 0;
  color: var(--primary);
  font-size: 1.06rem;
  transition: color 0.23s;
  position: relative;
}
nav a:not(.cta-btn):hover {
  color: var(--gold);
}
nav a.cta-btn {
  background: var(--gold);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 10px 30px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(35,41,60,0.12);
  margin-left: 22px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: 2px solid var(--gold);
}
nav a.cta-btn:hover, nav a.cta-btn:focus {
  background: #e3cc91;
  color: var(--primary);
  border-color: #e3cc91;
  box-shadow: 0 2px 12px rgba(196, 169, 99, 0.26);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  padding: 6px 14px;
  z-index: 110;
  margin-left: 18px;
  transition: color .22s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--gold);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 88vw;
  max-width: 340px;
  background: #fff;
  box-shadow: -2px 0 18px rgba(50,44,44,.17);
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(.77, .27, .56, 1.18);
  z-index: 200;
  padding: 32px 20px 20px 30px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: var(--primary);
  background: none;
  border: none;
  margin-bottom: 34px;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background .16s, color .14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--gold);
  background: #f6f5ef;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.10rem;
  color: var(--primary);
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  background: #faf8f1;
}

/* MOBILE NAV OVERLAY (body block) */
body.mobile-menu-open {
  overflow: hidden;
}

/* LUXURY CARD, SECTION & LAYOUT STYLES */
.card-container, .brand-cards, .testimonial-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card,
.brand-cards > div {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .19s;
}
.card:hover, .brand-cards > div:hover {
  box-shadow: 0 10px 36px rgba(49, 49, 82, 0.17);
  transform: translateY(-4px) scale(1.015);
}

.content-grid {
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-list {
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 18px;
  border: 1.2px solid #ece6dc;
  box-shadow: 0 2px 14px rgba(74, 68, 56, 0.09);
  min-width: 250px;
  max-width: 400px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.04rem;
  color: #23293c;
  transition: box-shadow .2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(184, 169, 99, 0.14);
}
.testimonial-card blockquote {
  color: #23293c;
  margin-bottom: 10px;
  font-family: 'Open Sans',Arial,sans-serif;
  font-style: italic;
  line-height: 1.65;
  quotes: "\201C" "\201D";
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.98rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
}

.brand-logos, .partner-logos, .social-icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.brand-logos img, .partner-logos img {
  height: 48px;
  filter: grayscale(0.15) brightness(1) contrast(1.01);
  transition: filter .12s, transform .18s;
}
.brand-logos img:hover, .partner-logos img:hover {
  filter: grayscale(0) drop-shadow(0 2px 9px rgba(196,169,99,0.08));
  transform: scale(1.07) translateY(-2px);
}
.social-icons img {
  height: 33px;
  filter: grayscale(0) brightness(0.98);
  opacity: 0.86;
  transition: filter .18s, opacity .14s;
}
.social-icons img:hover {
  filter: none;
  opacity: 1;
}

.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--secondary);
  font-size: 0.98rem;
  border-bottom: 1.5px solid transparent;
  transition: border-bottom .16s, color .16s;
}
.footer-menu a:hover {
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
}
.footer-legal {
  color: #888;
  font-size: 0.99rem;
  margin-top: 11px;
}
footer {
  background: #f9f7f2;
  border-top: 1.5px solid #ece6dc;
  padding: 30px 0 16px 0;
}
footer .container {
  align-items: center;
  gap: 10px;
}

/* BUTTONS & INTERACTIONS */
.cta-btn, .cta-btn:visited {
  background: var(--gold);
  color: var(--text-light);
  border-radius: 12px;
  padding: 12px 36px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 14px rgba(196,169,99,0.09);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #f4efe8;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 2px 20px rgba(196,169,99,0.20);
}

/* Mini Highlight & Accent */
.highlight {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.09rem;
  padding: 5px 14px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
.mini-highlight {
  background: #f8f3e9;
  border-left: 4px solid var(--gold);
  padding: 14px 22px;
  color: var(--primary);
  border-radius: 8px;
  font-size: 1.04rem;
  margin: 8px 0;
}

/* LISTS & FAQ */
ul li, ol li {
  padding-left: 38px;
  margin-bottom: 14px;
  position: relative;
}
ul li img, ol li img {
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(35,41,60,.06);
  padding: 18px 22px;
}
.faq-item h3 {
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 8px;
}

/* CONTACT SHORTFORMS & INFO */
.contact-shortform, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.contact-shortform a.cta-btn, .contact-info a.cta-btn {
  margin-top: 0;
  margin-bottom: 0;
}
.contact-shortform p, .contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
}
.contact-shortform img, .contact-info img {
  width: 22px;
  height: 22px;
  margin: 0 4px 0 0;
}
.google-map-embed {
  margin: 12px 0;
  color: var(--secondary);
  font-size: 1.05rem;
}

/* Cookie Consent Banner (fixed bottom) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(35,41,60,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 28px 25px 21px 25px;
  z-index: 700;
  gap: 20px;
  min-height: 88px;
  font-size: 1.034rem;
  transition: transform .39s cubic-bezier(0.6,0.05,0.36,1.36);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner__text {
  color: var(--primary);
  flex: 1 1 auto;
  max-width: 760px;
  font-size: 1rem;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 28px;
  border-radius: 7px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition);
}
.cookie-btn.accept {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #eee2c4;
  color: var(--gold);
}
.cookie-btn.reject {
  background: #faf5ee;
  color: var(--primary);
  border: 2px solid #e8dbbe;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fdf6e9;
  color: #c4a963;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--secondary);
  border: 2px solid #d6d6d6;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f8f6ef;
  color: var(--gold);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 1001;
  inset: 0;
  background: rgba(35,41,60,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .24s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 18px;
  width: 97vw;
  max-width: 400px;
  box-shadow: 0 12px 40px rgba(35,41,60,.19);
  padding: 38px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  position: relative;
}
.cookie-modal__content h2 {
  margin-bottom: 6px;
  font-size: 1.33rem;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 8px;
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  color: var(--primary);
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 15px;
}
.cookie-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.45rem;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 7px;
  transition: background .22s, color .13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--gold);
  background: #f8f3e9;
}

/* Extra Utility Classes */
.text-section {
  margin-bottom: 15px;
}
.partner-logos {
  margin-top: 10px;
}

/* RESPONSIVENESS */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  nav, header nav {
    gap: 18px;
  }
  .brand-cards, .card-container, .testimonial-list, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .brand-cards,
  .card-container,
  .testimonial-list {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .section {
    padding: 32px 3px;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 17px 10px;
    font-size: 0.99rem;
  }
  .brand-logos img, .partner-logos img {
    height: 36px;
  }
  .cookie-banner {
    flex-direction: column;
    font-size: 0.97rem;
    align-items: flex-start;
    padding: 20px 8px 16px 10px;
    gap: 10px;
  }
  .cookie-banner__text {
    margin-right: 0;
    max-width: 98vw;
  }
  .cookie-banner__actions {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }
  .cookie-btn {
    padding: 10px 12px;
    min-width: 96px;
    font-size: 0.99rem;
  }
  .cookie-modal__content {
    padding: 15px 8px 22px 8px;
    min-width: unset;
    width: 97vw;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.02rem;
  }
  .footer-menu {
    gap: 8px;
  }
  .footer-legal {
    font-size: 0.92rem;
  }
}

/* Animations/Microinteractions */
.cta-btn, .cookie-btn {
  transition: background 0.22s, color 0.16s, box-shadow .19s, border-color .14s;
}
.brand-logos img, .partner-logos img, .card, .testimonial-card, .faq-item {
  transition: box-shadow .17s, transform .15s;
}
.brand-logos img:active, .partner-logos img:active {
  transform: scale(0.98) translateY(1px);
}

/* Hide scroll on modal open for mobile menu/cookies */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* Miscellaneous fixes & luxury details */
blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  font-size: 1.06rem;
  margin-bottom: 6px;
  color: #23293c;
}
.bg-luxury {
  background: #fffbea;
  border-radius: 18px;
  border: 1.5px solid #f5edd7;
  padding: 21px 16px;
  box-shadow: 0 2px 12px rgba(196,169,99,0.07);
}

/* Hide elements visually but keep accessible (for modals/arrows if needed) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* END OF CSS */
