/*
 * VividMoor Renovierung Style – VINTAGE RETRO CSS
 * Brand colors, flexbox ONLY, mobile-first, responsive, authentic nostalgia!
 * Author: Professional CSS/UI Designer
*/

/**********************
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, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #253A5B;
  background: #FAEFDB;
  line-height: 1.65;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #2B1E1A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: 700;
}

h1 { font-size: 2.75rem; line-height: 1.1; }
h2 { font-size: 2.125rem; margin-top: 32px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5, h6 { font-size: 1.1rem; }

p, ul, ol, dl, blockquote {
  font-size: 1.063rem;
  margin-bottom: 16px;
  color: #253A5B;
}

strong, b {
  font-weight: bold;
  color: #EBA509;
}

em, i { font-style: italic; }

ul, ol {
  margin-left: 22px;
  margin-bottom: 20px;
  list-style: disc inside;
}

dl, dt, dd {
  margin-bottom: 16px;
}

dt { font-weight: bold; color: #2B1E1A; }

dd { margin-left: 24px; }

blockquote {
  background: #fff4d7;
  border-left: 6px solid #EBA509;
  margin: 24px 0 24px 0; padding: 18px 30px;
  font-family: 'Montserrat', serif;
  color: #5E4325;
  font-size: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(43,30,26,0.04);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 14px;
  box-sizing: border-box;
}

/******************
 NAVIGATION
*******************/
header {
  background: #EFE3CA;
  box-shadow: 0 2px 8px rgba(61,44,15,0.06);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.main-nav .logo-link {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav ul li {
  list-style: none;
}
.main-nav a {
  color: #253A5B;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s, box-shadow .2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #EBA50911;
  color: #AD7338;
  outline: none;
}
.main-nav .cta.primary {
  background: #EBA509;
  color: #fff;
  font-weight: bold;
  border-radius: 26px;
  box-shadow: 0 2px 10px #BDA26333;
  padding: 8px 26px;
  margin-left: 16px;
  text-transform: uppercase;
  transition: background .22s, box-shadow .2s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: #C38701;
  color: #fff4d7;
  box-shadow: 0 4px 18px #AD733833;
}

/* MOBILE NAV – hamburger & overlay */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 8px;
  margin-left: 8px;
  color: #EBA509;
  cursor: pointer;
  z-index: 200;
  border-radius: 6px;
  transition: background .18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #EBA50922;
  outline: 2px dashed #EBA509;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #EFE3CA;
  z-index: 1000;
  padding: 0 0 32px 0;
  box-shadow: 0 5px 32px rgba(61,44,15,0.19);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.69,-0.26,.58,1.3);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 26px 26px 12px 0;
  background: none; border: none;
  color: #EBA509;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 6px;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EBA50933;
  outline: 2px dashed #EBA509;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 40px;
  width: 100%;
  margin-top: 10vh;
}
.mobile-nav a {
  color: #253A5B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 16px 0;
  border-bottom: 1px dotted #DCB978;
  text-decoration: none;
  transition: color .23s, background .23s;
}
.mobile-nav a:last-child { border: none; }
.mobile-nav a:hover {
  color: #EBA509;
  background: #FFF4D7;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .main-nav ul {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav ul { display: none; }
  .mobile-menu-toggle { display: block; }
}

/********************************
 HERO SECTIONS & VINTAGE PATTERN
*********************************/
.hero {
  background: repeating-linear-gradient(135deg, #fff4d7 0 40px, #f7e7c3 40px 80px);
  min-height: 55vh;
  padding: 64px 0 42px 0;
  border-bottom: 3px dotted #EBA509;
}
.hero .container,
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  color: #594223;
  text-shadow: 1px 1px 0 #F9E7B1, 2px 2px 0 #EBA50933;
  margin-bottom: 14px;
}
.subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.16rem;
  color: #5E4325;
  margin-bottom: 22px;
}

@media (min-width: 700px) {
  .hero h1 { font-size: 3.1rem; }
  .hero .container, .hero .content-wrapper { gap: 32px; }
}

/**********************************
 GENERIC SECTIONS & SPACING RULES
***********************************/
.section, .features, .about, .services, .projects, .faq, .testimonials, .thank-you, .cta, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/***************
 FLEXBOX PATTERNS
***************/
.feature_grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 14px;
}
.feature_grid li, .features ul li {
  background: #F9E7B1;
  border-radius: 13px;
  box-shadow: 0 2px 12px #C3870133;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3D2E19;
  font-size: 1.06rem;
  padding: 18px 24px 18px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  position: relative;
  border: 1.5px solid #DCB978;
  transition: box-shadow .23s, border-color .22s, background .23s;
}
.feature_grid li:hover, .features ul li:hover {
  box-shadow: 0 6px 22px #AD733833;
  border-color: #EBA509;
  background: #EFE3CA;
}
.feature_grid img, .features ul img {
  width: 30px; height: 30px;
  margin-right: 8px;
  flex-shrink: 0;
  filter: sepia(0.7) hue-rotate(-7deg) brightness(0.93);
}

/*****************
 ABOUT & SERVICES
******************/
.about ul, .services ul, .projects ul {
  display: flex; flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.about li, .services li, .projects li {
  padding-left: 0px;
  font-size: 1.02rem;
  color: #56402A;
}

/***********************
 CARDS & CONTENT STYLES
***********************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff4d7;
  border: 1.5px solid #EBA509;
  border-radius: 15px;
  box-shadow: 0 4px 16px #DCB97844;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  transition: box-shadow .19s, border-color .18s;
}
.card:hover {
  box-shadow: 0 8px 30px #AD733833;
  border-color: #C38701;
}

/**************************
 TESTIMONIALS & REVIEWS CARDS
***************************/
.testimonials {
  background: #EFE3CA;
  border-top: 2.5px dashed #EBA509;
  border-bottom: 2.5px dashed #EBA509;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  background: #fff4d7;
  color: #253A5B;
  border-radius: 16px;
  border: 1.5px solid #EBA509;
  box-shadow: 0 3px 14px #C3870144;
  margin-bottom: 20px;
  padding: 20px 25px 16px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: background .2s, box-shadow .23s, border-color .22s;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-family: 'Montserrat', serif;
  color: #594223;
}
.testimonial-meta {
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #B0873C;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.testimonial-rating {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.15rem;
  color: #C38701;
  font-weight: 700;
  background: #fff4d7;
  border-radius: 23px;
  padding: 8px 20px;
  box-shadow: 0 2px 8px #F9E7B155;
  border: 1.2px solid #EBA509;
}

/****************
 CTA
*****************/
.cta {
  background: #DFD2B7;
  border-radius: 16px;
  box-shadow: 0 4px 18px #DCB97829;
  margin-bottom: 30px;
  padding: 32px 18px;
  text-align: center;
}
.cta h3 {
  color: #3D2E19;
  font-size: 1.55rem;
  margin-bottom: 16px;
}
.cta.primary, .cta.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 25px;
  padding: 10px 26px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 12px #EBA50935;
  margin-top: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background .19s, color .19s, box-shadow .19s;
}
.cta.primary {
  background: #EBA509;
  color: #fff;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #C38701;
  color: #fff4d7;
  box-shadow: 0 6px 18px #AD733844;
}
.cta.secondary {
  background: #fff4d7;
  color: #EBA509;
  border: 1.5px solid #EBA509;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #EBA509;
  color: #fff4d7;
  box-shadow: 0 4px 16px #AD733844;
}

/********************
 FOOTER VINTAGE BLOCK
*********************/
footer {
  background: #2B1E1A;
  color: #fffde9;
  border-top: 3px solid #EBA509;
  padding: 0; margin: 0;
}
footer .container {
  padding-top: 40px;
  padding-bottom: 36px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff4d7;
}
.footer-branding img {
  width: 44px; height: 44px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav li {
  list-style: none;
}
.footer-nav a {
  color: #FFE383;
  text-decoration: none;
  font-size: 0.97rem;
  transition: color .21s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #EBA509;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  color: #ffeecf;
  margin-top: 14px;
}
.footer-contact img {
  width: 19px;
  vertical-align: middle;
  margin-right: 6px;
  filter: brightness(90%) sepia(0.68) hue-rotate(-8deg);
}

/***********************
 FORMS, MAPS, CONTACT
***********************/
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #594223;
  font-size: 1.06rem;
}
.contact-details a {
  color: #EBA509;
  text-decoration: underline;
  font-weight: bold;
  transition: color .18s;
}
.contact-details a:hover {
  color: #AD7338;
}
.map-embed {
  background: #fff4d7;
  padding: 20px 26px;
  border-radius: 12px;
  margin-top: 8px;
  color: #3d2e19;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-embed img {
  width: 28px;
  filter: sepia(0.7) hue-rotate(-10deg);
}

/*********************
 LEGAL TEXT-SECTIONS
**********************/
.legal .text-section {
  background: #fffbf4;
  border-radius: 13px;
  border: 2px dashed #EBA50966;
  padding: 24px 30px;
  margin-top: 18px;
}
.legal .text-section h2 {
  color: #AD7338;
  margin-top: 20px;
  font-size: 1.2rem;
  font-family: 'Montserrat', serif;
}
.legal .text-section ul,
.legal .text-section li {
  color: #594223;
}

/*****************
 THANK YOU SPEECH
******************/
.thank-you {
  background: #EFE3CA;
  border-radius: 18px;
  box-shadow: 0 3px 18px #DCB97833;
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thank-you h1 {
  margin-bottom: 24px;
  color: #AD7338;
}

/*************
 SPACING RULES
**************/
.section, .features, .about, .services, .projects, .faq, .testimonials, .thank-you, .cta, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***************
 BUTTONS & LINKS
****************/
button, .button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 13px;
  padding: 10px 24px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #EBA509;
  color: #fff;
  margin: 6px 0;
  transition: background .16s, color .16s, box-shadow .16s;
}
button:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background: #C38701;
  color: #fff4d7;
}
a {
  color: #AA7300;
  text-decoration: underline dotted #EBA50922;
  transition: color .17s, text-decoration-color .15s;
}
a:hover, a:focus {
  color: #C38701;
  text-decoration-color: #EBA509;
  outline: none;
}

/*******************
 UTILITIES & EFFECTS
********************/
.shadow-vintage {
  box-shadow: 0 8px 32px #C3870133, 0 2px 8px #fff4d790;
}
.rounded-block {
  border-radius: 20px;
  border: 1.5px solid #EBA50966;
  background: #FFF4D7;
}
.vintage-border {
  border: 2.7px dotted #EBA509AA;
  border-radius: 14px;
}

/* Micro-interactions */
.card, .testimonial-card, .feature_grid li, .features ul li {
  transition: box-shadow .19s, border-color .18s, background .23s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 26px #AD733844;
  border-color: #C38701;
}

/*********************
 COOKIE CONSENT BANNER
**********************/
.cookie-consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  background: #253A5B;
  color: #fffde9;
  border-radius: 16px;
  box-shadow: 0 7px 36px #3D2E1940;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 32px 26px 26px;
  z-index: 3000;
  font-size: 1rem;
  gap: 22px;
  animation: fadeInBanner .8s cubic-bezier(.66,.05,.36,1.36) 1;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(45px); }
  to   { opacity: 1; transform: none; }
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-consent-banner button {
  background: #EBA509;
  color: #2B1E1A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: bold;
  border-radius: 14px;
  border: none;
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 2px 12px #BDA26333;
  transition: background .18s, color .15s, box-shadow .16s;
  outline: none;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: #C38701;
  color: #fff4d7;
}
.cookie-consent-banner .cookie-settings {
  background: #fff4d7;
  color: #EBA509;
  border: 1.6px dashed #EBA509;
}
.cookie-consent-banner .cookie-settings:hover {
  background: #EBA509;
  color: #fffdf5;
}

@media (max-width: 620px) {
  .cookie-consent-banner {
    left: 4px; right: 4px; bottom: 4px;
    padding: 17px 8px 17px 12px;
    font-size: 0.97rem;
    gap: 15px;
  }
  .cookie-buttons { gap: 10px; }
}

/***************************
 COOKIE SETTINGS POPUP/MODAL
****************************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(61,44,15,0.13);
  animation: fadeInModal .32s cubic-bezier(.61,-0.22,.37,1.23) 1;
}
.cookie-modal-overlay.open { display: flex; align-items: flex-end; justify-content: center; }
.cookie-modal {
  background: #fff4d7;
  color: #253A5B;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 28px #EBA50933;
  max-width: 370px;
  width: 95vw;
  margin-bottom: 0;
  padding: 30px 32px 25px 27px;
  position: relative;
  animation: modalSlideUp .48s cubic-bezier(.75,-0.03,.28,1.13) 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalSlideUp { from { transform: translateY(90px); opacity:0;} to{ transform:none; opacity:1;} }
@keyframes fadeInModal { from{ opacity:0;} to{ opacity:1;}}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 20px;
  background: none; border: none;
  color: #EBA509;
  font-size: 1.55rem;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 6px;
  transition: background .14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #EBA50927;
  outline: 2px dashed #EBA509;
}
.cookie-modal h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #594223;
  margin-bottom: 0;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #3d2e19;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: #EBA509;
}
.cookie-modal .category-essential {
  color: #B0873C;
  font-weight: bold;
}
.cookie-modal .toggle-disabled { opacity: 0.6; pointer-events: none; }
.cookie-modal .save-cookies-btn {
  background: #EBA509;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  transition: background .15s, color .15s;
}
.cookie-modal .save-cookies-btn:hover {
  background: #C38701;
  color: #fff4d7;
}

/**********************
 RESPONSIVE DESIGN
***********************/
@media (max-width: 1080px) {
  .container { max-width: 94vw; }
}
@media (max-width: 820px) {
  .container { max-width: 99vw; }
  .footer-contact { font-size: 0.89rem; }
}
@media (max-width: 768px) {
  .hero, .section, .features, .about, .services, .projects, .faq, .testimonials, .thank-you, .cta, .contact, .legal {
    padding-left: 7px;
    padding-right: 7px;
  }

  .main-nav, footer .content-wrapper { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-nav { gap: 16px; }
  .content-wrapper { gap: 18px; }
  .feature_grid, .features ul {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card { gap: 13px; font-size: 0.97rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .footer-branding img { width: 30px; height: 30px; }
  .footer-contact { font-size: 0.84rem; }
}

/**********************
 VINTAGE-RETRO DETAILS
***********************/
/* Decorative pseudo-elements for 60s/70s vibe */
.hero h1::before, .hero h1::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 30px; height: 13px;
  background: repeating-linear-gradient(90deg, #EBA509 0 6px, #F9E7B1 7px 14px);
  margin: 0 9px 7px 9px;
  border-radius: 7px;
  opacity: 0.78;
}
.hero h1::after { background: repeating-linear-gradient(90deg, #AD7338 0 7px, #fff4d7 8px 16px); opacity: 0.6; }

.features ul li strong, .feature_grid li strong {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  color: #AA7300;
}

/* Retro dots & horizontal divider */
.section::after, .features::after, .testimonials::after {
  display: block;
  content: '';
  width: 70px;
  margin: 22px auto 0 auto;
  height: 7px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, #EBA509 0 12px, #FFEECE 12px 24px);
  opacity: .41;
}

/****************
 SCROLLBAR STYLE
*****************/
::-webkit-scrollbar { width: 12px; background: #EFE3CA; border-radius: 7px; }
::-webkit-scrollbar-thumb { background: #EBA50966; border-radius: 7px; }

/******************
 ACCESSIBILITY
******************/
:focus {
  outline: 2.5px solid #EBA509;
  outline-offset: 1px;
  z-index: 10;
}

/********************
 PRINT FRIENDLY
*********************/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  header, footer, nav, .cta { color-adjust: exact; -webkit-print-color-adjust: exact; }
}
