/* ==================================
   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,
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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}
body {
  line-height: 1.5;
  background: #FAFAFA;
  color: #20304B;
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 16px;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20304B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB100;
  outline: none;
}
ul, ol {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 16px;
}
table {
  border-collapse: collapse;
}
th, td {
  padding: 8px 16px;
  border-bottom: 1px solid #E4E6EB;
}

/* ==================================
   FONT IMPORT
   ================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:400;500;700&display=swap');

/* ==================================
   BRAND COLORS & TYPOGRAPHY
   ================================== */
:root {
  --primary: #20304B;
  --secondary: #E4E6EB;
  --accent: #FFB100;
  --bg-main: #FAFAFA;
  --text-main: #20304B;
  --text-light: #465167;
  --shadow: 0 2px 12px 0 rgba(32,48,75,0.07);
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.125rem; }
p, li, table, ul, ol {
  font-family: 'Roboto', 'Georgia', serif;
  color: var(--text-light);
  font-size: 1rem;
}
strong, b {
  font-weight: bold;
  color: var(--primary);
}

/* ==================================
   CONTAINER & SPACING
   ================================== */
.container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features, .feature-grid, .service-list, .team-members-list, .testimonial-preview-list, .usp-highlights, .cards-row, .contact-footer {
  display: flex;
  flex-wrap: wrap;
}
.features, .cards-row, .service-list, .testimonial-preview-list, .team-members-list, .usp-highlights {
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(32,48,75,0.13);
  transform: translateY(-2px) scale(1.012);
}

.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;
}
.testimonial-card, .testimonial-preview-list > .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 26px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  min-width: 220px;
  flex: 1 1 310px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*****************
*   BUTTONS  *
******************/
.cta-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', serif;
  font-weight: 600;
  border: none;
  padding: 13px 38px;
  font-size: 1.15rem;
  border-radius: 36px;
  letter-spacing: 0.04em;
  margin-top: 6px;
  box-shadow: 0 2px 8px 0 rgba(255,177,0,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #ffd167;
  color: var(--primary);
  transform: translateY(-2px) scale(1.022);
  box-shadow: 0 8px 24px 0 rgba(255,177,0,0.13);
}

.google-reviews-link {
  color: var(--accent);
  font-weight: bold;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  display: inline-block;
  border-bottom: 1px dotted var(--accent);
  margin-top: 16px;
  transition: color 0.18s;
}
.google-reviews-link:hover,
.google-reviews-link:focus {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/*********************
*   HEADER   *
**********************/
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(32,48,75,0.06);
  position: sticky;
  top: 0; left: 0; right:0;
  z-index: 20;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  min-height: 74px;
  width: 100%;
}
header img[alt="BewarBratt Autos"] {
  height: 62px;
  width: auto;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  flex: 1;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-bottom 0.20s;
  margin-bottom: 0;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  outline: none;
}
header .cta-btn {
  margin-left: auto;
  font-size: 1rem;
  padding: 10px 28px;
}

/********* Mobile menu toggle *********/
.mobile-menu-toggle {
  background: var(--accent);
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  margin-left: 18px;
  cursor: pointer;
  display: none; /* Hidden on desktop */
  transition: background 0.18s;
  z-index: 55;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffd167;
}

/******* Mobile full-screen nav *******/
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; right: 0; left:0; bottom:0;
  background: #fff;
  z-index: 99;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(0.36,0.34,0.21,1.05);
  box-shadow: 0 4px 28px rgba(32,48,75,0.13);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.3rem;
  cursor: pointer;
  position: absolute;
  top: 20px; right: 26px;
  z-index: 120;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 54px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.25rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 4px;
  text-align: left;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

/*****************
*   HERO       *
******************/
.hero {
  background: linear-gradient(180deg, #E4E6EB 70%, #FAFAFA 100%);
  border-radius: 0 0 30px 30px;
  margin-bottom: 42px;
  box-shadow: 0 12px 40px 0 rgba(32,48,75,0.08);
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.17rem;
  line-height: 1.7;
  color: var(--text-main);
}
.hero .cta-btn {
  margin-top: 12px;
}

/*****************
*   FEATURES   *
*****************/
.features {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding-top: 32px;
  padding-bottom: 32px;
}
.features h2 {
  letter-spacing: 0.02em;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 210px;
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px 16px 20px 16px;
  box-shadow: 0 2px 7px 0 rgba(32,48,75,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px 0 rgba(32,48,75,0.13);
  transform: translateY(-2px);
}
.feature-grid img {
  width: 36px;
  height: auto;
  margin-bottom: 18px;
}

/*****************
*   ABOUT SECTION *
******************/
.about-preview, .about-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.brand-story {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 10px;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-family: 'Roboto', serif;
}

/*****************
*   SERVICES     *
*****************/
.services-preview, .services {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.service-card {
  background: #f8f9fb;
  border-radius: 14px;
  box-shadow: 0 2.5px 9px 0 rgba(32,48,75,0.07);
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 7px 28px 0 rgba(32,48,75,0.13);
  transform: translateY(-2px);
}
.service-card img {
  width: 36px;
  margin-bottom: 14px;
}

/*****************
*   TEAM SECTION *
*****************/
.team-members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-members-list > div {
  min-width: 220px;
  background: #f8f9fb;
  border-radius: 13px;
  padding: 20px 16px;
  box-shadow: 0 2px 7px 0 rgba(32,48,75,0.06);
  flex: 1 1 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expertise-tag {
  background: #E4E6EB;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 18px;
  font-size: 0.93rem;
  font-family: 'Montserrat', serif;
  margin-right: 4px;
  margin-bottom: 2px;
  display: inline-block;
}
.bio-snippet {
  font-style: italic;
  color: #495675;
  margin-top: 3px;
}

/*****************
*   TESTIMONIALS *
*****************/
.testimonials-preview, .testimonials, .review-summary {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.testimonial-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #f8f9fb;
  border-radius: 13px;
  padding: 22px 18px;
  box-shadow: 0 2px 8px 0 rgba(32,48,75,0.06);
  min-width: 220px;
  flex: 1 1 310px;
  color: var(--primary);
}
.testimonial-card .star-rating {
  color: #FFB100;
  font-size: 1.17rem;
  font-family: 'Montserrat', serif;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.testimonial-card p {
  color: var(--text-main);
  margin-bottom: 5px;
  font-family: 'Roboto', serif;
  font-size: 1.09rem;
}
.testimonial-card strong {
  color: var(--primary);
}
/*************
 review summary
**************/
.review-summary {
  background: #fff8ee;
}
.review-summary h2 {
  color: var(--accent);
  font-family: 'Montserrat', serif;
  margin-bottom: 12px;
}
.review-summary p {
  color: var(--text-main);
  font-size: 1.06rem;
  margin-bottom: 10px;
}

/*****************
*   CONTACT         *
*****************/
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 8px 0;
  align-items: center;
  justify-content: flex-start;
}
.contact-footer div {
  color: var(--text-light);
  font-family: 'Roboto', serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
}
footer {
  background: #fff;
  border-top: 2px solid #E4E6EB;
  margin-top: 32px;
  padding: 22px 0 8px 0;
  font-size: 0.98rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', serif;
  margin-bottom: 6px;
}
footer nav a {
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', serif;
  padding: 0 6px;
  border-bottom: 1.2px solid transparent;
  transition: border-bottom 0.13s;
}
footer nav a:hover, footer nav a:focus {
  border-bottom: 1.2px solid var(--accent);
}
footer .copyright {
  color: #8b97a9;
  font-size: 0.97rem;
  margin-top: 10px;
  text-align: center;
}

/*****************
*   USP & BADGES *
*****************/
.usp-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.usp-highlights span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', serif;
  background: #f8f9fb;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
}
.guarantee-badges {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
}
.guarantee-badges img {
  height: 32px;
}
.guarantee-badges span {
  color: var(--primary);
  font-weight: 600;
}

/*****************
*   LEGAL SECTION *
*****************/
.legal-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.legal-section ul {
  margin-top: 8px;
}
.legal-section h2 {
  margin-top: 28px;
}

/**************
*   CONTACT   *
**************/
.contact-section, .map-section, .hours-section, .thanks-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-section h1, .thanks-section h1 {
  color: var(--accent);
  font-family: 'Montserrat', serif;
}
.map-section img {
  width: 36px;
  margin-bottom: 10px;
}
.emergency-info {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff6eb;
  border-left: 5px solid var(--accent);
  padding: 13px 20px;
  border-radius: 12px;
  margin-top: 18px;
  color: var(--primary);
  box-shadow: 0 0 3px rgba(32,48,75,0.08);
}

/*********************
*   FORM & WIDGETS   *
*********************/
.appointment-form ul {
  margin-bottom: 14px;
}
.calendar-widget {
  background: #f8f9fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 16px;
  margin-top: 8px;
}
.calendar-widget img {
  width: 38px;
}

/***********************
*   TABLES             *
***********************/
table {
  width: 100%;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 7px 0 rgba(32,48,75,0.06);
  margin-bottom: 18px;
  overflow: hidden;
}
th {
  color: var(--primary);
  font-family: 'Montserrat', serif;
  font-weight: 600;
}
td {
  color: var(--text-main);
  font-family: 'Roboto', serif;
}
tr:last-child td {
  border-bottom: none;
}

/**********************
*   MODAL, COOKIE BANNER
***********************/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #E4E6EB;
  box-shadow: 0 -1px 10px 0 rgba(32,48,75,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 24px;
  z-index: 9999;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s, transform 0.28s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner p {
  color: var(--text-main);
  font-size: 1rem;
  font-family: 'Roboto', serif;
}
.cookie-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', serif;
  font-weight: bold;
  border: none;
  padding: 10px 18px;
  border-radius: 26px;
  font-size: 1rem;
  margin-right: 6px;
  margin-top: 2px;
  transition: background 0.18s, color 0.15s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: #E4E6EB;
  color: var(--primary);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #20304B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffd167;
  color: var(--primary);
  outline: none;
}
.cookie-consent-banner .cookie-btn:last-child {
  margin-right: 0;
}

.cookie-modal {
  position: fixed;
  z-index: 11000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,48,75,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 42px 0 rgba(32,48,75,0.19);
  padding: 38px 32px 32px 32px;
  min-width: 340px;
  max-width: 96vw;
  color: var(--text-main);
  font-family: 'Roboto', serif;
}
.cookie-modal .modal-content h3 {
  font-size: 1.38rem;
  font-family: 'Montserrat', serif;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 26px 0;
}
.cookie-modal .category-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-modal .category-item label {
  font-weight: 500;
  color: var(--primary);
}
.cookie-modal .switch {
  width: 38px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E4E6EB;
  border-radius: 60px;
  transition: background .2s;
}
.cookie-modal .switch input:checked + .slider {
  background-color: var(--accent);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 4px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}

/***********************
*   RESPONSIVE DESIGN  *
***********************/
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 992px) {
  .container { max-width: 99vw; }
  .feature-grid, .service-list, .testimonial-preview-list, .team-members-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .feature-grid > div, .service-card, .team-members-list > div, .testimonial-card {
    flex: 1 1 100%;
    min-width: 160px;
    margin-bottom: 18px;
  }
  header .container { gap: 12px; }
}
@media (max-width: 800px) {
  .container { max-width: 100vw; }
  .feature-grid, .service-list, .testimonial-preview-list, .team-members-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-card, .team-members-list > div, .testimonial-card {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  /* NAVIGATION */
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 0 14px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-grid, .feature-grid, .service-list, .testimonial-preview-list, .team-members-list {
    flex-direction: column;
    gap: 20px;
  }
  .usp-highlights {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid > div, .service-card, .team-members-list > div, .testimonial-card {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .section,
  section,
  .contact-section,
  .map-section,
  .hours-section,
  .thanks-section {
    padding: 23px 8px;
    margin-bottom: 33px;
    border-radius: 10px;
  }
  .container {
    padding: 0 5px;
  }
  header img[alt="BewarBratt Autos"] {
    height: 44px;
  }
  header .cta-btn {
    font-size: 0.97rem;
    padding: 8px 19px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 10px;
  }
  .cookie-modal .modal-content {
    padding: 22px 7px 18px 7px;
    min-width: 180px;
    max-width: 99vw;
  }
}
/********* Spacing fix for cookie banner overlap on mobile ********/
@media (max-width: 600px) {
  body {
    padding-bottom: 90px;
  }
}

/********* Utility spacing *********/
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-24 { margin-top: 24px !important; }

/************* Smooth transitions *************/
*, *:before, *:after {
  box-sizing: border-box;
  transition-property: background, color, border, box-shadow, transform;
  transition-duration: .16s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/*****************
*   Z-INDEX LAYERS
******************/
header { z-index: 30; }
.mobile-menu { z-index: 99; }
.cookie-consent-banner { z-index: 1000; }
.cookie-modal { z-index: 11000; }

/*****************
*   FOCUS STATES
*****************/
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/*****************
*   PRINT STYLE  *
*****************/
@media print {
  header, nav, .mobile-menu, .cookie-consent-banner {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
