/* ================== 
   RESET & NORMALIZE  
   ================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F5F6FA;
  color: #222639;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #222639;
  text-decoration: none;
  transition: color 0.3s;
}
a:focus {
  outline: 2px solid #E7A922;
}

ul, ol {
  list-style: none;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}
hr {
  border: 0;
  height: 1px;
  background: #e7e8ef;
  margin: 24px 0;
}

/* ========================
   CUSTOM FONTS & HEADINGS
   ======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Lato:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  color: #222639;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem;
}
h5, h6 {
  font-size: 1rem;
}
p, li, address, span, blockquote {
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #303242;
}
strong {
  font-weight: 700;
  color: #222639;
}
em {
  color: #E7A922;
}

blockquote {
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-style: italic;
  border-left: 3px solid #E7A922;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #222639;
}

/* ===============
   LAYOUT & SPACING
   =============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(34,38,57,0.09);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 16px;
}
.map-placeholder {
  margin-top: 12px;
  font-style: italic;
  color: #61657A;
}

/* ================================
   FLEX LAYOUTS (MANDATORY PATTERNS)
   ================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(34,38,57,0.08);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f9f8f6;
  border-radius: 18px;
  box-shadow: 0 3px 20px rgba(34,38,57,0.08);
  margin-bottom: 20px;
  border: 1px solid #ede7db;
  transition: box-shadow 0.24s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(34,38,57,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================= 
   HEADER & NAVBAR
   ================= */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,38,57,0.06);
  position: sticky;
  z-index: 60;
  top: 0;
  width: 100%;
  min-height: 68px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
header img {
  height: 44px;
  filter: drop-shadow(0 2px 3px rgba(34,38,57,0.06));
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #222639;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.18s;
  padding: 3px 2px;
  border-radius: 6px;
}
nav a:hover, nav a.active {
  color: #E7A922;
}
.cta-btn {
  border-radius: 6px;
  padding: 11px 26px;
  background: #E7A922;
  color: #222639;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  box-shadow: 0 1px 12px rgba(231,169,34,0.08);
  text-transform: uppercase;
  border: none;
  transition: background 0.14s, color 0.13s, box-shadow 0.18s, transform 0.12s;
  margin-left: 24px;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #222639;
  color: #E7A922;
  box-shadow: 0 4px 22px 1px rgba(34,38,57,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE HEADER */
.mobile-menu-toggle {
  display: none;
  background: #E7A922;
  color: #222639;
  font-size: 2.2rem;
  border-radius: 8px;
  border: none;
  padding: 4px 16px 7px 16px;
  margin-left: 18px;
  transition: background 0.15s;
  position: relative;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #222639;
}

/* =====================
   MOBILE SLIDE MENU
   ===================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 82vw;
  max-width: 360px;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.48,.2,0,1.06);
  z-index: 9999;
  box-shadow: 2px 0 20px rgba(34,38,57,0.09);
  padding-top: 0;
  border-right: 1px solid #e3dac2;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: 8px 2px 42px 2px rgba(34,38,57,0.19);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 18px 4px 0;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #222639;
  padding: 0 6px 0 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: #E7A922;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 38px 32px 0 36px;
}
.mobile-nav a {
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #222639;
  background: none;
  padding: 14px 0 7px 0;
  border-bottom: 1px solid #f2f1ee;
  border-radius: 0;
  transition: color 0.2s, background 0.17s;
}
.mobile-nav a:hover {
  color: #E7A922;
  background: #faf6ee;
}
@media (max-width: 900px) {
  nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===================== 
   MAIN CONTENT STYLING
   ===================== */
main {
  width: 100%;
  min-height: calc(100vh - 225px);
  margin-top: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(34,38,57,0.09);
}
.content-wrapper {
  gap: 24px;
  align-items: flex-start;
}

ul li {
  margin-bottom: 14px;
  color: #303242;
  padding-left: 16px;
  position: relative;
}
ul li:before {
  content: '';
  width: 7px;
  height: 7px;
  background: #E7A922;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
ul li:last-child { margin-bottom: 0; }

/* Highlighted labels/filters */
strong, .filter-label {
  color: #E7A922;
  font-weight: 700;
}

/* =======================
   CARDS AND FEATURES
   ======================= */
.card {
  padding: 30px 26px;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(34,38,57,0.07);
  background: #fff;
  border: 1px solid #efe7ce;
  min-width: 240px;
  max-width: 390px;
  transition: box-shadow 0.19s, border 0.19s;
}
.card:hover {
  box-shadow: 0 10px 42px rgba(231,169,34,0.15), 0 8px 32px rgba(34,38,57,0.09);
  border: 1px solid #E7A922;
}
/* Features list styling */
.feature-item {
  padding: 24px 16px;
  background: #f9f9f6;
  border: 1px solid #f0e7cf;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(34,38,57,0.06);
  margin-bottom: 16px;
}

/* Testimonials */
.testimonial-card {
  background: #fcf8eb;
  border-left: 3px solid #E7A922;
  color: #222639;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(34,38,57,0.07);
  border-radius: 16px;
}
.testimonial-card blockquote {
  color: #222639;
  font-size: 1.11rem;
  margin-bottom: 0;
  border: none;
  padding-left: 0;
}
.testimonial-card span {
  color: #61657A;
  font-size: 0.98rem;
}
.testimonial-card div {
  color: #E7A922;
  font-size: 1.24rem;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', serif;
}

/* ====================
   FOOTER STYLES
   ==================== */
footer {
  background: #fcfbfa;
  border-top: 1px solid #e2dec8;
  padding: 40px 0 0 0;
  margin-top: 40px;
  width: 100%;
}
footer .container {
  flex-direction: column;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 16px;
  justify-content: space-between;
}
footer img {
  width: 48px;
  margin-bottom: 10px;
}
footer address {
  font-style: normal;
  font-family: 'Lato', Arial, sans-serif;
  color: #303242;
  line-height: 1.7;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #61657A;
  font-size: 0.98rem;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #E7A922;
}
footer p, footer span {
  font-size: 0.96rem;
  color: #808399;
}
footer a {
  word-break: break-all;
}

/* ============================
   RESPONSIVE: MOBILE FIRST
   ============================ */
html { font-size: 16px; }
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section {
    margin-bottom: 36px;
    padding: 22px 9px;
    border-radius: 10px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .testimonial-card, .card, .feature-item {
    padding: 12px 10px 14px 14px;
    border-radius: 10px;
  }
  .card {
    max-width: 100%;
    min-width: 0;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    padding-bottom: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.09rem; }
  .section { padding: 12px 2vw; }
  .container { padding: 0 2vw; }
}

/* ======= BUTTONS/HOVERS ======= */
button, .cta-btn, .cookie-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* ======= FORMS & MAPS ======= */
input, textarea, select {
  background: #f5f6fa;
  border: 1px solid #E7A922;
  border-radius: 5px;
  padding: 9px 13px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #2e2739;
  transition: border 0.17s;
  width: 100%;
  max-width: 330px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #222639;
}
label {
  font-weight: 500;
  color: #222639;
  font-size: 1.03rem;
  margin-bottom: 5px;
}

/* ===============
   MICRO-DETAILS
   =============== */
::-webkit-scrollbar { width: 9px; background: #f4f4f4; }
::-webkit-scrollbar-thumb { background: #e7a92275; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #E7A922; }

/* GOLDED ACCENT DETAILS */
hr, .decor-line {
  background: #E7A922;
  height: 3px;
  border: none;
  width: 34px;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ===============
   ANIMATIONS
   =============== */
.cta-btn, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.19s, transform 0.16s;
}
.cta-btn:active {
  transform: scale(0.97);
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbea;
  color: #222639;
  border-top: 2px solid #E7A922;
  padding: 20px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 -6px 24px rgba(34,38,57,0.11);
  z-index: 99998;
  gap: 24px;
}
.cookie-banner .cookie-text {
  font-size: 1.03rem;
  flex: 1;
  font-family: 'Lato', Arial, sans-serif;
  color: #222639;
}
.cookie-btn {
  background: #E7A922;
  color: #222639;
  border-radius: 4px;
  border: none;
  margin-left: 12px;
  padding: 9px 22px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.14s, color 0.13s;
  box-shadow: 0 2px 12px rgba(231,169,34,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #222639;
  color: #E7A922;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #E7A922;
  border-radius: 4px;
  border: 1px solid #E7A922;
  margin-left: 12px;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.13s, color 0.14s;
  box-shadow: none;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #e7a92213;
  color: #222639;
}
.cookie-banner .cookie-btn:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.96rem;
    padding: 16px 6px 14px 9px;
  }
  .cookie-btn, .cookie-settings-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 96%;
    min-width: unset;
    text-align: center;
  }
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,38,57,0.35);
  z-index: 99999;
  animation: fadein 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* COOKIE MODAL */
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 70px 13px rgba(34,38,57,0.22);
  max-width: 96vw;
  width: 400px;
  padding: 34px 30px 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideup 0.3s;
}
.cookie-modal h3 {
  font-size: 1.37rem;
  color: #222639;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal label, .cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.04rem;
  color: #222639;
}
.cookie-modal .essential {
  color: #808399;
  font-size: 0.98rem;
}
.cookie-modal .category-toggle {
  width: 34px;
  height: 18px;
  border-radius: 14px;
  background: #222639;
  position: relative;
  transition: background 0.14s;
  margin-right: 8px;
  border: 1px solid #ede7db;
}
.cookie-modal .category-toggle input[type=checkbox] {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E7A922;
  transition: left 0.19s cubic-bezier(.51,.71,.41,1.01);
}
.cookie-modal .category-toggle input:checked + .slider {
  left: 16px;
  background: #222639;
}
.cookie-modal .category-toggle input:checked + .slider {
  background: #222639;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #222639;
  padding: 0 6px;
  transition: color 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: #E7A922;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .cookie-btn {
  min-width: 78px;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideup {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ================================
   VISUAL HIERARCHY AND DETAILS
   ================================ */
.accent {
  color: #E7A922;
}
.gold-text {
  color: #E7A922; font-weight: 700;
}
.gold-border {
  border-color: #E7A922 !important;
}

/* ===============
   MISC UTILITIES
   =============== */
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; letter-spacing: 0.02em; }
.mt-32 { margin-top: 32px; }
.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.pb-32 { padding-bottom: 32px; }
.pt-16 { padding-top: 16px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ================
   ACCESSIBILITY
   ================ */
:focus-visible {
  outline: 2px solid #E7A922 !important;
  outline-offset: 2px;
}

/* ===================
   NO GRID ALLOWED!!
   =================== */
/* NO display: grid, column-count, grid-*, or columns! (Checked */

/* Hide elements visually but keep accessible */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============
   PRINT/SELECTION
   ============ */
::selection {
  background: #E7A92212;
  color: #222639;
}

/* ================
   FINAL CHECKS
   ================ */
/* No grid, no absolute for cards, all spacing by margin/gap/padding, mobile-ready, luxury style applied */
