/* ------------------- CSS RESET & NORMALIZE (simplified) ------------------- */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #17202A;
  background: #F5F5F5;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #BFA669;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus, a:hover {
  color: #17202A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 2em;
}

/* ------------------- BRAND TYPOGRAPHY ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #17202A;
}

h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h3 { font-size: 1.3rem; line-height: 1.25; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p, ul li, ol li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #17202A;
  font-size: 16px;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
  font-family: inherit;
}

/* ------------------- GEOMETRIC/STRUCTURED GENERAL LAYOUT ------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(23,32,42,0.07);
}

/* -------- HEADER & NAVIGATION -------- */
header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(23,32,42,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  justify-content: space-between;
  align-items: center;
  display: flex;
  min-height: 70px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
  margin-right: 24px;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  align-items: center;
  font-weight: 600;
}
.main-nav a {
  color: #17202A;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a:hover, .main-nav a:focus {
  color: #BFA669;
  background: #F5F5F5;
  text-decoration: none;
}

.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #BFA669;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 12px;
  padding: 12px 32px;
  margin-left: 16px;
  box-shadow: 0 2px 12px rgba(191,166,105,0.13);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: #17202A;
  color: #BFA669;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(23,32,42,0.13);
}

.link-arrow {
  color: #BFA669;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  position: relative;
  padding-right: 24px;
  transition: color 0.16s, text-decoration 0.16s;
}
.link-arrow:after {
  content: '\2192';
  position: absolute;
  right: 0; top: 2px;
  font-size: 1.1em;
  color: #BFA669;
  transition: right 0.2s;
}
.link-arrow:hover, .link-arrow:focus {
  color: #17202A;
}
.link-arrow:hover:after, .link-arrow:focus:after {
  right: -5px;
}

/* -------- MOBILE NAVIGATION -------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #BFA669;
  cursor: pointer;
  z-index: 120;
  margin-left: 12px;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F5F5F5;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(23,32,42,0.97);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.96,0.02,0.76,0.95);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  position: absolute;
  top: 30px;
  right: 36px;
  z-index: 1020;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  background: rgba(23,32,42,0.10);
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #BFA669;
  color: #17202A;
}
.mobile-nav {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
  gap: 10px;
}
.mobile-nav a {
  width: 100%;
  padding: 16px 40px 16px 16px;
  font-size: 1.2rem;
  color: #fff;
  background: none;
  border-radius: 0 16px 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #BFA669;
  color: #17202A;
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    font-size: 0.98rem;
  }
  header .container {
    gap: 12px;
  }
}
@media (max-width: 870px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    order: 2;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 450px) {
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 16px 16px 16px 16px;
  }
}

/* -------- HERO BANNER -------- */
.hero {
  padding: 50px 0 40px 0;
  background: #F5F5F5;
  border-bottom: 5px solid #BFA669;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  background: transparent;
  box-shadow: none;
  max-width: 760px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #17202A;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.16rem;
  color: #434343;
  margin-bottom: 27px;
}
.hero .cta-button {
  margin-left: 0;
}

@media (max-width: 600px) {
  .hero {
    padding: 24px 0 18px 0;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero .content-wrapper {
    gap: 10px;
  }
}

/* -------- SECTION STANDARD SPACING & PATTERNS -------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(23,32,42,0.07);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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: #FAFAFA;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(23,32,42,0.08);
  margin-bottom: 24px;
  border-left: 6px solid #BFA669;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(23,32,42,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(23,32,42,0.05);
  padding: 22px 20px 22px 20px;
  min-width: 225px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.feature-item:hover {
  box-shadow: 0 7px 18px rgba(191,166,105,0.08);
  transform: translateY(-4px) scale(1.05) skew(-1deg,1deg);
}

/* -------- FEATURE/CARDS/PROPERTIES FLEXBOX -------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 28px;
  align-items: stretch;
  justify-content: space-between;
}
.properties-list .property-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.property-card {
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 380px;
  padding: 26px 24px 16px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23,32,42,0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-left: 5px solid #BFA669;
  transition: box-shadow 0.13s, border-color 0.2s;
}
.property-card:hover {
  box-shadow: 0 8px 28px rgba(191,166,105,0.13);
  border-color: #17202A;
}

.opportunities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.opportunity {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 370px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(23,32,42,0.07);
  padding: 25px 22px 15px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 6px solid #BFA669;
  transition: box-shadow 0.13s, border-color 0.2s;
}
.opportunity:hover {
  box-shadow: 0 6px 22px rgba(191,166,105,0.12);
  border-color: #17202A;
}

.case-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.case-item {
  flex: 1 1 280px;
  min-width: 240px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(23,32,42,0.06);
  padding: 22px 20px;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  flex: 1 1 240px;
  min-width: 200px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(23,32,42,0.07);
  padding: 24px 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 5px solid #BFA669;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.service-item:hover {
  box-shadow: 0 7px 22px rgba(191,166,105,0.10);
  border-color: #17202A;
}
.service-item img {
  width: 38px; height: 38px;
}

/****  Process and Steps ****/
.steps-diagram, .process-steps {
  padding-left: 10px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steps-diagram li, .process-steps li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: #FAFAFA;
  border-left: 5px solid #BFA669;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 1rem;
}
.collaboration-text {
  margin-top: 10px;
  font-style: italic;
  color: #434343;
}

/**** FAQ ****/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 20px;
}
.faq-item {
  flex: 1 1 247px;
  min-width: 210px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(23,32,42,0.06);
  padding: 19px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.faq-item h3 {
  font-size: 1.07rem;
  margin-bottom: 0.7em;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(191,166,105,0.07);
}

/**** Timeline (simple) ****/
.timeline {
  background: #F5F5F5;
  border-radius: 9px;
  padding: 16px 20px;
  margin: 18px 0 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: #434343;
}

/**** About / Contact blocks ****/
.text-section {
  margin-bottom: 15px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.contact-info img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 7px;
}
.contact-info p{
  color: white;
}
.address-text,
.hours-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

/**** CTAs ****/
.cta {
  background: #17202A;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 40px;
  box-shadow: 0 6px 32px rgba(23,32,42,0.13);
}
.cta .content-wrapper {
  color: #fff;
}
.cta h2, .cta p {
  color: #fff;
}

/**** LEGAL POLICY PAGES ****/
.legal-policy {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(23,32,42,0.11);
  padding: 30px 24px;
}
.policy-text h2 {
  font-size: 1.2rem;
  margin: 20px 0 5px 0;
}
.policy-text ul {
  margin-bottom: 20px;
}
.policy-text p {
  margin-bottom: 11px;
}

/* ------------- TESTIMONIALS ------------- */
.testimonials {
  background: #F5F5F5;
  padding: 44px 0;
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 500px;
  font-size: 1.07rem;
  color: #111;
  background: #FFF;
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 20px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(23,32,42,0.09);
  border-left: 6px solid #BFA669;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card strong {
  color: #BFA669;
  font-size: 1em;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px rgba(191,166,105,0.10);
  border-color: #17202A;
}

/**** SOCIAL LINKS ****/
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.social-links a {
  background: #F5F5F5;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(23,32,42,0.07);
  transition: background 0.2s, box-shadow 0.16s;
}
.social-links a:hover {
  background: #BFA669;
  box-shadow: 0 2px 14px rgba(191,166,105,0.18);
}
.social-links img {
  width: 22px;
  height: 22px;
}

/**** FOOTER ****/
footer {
  background: #17202A;
  color: #fff;
  margin-top: 60px;
  padding: 44px 0 30px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #BFA669;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding-left: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer .contact-info {
  color: #fff;
  margin-top: 7px;
  gap: 5px;
  font-size: 0.95rem;
}
footer .contact-info a {
  color: #fff;
  text-decoration: underline dotted;
  font-weight: 400;
}
@media (max-width: 860px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
}

/**** CASE HIGHLIGHTS ****/
.case-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.case-item {
  flex: 1 1 280px;
  min-width: 240px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(23,32,42,0.06);
  padding: 22px 20px;
  margin-bottom: 20px;
}

/**** CONFIRMATION & THANK YOU ****/
.confirmation {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(23,32,42,0.1);
  padding: 40px 28px;
  margin: 40px 0;
}
.next-steps-info {
  margin: 1.5em 0 2.2em 0;
}
.next-steps-info ul {
  margin-left: 24px;
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid #BFA669;
  box-shadow: 0 -2px 18px rgba(23,32,42,0.10);
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.35s;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  margin-left: 2px;
  margin-right: 2px;
  font-size: 1rem;
  cursor: pointer;
  background: #BFA669;
  color: #fff;
  transition: background 0.2s, color 0.2s, transform 0.16s;
}
.cookie-button:focus, .cookie-button:hover {
  background: #17202A;
  color: #BFA669;
  transform: scale(1.06) skew(-1deg,1deg);
}
.cookie-settings {
  border-radius: 8px;
  background: #F5F5F5;
  color: #17202A;
  border: none;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 10px;
  transition: background 0.14s, color 0.14s;
}
.cookie-settings:focus, .cookie-settings:hover {
  background: #BFA669;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1);
  min-width: 280px;
  max-width: 450px;
  background: #fff;
  z-index: 10010;
  border-radius: 17px;
  box-shadow: 0 7px 36px rgba(23,32,42,0.21);
  padding: 40px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s, transform 0.23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.03);
}
.cookie-modal h3 {
  font-size: 1.2rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #BFA669;
  width: 1.2em;
  height: 1.2em;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category .locked {
  color: #828282;
  font-weight: 600;
  margin-left: 6px;
  font-size: 0.97em;
}
.cookie-modal-footer {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
  .feature-grid, .properties-list .property-cards, .card-container,
  .testimonials .testimonial-carousel, .case-highlights, .service-list, .faq-list, .content-grid, .opportunities-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-item, .property-card, .opportunity, .case-item, .service-item, .faq-item {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .hero .content-wrapper, .cta .content-wrapper, .about-summary .content-wrapper
  { max-width: 100%; }
  .testimonial-card { padding: 16px 10px; }
  .container { padding: 0 10px; }
  .footer-nav { flex-direction: row; gap: 15px; }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  body { font-size: 15px; }
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.12rem; }
  .hero h1 { font-size: 1.12rem; }
  .content-wrapper { gap: 12px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.96rem;
    gap: 13px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 7px 14px 7px;
  }
}
/******************* GEOMETRIC VISUAL ELEMENTS *******************/
.feature-item, .property-card, .opportunity, .service-item, .case-item, .testimonial-card, .faq-item, .card, .confirmation {
  box-shadow: 0 2px 10px rgba(23,32,42,0.09);
  border-radius: 18px;
  border: none;
  position: relative;
}
.feature-item:before, .opportunity:before, .property-card:before, .testimonial-card:before, .service-item:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 0 12px 0 45px;
  background: #F5F5F5;
  box-shadow: 0 3px 8px rgba(191,166,105,0.06);
  z-index: 0;
  opacity: 0.16;
  pointer-events: none;
}
/**** SUBTLE HOVER AND FOCUS STATE FOR CARDS/ELEMENTS ****/
.feature-item:focus-within, .opportunity:focus-within, .property-card:focus-within, .testimonial-card:focus-within, .service-item:focus-within {
  outline: 2px solid #BFA669;
}

/******************** INTERACTIVE ELEMENTS MICRO-ANIMATIONS ********************/
button, .cta-button, .cookie-button, .cookie-settings {
  transition: background 0.18s, box-shadow 0.14s, color 0.16s, transform 0.13s;
}

/* ------------- SCROLLBAR STYLE ------------- */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #BFA669;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #F5F5F5;
}

/***************** GEOMETRIC STRUCTURE VISUALS *****************/
/* Geometric squares for active list items (ul or ol) */
ul li::marker, ol li::marker {
  color: #BFA669;
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/**** Custom geometric separator for major sections ****/
.section:not(:last-child), .footer-nav:not(:last-child) {
  border-bottom: 2px solid #F5F5F5;
  box-shadow: none;
}

/**** FORM ELEMENTS (if any on contact) ****/
input, textarea, select {
  border-radius: 10px;
  border: 2px solid #BFA669;
  padding: 13px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #17202A;
  border-color: #17202A;
}

/***************** ACCESSIBILITY & PRINT *****************/
@media print {
  body, .container, .section, header, main, footer {
    color: #000;
    background: #fff !important;
    box-shadow: none !important;
  }
  nav, .cookie-banner, .mobile-menu, .cta-button, .social-links { display: none; }
}
