/* RESET & NORMALIZE */
html, body, div, section, article, aside, header, footer, nav, main, p, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, blockquote, pre, figure, hr, fieldset, legend, textarea, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fbfaf8;
  color: #24303c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #325A7A;
  text-decoration: none;
  transition: color .2s;
  word-break: break-word;
}
a:hover,
a:focus {
  color: #F0BF57;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1.5em 1.2em;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #24303c;
}
h1 { font-size: 2.4rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 14px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }

/* FONT IMPORT (OPTIMIZED) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ece9e0;
  box-shadow: 0 4px 14px 0 rgba(50,90,122,0.06);
  z-index: 1020;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  max-height: 38px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
  color: #325A7A;
  position: relative;
  transition: color .2s;
}
nav a:hover,
nav a:focus {
  color: #F0BF57;
}
.cta.primary,
.cta.secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 36px;
  border: none;
  outline: none;
  box-shadow: 0 4px 20px 0 rgba(50,90,122,.09);
  cursor: pointer;
  transition: background .24s, color .16s, box-shadow .22s;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cta.primary {
  background: #325A7A;
  color: #fff;
  border: 2px solid #F0BF57;
  box-shadow: 0 2px 6px 0 rgba(50,90,122,.13);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #F0BF57;
  color: #24303c;
  box-shadow: 0 2px 12px 0 rgba(240,191,87,0.18);
}
.cta.secondary {
  background: #fff6e3;
  color: #325A7A;
  border: 2px solid #325A7A;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #325A7A;
  color: #fff;
}

/* Mobile Navigation (Burger Menu) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #325A7A;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f5e4bb;
  color: #24303c;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(50,90,122,0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(0.7,0,0.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #F0BF57;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 7px;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff6e3;
  color: #325A7A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 56px 24px;
  width: 88vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F0BF57;
}
/* Hide main nav and show burger on mobile */
@media (max-width: 991px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 991px) {
  .cta.primary, .cta.secondary {
    padding: 12px 18vw;
  }
  header .container {
    gap: 10px;
  }
}

/* MAIN & SECTIONS */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 8px 40px 0 rgba(50,90,122,0.09), 0 1.5px 2.5px 0 rgba(240,191,87,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section {
    padding: 28px 2vw;
    border-radius: 12px;
    margin-bottom: 32px;
  }
}

.subheadline {
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #476070;
  margin-bottom: 14px;
}

/* FLEX LAYOUTS - MANDATORY PATTERNS */
.features-grid, .feature-list, .service-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid > div, .service-list > div {
  background: #f5f3f0;
  border-radius: 16px;
  box-shadow: 0 0.5px 3px 0 rgba(50,90,122,0.10);
  padding: 26px 20px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.features-grid img,
.service-list img {
  max-height: 38px;
  margin-bottom: 4px;
}
.features-grid h3,
.service-list strong {
  color: #325A7A;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.features-grid p,
.service-list span {
  color: #4c5d6b;
  font-size: 1rem;
}
.service-list {
  gap: 20px;
  flex-wrap: wrap;
}
.service-list li, .service-list > div {
  margin-bottom: 20px;
}
.service-list span {
  color: #b59134;
  font-weight: 600;
  display: block;
  margin-top: 5px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
ul.service-list {
  flex-direction: column;
  gap: 0;
  padding-left: 0;
}
/* List bullet reset for custom lists */
ul.service-list li {
  list-style-type: none;
  border-bottom: 1px solid #ece9e0;
  padding: 18px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
ul.service-list li span {
  margin-left: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .features-grid, .feature-list, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div, .service-list > div {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(50,90,122,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

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

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px 22px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(50,90,122,.09), 0 1.5px 2.5px 0 rgba(240,191,87,0.05);
  border: 1.5px solid #ECE6D5;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  color: #24303c;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.99rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #325A7A;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-card .stars {
  color: #F0BF57;
  font-size: 1.18rem;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.team-member {
  background: #f9f7f3;
  border-radius: 15px;
  padding: 20px 18px;
  flex: 1 1 190px;
  min-width: 170px;
  max-width: 260px;
  box-shadow: 0 2px 12px 0 rgba(50,90,122,0.08);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.team-member h3 {
  color: #325A7A;
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.team-member p {
  color: #43617b;
  font-size: 1rem;
}
.team-values {
  background: #fff6e3;
  border-radius: 14px;
  padding: 18px 14px;
  flex: 1 1 210px;
  min-width: 160px;
  max-width: 200px;
  box-shadow: 0 1.5px 5px 0 rgba(240,191,87,0.09);
}
.team-values h4 {
  color: #b59134;
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Montserrat';
}
/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ece9e0;
  box-shadow: 0 -2px 16px 0 rgba(50,90,122,0.05);
  font-size: 1rem;
  padding-top: 40px;
  padding-bottom: 22px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo img {
  max-width: 66px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 5px;
}
.footer-nav a {
  color: #325A7A;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .18s;
}
.footer-nav a:hover {
  color: #b59134;
}
.footer-contact {
  color: #58697a;
  font-size: 0.99rem;
  text-align: center;
}
.footer-contact a {
  color: #325A7A;
  text-decoration: underline;
}
.copyright {
  margin-top: 4px;
  color: #bba567;
  font-size: 0.93rem;
}
@media (min-width: 680px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 38px;
    justify-content: space-between;
  }
  .footer-logo, .footer-nav, .footer-contact, .copyright {
    margin-bottom: 0;
  }
}

/* COOKIES CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1600;
  background: #fff7e1;
  border-top: 2.5px solid #F0BF57;
  box-shadow: 0 -3px 32px 0 rgba(50,90,122,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 26px 16px 18px 16px;
  animation: appear-bottom .52s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes appear-bottom { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
.cookie-banner .cookie-text {
  color: #24303c;
  font-size: 1rem;
  max-width: 720px;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  padding: 10px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #F0BF57;
  color: #325A7A;
  background: #fff;
  cursor: pointer;
  transition: background .18s, color .17s, box-shadow .18s;
  margin: 0 3px;
  min-width: 120px;
}
.cookie-banner .accept {
  background: #F0BF57;
  color: #24303c;
  border: 2px solid #F0BF57;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #b59134;
  box-shadow: 0 2px 14px 0 rgba(240,191,87,.15);
}
.cookie-banner .reject {
  border: 2px solid #b59134;
  color: #b59134;
  background: #fff6e3;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: #325A7A;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #325A7A;
  border: 2px solid #325A7A;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #325A7A;
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1700;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 48px 0 rgba(50,90,122,0.25);
  min-width: 330px;
  max-width: 90vw;
  min-height: 230px;
  padding: 32px 24px 26px 24px;
  transform: translate(-50%, -50%) scale(1);
  animation: modal-pop .28s cubic-bezier(.8,-0.2,.56,1.2);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes modal-pop { from { opacity: 0; transform: translate(-50%, -65%) scale(0.82);} to {opacity: 1; transform: translate(-50%,-50%) scale(1);} }
.cookie-modal h3 {
  font-size: 1.19rem;
  color: #24303c;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 14px;
}
.cookie-modal .category-info {
  flex-grow: 1;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  width: 44px;
  height: 25px;
  background: #ece9e0;
  border-radius: 14px;
  position: relative;
  transition: background .16s;
  cursor: pointer;
}
.cookie-modal .toggle-switch[aria-checked="true"] {
  background: #F0BF57;
}
.cookie-modal .toggle-switch::before {
  content: '';
  width: 23px;
  height: 23px;
  background: #fff;
  border-radius: 12px;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left .17s cubic-bezier(.7,0,.45,1.1);
  box-shadow: 0 2px 5px 0 rgba(50,90,122,0.11);
}
.cookie-modal .toggle-switch[aria-checked="true"]::before {
  left: 20px;
}
.cookie-modal .essential {
  opacity: 0.65;
  pointer-events: none;
  filter: grayscale(0.3);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal button {
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  border: 2px solid #F0BF57;
  padding: 10px 22px;
  background: #fff;
  color: #b59134;
  cursor: pointer;
  transition: background .16s, color .16s;
  min-width: 100px;
}
.cookie-modal .confirm {
  background: #F0BF57;
  color: #24303c;
}
.cookie-modal .confirm:hover, .cookie-modal .confirm:focus {
  background: #fff;
  color: #b59134;
}
.cookie-modal .close {
  background: #fff;
  border: 2px solid #b59134;
  color: #325A7A;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #fff6e3;
  color: #b59134;
}

/* Overlay when modal is open */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(50,90,122,0.56);
  z-index: 1650;
  animation: overlay-fade-in .21s;
}
@keyframes overlay-fade-in { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 480px) {
  .cookie-modal { padding: 18px 3vw; min-width: 0; }
}

/* SPACING CONSISTENCY */
section, .card, .testimonial-card, .team-member, .service-list > div {
  margin-bottom: 20px;
}
section + section {
  margin-top: 12px;
}
main > section:last-child {
  margin-bottom: 0;
}

/* BUTTON FOCUS AND MICRO-INTERACTIONS */
button, .cta.primary, .cta.secondary {
  outline: none;
  border: none;
}
button:focus-visible, .cta:focus-visible {
  box-shadow: 0 0 0 3px #F0BF57, 0 2px 8px 0 rgba(240,191,87,0.14);
}

/* MICRO HIGHLIGHT (EXTRA GOLD TOUCHES)*/
.cta.primary:after, .cta.secondary:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cta.primary:hover:after, .cta.secondary:hover:after {
  border-radius: 50%;
  width: 80%;
  height: 2.5px;
  background: #ffd972;
  margin-top: 7px;
  transition: width .22s;
}

/* TABLES (CONTRAST FOR DATA SECTIONS if present) */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
  font-size: 1rem;
}
td, th {
  padding: 10px 8px;
  border-bottom: 1px solid #ece9e0;
}
th {
  background: #f5f3f0;
  color: #325A7A;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.09rem; }
  h4 { font-size: 1rem; }
  .container, .content-wrapper {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  footer {
    padding-top: 30px;
    padding-bottom: 14px;
  }
}
@media (max-width: 480px) {
  .container, .content-wrapper {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  section {
    padding: 14px 2vw;
  }
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }

/* ICONS INSIDE P, ADDRESS, ETC. */
.text-section img {
  height: 1.3em;
  width: auto;
  vertical-align: middle;
  margin-right: 7px;
}

/* MISC: NO ABSOLUTE FOR CONTENT (Only Decorative) */
/* All spacing enforced via flex, margin, gap above */


/* LUXURY MICRO-DETAILS (REFINED GOLD LINES) */
@media (min-width: 801px) {
  .content-wrapper h2 {
    position: relative;
    padding-bottom: 7px;
  }
  .content-wrapper h2:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 2.5px;
    background: linear-gradient(90deg,#F0BF57,#dfbe7e 80%);
    border-radius: 2px;
  }
}

/* SCROLLBAR (PREMIUM - GOLD ACCENT) */
::-webkit-scrollbar { width: 13px; background: #f7f4ed; }
::-webkit-scrollbar-thumb { background: #f3dca2; border-radius: 24px; border: 3px solid #ede1bc; box-shadow: 0 2px 8px 0 #eed09315; }
::-webkit-scrollbar-thumb:hover { background: #F0BF57; }

/* PRINT OPTIMIZATION */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section {
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
    background: #fff !important;
  }
}

/* END OF CSS */
