/* ========================
   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;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #22282A;
  color: #F2EFE7;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
a:focus { outline: 2px solid #DAA520; outline-offset: 3px; }
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
button { cursor: pointer; }

/* ========================
   BRAND COLOR VARIABLES
========================= */
:root {
  --color-primary: #266E5A;
  --color-secondary: #F2EFE7;
  --color-accent: #DAA520;
  --color-bg-dark: #22282A;
  --color-bg-light: #353A3D;
  --color-metal: #8D8F92;
  --color-border: #353A3D;
  --color-text-main: #F2EFE7;
  --color-text-dark: #1a1c1f;
  --color-shadow: rgba(30,36,41,0.12);
  --radius: 10px;
  --shadow: 0 4px 24px 0 rgba(20,20,26,0.09);
}

/* ===========================
   TYPOGRAPHY - INDUSTRIAL FONT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  color: #F2EFE7;
  margin-bottom: 12px;
}
h1 { font-size: 2.75rem; line-height: 1.14; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.35rem; line-height: 1.2; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, .text-section {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.8;
  font-size: 1rem;
}
strong { font-weight: 600; }

/* ===============
   CONTAINERS
================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  z-index: 1;
}

/* =====================
   HEADER & NAVIGATION
===================== */
header {
  background: #191B1E;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 12px rgba(30,32,36,0.07);
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.logo img {
  height: 43px;
  width: auto;
  display: block;
  filter: grayscale(20%) brightness(1.03);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.02em;
  color: #F2EFE7;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 8px;
  border-radius: 6px;
  position: relative;
  transition: background .17s, color .17s;
  text-shadow: none;
}
.main-nav a:hover, 
.main-nav a:focus {
  color: var(--color-accent);
  background: #232A2D;
}
.main-nav .cta.primary {
  background: var(--color-primary);
  border-radius: 7px;
  color: var(--color-secondary);
  box-shadow: 0 2px 10px rgba(38,110,90,0.08);
  padding: 9px 22px;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: .03em;
  margin-left: 10px;
  transition: transform .18s, background .16s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #38806F;
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.045);
}
.mobile-menu-toggle {
  display: none;
  background: #22282A;
  color: var(--color-accent);
  font-size: 2.1rem;
  padding: 8px 12px;
  border-radius: 7px;
  margin-left: 10px;
  border: 2px solid transparent;
  transition: background .16s, color .16s;
  z-index: 35;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #232a2d;
  color: #fff;
  border-color: var(--color-accent);
}
/* =====================
   MOBILE MENU STYLES
===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(34, 40, 42, .96);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform .35s cubic-bezier(.7,.3,.15,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--color-accent);
  font-size: 2.35rem;
  margin: 19px 36px 0 0;
  border: none;
  z-index: 51;
}
.mobile-nav {
  margin: 44px 0 0 0;
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: stretch;
  gap: 16px;
  padding: 14px 40px 40px 40px;
}
.mobile-nav a {
  background: transparent;
  color: #e7e8ea;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 18px 0 6px 0;
  border-bottom: 1px solid #353A3D;
  transition: color .18s, background .14s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: #2a2d2e;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 880px) {
  .main-nav {
     gap: 9px;
     font-size: .97em;
  }
  .main-nav .cta.primary { padding: 9px 12px; }
}
@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================
   HERO SECTION
===================== */
.hero {
  background: linear-gradient(100deg,#23282b 50%, #22282A 90%) no-repeat;
  box-shadow: 0 7px 48px rgba(20,22,28,0.07);
  padding-top: 56px;
  padding-bottom: 44px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 230px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 670px;
}
.hero h1 {
  color: var(--color-accent);
  text-shadow: 1px 2px 22px #181E19;
}
.hero p {
  color: #E3E1D9;
  font-size: 1.24em;
  max-width: 650px;
}
.hero .cta.primary {
  margin-top: 9px;
}
@media (max-width: 600px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 24px;
  }
  .hero h1 { font-size: 1.43rem }
  .hero p { font-size: 1em; }
}

/* ===============
   FLEX SPACING UTILS
================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(38, 110, 90, 0.15);
  transform: translateY(-4px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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;
}

/* Responsive patterns */
@media (max-width: 850px) {
  .content-grid, .card-container {
      flex-direction: column;
      gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
}

/* =============
   FEATURE GRID
============== */
.feature-grid, .service-list, .core-values, .core-values-list, .tips-list, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 28px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid li,
.benefits-grid li,
.service-list li,
.core-values li,
.core-values-list li,
.tips-list li {
  flex: 1 1 210px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 23px 19px 19px 19px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 20px;
  border: 1px solid #303437;
}
.feature-grid img,
.benefits-grid img,
.service-list img {
  width: 38px; height: 38px; margin-bottom: 5px;
  filter: brightness(1.14) contrast(1.05) grayscale(30%);
}
.core-values,
.core-values-list {
  margin-top: 16px;
}

/* ===========
   CASE STUDY
============ */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 16px;
}
.case-studies .text-section {
  background: var(--color-bg-light);
  box-shadow: 0 2px 10px #17171C22;
  border-radius: var(--radius);
  padding: 20px;
}

/* ================
   TESTIMONIALS
================ */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: #F2EFE7;
  color: #232520;
  border-radius: var(--radius);
  box-shadow: 0 2px 22px #11111817;
  padding: 22px 24px;
  flex: 1 1 320px;
  min-width: 240px;
  max-width: 400px;
  font-size: 1.07em;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-primary);
  transition: box-shadow .18s, border .15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.testimonial-card p {
  color: #232520;
  font-size: 1.13em;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  color: #7A7C7E;
  font-size: .98em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 3px 28px #191A1C38;
  border-left: 5px solid var(--color-accent);
}

/* ===============
   BLOG LIST
=============== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
}
.blog-list article {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 20px;
  flex: 1 1 240px;
  min-width: 190px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .11s;
  border-top: 3.5px solid var(--color-primary);
}
.blog-list article:hover {
  box-shadow: 0 6px 36px #191B1F25;
  border-top: 3.5px solid var(--color-accent);
  transform: translateY(-2px) scale(1.015);
}

/* ================
   STEP-BY-STEP
================ */
.step-by-step, .step-by-step-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 0 0;
}
.step-by-step li, .step-by-step-tips li {
  flex: 1 1 202px;
  background: #232C2D;
  color: #E3E1D9;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: var(--radius);
  padding: 18px 14px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  min-width: 170px;
}

/* FAQ */
.faq-items {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 24px 0 0 0;
}
.faq-items > div {
  background: var(--color-bg-light);
  border-radius: 9px;
  box-shadow: 0 2px 14px #21242714;
  flex: 1 1 270px;
  padding: 20px 20px 13px 21px;
  color: #e4e4e4;
  margin-bottom: 20px;
}
.faq-items strong {
  color: var(--color-accent);
  margin-bottom: 9px;
  display: inline-block;
}

/* ============== 
   CTA STYLES
============== */
.cta.primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 1.18em;
  box-shadow: 0 2px 16px #1B231935;
  display: inline-block;
  margin-top: 12px;
  border: 0 none;
  transition: background .17s, color .17s, transform .19s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-accent);
  color: #232520;
  transform: translateY(-2px) scale(1.03);
}

/* ===========
   FOOTER
=========== */
footer {
  background: #181C1A;
  color: #e0e3e7;
  padding: 38px 0 0 0;
  font-size: .97em;
  box-shadow: 0 -2px 18px #18191C17;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 20px;
  padding: 0 18px 18px 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1 1 210px;
  align-items: flex-start;
}
.footer-nav a {
  color: #E4E8DF;
  text-decoration: underline;
  transition: color .14s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  flex: 1 1 250px;
  min-width: 180px;
}
.brand-footer img {
  width: 54px;
  filter: grayscale(23%) brightness(1.08);
}
.brand-footer p {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  font-size: 1.04em;
}
.footer-contact {
  flex: 2 1 270px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  text-align: right;
}
.footer-contact p {
  color: #C8CACD;
  font-size: 1em;
}
@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .footer-contact { align-items: flex-start; text-align: left; }
  .brand-footer { align-items: flex-start; }
}

/* ============================
   ADDITIONAL LAYOUT/SECTIONS
============================ */
.text-section {
  background: transparent;
  padding: 0;
  color: #D7D8DA;
  margin-bottom: 12px;
}
.commitment-statement {
  background: #232C2D;
  color: #F2EFE7;
  border-radius: var(--radius);
  padding: 28px 20px 18px 18px;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 2px 16px #1B231921;
}

/* ===================
   SPACING UTILITY
===================*/
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 28px; }

/* ===================
   INDUSTRIAL ACCENTS
=================== */
.card, .feature-grid li, .benefits-grid li, .service-list li, .core-values li, .core-values-list li, .blog-list article, .step-by-step li, .step-by-step-tips li {
  border-left: 2px solid #505352;
  border-bottom: 2px solid #393D3C;
  box-shadow: 0 3px 16px #242E2F24;
}
.card:hover, .feature-grid li:hover, .blog-list article:hover {
  border-left: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: 0 7px 26px #205a5032;
}

/* METALLIC BUTTON ACCENT */
.cta.primary {
  box-shadow: 0 3px 12px #DAB73F29, 0 1.5px 0 #C6A34F inset;
  border-bottom: 2px solid #AA962F;
}
.cta.primary:hover, .cta.primary:focus {
  box-shadow: 0 5px 22px #daaa2029, 0 2px 0 #DAA520 inset;
  border-bottom: 2.5px solid #DCB63B;
}

/* ==================================================================
   COOKIE CONSENT BANNER & MODAL (ACCESSIBLE & STYLISH)
==================================================================*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: #2C312E;
  color: #fff;
  padding: 25px 20px 21px 20px;
  font-size: 1rem;
  box-shadow: 0 -4px 18px #22282668;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 18px;
  animation: cc-fade-in .7s ease;
}
@keyframes cc-fade-in {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: none; }
}
.cookie-consent-banner button {
  padding: 11px 18px;
  margin-right: 7px;
  background: #23282b;
  color: var(--color-accent);
  border-radius: 6px;
  border: 1.5px solid #353A3D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, border 0.13s, transform 0.16s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--color-accent);
  color: #232520;
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.045);
}
.cookie-consent-banner .cc-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #9fa09a;
  margin-right: 0;
}
.cookie-consent-banner .cc-settings:hover, .cookie-consent-banner .cc-settings:focus {
  background: #232520;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Cookie Modal Styles */
.cc-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 102;
  width: 100vw; height: 100vh;
  background: rgba(34,40,42,0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cc-overlay-fade-in .7s cubic-bezier(.66,.08,.28,1.01);
}
@keyframes cc-overlay-fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.cc-modal {
  background: #242927;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 44px #19231C44;
  padding: 36px 22px 32px 22px;
  max-width: 98vw;
  width: 410px;
  z-index: 120;
  animation: cc-modal-scale-in .4s cubic-bezier(.6,.2,.15,1.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
@keyframes cc-modal-scale-in {
  0% { opacity: 0; transform: scale(0.86); }
  100% { opacity: 1; transform: scale(1); }
}
.cc-modal h2 {
  color: var(--color-accent);
  font-size: 1.37em;
  margin-bottom: 17px;
}
.cc-cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #34377B19;
}
.cc-cookie-category:last-child { border-bottom: none; }
.cc-cookie-category label {
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cc-cookie-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}
.cc-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cc-slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #515357;
  border-radius: 16px;
  transition: background .18s;
}
.cc-cookie-toggle input:checked + .cc-slider {
  background: var(--color-accent);
}
.cc-slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: transform .16s;
}
.cc-cookie-toggle input:checked + .cc-slider:before {
  transform: translateX(20px);
}
.cc-modal-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cc-modal-actions button {
  padding: 10px 18px;
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border: 0;
  transition: background .15s, color .15s, transform .14s;
}
.cc-modal-actions button:hover, .cc-modal-actions button:focus {
  background: var(--color-accent);
  color: #181C1A;
  transform: translateY(-1px) scale(1.035);
}
.cc-modal .cc-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  color: var(--color-accent);
  font-size: 2em;
  border: none;
  cursor: pointer;
  transition: color .13s;
}
.cc-modal .cc-close:hover { color: #fff; }
@media (max-width: 500px) {
  .cc-modal {
    padding: 22px 10px 18px 10px;
    width: 97vw;
  }
}

/* ===========================
   MEDIA QUERIES FOR MOBILE
=========================== */
@media (max-width: 650px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.11rem; }
  .container {
    padding: 0 7px;
  }
  .feature-grid li,
  .benefits-grid li,
  .service-list li,
  .core-values li,
  .core-values-list li,
  .blog-list article {
    min-width: 150px;
    padding: 13px 8px 13px 8px;
    font-size: .99em;
  }
  .blog-list, .testimonials, .faq-items, .case-studies, .content-grid {
    gap: 10px;
  }
  .testimonial-card { padding: 16px 7px; }
  .step-by-step li, .step-by-step-tips li {
    min-width: 122px;
    padding: 13px 7px;
  }
  .footer-contact, .footer-nav, .brand-footer { font-size: .96em; }
  .section { padding: 20px 3px; margin-bottom: 36px; }
}

/* ============================
   INTERACTIVE / MICRO-ACTS
=========================== */
/* Subtle fade and scale for cards */
.card, .blog-list article, .feature-grid li, .benefits-grid li {
  transition: box-shadow .16s, transform .13s, border .16s;
}
.card:active, .blog-list article:active {
  transform: scale(0.99)
}
.cta.primary:active {
  transform: scale(0.98);
}
button, a {
  transition: color .13s, background .17s, box-shadow .13s, border .12s, transform .13s;
}

/* ============================
   FOCUS VISIBLE FOR ACCESSIBILITY
=========================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-accent) !important;
  outline-offset: 2.5px;
  box-shadow: 0 0 0 4px #DAA52035;
  z-index: 90;
}

/* ============================
   HIDE BANNER IN PRINT
=========================== */
@media print {
  .cookie-consent-banner, .mobile-menu {display: none !important;}
}