/* ========================================================================
   CSS RESET & BASELINE 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,
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;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F4F6F8;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #263442;
  background: #F4F6F8;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #163246;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E8B124;
  outline: none;
}
ul, ol {
  padding-left: 20px;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}

/* ========================================================================
   BRAND TYPOGRAPHY
   ======================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #163246;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}

p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #263442;
}

/* Smaller text in certain sections */
.text-section p,
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .section { padding: 30px 8px; }
}

/* ========================================================================
   BRAND COLORS
   ======================================================================== */
:root {
  --brand-primary: #163246;
  --brand-secondary: #E8B124;
  --brand-accent: #F4F6F8;
  --brand-dark: #111c25;
  --brand-border: #E0E3E8;
  --brand-shadow: rgba(22,50,70,0.06);
}

/* ========================================================================
   CONTAINER & LAYOUT
   ======================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 20px;
}

/* SPACING & FLEX PATTERNS ---------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  border: 1px solid var(--brand-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.26s, border-color 0.26s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(22,50,70,0.11);
  border-color: var(--brand-secondary);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(22,50,70,0.11);
  border: 1px solid #e8e9ef;
  margin-bottom: 20px;
  flex: 1 1 250px;
  min-width: 260px;
  transition: box-shadow 0.23s, border-color 0.2s;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #263442;
}
.testimonial-card:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 3px 16px rgba(22,50,70,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .service-list,
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========================================================================
   HEADER & NAVIGATION (including burger menu)
   ======================================================================== */
header {
  background: #fff;
  border-bottom: 1.5px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.logo img {
  max-height: 46px;
  width: auto;
  display: block;
  transition: filter 0.18s;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #163246;
  padding: 7px 2px;
  border-radius: 6px;
  position: relative;
  transition: color 0.14s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f6edd6;
  color: #E8B124;
}
.cta-btn {
  display: inline-block;
  background: #E8B124;
  color: #163246;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  letter-spacing: 0.02em;
  padding: 10px 32px;
  border-radius: 999px;
  box-shadow: 0 2px 10px 0 rgba(232,177,36,0.11);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #163246;
  color: #E8B124;
  box-shadow: 0 6px 18px 0 rgba(22,50,70,0.11);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #163246;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  z-index: 25;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #E8B124;
  outline: none;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,24,32,0.92);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.52,1.37,.45,.94);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(.52,1.37,.45,.94);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #E8B124;
  margin: 30px 30px 0 0;
  padding: 12px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 50px 0 0 30px;
  gap: 24px;
  width: 80vw;
  max-width: 340px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  padding: 15px 0 15px 10px;
  border-radius: 7px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E8B124;
  background: #26344211;
  outline: none;
}
@media (max-width: 1100px) {
  header .main-nav {
    gap: 14px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  header .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
    max-width: 100vw;
    min-width: 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    padding: 9px 22px;
    font-size: 1rem;
  }
}

/* ========================================================================
   HERO/INTRO SECTIONS
   ======================================================================== */
.hero {
  background: linear-gradient(90deg, #fff 60%, #FEFAEB 100%);
  padding: 60px 0;
  margin-bottom: 50px;
  border-bottom: 1.5px solid #e7e7ea;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #163246;
  font-size: 2.7rem;
  line-height: 1.18;
}
.hero p {
  color: #222c36;
  font-size: 1.19rem;
  max-width: 600px;
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero { padding: 36px 0; }
  .hero h1 { font-size: 1.5rem; }
}

/* ========================================================================
   BENEFITS, FEATURES, GRID & LIST SECTIONS
   ======================================================================== */
.feature-grid, .service-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  flex: 1 1 180px;
  min-width: 220px;
  background: #fff;
  border: 1.5px solid #EEE6C9;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(22,50,70,.04);
  padding: 28px 20px 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.23s, border-color 0.17s;
}
.feature img {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 3px 0 #F6EDD6);
}
.feature h3 {
  font-size: 1.22rem;
  color: #163246;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.feature p {
  color: #2e3943;
  font-size: 0.987rem;
}
.feature:hover, .feature:focus-within {
  border-color: #E8B124;
  box-shadow: 0 6px 22px 0 rgba(232,177,36,0.09), 0 1.5px 4px #f3e2b9;
}

.service-list {
  gap: 22px 24px;
  flex-wrap: wrap;
}
.service {
  flex: 1 1 240px;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #EEE6C9;
  box-shadow: 0 1px 6px 0 rgba(22,50,70,0.045);
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.16s;
}
.service h3 {
  color: #163246;
  font-size: 1.11rem;
}
.service p {
  font-size: 0.99rem;
  color: #2e3943;
}
.service strong {
  color: #E8B124;
  font-size: 1.05em;
  margin-left: 2px;
}
.service:hover, .service:focus-within {
  border-color: #E8B124;
  box-shadow: 0 7px 27px 0 rgba(232,177,36,0.17);
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .service, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
  background: #FAFAF6;
  padding-top: 38px;
  padding-bottom: 38px;
  border-radius: 24px;
  margin-bottom: 60px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: #fff;
  color: #163246;
  border: 1.2px solid #E0E3E8;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(22,50,70,0.11);
  padding: 26px 22px 22px 22px;
  min-width: 230px;
  flex: 1 1 270px;
  position: relative;
  transition: box-shadow 0.28s, border-color 0.19s;
}
.testimonial-card p {
  color: #202b33;
  font-size: 1.09rem;
  margin-bottom: 16px;
}
.testimonial-card span {
  color: #163246;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 19px 0 rgba(22,50,70,0.18);
  border-color: #E8B124;
}

/* ========================================================================
   CONTACT & LOCATION
   ======================================================================== */
.contact-location {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(22,50,70,0.08);
  margin-bottom: 70px;
  padding: 42px 0;
}
.contact-location .content-wrapper {
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.contact-location .text-section {
  min-width: 250px;
  flex: 1 1 260px;
}
@media (max-width: 900px) {
  .contact-location .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ========================================================================
   FOOTER
   ======================================================================== */
footer {
  background: #163246;
  color: #fff;
  padding: 36px 0 20px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  color: #E8B124;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 4px;
  padding: 4px 12px;
  transition: background 0.18s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #163246;
  background: #E8B124;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-branding img {
  height: 33px;
  width: auto;
}
.footer-branding span {
  font-size: 1rem;
  color: #f5f5c3;
}
@media (max-width: 700px) {
  .footer-nav, .footer-branding {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 0;
    text-align: center;
  }
  .footer-branding img {
    margin: 0 auto;
  }
}

/* ========================================================================
   COOKIE CONSENT BANNER + PREFERENCES MODAL
   ======================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #163246;
  box-shadow: 0 -3px 28px 0 rgba(22,50,70,0.10);
  border-top: 2px solid #EEE6C9;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  padding: 28px 8vw 18px 8vw;
  z-index: 2000;
  transition: transform 0.33s cubic-bezier(.67,1.42,.29,.83), opacity 0.23s;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__msg {
  max-width: 480px;
  font-size: 1rem;
  color: #163246;
  margin-right: 18px;
}
.cookie-banner .cookie-btn {
  display: inline-block;
  border: none;
  background: #E8B124;
  color: #163246;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 99px;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.2s;
  box-shadow: 0 1px 8px 0 rgba(232,177,36,0.15);
}
.cookie-banner .cookie-btn.settings {
  background: #163246;
  color: #E8B124;
  border: 1px solid #E8B124;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus,
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #111c25;
  color: #FFF5D7;
  outline: none;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 14px 14px 14px;
  }
  .cookie-banner__msg {
    margin-right: 0;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(16,24,32,0.56);
  z-index: 2100;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  padding: 32px 26px 28px 26px;
  box-shadow: 0 8px 38px 0 rgba(22,50,70,0.20);
  min-width: 320px;
  max-width: 96vw;
  color: #163246;
  animation: cookieModalIn 0.35s cubic-bezier(.36,1.28,.41,.98);
}
@keyframes cookieModalIn {
  0% { transform: scale(.93) translateY(33px); opacity: 0.3; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #163246;
  margin-bottom: 18px;
  font-size: 1.24rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category input[type='checkbox'] {
  width: 21px;
  height: 21px;
  accent-color: #E8B124;
  margin: 0;
}
.cookie-category-label {
  flex: 1;
  font-size: 1.09rem;
  color: #163246;
}
.cookie-modal-controls {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 8px 18px;
}
.cookie-modal .cookie-btn.settings {
  background: #163246;
  color: #E8B124;
  border: 1px solid #E8B124;
}
.cookie-modal-close {
  position: absolute;
  top: 23px;
  right: 27px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #E8B124;
  cursor: pointer;
}
@media (max-width: 700px) {
  .cookie-modal {
    min-width: 0;
    padding: 22px 7vw 20px 7vw;
  }
}

/* ========================================================================
   UTILITIES & MICRO INTERACTIONS
   ======================================================================== */
.shadow-gold {
  box-shadow: 0 2px 32px rgba(232,177,36,0.13);
}
.gold-accent {
  color: #E8B124 !important;
}
.text-shadow-gold {
  text-shadow: 0 1px 6px #E8B12444;
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (max-width: 484px) {
  .footer-branding span, .footer-nav a, .main-nav a, .service h3, .feature h3, .testimonial-card span {
    font-size: 0.92rem !important;
  }
  .container { padding: 2vw; }
}

/* ========================================================================
   LUXURY/PREMIUM MICRO DETAILS
   ======================================================================== */
::-webkit-scrollbar {
  width: 11px;
  background: #f9f8f2;
}
::-webkit-scrollbar-thumb {
  background: #E8B124;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D3A212;
}

/* Accent border under headings */
h2, .section > h1 {
  position: relative;
  padding-bottom: 6px;
}
h2:after, .section > h1:after {
  content: '';
  display: block;
  margin: 13px 0 0 0;
  width: 44px;
  height: 3.5px;
  border-radius: 2px;
  background: #E8B124;
  opacity: 0.55;
}

/* Cards subtle hover animation */
.card, .feature, .service, .testimonial-card {
  will-change: box-shadow, border-color, transform;
  transition: box-shadow 0.24s, border 0.17s, transform 0.19s;
}
.card:active, .feature:active, .service:active, .testimonial-card:active {
  transform: translateY(2px) scale(.995);
}

/* Button outline for accessibility */
.cta-btn:focus, .cookie-btn:focus, .main-nav a:focus, .footer-nav a:focus {
  outline: 2.2px solid #E8B124;
  outline-offset: 2px;
}

/* ========================================================================
   RESPONSIVE UTILITIES
   ======================================================================== */
@media (max-width: 800px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.14rem; }
  .section { padding: 24px 6px; }
  .testimonial-card, .feature, .service {
    padding: 16px 10px 16px 14px;
  }
}
@media (max-width: 520px) {
  .footer-nav {
    gap: 10px;
  }
  .testimonial-card, .feature, .service {
    font-size: 0.98rem;
    min-width: 0;
    padding: 13px 6px;
  }
}

/* ========================================================================
   GENERAL - LISTS, FORMS, ETC.
   ======================================================================== */
ul, ol {
  margin-bottom: 14px;
}
ul li, ol li {
  margin-bottom: 7px;
  font-size: 1rem;
}
li strong {
  color: #163246;
  font-weight: 700;
}
/* Inputs, if any (not visible on current HTML) */
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
}

/* ========================================================================
   END OF STYLE.CSS
   ======================================================================== */
