/* ========== CSS 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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFFFFF;
  color: #143B56;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ========== BRAND VARIABLES ========== */
:root {
  --primary: #143B56;
  --secondary: #EFEFEF;
  --secondary-bg: #FFFFFF;
  --accent: #845A2B;
  --accent-alt: #A67C52;
  --grey-light: #F7F7F8;
  --grey-mid: #BFC9D1;
  --shadow-main: 0 4px 20px rgba(20,59,86,0.05);
  --shadow-card: 0 2px 10px rgba(20,59,86,0.07);
  --radius-xs: 8px;
  --radius: 16px;
  --radius-lg: 32px;
  --header-height: 68px;
}

/* ========== TYPOGRAPHY ========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--primary);
  background: var(--secondary-bg);
}
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--primary);
}
b, strong {
  font-weight: 700;
  color: var(--accent);
}
li {
  margin-bottom: 8px;
  padding-inline-start: 0;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  margin: 0 0 12px 0;
  padding: 8px 0 8px 24px;
  background: var(--secondary);
  border-radius: var(--radius-xs);
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 1024px) {
  .section {
    padding: 32px 12px;
    margin-bottom: 38px;
  }
}

/* Spacing for grids/cards, as per spec */
.card-container, .feature-grid, .service-cards, .service-categories, .blog-articles, .project-list, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card, .project, .feature, .service-card, .service-detail, .blog-article, .step {
  position: relative;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.content-grid, .success-stories, .featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  min-height: var(--header-height);
  background: var(--primary);
  box-shadow: 0 2px 10px rgba(20,59,86,0.03);
  position: sticky;
  z-index: 100;
  top: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
  position: relative;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--secondary-bg);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover,
header nav a:focus {
  background: var(--accent);
  color: #fff;
}
.header .cta-btn,
header .cta-btn {
  margin-left: 12px;
}
header img {
  height: 40px;
  width: auto;
}

/* ========== CTAs & BUTTONS ========== */
.cta-btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 8px rgba(132,90,43,0.12);
  letter-spacing: 0.05em;
  border: 2px solid var(--accent);
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border-color 0.17s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(132,90,43,0.2);
}

button, .button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-xs);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  margin: 0 4px;
}
button:hover, .button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 201;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px rgba(20,59,86,0.11);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.7,0,0.3,1);
  z-index: 9999;
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: var(--primary);
  border: none;
  box-shadow: none;
  margin: 20px 30px 0 0;
  padding: 0 14px 0 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--primary);
  text-transform: uppercase;
  padding: 9px 0;
  letter-spacing: 0.05em;
  border-radius: var(--radius-xs);
  width: 100%;
  background: transparent;
  transition: background 0.16s, color 0.19s;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1024px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width:1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========== HERO/BANNERS ========== */
section:first-of-type {
  background: linear-gradient(120deg, var(--secondary-bg) 79%, var(--grey-light) 100%);
  padding: 60px 0 32px 0;
  min-height: 280px;
  margin-bottom: 0;
}
section .container {
  z-index: 1;
}
section .text-section h1,
section .text-section h2 {
  position: relative;
  padding-left: 8px;
  font-size: 2rem;
}
section .text-section h1:before,
section .text-section h2:before {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-xs);
  position: absolute;
  left: 0;
  top: -18px;
}

/* ========== FEATURE CARDS & GRIDS ========== */
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 220px;
  background: var(--grey-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  max-width: 340px;
  padding: 32px 18px 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-left: 7px solid var(--primary);
  transition: box-shadow 0.18s, border-left 0.2s;
}
.feature:hover,
.feature:focus {
  box-shadow: 0 4px 18px rgba(20,59,86,0.10);
  border-left: 7px solid var(--accent);
}
.feature img {
  height: 44px;
  width: auto;
  margin-bottom: 6px;
}

/* ========== SERVICE CARDS ========== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.service-card {
  flex: 1 1 260px;
  background: var(--grey-light);
  padding: 30px 18px 24px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 230px;
  max-width: 340px;
  transition: box-shadow 0.16s;
  border-bottom: 5px solid var(--accent);
}
.service-card a {
  margin-top: 10px;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-xs);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.97rem;
  letter-spacing: 0.03em;
  border: none;
  outline: none;
  box-shadow: 0 2px 6px rgba(20,59,86,0.13);
  transition: background 0.15s, color 0.18s;
}
.service-card a:hover {
  background: var(--accent);
  color: #fff;
}
.service-card:hover {
  box-shadow: 0 6px 20px rgba(20,59,86, 0.19);
}

.service-categories {
  gap: 24px;
  margin-bottom: 18px;
}
.service-detail {
  flex: 1 1 240px;
  background: var(--grey-light);
  border-radius: var(--radius-xs);
  padding: 24px 18px 18px 18px;
  box-shadow: var(--shadow-card);
  min-width: 180px;
  max-width: 340px;
  margin-bottom: 20px;
}

/* Steps (Process) */
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.step {
  flex: 1 1 220px;
  background: var(--grey-light);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-card);
  padding: 32px 20px 18px 20px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  max-width: 300px;
  border-top: 5px solid var(--primary);
  position: relative;
}
.step img {
  height: 42px;
  width: auto;
  margin-bottom: 4px;
}

/* Projects & Blog cards */
.project-list, .blog-articles {
  gap: 24px;
}
.project, .blog-article {
  flex: 1 1 270px;
  border-radius: var(--radius-xs);
  background: var(--grey-light);
  min-width: 180px;
  max-width: 340px;
  padding: 26px 15px 18px 17px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.project:hover, .blog-article:hover {
  box-shadow: 0 6px 24px rgba(20,59,86,0.12);
}

.success-stories, .featured-posts {
  background: var(--secondary);
  border-radius: var(--radius-xs);
  box-shadow: none;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px 8px 12px;
  flex-direction: column;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.testimonial-card {
  flex: 1 1 320px;
  min-width: 250px;
  max-width: 480px;
  background: var(--secondary);
  color: var(--primary) !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 20px 24px 18px 24px;
  border-left: 5px solid var(--accent);
  font-size: 1.07rem;
}
.testimonial-card blockquote {
  color: var(--primary);
  background: none;
  border-left: 3px solid var(--accent);
  margin-bottom: 8px;
  padding-left: 16px;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card p {
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 500;
}
.rating-summary {
  background: none;
  color: var(--primary);
  margin: 22px 0 2px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-summary h3 {
  margin-bottom: 2px;
}
.rating-summary img {
  height: 18px;
  width: 18px;
  margin-right: 2px;
  vertical-align: middle;
  display: inline-block;
}

/* ========== CONTACT INFO / FOOTER ========== */
.footer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing:0.02em;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
footer {
  background: var(--grey-light);
  padding: 32px 0 20px 0;
  margin-top: 60px;
  border-top: 2px solid var(--primary);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 0 0 8px 0;
  color: var(--primary);
  font-size: 0.99rem;
  opacity: 0.97;
}
footer nav a {
  color: var(--primary);
  text-decoration: underline dotted;
  padding: 0 2px;
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--accent);
}
footer img {
  height: 38px;
  width: auto;
  margin-bottom: 6px;
}

/* ========== CONTACT PAGE ========== */
.contact-info, .address-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.address-block h3 {
  margin-bottom: 4px;
}
.address-block p {
  margin-bottom: 0;
}

/* ========== PAGE UTILITY CLASSES ========== */
.text--center {
  text-align: center;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ================= COOKIE BANNER & MODAL ================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF;
  color: var(--primary);
  box-shadow: 0 -2px 20px rgba(20,59,86,0.07), 0 0 1px #BFC9D1;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 20px;
  gap: 18px;
  justify-content: space-between;
  font-size: 1.05rem;
  border-top: 3px solid var(--accent);
  animation: bannerIn 0.65s cubic-bezier(0.55,0,0.1,1) both;
}
@keyframes bannerIn {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius-xs);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-banner .cookie-btn:hover {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,59,86,0.32);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  animation: fadeIn 0.24s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  padding: 38px 30px 32px 30px;
  min-width: 90vw;
  max-width: 410px;
  border-radius: var(--radius);
  box-shadow: 0 18px 32px rgba(20,59,86,0.23);
  display: flex;
  flex-direction: column;
  gap: 19px;
  z-index: 3020;
  animation: modalIn 0.36s cubic-bezier(0.79,0,0.31,1) both;
}
@keyframes modalIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 13px;
  color: var(--primary);
  font-size: 1.2rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-family: "Roboto", Arial;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal .category-label {
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  display: inline-flex;
  gap: 5px;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  width: 36px;
  height: 20px;
  appearance: none;
  background: var(--secondary);
  border: 2px solid var(--accent);
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: border 0.14s, background 0.12s;
}
.cookie-modal .cookie-toggle input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-modal .cookie-toggle input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.16s;
  box-shadow: 0 1px 4px rgba(20,59,86,0.08);
}
.cookie-modal .cookie-toggle input[type="checkbox"]:checked:before {
  transform: translateX(16px);
  background: var(--primary);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 9px;
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}

/* ========== ANIMATIONS AND MICRO-INTERACTIONS ========== */
.feature:hover, .service-card:hover, .step:hover, .card:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 32px rgba(20,59,86,0.10);
}
.card, .feature, .service-card, .step, .project, .blog-article, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 900px) {
  .feature-grid, .service-cards, .service-categories, .blog-articles, .project-list, .step-list, .testimonials {
    gap: 16px;
  }
  .feature, .service-card, .service-detail, .step, .project, .blog-article, .testimonial-card {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .text-section {
    padding: 0 3px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  .feature-grid, .service-cards, .service-categories, .blog-articles, .project-list, .step-list, .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper, .text-section, .contact-info, .address-block, .footer-contact {
    gap: 10px;
  }
  .content-grid, .success-stories, .featured-posts {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  header .container {
    gap: 10px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-modal {
    min-width: 92vw;
    max-width: 94vw;
    padding: 21px 10px 16px 10px;
  }
}
@media (max-width: 480px) {
  html, body { font-size: 15px; }
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  section {
    padding: 26px 2px;
  }
  footer {
    padding: 26px 0 10px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 16px;
    font-size: 0.98rem;
    gap: 10px;
  }
}

/* ========== ACCESSIBILITY & FOCUS ========== */
:focus, .cookie-btn:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1.5px;
}

/* ========== MISC ========== */
::-webkit-scrollbar { width: 9px; background-color: #fff; }
::-webkit-scrollbar-thumb { background-color: var(--grey-mid); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ========== Print Adjustments ========== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .container { padding: 0 4px; }
  section { padding: 14px 2px; }
}
