/* === 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F4F4;
  color: #23272D;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* === BRAND TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F4F4F4;
  color: #23272D;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #23272D;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
p, ul, ol {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #23272D;
}
strong {
  font-weight: 700;
}

/* === GENERAL SHARED LAYOUTS === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 18px; box-shadow: 0 2px 18px rgba(35,39,45,0.06);  }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(35,39,45,0.09);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(227,181,5,0.12), 0 12px 64px rgba(35,39,45,0.09);
  z-index: 2;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER === */
header {
  background: #fff;
  border-bottom: 1.5px solid #ececec;
  box-shadow: 0 2px 14px rgba(35,39,45,0.03);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
header img[alt="Scharfer Blick"] {
  padding: 8px 0;
  height: 56px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #23272D;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0 6px;
  transition: color 0.17s;
}
header nav a:hover, header nav a:focus {
  color: #E3B505;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E3B505;
  color: #23272D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(227,181,5,0.06);
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.13s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #efca38;
  color: #23272D;
  box-shadow: 0 4px 26px rgba(227,181,5,0.17);
  transform: translateY(-1.5px) scale(1.04);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #E3B505;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 110;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #23272D;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 370px;
  height: 100vh;
  background: #1d2127;
  box-shadow: -4px 0 28px 0 rgba(35,39,45,0.20);
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.77,0,0.18,1);
  padding: 32px 22px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0%);
  transition: transform 0.33s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #E3B505;
  cursor: pointer;
  margin-bottom: 26px;
  padding: 8px 10px;
  transition: color 0.16s, background 0.16s;
  border-radius: 50%;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E3B505;
  color: #23272D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F4F4;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 16px 0 16px 0;
  border-bottom: 1px solid #333741;
  transition: color 0.16s, background 0.18s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #E3B505;
  color: #23272D;
  border-radius: 18px;
}

/* === HERO SECTIONS === */
.hero {
  background: #23272D;
  color: #fff;
  padding: 60px 0 50px 0;
  margin-bottom: 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 30px rgba(35,39,45,0.08);
}
.hero .container {
  padding: 0 20px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .subheadline {
  font-size: 1.3rem;
  color: #E3B505;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.hero .cta-button {
  margin-top: 20px;
  background: #E3B505;
  color: #23272D;
}
.hero .cta-button:hover {
  background: #fff;
  color: #E3B505;
  box-shadow: 0 6px 20px rgba(227,181,5,0.18);
}
 
/* === FEATURE SECTIONS === */
.features, .feature-list, .services, .services-overview, .about-preview, .tips-overview, .guides, .about-project, .services-projects {
  background: #fff;
  box-shadow: 0 2px 18px rgba(35,39,45,0.06);
  border-radius: 18px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 20px;
}
.features .feature-grid li {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  padding: 28px 20px 22px 20px;
  background: #F9F7F2;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px rgba(227,181,5,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.11s;
}
.features .feature-grid li:hover {
  box-shadow: 0 8px 30px 0 rgba(227,181,5,0.14);
  transform: translateY(-2px) scale(1.025);
  z-index: 1;
}
.features .feature-grid img {
  height: 36px;
  margin-bottom: 8px;
}
.features .feature-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
  color: #23272D;
}
.features .feature-grid p {
  color: #464a50;
  font-size: 1rem;
}

/* === ABOUT / TEAM GRID === */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 26px 0;
}
.team-member {
  flex: 1 1 190px;
  min-width: 180px;
  max-width: 240px;
  background: #F9F7F2;
  border-radius: 15px;
  box-shadow: 0 1.5px 10px rgba(227,181,5,0.04);
  padding: 26px 16px 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.11s;
}
.team-member img {
  width: 52px;
  margin-bottom: 7px;
}
.team-member h4 {
  font-size: 1.1rem;
  color: #23272D;
}
.team-member p {
  font-size: 0.98rem;
  color: #606167;
}
.team-member:hover {
  box-shadow: 0 8px 30px 0 rgba(227,181,5,0.12);
  transform: translateY(-2px) scale(1.03);
}

/* === SERVICE ITEMS === */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-item {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 270px;
  background: #fffbe9;
  border: 1.8px solid #E3B505;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(227,181,5,0.04);
  padding: 26px 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: border 0.16s, box-shadow 0.14s, transform 0.11s;
}
.service-item:hover {
  border: 2.6px solid #efca38;
  box-shadow: 0 8px 24px 0 rgba(227,181,5,0.11);
  transform: translateY(-2px) scale(1.04);
}
.service-item span {
  color: #8a7202;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* === TESTIMONIALS === */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 22px;
  background: #FFF9ED;
  border-radius: 18px;
  box-shadow: 0 6px 30px 0 rgba(227,181,5,0.11), 0 2px 8px rgba(35,39,45,0.04);
  border: 1.3px solid #E3B505;
  max-width: 680px;
  color: #23272D;
  font-size: 1.05rem;
}
.testimonial-card p {
  margin-bottom: 6px;
  color: #23272D;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
}
.testimonial-card span {
  color: #b78904;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* === CALL OUT SECTIONS === */
.callout {
  background: #23272D;
  color: #fff;
  border-radius: 26px;
  padding: 38px 20px;
  box-shadow: 0 8px 30px rgba(35,39,45,0.12);
  text-align: center;
  margin-bottom: 60px;
}
.callout h2 {
  color: #E3B505;
}
.callout p {
  color: #fff;
}
.callout .cta-button {
  background: #E3B505;
  color: #23272D;
  margin-top: 18px;
}
.callout .cta-button:hover {
  background: #fff;
  color: #E3B505;
}

/* === ABOUT-PREVIEW/CONTACT-SECTION-LIKE === */
.text-section ul, .text-section ol, .about-preview ul, .about-preview ol {
  padding-left: 22px;
  list-style: disc inside;
  margin: 0 0 16px 0;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 7px;
}
.text-section ol {
  list-style-type: decimal;
}
.text-section a {
  color: #E3B505;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.text-section a:hover, .text-section a:focus {
  color: #23272D;
  background: #E3B505;
}

/* === CONTACT SECTION === */
.contact-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(35,39,45,0.06);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.contact-details img {
  width: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.map {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map img {
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(35,39,45,0.07);
}
.opening-hours {
  padding: 18px 14px;
  background: #F9F7F2;
  border-radius: 9px;
  margin-top: 14px;
}
.opening-hours h3 {
  margin-bottom: 7px;
}

/* === FOOTER === */
footer {
  background: #23272D;
  color: #fff;
  padding: 36px 0 18px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links nav a {
  color: #E3B505;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 2px 0px;
  border-radius: 6px;
  transition: color 0.13s, background 0.13s;
}
.footer-links nav a:hover, .footer-links nav a:focus {
  color: #23272D;
  background: #E3B505;
}
.contact-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-summary img {
  width: 19px;
  vertical-align: middle;
  margin-right: 8px;
}
footer address {
  font-style: normal;
  color: #E3B505;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === LEGAL PAGES === */
.legal {
  background: #fff;
  box-shadow: 0 2px 12px rgba(35,39,45,0.07);
  border-radius: 18px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.legal .text-section h2 {
  color: #E3B505;
  font-size: 1.3rem;
  margin: 20px 0 10px 0;
}
.legal .text-section ul {
  padding-left: 24px;
  list-style: disc inside;
  margin-bottom: 16px;
}

/* === FAQ ACCORDION (SIMPLE) === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F9F7F2;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 1.5px 9px rgba(35,39,45,0.05);
}
.faq-item h3 {
  font-size: 1.07rem;
  color: #b78904;
}
.faq-item p {
  margin: 3px 0 0 0;
  color: #23272D;
  font-size: 1rem;
}

/* === THANK YOU PAGE === */
.thank-you {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 22px rgba(35,39,45,0.08);
  padding: 50px 20px;
  margin-bottom: 60px;
  text-align: center;
}
.thank-you h1 {
  color: #E3B505;
  margin-bottom: 22px;
}
.thank-you ul {
  padding-left: 18px;
  list-style: disc inside;
  margin-bottom: 16px;
  text-align: left;
  display: inline-block;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23272D;
  color: #fff;
  z-index: 200;
  padding: 30px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -8px 35px rgba(35,39,45,0.19);
  transition: transform 0.36s cubic-bezier(0.68,0,0.27,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  max-width: 900px;
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: center;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.12s, box-shadow 0.18s;
}
.cookie-banner .accept-all {
  background: #E3B505;
  color: #23272D;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #fff;
  color: #E3B505;
  box-shadow: 0 1.5px 9px rgba(227,181,5,0.19);
}
.cookie-banner .reject-all {
  background: #fff;
  color: #E3B505;
  border: 1.8px solid #E3B505;
}
.cookie-banner .reject-all:hover {
  background: #E3B505;
  color: #23272D;
}
.cookie-banner .cookie-settings-btn {
  background: #23272D;
  color: #E3B505;
  border: 1.5px solid #E3B505;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #E3B505;
  color: #23272D;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(35,39,45,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.37s cubic-bezier(0.45,0,0.18,1);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  min-width: 340px;
  max-width: 96vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 60px rgba(35,39,45,0.18);
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  position: relative;
}
.cookie-modal-content h2 {
  color: #E3B505;
  margin-bottom: 6px;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 0;
}
.cookie-toggle-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {display:none;}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;left: 0;right:0;bottom:0;
  background: #E3B505;
  border-radius: 20px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #23272D;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background: #E3B505;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 22px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cookie-modal-actions .cookie-save {
  background: #E3B505;
  color: #23272D;
}
.cookie-modal-actions .cookie-save:hover {
  background: #fff;
  color: #E3B505;
}
.cookie-modal-actions .cookie-cancel {
  background: #fff;
  color: #E3B505;
  border: 1.2px solid #E3B505;
}
.cookie-modal-actions .cookie-cancel:hover {
  background: #E3B505;
  color: #23272D;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: none;
  color: #E3B505;
  font-size: 1.7rem;
  padding: 4px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s, color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E3B505;
  color: #23272D;
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
button, .cta-button, a, input, .feature-grid li, .service-item, .team-member {
  transition: background 0.18s, color 0.17s, box-shadow 0.17s, border 0.13s, transform 0.13s;
}

/* === RESPONSIVENESS === */
@media (max-width: 1100px){
  .container, footer .container{
    max-width: 97vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px){
  .team-grid, .service-grid, .features .feature-grid,
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .team-member, .service-item, .features .feature-grid li, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    align-self: stretch;
  }
  .footer-links nav { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  footer .container { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px){
  .container, .section, .hero, .callout, .legal {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
  .content-wrapper, .card-container {
    padding: 0;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .service-grid, .features .feature-grid, .team-grid {
    gap: 14px;
  }
  .callout {
    padding: 26px 7px;
    border-radius: 16px;
  }
  .hero {
    padding: 34px 0 24px 0;
    border-radius: 0 0 16px 16px;
  }
  header .container { flex-direction: row; gap: 8px; }
  .footer-links nav {flex-direction: column;gap: 7px;}
}
@media (max-width: 600px){
  h1 {font-size: 1.48rem;}
  h2 {font-size: 1.13rem;}
  .hero .subheadline {font-size: 1rem;}
  .card, .service-item, .team-member, .testimonial-card { padding: 16px 7.5px; }
  .callout {padding: 16px 5px;}
}
@media (max-width: 900px){
  header nav {display: none;}
  .cta-button {display: none;}
  .mobile-menu-toggle{ display: block; }
}
@media (min-width: 901px){
  .mobile-menu, .mobile-menu-toggle {display: none !important;}
  header nav {display:flex !important;}
  .cta-button { display:inline-flex !important; }
}

/* === ACCESSIBILITY HIGHLIGHTS === */
:focus {
  outline: 2.5px solid #E3B505;
  outline-offset: 2px;
  z-index: 4;
}
::-webkit-input-placeholder{color:#aaacaf;}
::-moz-placeholder{color:#aaacaf;}
:-ms-input-placeholder{color:#aaacaf;}
::placeholder{color:#aaacaf;}

/* === SPACING / UTILITY CLASSES === */
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pb-0 { padding-bottom: 0 !important; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0 !important; }

/* === LUXURY GOLD ACCENTS === */
hr, .gold-hr {
  border: 0; height: 2px;
  background: #E3B505;
  margin: 28px 0 18px 0;
  border-radius: 4px;
}

/* === END === */
