/* ============================
   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;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #212529;
  background: #fff;
  min-height: 100vh;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

:focus {
  outline: 2px solid #C7A756;
  outline-offset: 2px;
}

/* ============================
   BRAND COLORS AND FONTS
============================ */
:root {
  --color-primary: #28374C;
  --color-secondary: #EFEFEF;
  --color-background: #fff;
  --color-accent: #169265;
  --color-gold: #C7A756;
  --color-premium-dark: #1a2233;
  --color-premium-muted: #F5F6F9;
  --color-premium-medium: #6B7586;
  --color-shadow: rgba(40, 55, 76, 0.09);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* ============================
   GENERAL LUXURY PREMIUM STYLE
============================ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1240px;
  box-sizing: border-box;
}

section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: var(--color-background);
}

@media (max-width: 768px) {
  section { 
    padding: 32px 0 32px 0;
    margin-bottom: 40px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

body {
  background: var(--color-background);
  font-family: var(--font-body);
  color: #222A37;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p, ul, ol { font-size: 1rem; color: #222A37; margin-bottom: 12px; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
strong { font-weight: bold; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.125rem; }
}

blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 20px;
  font-size: 1.14rem;
  font-style: italic;
  color: var(--color-premium-medium);
  margin-bottom: 10px;
}

/* Accent Underline for Luxury */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 2px;
  margin-top: 10px;
}

/* ============================
   NAVIGATION/HEADER
============================ */
header {
  background: var(--color-background);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header img {
  height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}
.main-nav a {
  color: var(--color-premium-dark);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.main-nav .btn-primary {
  margin-left: 16px;
}

/* ============================
   BUTTONS
============================ */
.btn-primary {
  background: linear-gradient(90deg, var(--color-gold) 70%, #F4E2C2 100%);
  color: var(--color-primary);
  font-family: var(--font-display);
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  transition: background 0.25s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
  margin-top: 16px;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #DAC16B 60%, var(--color-gold) 100%);
  color: var(--color-premium-dark);
  box-shadow: 0 4px 24px 0 var(--color-shadow);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 28px;
  padding: 10px 26px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}

/* Filter/Option Buttons */
.filter-options {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.filter-options span {
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--color-premium-medium);
}
.filter-options button {
  background: var(--color-premium-muted);
  color: var(--color-primary);
  border: 1px solid var(--color-premium-medium);
  border-radius: 24px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 400;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-right: 2px;
}
.filter-options button:hover, .filter-options button:focus {
  background: var(--color-gold);
  color: var(--color-premium-dark);
  border-color: var(--color-gold);
}

/* ============================
   FLEXBOX CONTENT LAYOUTS
============================ */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .content-wrapper,
  .text-section {
    gap: 18px;
  }
}

/* ==============
 * FLEX LAYOUTS
 * ============== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-background);
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.16s;
  border: 1px solid #f4f4f4;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 var(--color-shadow);
  transform: translateY(-4px) scale(1.012);
  border-color: var(--color-gold);
}

.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;
    align-items: flex-start;
    gap: 16px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-premium-muted);
  border-left: 5px solid var(--color-gold);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 20px 32px;
  margin-bottom: 20px;
  max-width: 620px;
  transition: box-shadow 0.22s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px 0 var(--color-shadow);
  transform: translateY(-2px);
}
.testimonial-card blockquote {
  color: #212529;
  font-size: 1.12rem;
  font-style: italic;
  border-left: none;
  padding-left: 0;
  margin-bottom: 6px;
}
.testimonial-person {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-background);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  border-left: 4px solid var(--color-gold);
  transition: box-shadow 0.21s, border 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 0 var(--color-shadow);
  border-left: 4px solid var(--color-accent);
}
.feature-item img {
  width: 34px;
  height: 34px;
  margin-bottom: 0;
}

.partner-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  margin: 32px 0 0 0;
}
.partner-logos img {
  height: 38px;
  opacity: 0.8;
  filter: grayscale(60%);
  transition: filter 0.2s, opacity 0.2s;
}
.partner-logos img:hover, .partner-logos img:focus {
  opacity: 1;
  filter: none;
}

@media (max-width: 1050px) {
  .feature-grid, .partner-logos, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}

.article-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-article-preview {
  background: var(--color-background);
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  flex: 1 1 260px;
  min-width: 260px;
  padding: 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #f6f6f6;
  transition: box-shadow 0.13s, border 0.13s;
}
.blog-article-preview a {
  color: var(--color-accent);
  font-weight: 500;
  transition: color 0.17s;
}
.blog-article-preview a:hover, .blog-article-preview a:focus {
  color: var(--color-gold);
}
.blog-article-preview:hover, .blog-article-preview:focus-within {
  box-shadow: 0 8px 36px 0 var(--color-shadow);
  border: 1px solid var(--color-gold);
}

/* ==============
 * TEAM / BIO
 * ==============
 */
.team-bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-member {
  background: var(--color-premium-muted);
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 var(--color-shadow);
  flex: 1 1 200px;
  min-width: 200px;
  padding: 18px 16px;
  margin-bottom: 0;
  border-left: 4px solid var(--color-gold);
  transition: box-shadow 0.13s, border 0.13s;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 8px 28px 0 var(--color-shadow);
  border-left: 4px solid var(--color-accent);
}
@media (max-width: 900px) {
  .team-bio-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* Map Placeholder Styling */
.map-placeholder {
  background: var(--color-premium-muted);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px 14px 12px;
  gap: 12px;
  min-width: 220px;
  font-size: 0.98rem;
  border-left: 4px solid var(--color-gold);
}

/* ==============
 * FOOTER
 * ==============
 */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 48px;
}
footer .container {
  padding-top: 40px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 20px;
}
.footer-main img {
  height: 38px;
}
.footer-nav,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  margin-top: 6px;
}
.footer-nav a,
.footer-links a,
.footer-legal a {
  color: #fff;
  font-family: var(--font-body);
  opacity: 0.92;
  transition: color 0.14s, opacity 0.16s;
}
.footer-nav a:hover, .footer-links a:hover, .footer-legal a:hover {
  color: var(--color-gold);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  font-size: 1rem;
  margin-top: 2px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
}
.footer-contact img {
  height: 22px;
  filter: grayscale(75%) brightness(1.35);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.footer-social img {
  height: 28px;
  transition: filter 0.15s, transform 0.2s;
  filter: grayscale(70%) brightness(2.2);
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  transform: scale(1.12) rotate(-4deg);
}
.footer-legal {
  margin-top: 18px;
  font-size: 0.96rem;
  opacity: 0.7;
}
.footer-legal a {
  color: #fff;
  transition: color 0.15s;
  opacity: 0.7;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--color-gold);
  opacity: 1;
}
@media (max-width: 820px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-contact { 
    gap: 18px;
    font-size: 0.98rem;
  }
}

/* ===============
   MOBILE NAVIGATION
================ */
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: var(--color-primary);
  background: var(--color-premium-muted);
  border-radius: 50%;
  border: 1px solid #ddd;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.16s, background 0.2s;
  z-index: 1090;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-gold);
  color: var(--color-premium-dark);
  box-shadow: 0 3px 16px 0 var(--color-shadow);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,55,76, 0.93);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.76,0.02,0.32,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  margin: 18px 28px 8px 0;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  gap: 24px;
  align-items: center;
  background: none;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.36rem;
  padding: 10px 0;
  width: 90vw;
  text-align: left;
  border-radius: 4px;
  transition: background 0.13s, color 0.14s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold);
  color: var(--color-premium-dark);
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============
   COOKIE BANNER & MODAL
================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: var(--color-premium-dark);
  color: #fff;
  box-shadow: 0 -4px 32px 0 var(--color-shadow);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 28px 24px 28px 24px;
  gap: 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  animation: fadeInBanner 1s;
}
@keyframes fadeInBanner {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 120px;
  padding: 10px 18px;
  border-radius: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  transition: background 0.17s, color 0.16s;
}
.cookie-banner .btn-accept {
  background: var(--color-gold);
  color: var(--color-premium-dark);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #FFEAA3;
  color: var(--color-primary);
}
.cookie-banner .btn-reject {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: var(--color-gold);
  color: var(--color-premium-dark);
}
.cookie-banner .btn-settings {
  background: var(--color-premium-medium);
  color: #fff;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--color-gold);
  color: var(--color-premium-dark);
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,55,76,0.34);
  z-index: 3999;
  pointer-events: all;
  animation: fadeInBackdrop 0.3s;
}
@keyframes fadeInBackdrop {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: var(--color-premium-dark);
  border-radius: 18px;
  box-shadow: 0 10px 48px 0 var(--color-shadow);
  z-index: 4000;
  width: 94vw;
  max-width: 410px;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: translate(-50%, -36%) scale(0.93); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-modal .category-label {
  font-weight: 500;
}
.cookie-modal .category-toggle input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 20px;
  height: 20px;
  margin-right: 2px;
}
.cookie-modal .always-enabled {
  font-style: italic;
  color: var(--color-premium-medium);
  font-size: 0.97em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-actions button {
  min-width: 110px;
  padding: 9px 16px;
}
.cookie-modal .btn-accept {
  background: var(--color-gold);
  color: var(--color-premium-dark);
}
.cookie-modal .btn-cancel {
  background: var(--color-premium-medium);
  color: #fff;
}
.cookie-modal .btn-accept:hover { background: #FFEAA3; color: var(--color-primary); }
.cookie-modal .btn-cancel:hover { background: var(--color-gold); color: var(--color-premium-dark); }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
  }
  .cookie-modal {
    width: 98vw;
    min-width: 0;
    padding: 22px 8px 18px 8px;
  }
}

/* ============================
   LUXURY MICRO-INTERACTIONS
============================ */
.card, .feature-item, .team-member, .testimonial-card, .blog-article-preview {
  transition: box-shadow 0.21s, transform 0.15s, border 0.17s;
}
.card:hover, .feature-item:hover, .team-member:hover, .testimonial-card:hover, .blog-article-preview:hover {
  box-shadow: 0 8px 36px 0 var(--color-shadow);
  transform: translateY(-2px) scale(1.013);
  border-color: var(--color-gold);
}

.btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.22s, color 0.18s, box-shadow 0.17s, transform 0.16s;
}
.btn-primary:active, .btn-secondary:active,
.cookie-banner button:active, .cookie-modal-actions button:active {
  transform: scale(0.98);
}

a, .mobile-nav a, .main-nav a {
  transition: color 0.2s, border-bottom 0.2s, background 0.16s;
}

/* ============================
   MISC SPACING
============================ */
ul, ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.4;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}
ul li img {
  vertical-align: middle;
  margin-right: 8px;
  height: 24px;
}

/* ===============================
   MISC
=============================== */
::-webkit-scrollbar {
  width: 10px;
  background: #F7F7FC;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 12px;
}

/* Utility classes */
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Hide visually */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ============================
   END
============================ */
