/* ArcImmobilien Luxury_Premium Style CSS */
/* --------------------------------------------------
   CSS RESET & BASE TYPOGRAPHY
-------------------------------------------------- */
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, menu, 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,
main, 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F0F5FB;
  color: #23263b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3E74B4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #B88E2F;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.25em;
}
strong, b {
  font-weight: 700;
}
/* --------------------------------------------------
   FONT FACE – fallback for robust support
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #191E2C;
  --color-secondary: #3E74B4;
  --color-accent: #F0F5FB;
  --color-gold: #B88E2F;
  --color-gold-light: #D7B77C;
  --color-light: #fff;
  --color-muted: #E8EAEE;
  --color-shadow: rgba(25,30,44,0.08);
  --color-text: #23263b;
  --color-success: #33764D;
  --color-error: #B84137;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --------------------------------------------------
   CONTAINER & SECTION SPACING
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 18px 20px;
  background: var(--color-light);
  border-bottom: 1px solid #E5E8EF;
  position: relative;
  z-index: 100;
}
header a img {
  height: 38px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 2px 2px 1px 2px;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-gold);
}
.cta-button {
  padding: 13px 32px;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0px 2px 16px 0 var(--color-shadow);
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}
.cta-button:after {
  content: "";
  display: block;
  position: absolute;
  left: 25%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.cta-button:hover:after,
.cta-button:focus:after {
  opacity: 1;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-gold-light);
  color: #fff;
  box-shadow: 0 4px 18px 0 var(--color-shadow);
  transform: translateY(-2px) scale(1.02);
}

/* --------------------------------------------------
   MOBILE NAVIGATION BURGER MENU
-------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  position: absolute;
  right: 26px;
  top: 18px;
  z-index: 201;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 30, 44, 0.96);
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.71,1.61,.25,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 4px 32px 0 #191E2C33;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 22px 22px 10px 22px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 22px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 40px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.065);
  padding-bottom: 7px;
  transition: color 0.17s;
  width: 100%;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-gold);
}
.mobile-menu {
  /* Hide scroll on body when open (body.css controlled) */
  overscroll-behavior: contain;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  background: linear-gradient(132deg,#fff,#F0F5FB 68%,#F6F9FB 100%);
  padding: 0 0 48px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 370px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--color-primary);
  letter-spacing: 0.015em;
}
.hero p {
  font-size: 1.20rem;
  margin-bottom: 28px;
  color: var(--color-primary);
  max-width: 550px;
}

/* --------------------------------------------------
   TYPOGRAPHY & HEADINGS
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin: 32px 0 22px 0; }
h3 { font-size: 1.29rem; margin: 22px 0 12px 0; }
h4 { font-size: 1.08rem; margin: 18px 0 10px 0; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

/* Gold accent title underline for premium feel */
h2, .cta-callout h2, .feature-item h3, .trend-box h3 {
  position: relative;
}
h2::after, .cta-callout h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: var(--color-gold);
  margin-top: 10px;
  border-radius: 2px;
}

/* --------------------------------------------------
   FLEX SPACING STRUCTURES
-------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 var(--color-shadow);
  padding: 32px 24px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(184,142,47,0.14);
  transform: translateY(-2px) scale(1.012);
  z-index: 3;
}
.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: 16px;
  background: #fff;
  color: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(25,30,44,0.08);
  padding: 30px 36px;
  margin-bottom: 22px;
  border-left: 6px solid var(--color-gold);
  max-width: 540px;
  transition: box-shadow 0.16s;
}
.testimonial-card strong {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1.09rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  padding: 26px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(184,142,47,0.13);
  transform: translateY(-3px) scale(1.01);
}
.feature-item img {
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  filter: grayscale(0%) brightness(1.1) contrast(1.05) drop-shadow(0 2px 4px #f7e5b5);
}

/* --------------------------------------------------
   SERVICE, LISTING, FEATURE & TREND GRIDS
-------------------------------------------------- */
.feature-grid,
.service-list,
.featured-listings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 14px;
}
.service-item, .listing-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  padding: 24px 18px 18px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 350px;
  transition: box-shadow 0.13s, transform 0.13s;
  border-left: 4px solid var(--color-gold-light);
}
.service-item:hover, .listing-item:hover {
  box-shadow: 0 6px 32px 0 rgba(184,142,47,0.06);
  transform: translateY(-2px) scale(1.01);
}
.listing-item h3, .service-item h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.listing-item ul, .service-item ul {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}
.listing-item ul li, .service-item ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #24243e;
}
/* City tabs, trend, report */
.city-tabs {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--color-primary);
}
.trend-highlight-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.trend-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  padding: 24px 20px 16px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 280px;
  border-left: 4px solid var(--color-gold);
  transition: box-shadow 0.14s, transform 0.13s;
  margin-bottom: 20px;
}
.trend-box:hover {
  box-shadow: 0 8px 34px 0 #b88e2f32;
  transform: translateY(-1.5px) scale(1.007);
}
.quality-of-life-ratings ul {
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 1em;
}
.report-teaser {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  padding: 32px 30px;
  margin-bottom: 28px;
  max-width: 600px;
  border-left: 6px solid var(--color-secondary);
}

/* --------------------------------------------------
   CTA CALLOUTS
-------------------------------------------------- */
.cta-callout {
  background: linear-gradient(96deg,#fff,#FAFAFC 80%);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  border-radius: 22px;
  padding: 38px 32px 36px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-left: 8px solid var(--color-gold);
  position: relative;
}
.cta-callout h2 {
  color: var(--color-primary);
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.cta-callout p {
  margin-bottom: 10px;
  color: var(--color-primary);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  margin-top: 60px;
  padding: 44px 0 20px 0;
  background: #23263b;
  color: #fff;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 24px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.015em;
  transition: color 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-gold);
}
.footer-contact {
  font-size: 0.99rem;
  line-height: 1.55;
  background-color: #dbdbf0;
  min-width: 220px;
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(2.5) contrast(1.15) drop-shadow(0 2px 2px #b88e2f26);
  opacity: 0.82;
  transition: filter 0.15s, opacity 0.13s;
}
.footer-social a:hover img {
  filter: grayscale(0%) brightness(1.32) drop-shadow(0 2px 2px #b88e2f90);
  opacity: 1;
}

/* --------------------------------------------------
   BRAND CONTACT & NEUTRAL SECTIONS
-------------------------------------------------- */
.brand-contact-details {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  padding: 22px 22px 10px;
  margin-bottom: 20px;
}
.neutral-phone-placeholder {
  margin-left: 6px;
  margin-top: 10px;
  color: #B84137;
  font-family: var(--font-body);
  font-size: 1.01rem;
  opacity: .76;
}
.highlight-numbers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 22px 20px;
  min-width: 180px;
  max-width: 230px;
  align-items: flex-start;
}
.highlight-numbers strong {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-right: 8px;
}

/* --------------------------------------------------
   SEARCH FILTER PANEL (IMMOBILIENANGEBOTE)
-------------------------------------------------- */
.search-filter-panel {
  background: #fff;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  border-radius: 10px;
  padding: 14px 22px;
  margin-bottom: 22px;
  margin-top: 8px;
  color: var(--color-primary);
}

/* --------------------------------------------------
   END-OF-ARTICLE/THANK YOU, SIMPLE STATIC PAGES
-------------------------------------------------- */
main .content-wrapper > h1, main .content-wrapper > p {
  margin-bottom: 22px;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px;
  background: #222235;
  color: #fff;
  box-shadow: 0 -4px 22px 0 #191e2c23;
  z-index: 1031;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  animation: slideUpCookie .5s cubic-bezier(.23,1.03,.31,1) both;
}
@keyframes slideUpCookie { from { transform: translateY(120%); opacity:0;} to { transform:translateY(0);opacity:1;} }
.cookie-banner__text {
  max-width: 540px;
  font-size: 1rem;
  color: #fff;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-banner__button {
  padding: 11px 24px;
  border-radius: 26px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  margin-right: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
  cursor: pointer;
}
.cookie-banner__button--accept {
  background: var(--color-gold);
  color: #fff;
}
.cookie-banner__button--accept:hover,
.cookie-banner__button--accept:focus {
  background: var(--color-gold-light);
  color: #fff;
}
.cookie-banner__button--reject {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-muted);
}
.cookie-banner__button--reject:hover,
.cookie-banner__button--reject:focus {
  background: var(--color-muted);
  color: var(--color-primary);
}
.cookie-banner__button--settings {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}
.cookie-banner__button--settings:hover,
.cookie-banner__button--settings:focus {
  background: var(--color-gold);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(25, 30, 44, 0.74);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.14s;
  animation: fadeInModal .23s;
}
@keyframes fadeInModal { from { opacity:0; } to { opacity:1; } }
.cookie-modal__content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 44px 0 rgba(25,30,44,0.12);
  padding: 38px 28px 32px;
  max-width: 430px;
  width: 96vw;
  color: var(--color-text);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 18px; top: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-primary);
  cursor: pointer;
  opacity: .74;
  transition: opacity 0.16s;
}
.cookie-modal__close:hover { opacity: 1; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 6px;
  border-bottom: 1px solid #f4f4fa;
}
.cookie-category--essential span {
  color: var(--color-gold);
  font-weight: 600;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: #e5e5e7;
  border: 1.5px solid #b6b6bf;
  position: relative;
  cursor: pointer;
  transition: background 0.13s, border 0.13s;
  accent-color: var(--color-gold);
  outline: none;
}
.cookie-toggle[aria-checked="true"], .cookie-toggle:checked {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.cookie-toggle::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b88e2f33;
  box-shadow: 0 1px 3px #b88e2f18;
}
/* fallback: regular checkbox for accessibility */
.cookie-category input[type='checkbox'] {
  transform: scale(1.22);
  accent-color: var(--color-gold);
  margin-left: 12px;
  margin-right: 2px;
  cursor: pointer;
}

/* --------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
-------------------------------------------------- */
.card, .feature-item, .testimonial-card, .trend-box, .listing-item, .service-item, .cta-callout, .report-teaser {
  transition: box-shadow 0.16s, transform 0.14s;
}
a, button, .cta-button {
  transition: color .16s, background .17s, box-shadow .17s, transform .11s;
}

/* --------------------------------------------------
   RESPONSIVE (MOBILE-FIRST)
-------------------------------------------------- */
@media (max-width: 1240px) {
  .container {
    max-width: 100%;
    padding: 0 18px;
  }
}
@media (max-width: 1024px) {
  .footer-nav,.footer-contact,footer .footer-social {
    margin-bottom: 14px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 14px;
  }
  .footer-logo img {
    margin-bottom: 18px;
  }
  .highlight-numbers {
    gap: 8px;
  }
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-logo img {
    margin-bottom: 10px;
  }
}
@media (max-width: 950px) {
  .feature-grid, .service-list, .featured-listings-grid, .trend-highlight-boxes {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
}
@media (max-width: 786px) {
  .hero .container {
    min-height: 220px;
    padding-bottom: 24px;
  }
  .feature-grid, .service-list, .featured-listings-grid, .trend-highlight-boxes {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.97rem;
  }
  .container {
    padding: 0 11px;
  }
  .section {
    margin-bottom: 36px;
    padding: 20px 8px;
  }
  header {
    flex-direction: row;
    padding: 14px 8px 10px 8px;
  }
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 1.44rem;
    margin-bottom: 13px;
  }
  .hero p {
    font-size: 1.01rem;
    margin-bottom: 22px;
  }
  .feature-item, .service-item, .listing-item, .trend-box, .trend-highlight-boxes, .report-teaser, .cta-callout {
    min-width: 0;
    max-width: 100%;
    padding-left: 13px;
    padding-right: 13px;
  }
  .testimonial-card {
    padding: 18px 11px;
    margin-bottom: 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .footer-logo img {
    max-height: 26px;
    margin-bottom: 5px;
  }
  .brand-contact-details {
    padding: 13px 8px 8px;
  }
  .search-filter-panel {
    padding: 11px 9px;
  }
}
@media (max-width: 630px) {
  .highlight-numbers, .brand-contact-details, .neutral-phone-placeholder, .report-teaser {
    max-width: 98vw;
    min-width: 0;
    padding: 13px 7px;
  }
}
@media (max-width: 600px) {
  .trend-highlight-boxes, .feature-grid, .service-list, .featured-listings-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .footer-social {
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .footer-logo img {
    max-height: 19px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* --------------------------------------------------
   ACCESSIBILITY, CONTRAST FIXES & MISC
-------------------------------------------------- */
:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}
::-webkit-input-placeholder, ::placeholder {
  color: #8C99AB;
  opacity: 1;
}

/* --------------------------------------------------
   JS HOOKS FOR BODY MODAL SCROLLLOCK
-------------------------------------------------- */
.body-lock-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

/* --------------------------------------------------
   UTILITIES (MARGIN/PADDING/SHOW/HIDE)
-------------------------------------------------- */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.hide { display:none !important; }
.block { display: block !important; }

/* --------------------------------------------------
   END OF FILE
-------------------------------------------------- */
