/* ===========================
   RESET & NORMALIZE (Modern)
   =========================== */
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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #15202B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #D4AF37;
  text-decoration: none;
  transition: color .2s;
}
a:focus,
a:hover {
  color: #D4AF37;
  outline: none;
}
ul, ol {
  margin: 0 0 24px 24px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border-radius: 0;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
hr { border: 0; border-top: 1px solid #eee; }

/* ===========================
   BASE STRUCTURE & LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* ===========================
   TYPOGRAPHY SYSTEM
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #15202B;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem; /* 44px */
  line-height: 1.125;
}
h2 {
  font-size: 2rem; /* 32px */
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem; /* 24px */
}
h4 {
  font-size: 1.125rem; /* 18px */
}
p, ul, li, address, span, em, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #15202B;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 12px;
}
p {
  margin-bottom: 14px;
}

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

/* ===========================
   NAVIGATION & HEADER
   =========================== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(21,32,43,0.03);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #eee;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 68px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 10px;
  color: #15202B;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
  display: flex;
  align-items: center;
}
.main-nav a.cta-primary {
  background: #15202B;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(21,32,43,0.05);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #D4AF37;
  color: #15202B;
  box-shadow: 0 2px 12px rgba(212,175,55,0.11);
}
.main-nav a:hover:not(.cta-primary), .main-nav a:focus:not(.cta-primary) {
  color: #D4AF37;
  background: #F5F5F5;
}
.main-nav img {
  height: 34px;
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    gap: 8px;
  }
}

/* --------------------------------------
   MOBILE NAV: HAMBURGER + SLIDE MENU
   -------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 16px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #15202B;
  font-size: 2rem;
  line-height: 1;
  z-index: 301;
  border-radius: 50%;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(21,32,43,0.03);
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F5F5F5;
  color: #D4AF37;
}
.mobile-menu {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(255,255,255);
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.7,0,.3,1), opacity .2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #15202B;
  font-size: 2rem;
  padding: 12px 20px;
  border: none;
  align-self: flex-end;
  margin: 24px 18px 4px 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D4AF37;
  background: #F5F5F5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 10vh;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #15202B;
  padding: 14px 0;
  border-radius: 12px;
  width: 90%;
  transition: color .22s, background .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D4AF37;
  background: #F5F5F5;
}

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

/* ==============================
   HERO AREA & HEADERS
   ============================== */
.hero {
  background: #F5F5F5;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 18px 0 rgba(21,32,43, 0.06);
  margin-bottom: 60px;
  padding: 48px 0 42px 0;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #15202B;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.125rem;
  color: #1d2936;
  max-width: 550px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 22px 22px;
    margin-bottom: 32px;
    padding: 28px 0 22px 0;
  }
  .hero .content-wrapper {
    gap: 10px;
  }
}

/* ==============================
   LAYOUT FLEX CONTAINERS
   ============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(21,32,43,0.09);
  padding: 26px 24px;
  min-width: 250px;
  flex: 1 1 300px;
  transition: box-shadow .23s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 28px rgba(21,32,43,0.12);
  transform: translateY(-2px) scale(1.012);
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(21,32,43,0.07);
  border: 1px solid #eee;
  font-size: 1rem;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .19s;
}
.testimonial-card p {
  color: #15202B;
  font-size: 1rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #D4AF37;
  font-size: 1rem;
}
.testimonial-card span {
  color: #D4AF37;
  font-size: 1.2em;
  letter-spacing: .09em;
  padding-left: 2px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(21,32,43,0.13);
}

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

/* ==============================
   LISTS, ICONS & BADGES
   ============================== */
ul {
  list-style-type: disc;
}
ul li, ol li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.text-section ul {
  margin-bottom: 16px;
}
.text-section img {
  height: 22px;
  width: 22px;
  margin-right: 8px;
  display: inline-block;
}
.map-placeholder {
  background: #F5F5F5;
  border: 1px dashed #D4AF37;
  color: #aaa;
  padding: 38px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ==============================
   BUTTONS & CTA
   ============================== */
.cta-primary,
.cta-secondary,
button.cta-primary,
button.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 12px 32px;
  outline: none;
  border: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.21s;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 1px 8px rgba(21,32,43,0.08);
  margin: 8px 0 8px 0;
}
.cta-primary, button.cta-primary {
  background: #15202B;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus, button.cta-primary:hover, button.cta-primary:focus {
  background: #D4AF37;
  color: #15202B;
  box-shadow: 0 4px 18px 0 rgba(212,175,55, 0.09);
}
.cta-secondary, button.cta-secondary {
  background: #fff;
  color: #15202B;
  border: 1px solid #15202B;
}
.cta-secondary:hover, .cta-secondary:focus, button.cta-secondary:hover, button.cta-secondary:focus {
  background: #D4AF37;
  color: #15202B;
  border-color: #D4AF37;
  box-shadow: 0 4px 18px 0 rgba(212,175,55, .08);
}

@media (max-width: 540px) {
  .cta-primary, .cta-secondary {
    width: 100%;
    min-width: 0;
    padding: 10px 0;
    font-size: 1rem;
  }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #15202B;
  color: #fff;
  padding: 48px 0 28px 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
footer nav, footer address {
  color: #fff;
  font-size: 0.99rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
footer nav a {
  color: #fff;
  text-decoration: underline rgba(255,255,255,0.1) 1px;
  font-weight: 400;
  font-size: 0.99rem;
  margin: 0 3px;
}
footer nav a:hover, footer nav a:focus {
  color: #D4AF37;
  text-decoration-thickness: 2px;
}
footer img {
  margin-bottom: 12px;
  height: 44px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}

/* ===========================
   SECTION SPACING
   =========================== */
section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
  }
}

/* ===========================
   FORMS & FIELDS (generic)
   =========================== */
input, textarea, select {
  padding: 9px 14px;
  border: 1px solid #CDD9E1;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 16px;
  background: #fff;
  transition: border .18s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #D4AF37;
  outline: none;
}
label {
  font-size: 1rem;
  margin-bottom: 6px;
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15202B;
}

/* ==============================
   COOKIE BANNER & PREFERENCES
   ============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 6000;
  background: #fff;
  box-shadow: 0 -2px 18px 0 rgba(21,32,43,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 22px 16px 22px;
  border-top: 1px solid #ECECEC;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: transform .33s cubic-bezier(.7,0,.3,1), opacity .22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner p {
  margin: 0 18px 0 0;
  color: #15202B;
  max-width: 540px;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
  flex-direction: row;
}
.cookie-banner .cookie-btn {
  background: #F5F5F5;
  color: #15202B;
  padding: 10px 18px;
  border-radius: 18px;
  border: 1px solid #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background .18s, color .18s, border-color .18s;
  margin-left: 0;
  cursor: pointer;
}
.cookie-banner .cookie-btn.primary {
  background: #15202B;
  color: #fff;
}
.cookie-banner .cookie-btn.primary:hover, .cookie-banner .cookie-btn.primary:focus {
  background: #D4AF37;
  color: #15202B;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #15202B;
  border: 1px solid #D4AF37;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #F5F5F5;
  color: #D4AF37;
  border: 1px solid #15202B;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #15202B;
  border: 1px solid #15202B;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #D4AF37;
  color: #15202B;
  border: 1px solid #D4AF37;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 17px 8px 12px 8px;
  }
  .cookie-banner p {
    margin: 0 0 10px 0;
  }
}

/* ----- Cookie Preferences Modal ----- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,32,43, 0.32);
  z-index: 6700;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 44px rgba(21,32,43,0.16);
  max-width: 400px;
  min-width: 280px;
  padding: 34px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-popup-in .42s cubic-bezier(.7,0,.3,1);
}
@keyframes cookie-popup-in {
  0% { transform: translateY(70px) scale(.97); opacity: 0; }
  90% { transform: translateY(-6px) scale(1.015); opacity: 1; }
  100% { transform: none; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #15202B;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cookie-modal li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-switch {
  width: 42px;
  height: 22px;
  background: #F5F5F5;
  border-radius: 12px;
  position: relative;
  transition: background .19s;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #D4AF37;
  border-radius: 50%;
  transition: transform .17s, background .2s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  transform: translateX(18px);
  background: #15202B;
}
.cookie-modal .cookie-category {
  font-weight: 600;
  color: #15202B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal .cookie-desc {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #888;
  font-size: 0.98rem;
  margin-left: 8px;
}
.cookie-modal .cookie-close {
  background: transparent;
  color: #15202B;
  font-size: 1.7rem;
  position: absolute;
  top: 18px;
  right: 28px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background .16s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #F5F5F5;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-direction: row;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 10px 18px;
}

/* ==============================
   MICRO-INTERACTIONS & EFFECTS
   ============================== */
.card, .card-container, .testimonial-card,
.cta-primary, .cta-secondary,
.mobile-menu, .cookie-banner, .cookie-modal-content {
  transition-property: box-shadow, background, color, transform, opacity;
  transition-duration: .2s, .23s, .2s, .19s, .22s;
  transition-timing-function: cubic-bezier(.61,.01,.39,1), ease-in, linear, ease, linear;
}

/* ==============================
   UTILITY & MISC
   ============================== */
.text-section {
  margin-bottom: 20px;
}
.text-section a {
  color: #D4AF37;
  text-decoration: underline dotted #D4AF37 1px;
}
.text-section a:hover, .text-section a:focus {
  color: #D4AF37;
  text-decoration: underline solid #D4AF37 1.5px;
}


@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 10px;
  }
}

::-webkit-input-placeholder {color: #aaa;}
::-moz-placeholder {color: #aaa;}
:-ms-input-placeholder {color: #aaa;}
::placeholder {color: #aaa;}


/* ==============================
   CONTRAST & ACCESSIBILITY
   ============================== */
.testimonial-card {
  background: #fff;
  color: #15202B;
  border: 1px solid #eee;
}
.testimonial-card strong {
  color: #D4AF37;
}

/* ==============================
   PRINT (hide nav/banner etc)
   ============================== */
@media print {
  header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  footer { color: #000; background: #fff; border-top: 0; }
}

/* ==============================
   END OF STYLES
   ============================== */