/* =========================
   CSS 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, 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B2838;
  background-color: #F7F5F3;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
/* ===============
   TYPOGRAPHY
   =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1B2838;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  margin-bottom: 14px;
  color: #303540;
  font-size: 1.05rem;
}
strong {
  font-weight: bold;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 20px;
  padding-left: 20px;
}
li {
  margin-bottom: 10px;
  font-size: 1rem;
}
small {
  font-size: 0.92em;
  color: #6B6B6B;
}
/* ================
   LINKS & BUTTONS
   ================ */
a.cta, .cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 15px 38px;
  background: #1B2838;
  color: #fff;
  border: none;
  box-shadow: 0 2px 16px rgba(27,40,56,0.10);
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 12px;
  transition: background .18s, color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  position: relative;
  outline: none;
}
a.cta.primary, .cta.primary {
  background: #1B2838;
  color: #F2E9DC;
  border: 1.5px solid #CBAE5B;
  box-shadow: 0 5px 24px rgba(27,40,56,0.11);
}
a.cta.primary:hover, .cta.primary:hover, a.cta.primary:focus, .cta.primary:focus {
  background: #CBAE5B;
  color: #1B2838;
  box-shadow: 0 6px 24px rgba(203,174,91,0.16);
  transform: translateY(-2px) scale(1.02);
}
a.cta.secondary, .cta.secondary {
  background: #F2E9DC;
  color: #1B2838;
  border: 1px solid #CBAE5B;
}
a.cta.secondary:hover, .cta.secondary:focus, .cta.secondary:active {
  background: #1B2838;
  color: #F2E9DC;
}
button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #CBAE5B;
  color: #1B2838;
  border: none;
  outline: none;
  border-radius: 32px;
  padding: 12px 26px;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
  min-width: 90px;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #93782a;
  color: #fff;
}
button:active {
  background: #F2E9DC;
  color: #1B2838;
}
/* ===========
   CONTAINERS
   =========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27,40,56,0.05);
}
@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 38px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
/* =====================
   FLEXBOX LAYOUTS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 28px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(27,40,56,0.08);
  position: relative;
  flex: 1 1 260px;
  min-width: 250px;
  border: 1px solid #ece7df;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .21s, transform .23s;
}
.card:hover {
  box-shadow: 0 8px 25px rgba(203,174,91,0.12);
  transform: translateY(-3px) scale(1.015);
  border-color: #CBAE5B;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  width: 100%;
}
.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: 18px;
  }
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(27,40,56,0.06);
  padding: 20px 28px;
  flex: 1 1 320px;
  min-width: 250px;
  border-left: 5px solid #CBAE5B;
  margin-bottom: 20px;
  transition: box-shadow .20s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(203,174,91,0.15);
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #48829E;
  font-size: 1.06em;
}
.feature-item, .feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(27,40,56,0.05);
  padding: 24px 16px;
  border-left: 4px solid #CBAE5B;
  min-width: 210px;
  max-width: 325px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border-color .2s;
}
.feature:hover {
  box-shadow: 0 7px 22px rgba(203,174,91,0.13);
  border-color: #48829E;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 850px) {
  .features-grid {
    gap: 16px;
    justify-content: center;
  }
}
@media (max-width: 650px) {
  .features-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature, .testimonial-card, .card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}
.cta-box {
  padding: 34px 18px;
  background: #F2E9DC;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(27,40,56,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
/* =============
   HERO SECTION
   ============= */
.hero {
  background: #1B2838;
  background-image: none;
  color: #F2E9DC;
  border-radius: 0 0 36px 36px;
  padding: 64px 0 54px 0;
  margin-bottom: 48px;
  position: relative;
  min-height: 270px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero h1, .hero h2, .hero p {
  color: #F2E9DC;
}
.hero h1 {
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.hero p {
  font-size: 1.22rem;
  opacity: .93;
}
.hero .cta.primary {
  margin-top: 22px;
  background: #CBAE5B;
  color: #1B2838;
}
.hero .cta.primary:hover {
  background: #f8f3e5;
  color: #1B2838;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 24px 0;
    margin-bottom: 28px;
    border-radius: 0 0 18px 18px;
    min-height: 120px;
  }
  .hero h1 {
    font-size: 1.7rem;
    text-align: center;
  }
  .hero p {
    font-size: 1rem;
    text-align: center;
  }
}
/* ===========
   PRICING
   =========== */
.pricing span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #CBAE5B;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  margin-top: 12px;
}
/* ===========
   MAP & PLACEHOLDER
   =========== */
.map-placeholder {
  margin-top: 32px;
  padding: 28px 20px;
  background: #F2E9DC;
  border-radius: 12px;
  color: #303540;
  box-shadow: 0 1px 8px rgba(203,174,91, 0.09);
  font-size: 1rem;
}
.map-placeholder h3 {
  font-size: 1.14em;
}
/* ===========
   FOOTER
   =========== */
footer {
  background: #1B2838;
  color: #F2E9DC;
  padding: 60px 0 32px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px 32px;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
}
.footer-brand img {
  width: 40px;
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: #F2E9DC;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #CBAE5B;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  opacity: .8;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  filter: grayscale(57%) brightness(1.15);
  transition: filter .14s, transform .18s;
}
.footer-social a:hover img {
  filter: none;
  transform: scale(1.18) rotate(-6deg);
}
.footer-legal {
  flex-basis: 100%;
  margin-top: 30px;
  font-size: .94em;
  color: #BFA252;
}
@media (max-width: 1100px) {
  footer .content-wrapper {
    gap: 36px 20px;
  }
}
@media (max-width: 820px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-legal {
    margin-top: 18px;
  }
}
@media (max-width: 500px) {
  footer {
    padding: 30px 0 16px 0;
  }
}
/* =============
   NAVIGATION
   ============= */
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 20px 0 20px 0;
  background: none;
}
.main-nav img {
  width: 54px;
  height: 54px;
  margin-right: 8px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1B2838;
  padding: 8px 13px;
  font-size: 1.08rem;
  border-radius: 10px;
  transition: background .16s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #CBAE5B;
  background: #f8f3e5;
}
@media (max-width: 950px) {
  .main-nav {
    gap: 14px;
    padding: 18px 0 18px 0;
  }
  .main-nav img {
    width: 40px;
    height: 40px;
  }
}
/* Hide nav on mobile */
@media (max-width: 830px) {
  .main-nav {
    display: none;
  }
}
/* =============
   MOBILE MENU
   ============= */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #1B2838;
  background: #F2E9DC;
  border-radius: 7px;
  width: 46px;
  height: 46px;
  border: none;
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 101;
  cursor: pointer;
  transition: background .16s, color .18s;
  box-shadow: 0 2px 10px rgba(27,40,56,.14);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #CBAE5B;
  color: #fff;
}
@media (min-width: 831px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,40,56, 0.93);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #CBAE5B;
  background: transparent;
  border: none;
  margin: 22px 28px 0 0;
  cursor: pointer;
  z-index: 1201;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 46px 38px 0 0;
  width: 100vw;
  align-items: flex-end;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F2E9DC;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: .03em;
  background: none;
  padding: 14px 20px;
  border-radius: 12px;
  transition: background .2s, color .14s;
  min-width: 170px;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #CBAE5B;
  color: #1B2838;
}
@media (max-width: 650px) {
  .mobile-nav {
    padding: 34px 12px 0 0;
    gap: 16px;
  }
  .mobile-nav a {
    font-size: 1.06rem;
    padding: 10px 12px;
    min-width: 120px;
  }
}
/* ==========
   COOKIE BANNER
   =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #fff;
  color: #1B2838;
  box-shadow: 0 -2px 16px rgba(27,40,56,0.10);
  padding: 18px 24px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 3.5px solid #CBAE5B;
  min-height: 92px;
  animation: slideup-banner 0.55s cubic-bezier(.72,0,.26,1);
}
@keyframes slideup-banner {
  from { transform: translateY(150%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1 1 auto;
  font-size: 1.02rem;
  color: #1B2838;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .button, .cookie-banner button {
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-banner .accept {
  background: #CBAE5B;
  color: #fff;
  border: none;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1B2838;
  color: #CBAE5B;
}
.cookie-banner .reject {
  background: #F2E9DC;
  color: #1B2838;
  border: 1px solid #CBAE5B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff5d7;
  color: #93782a;
}
.cookie-banner .settings {
  background: none;
  color: #CBAE5B;
  border: none;
  text-decoration: underline;
  font-weight: 600;
  min-width: unset;
  padding: 0 9px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: #1B2838;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 15px 8px 14px 8px;
    min-height: unset;
  }
  .cookie-banner-actions {
    gap: 10px;
  }
}
/* ==========
   COOKIE MODAL
   ========== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,40,56,0.70);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .41s cubic-bezier(.7,0,.3,1);
}
.cookie-modal-content {
  background: #fff;
  color: #1B2838;
  border-radius: 18px;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 8px 42px rgba(27,40,56,0.20);
  min-width: 310px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popscale .34s cubic-bezier(.62,0,.18,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes popscale {
  from { transform: scale(.90); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.72em;
  color: #CBAE5B;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1B2838;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 16px 0 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F2E9DC;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  accent-color: #CBAE5B;
  width: 20px;
  height: 20px;
}
.cookie-category label {
  font-weight: 500;
  color: #1B2838;
}
.cookie-category.essential {
  font-weight: bold;
  opacity: 0.75;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-actions .button {
  min-width: 130px;
  padding: 10px 22px;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 18px 7vw 18px 7vw;
    min-width: unset;
  }
}
/* ===========
   GOLD ACCENTS
   =========== */
[data-luxury=true], .gold, .gold-accent {
  color: #CBAE5B !important;
}
.border-gold {
  border-color: #CBAE5B !important;
}
.bg-gold {
  background: #CBAE5B !important;
  color: #fff !important;
}
/* subtle gold bar or highlight if required */
.section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: #CBAE5B;
  border-radius: 6px;
  margin-top: 7px;
}
/* ===========
   MISCELLANEOUS
   =========== */
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder          { color: #888; }
:-ms-input-placeholder      { color: #888; }
::placeholder              { color: #888; }
hr {
  border: 0;
  border-top: 1px solid #efebe2;
  margin: 30px 0;
}
/* ===========
   RESPONSIVENESS
   =========== */
@media (max-width: 1200px) {
  .container, footer .content-wrapper {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  .container { padding: 0 6px; }
  .content-wrapper { gap: 14px; }
}

/* ===========
   FORM ELEMENTS (if any later added)
   =========== */
input, textarea, select {
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid #d5d1c5;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  color: #1B2838;
  box-shadow: 0 2px 10px rgba(203,174,91,0.04);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #CBAE5B;
}

/* ===========
   UTILITY CLASSES
   =========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.mt-3 { margin-top: 1.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
/* ===========
   ANIMATIONS
   =========== */
.fade-in {
  opacity: 0;
  animation: fadeIn .5s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* ===========
   SELECTION
   =========== */
::selection {
  background: #CBAE5B;
  color: #fff;
}

/* ===================
   LUXURY DETAILS/TWEAKS
   =================== */
::-webkit-scrollbar { width: 9px; background: #F2E9DC; border-radius: 7px; }
::-webkit-scrollbar-thumb { background: #CBAE5B; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #b39948; }

/* ===========
   ACCESSIBILITY
   =========== */
:focus {
  outline: 2.5px solid #CBAE5B;
  outline-offset: 1px;
}

/* ===========
   TABLES (for legal pages)
   =========== */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin: 24px 0;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(203,174,91,0.06);
}
th, td {
  border: 1px solid #E4DAC3;
  padding: 12px 18px;
  text-align: left;
}
th {
  background: #F2E9DC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
/* END OF LUXURY PREMIUM UI */
