/* --- RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  color: #2C3E50;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

section, main, footer, header, nav, aside {
  display: block;
}
a {
  color: #2C3E50;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #C25100;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  padding: 0;
}
button {
  cursor: pointer;
  transition: background .2s, color .2s;
}
ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2C3E50;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, .tagline, .hero-intro, .short-intro, .mission, span, li {
  font-size: 1rem;
}

/* Responsive Typography */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  p, .tagline, .hero-intro, .short-intro, .mission, span, li { font-size: 0.97rem; }
}

/* --- STRUCTURE, GRIDS, CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(44,62,80,0.04);
}
@media (max-width: 900px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #FFF;
  border-bottom: 3px solid #C25100;
  position: relative;
  z-index: 100;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}
.header-top a img {
  height: 52px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color .18s, border-color .18s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #C25100;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: #C25100;
  color: #fff;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px rgba(194,81,0,0.10);
  border: none;
  transition: background .22s, transform .22s;
}
.cta-btn:hover,.cta-btn:focus {
  background: #E67E22;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 24px;
  background: #C25100;
  color: #fff;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  z-index: 107;
  transition: background 0.15s;
  border: none;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E67E22;
}
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2C3E50;
  color: #fff;
  z-index: 1201;
  transform: translateX(-105%);
  transition: transform .33s cubic-bezier(.73,.16,.34,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 0 0;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 1205;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 80px;
  gap: 20px;
  padding: 0 32px 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color .14s, background .16s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #E67E22;
  background: rgba(194,81,0,0.07);
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO --- */
.hero {
  background: #F3F4F8;
  border-radius: 0 0 36px 36px;
  position: relative;
  margin-bottom: 60px;
  padding: 48px 0 32px 0;
}
.hero h1 {
  color: #2C3E50;
  font-size: 2.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.hero .tagline, .hero-intro {
  color: #C25100;
  font-size: 1.22rem;
  font-weight: 500;
  margin-bottom: 22px;
}

@media(max-width:900px) {
  .hero {
    padding: 30px 0 14px 0;
    border-radius: 0 0 15px 15px;
    margin-bottom: 28px;
  }
}

/* --- FEATURES --- */
.features, .feature-grid {
  width: 100%;
}
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-item {
  flex: 1 1 230px;
  background: #fff;
  border: 2.5px solid #E6EAF1;
  border-radius: 19px;
  min-width: 240px;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(44,62,80,0.06);
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  background: #F7CAAC;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 3px;
  box-shadow: 0 1px 5px rgba(194,81,0,0.05);
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #C25100;
  box-shadow: 0 12px 32px rgba(194,81,0,0.09);
  transform: translateY(-2px) scale(1.03);
}
.feature-item h3 {
  color: #2C3E50;
}
.feature-item p {
  color: #555;
}

/* --- SERVICES & PRICING --- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.service-item {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 2px solid #E6EAF1;
  border-radius: 17px;
  box-shadow: 0 3px 15px rgba(44,62,80,0.05);
  padding: 25px 20px 19px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.service-item img {
  width: 40px; height: 40px;
}
.service-item .price {
  margin-top: 7px;
  font-size: 1.13rem;
  font-weight: 700;
  color: #C25100;
}
.service-item:hover, .service-item:focus-within {
  border-color: #C25100;
  box-shadow: 0 10px 30px rgba(194,81,0,0.09);
  transform: translateY(-2px) scale(1.03);
}

/* --- ABOUT --- */
.about-short, .about-details {
  background: #fff;
  border-left: 6px solid #C25100;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 2px 12px rgba(44,62,80,0.04);
}
.short-intro, .mission {
  color: #2C3E50;
  font-size: 1.04rem;
}
.core-values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}
.core-values ul li {
  background: #F3F4F8;
  border-radius: 7px;
  padding: 9px 18px;
  font-size: 1rem;
  color: #C25100;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- TEAM --- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.team-member {
  background: #fff;
  border: 2px solid #E6EAF1;
  border-radius: 15px;
  padding: 20px 17px;
  flex: 1 1 210px;
  max-width: 300px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  box-shadow: 0 2px 14px rgba(44,62,80,0.06);
  gap: 10px;
  font-size: 1rem;
}
.team-member h4 {
  color: #C25100;
  font-size: 1.2rem;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.team-member span {
  font-size: 1rem;
  color: #888;
  margin-bottom: 8px;
}
.team-member:hover, .team-member:focus-within {
  border-color: #C25100;
  box-shadow: 0 9px 30px rgba(194,81,0,0.09);
  transform: translateY(-2px) scale(1.03);
}

/* --- TESTIMONIALS --- */
.testimonials, .testimonial-list {
  width: 100%;
}
.testimonial-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F4F8;
  border-radius: 17px;
  box-shadow: 0 3px 18px rgba(44,62,80,0.07);
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  border-left: 6px solid #C25100;
  font-size: 1rem;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card p {
  color: #232323;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
  margin-bottom: 0px;
}
.testimonial-card span {
  font-size: 0.94rem;
  color: #666;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 18px rgba(194,81,0,0.13);
  transform: translateY(-4px) scale(1.025);
}

/* --- PROJECT CARDS --- */
.project-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.project-card {
  background: #fff;
  border: 2.5px solid #E6EAF1;
  border-radius: 16px;
  padding: 23px 18px 15px 20px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px rgba(44,62,80,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.project-card:hover, .project-card:focus-within {
  border-color: #C25100;
  box-shadow: 0 9px 30px rgba(194,81,0,0.09);
  transform: translateY(-2px) scale(1.03);
}
.project-card h3 {
  color: #C25100;
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.project-card .metrics {
  font-size: 0.99rem;
  color: #444;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- BLOG --- */
.blog-list {
  width: 100%;
}
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.post-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 240px;
  background: #fff;
  border: 2.2px solid #E6EAF1;
  border-radius: 15px;
  box-shadow: 0 2px 9px rgba(44,62,80,0.06);
  padding: 16px 18px;
  margin-bottom: 20px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  position: relative;
}
.post-preview h3 {
  color: #C25100;
  font-size: 1.09rem;
  margin-bottom: 1px;
}
.post-preview .category {
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3E50;
  font-weight: 700;
}
.post-preview .tags {
  color: #C25100;
  font-size: 0.9rem;
}
.post-preview:hover, .post-preview:focus-within {
  border-color: #C25100;
  box-shadow: 0 6px 25px rgba(194,81,0,0.09);
  transform: translateY(-2px) scale(1.012);
}

/* --- NEWSLETTER --- */
.newsletter {
  background: #F3F4F8;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(44,62,80,0.06);
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 30px;
}
.pricing-table th, .pricing-table td {
  padding: 13px 22px;
  text-align: left;
  border: none;
}
.pricing-table th {
  background: #F3F4F8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.06rem;
  color: #2C3E50;
  border-radius: 8px 8px 0 0;
}
.pricing-table tbody tr {
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.04);
  margin-bottom: 10px;
}
.pricing-table td {
  font-size: 1rem;
}
.pricing-table tr:not(:last-child){
  margin-bottom: 9px;
  border-bottom: 1px solid #ECECEC;
}

/* --- CONTACT & QUICK-CONTACT SECTIONS --- */
.contact, .quick-contact {
  background: #fff;
  border-left: 6px solid #C25100;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 2px 12px rgba(44,62,80,0.05);
}
.contact-hint {
  margin-top: 10px;
  color: #C25100;
  font-size: 1.025rem;
}
.map-placeholder {
  margin-top: 22px;
  background: #F3F4F8;
  border-radius: 9px;
  padding: 12px 14px;
  color: #888;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
}

/* --- CTA SECTIONS --- */
.cta {
  background: #F3F4F8;
  border-radius: 19px;
  min-height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(44,62,80,0.04);
}

/* --- THANK-YOU --- */
.thank-you {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 4px 18px rgba(44,62,80,0.10);
  text-align: center;
}
.thank-you .thank-you-message {
  font-size: 1.19rem;
  color: #2C3E50;
  margin-bottom: 20px;
}

/* --- LEGAL SECTIONS --- */
.legal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(44,62,80,0.06);
}
.legal h1 {
  font-size: 2.1rem;
}

/* --- FOOTER --- */
footer {
  background: #2C3E50;
  color: #fff;
  padding: 46px 0 20px 0;
  border-radius: 22px 22px 0 0;
  margin-top: 60px;
  box-shadow: 0 -5px 24px rgba(44,62,80,0.12);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 34px;
}
.footer-top a img {
  height: 38px;
  width: auto;
  margin-right: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.84;
  transition: color .18s, opacity .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #C25100;
  text-decoration: underline;
  opacity: 1;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.footer-legal {
  font-size: 0.98rem;
  opacity: 0.69;
  font-family: 'Roboto', Arial, sans-serif;
}
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  filter: grayscale(77%);
  opacity: 0.87;
  transition: opacity .14s, filter .18s;
}
.social-icons img:hover {
  opacity: 1;
  filter: none;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #2C3E50;
  color: #fff;
  z-index: 3000;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -2px 16px rgba(44,62,80,0.08);
  padding: 22px 16px;
  font-size: 1.03rem;
  border-radius: 15px 15px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(70px);
  transition: opacity .22s, transform .24s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-left: 18px;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  letter-spacing: 0.03em;
  background: #C25100;
  color: #fff;
  border: none;
  transition: background .16s, color .19s;
}
.cookie-banner button.cookie-reject {
  background: #8c94a4;
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #2C3E50;
  border: 1.5px solid #E6EAF1;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #E67E22;
  color: #fff;
}
.cookie-banner button.cookie-settings:hover {
  background: #FFDABF;
  color: #2C3E50;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,62,80,0.58);
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  color: #2C3E50;
  z-index: 4050;
  padding: 40px 20px 30px 20px;
  border-radius: 22px;
  min-width: 315px;
  max-width: 96vw;
  width: 420px;
  box-shadow: 0 10px 32px rgba(44,62,80,0.13);
  opacity: 0;
  pointer-events: none;
  transition: opacity .13s, transform .22s;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #C25100;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3E50;
  flex: 1 1 auto;
}
.cookie-switch {
  display: inline-block;
  width: 40px;
  height: 22px;
  border-radius: 12px;
  background: #E6EAF1;
  position: relative;
}
.cookie-switch input {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #C25100;
  transition: left .2s, background .18s;
}
.cookie-switch input:not(:checked) + .cookie-switch-slider {
  left: 2px;
  background: #8c94a4;
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 20px;
  background: #C25100;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 9px 18px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  border: none;
  background: #C25100;
  color: #fff;
  transition: background .16s, color .19s;
}
.cookie-modal button.cookie-cancel {
  background: #8c94a4;
}
.cookie-modal button.cookie-save {
  background: #C25100;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #E67E22;
  color: #fff;
}

/* --- GENERIC LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* Responsive adjustment: flex layouts stack on mobile */
@media (max-width: 900px) {
  .feature-grid, .service-grid, .project-card-list, .team-grid, .testimonial-list, .post-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 18px !important;
    align-items: flex-start;
  }
  .footer-top nav {
    gap: 10px !important;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 28px;
    padding: 22px 6px;
  }
}

/* Adequate Space Preventing Overlaps */
.card, .feature-item, .service-item, .team-member, .testimonial-card, .project-card, .post-preview {
  margin-bottom: 20px;
}

/* --- ANIMATIONS --- */
.cta-btn, .feature-item, .service-item, .team-member, .testimonial-card, .project-card, .post-preview, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
  will-change: transform, box-shadow, opacity;
}

/* --- SCROLLBARS --- */
::-webkit-scrollbar {
  width: 9px;
  background: #F3F4F8;
}
::-webkit-scrollbar-thumb {
  background: #C25100;
  border-radius: 10px;
}

/* --- FOCUS STATES & ACCESSIBILITY --- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #C25100;
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- OVERRIDES/FINAL TWEAKS --- */
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

/* --- Z-INDEX LAYERING --- */
header, .mobile-menu, .footer, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
  z-index: inherit;
}

/* --- PRINT & SELECTION --- */
@media print {
  nav, .mobile-menu-toggle, .cta-btn, .footer, .cookie-banner, .cookie-modal { display: none !important; }
  * { color: #191919 !important; background: #fff !important; box-shadow: none !important; }
}
::selection {
  background: #FFDABF;
  color: #2C3E50;
}
section {
  padding: 15px;
}
/* --- END --- */