/*-------------------------------------------------*/
/* CSS RESET & BASE (Normalize + Box-sizing)       */
/*-------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure, blockquote, pre {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #174C76;
  outline-offset: 2px;
}
html, body {
  width: 100%;
  min-height: 100%;
  background: #FAF3E8;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #362d19;
  line-height: 1.68;
  background-color: #FAF3E8;
}

/*-------------------------------------------------*/
/* FONTS (Retro-Vintage Choices w/@import)          */
/*-------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500&family=Pacifico&display=swap');

:root {
  --color-primary: #174C76;
  --color-primary-dark: #143c5d;
  --color-secondary: #27AE60;
  --color-secondary-dark: #218c4d;
  --color-accent: #F4F8FB;
  --color-bg: #FAF3E8;
  --color-vintage1: #DEB887; /* Burlywood, tan brown */
  --color-vintage2: #B76935; /* Retro orange */
  --color-vintage3: #16524B; /* Vintage green-blue dark */
  --color-vintage4: #EFCC75; /* Mustard yellow */
  --color-vintage5: #7D5A3A; /* retro brown */
  --shadow-vintage: 0 6px 24px -10px rgba(125, 90, 58, 0.15);
  --radius-large: 20px;
  --radius-normal: 12px;
  --radius-small: 6px;
  --transition-main: all 0.25s cubic-bezier(.49,.09,.13,.98);
  --font-display: 'Montserrat', 'Pacifico', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-script: 'Pacifico', cursive;
  --gap-section: 60px;
}

/*-------------------------------------------------*/
/* TYPOGRAPHY                                      */
/*-------------------------------------------------*/
h1, .hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--color-vintage2);
  text-shadow: 2px 2px 0 #EFCC75, 0 2px 10px rgba(125,90,58,0.09);
  line-height: 1.13;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 1px 1px 0 #efcc75, 0 2px 6px rgba(125,90,58,0.08);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-vintage3);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  font-weight: 700;
}
p, li, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #362d19;
  margin-bottom: 8px;
}
strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-vintage2);
}
.text-section h3 {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-vintage4);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

blockquote {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--color-vintage3);
  margin: 0 0 8px;
  background: #fffbe0;
  border-left: 6px solid var(--color-primary);
  padding: 18px 22px 10px 26px;
  border-radius: var(--radius-normal);
  box-shadow: 0 2px 18px -6px rgba(87,54,18,0.09);
}

/*-------------------------------------------------*/
/* LAYOUT: Container and Section Spacing           */
/*-------------------------------------------------*/
.container {
  width: 90%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}
.section, section, .hero-section, .features-section, .cta-section, .services-section, .about-section, .testimonials-section, .faq-section, .legal-section, .contact-section, .confirmation-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  background-color: transparent;
}
@media (max-width: 900px) {
  .section, section, .hero-section, .features-section, .cta-section, .services-section, .about-section, .testimonials-section, .faq-section, .legal-section, .contact-section, .confirmation-section {
    padding: 32px 5vw;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .section, section, .hero-section, .features-section, .cta-section, .services-section, .about-section, .testimonials-section, .faq-section, .legal-section, .contact-section, .confirmation-section {
    padding: 24px 4vw;
    margin-bottom: 24px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Cards, Features: Flexbox, Gaps, Alignment */
.feature-grid, .service-list, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list {
  flex-direction: column;
  gap: 20px;
}
.feature-grid > li, .feature-list > li, .service-list > li {
  background: #fffbe0;
  border-radius: var(--radius-large);
  padding: 20px 22px 16px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-vintage);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 230px;
  min-height: 160px;
  flex: 1 1 270px;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  filter: sepia(0.3) saturate(0.9) hue-rotate(-20deg);
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .feature-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > li, .feature-list > li, .service-list > li {
    min-width: 0;
    flex-basis: 100%;
    padding: 18px 5vw 14px 5vw;
  }
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: var(--radius-normal);
  box-shadow: 0 2px 14px -7px rgba(60,45,25,0.10);
  margin-bottom: 20px;
  border-left: 6px solid var(--color-vintage2);
  transition: box-shadow 0.18s;
}
.testimonial-card blockquote {
  margin-bottom: 0;
  background: none;
  padding: 0;
  border-left: none;
  box-shadow: none;
  font-size: 1.09rem;
  color: #273315;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px -5px #B7693522;
  border-left-color: var(--color-primary);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 13px 8px;
    font-size: 0.97rem;
  }
}

/* Text-Image Section (if any appears) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Cards Container (Unused on provided HTML but included by spec)*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-vintage);
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 30px -10px #B7693533;
  z-index: 3;
}

/* Feature Item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

.text-section {
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #DEB88740;
}
.text-section:last-child { border-bottom: none; }

/*-------------------------------------------------*/
/* NAVIGATION: Main Nav, Burger, Mobile Nav        */
/*-------------------------------------------------*/
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  padding: 14px 3vw;
  box-shadow: 0 4px 20px -15px var(--color-vintage5);
  border-bottom: 4px solid var(--color-vintage4);
  gap: 18px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  transition: color 0.18s;
  color: var(--color-primary-dark);
  position: relative;
  padding: 3px 5px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-vintage2);
}
.logo-link img {
  height: 40px;
  width: auto;
  filter: drop-shadow(1px 2px 0 #efcc75) drop-shadow(0px 2px 7px #b7693522);
}
.btn-primary {
  font-family: var(--font-display);
  background: var(--color-vintage2);
  color: #FFF;
  border-radius: var(--radius-large);
  padding: 10px 30px 12px 30px;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px -10px var(--color-primary-dark);
  border: 2px solid var(--color-vintage4);
  transition: var(--transition-main);
  margin-left: 18px;
  cursor: pointer;
  text-shadow: 1px 2px 0 #ae803a32;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: #FFFDEB;
  border-color: var(--color-vintage2);
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 14px 32px -8px #174C7620;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: var(--color-vintage2);
  color: #FFF;
  font-size: 2.2rem;
  border-radius: var(--radius-large);
  border: none;
  padding: 7px 16px;
  margin-left: auto;
  cursor: pointer;
  z-index: 1011;
  box-shadow: 0 2px 10px -2px #b7693522;
}
@media (max-width: 1024px) {
  .main-nav ul { gap: 16px; }
  .btn-primary { margin: 0 0 0 10px; }
}
@media (max-width: 820px) {
  .main-nav ul {
    gap: 10px;
  }
  .logo-link img {
    height: 33px;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 9px 20px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FAF3E8DD;
  box-shadow: 0 4px 36px -10px #B7693566;
  z-index: 1100;
  transform: translateX(-100%);
  transition: var(--transition-main);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: var(--transition-main);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  background: #fffbe0;
  border-radius: 50%;
  border: 2px solid var(--color-vintage4);
  padding: 0 13px;
  cursor: pointer;
  z-index: 1114;
  box-shadow: 0 3px 16px -8px #b7693522;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: var(--color-vintage2);
  color: #fff;
}
.mobile-nav {
  margin-top: 70px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--color-primary);
  padding: 7px 0;
  border-bottom: 1px dotted #b76935;
  border-radius: 0;
  transition: background 0.14s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-vintage2);
  color: #fff;
  border-radius: var(--radius-small);
  padding-left: 14px;
}


/*-------------------------------------------------*/
/* HERO, CTA & SECTION STYLES - RETRO THEME        */
/*-------------------------------------------------*/
.hero-section {
  background: repeating-linear-gradient(135deg,#fffbe0, #f9e3b8 40px, #fffbe0 60px, #EFCC75 120px);
  border-bottom: 6px double #deb887;
  box-shadow: 0 8px 28px -13px #7d5a3a22;
}
.hero-section .container > .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}
@media (max-width:500px) {
  .hero-section {
    background: #fffbe0;
    border-bottom-width: 3px;
  }
}

.cta-section {
  background: linear-gradient(90deg, #EFCC75 30%, #fffbe0 100%);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  box-shadow: 0 2px 18px -8px #deb88730, 0 3px 12px -10px #b7693588 inset;
}
.cta-section h2 {
  color: var(--color-vintage3);
}
.cta-section a.btn-primary {
  margin-top: 8px;
}

.services-section, .features-section {
  background: #FFF;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-vintage);
}

.about-section, .contact-section {
  background: #fffbe0;
  border-radius: var(--radius-normal);
  box-shadow: 0 2px 24px -13px #deb88760;
}

.confirmation-section {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: 0 4px 30px -16px #174C7630;
}

.legal-section {
  background: #eee7dd;
  border-radius: var(--radius-large);
  box-shadow: 0 2px 19px -13px #b7693530;
}

.faq-section {
  background: #fffbe0;
  border-radius: var(--radius-large);
  box-shadow: 0 2px 19px -9px #efcc7533;
}

/* FAQ Styles (from HTML structure) */
dl dt {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 20px;
}
dl dd {
  margin-bottom: 14px;
  margin-left: 22px;
  color: var(--color-vintage5);
}

/*-------------------------------------------------*/
/* FOOTER                                          */
/*-------------------------------------------------*/
footer {
  background: #FFF;
  border-top: 8px double #DEB887;
  box-shadow: 0 -2px 24px -6px #deb88733;
}
footer .container {
  padding: 30px 0 10px 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
.footer-contact p {
  font-size: 0.99rem;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact img {
  height: 20px;
  width: 20px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.footer-menu a {
  font-family: var(--font-display);
  color: var(--color-vintage5);
  font-size: 0.97rem;
  transition: color 0.16s, text-decoration 0.14s;
  border-bottom: 1px dashed transparent;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-vintage2);
  text-decoration: underline wavy var(--color-vintage3);
  border-bottom: 1px dashed var(--color-vintage2);
}
.social-media {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-media a img {
  height: 28px;
  width: 28px;
  filter: sepia(0.2) hue-rotate(-10deg) brightness(0.88);
  transition: filter 0.15s;
}
.social-media a:hover img {
  filter: brightness(1) sepia(0) hue-rotate(0deg);
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-menu {
    gap: 11px;
    margin-bottom: 6px;
  }
}

/*-------------------------------------------------*/
/* BUTTONS & MICRO-INTERACTIONS                    */
/*-------------------------------------------------*/
.btn-primary,
button,
input[type="button"],
input[type="submit"] {
  cursor: pointer;
  transition: var(--transition-main);
}
.btn-primary:active {
  transform: scale(0.97);
}

/*-------------------------------------------------*/
/* COOKIE CONSENT BANNER + POPUP                    */
/*-------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #FFFBE0;
  border-top: 5px solid var(--color-vintage2);
  box-shadow: 0 -2px 24px -6px #b7693532;
  z-index: 9998;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  font-size: 1.02rem;
  animation: cookieSlideUp 0.4s cubic-bezier(.27,.6,.55,1) both;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 6vw;
    gap: 13px;
    font-size: 0.95rem;
  }
}
@keyframes cookieSlideUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-left: 14px;
  border-radius: var(--radius-normal);
  border: 2px solid var(--color-vintage2);
  padding: 7px 20px;
  margin-bottom: 0;
  transition: var(--transition-main);
  background: var(--color-vintage2);
  color: #FFFDEB;
  font-weight: 700;
  box-shadow: 0 2px 6px -2px #b7693510;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-vintage4);
  color: var(--color-primary-dark);
  border-color: var(--color-vintage3);
}
.cookie-banner .btn-settings {
  background: #fff;
  color: var(--color-vintage2);
  border: 2px dashed var(--color-vintage2);
  margin-left: 14px;
}
.cookie-banner .btn-settings:hover {
  background: var(--color-vintage2);
  color: #FFF;
  border-style: solid;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 12010;
  background: #362d1944;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadeInCookie 0.24s cubic-bezier(.46,.86,.57,1.37) forwards;
}
@keyframes fadeInCookie { from {opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  background: #FFFBE0;
  padding: 40px 32px 28px;
  border-radius: var(--radius-large);
  box-shadow: 0 6px 36px -8px #b7693540;
  min-width: 290px;
  max-width: 98vw;
  font-family: var(--font-body);
  color: var(--color-primary-dark);
  animation: cookieModalIn 0.5s cubic-bezier(.28,1.02,.66,1) both;
  position: relative;
}
@keyframes cookieModalIn { from {scale: 0.9; opacity: 0;} to {scale: 1; opacity: 1;} }
.cookie-modal h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--color-vintage2);
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-modal .cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #deb887;
  border-radius: 20px;
  transition: .2s;
}
.cookie-modal .cookie-toggle input:checked + .cookie-slider {
  background: var(--color-primary);
}
.cookie-modal .cookie-slider:after {
  content: '';
  position: absolute;
  left: 4px; top: 2.5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: .2s;
}
.cookie-modal .cookie-toggle input:checked + .cookie-slider:after {
  transform: translateX(13px);
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .btn-cancel {
  background: #fff;
  color: var(--color-primary-dark);
  border: 1px solid #deb887;
}
.cookie-modal .btn-confirm {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal .btn-cancel:hover,
.cookie-modal .btn-cancel:focus {
  background: #f9e3b8;
}
/* Close button for modal */
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 11px; right: 13px;
  background: #fff;
  border: 2px solid #deb887;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.3rem;
  padding: 2px 9px;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover {
  background: #deb887;
  color: #fff;
}

/*-------------------------------------------------*/
/* RESPONSIVE - GLOBAL FLEX & TYPO BREAKPOINTS     */
/*-------------------------------------------------*/
@media (max-width: 1024px) {
  h1, .hero-section h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .container { max-width: 95vw; }
}
@media (max-width: 700px) {
  h1, .hero-section h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  .footer-logo img { height: 26px; }
  .footer-contact p { font-size: 0.94rem; }
}

/*----- Minimal extra responsive for small screens -----*/
@media (max-width: 420px) {
  .footer-logo img {
    height: 22px;
  }
  .cookie-banner {
    font-size: 0.92rem;
  }
}

/*-------------------------------------------------*/
/* SCROLLBAR STYLING RETRO                         */
/*-------------------------------------------------*/
::-webkit-scrollbar {
  width: 13px;
  background: #f4f8fb;
}
::-webkit-scrollbar-thumb {
  background: #deb887;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b76935;
}

/*-------------------------------------------------*/
/* RETRO VINTAGE DECORATIVE ELEMENTS               */
/*-------------------------------------------------*/
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 13px; top: 6px;
  width: 48px; height: 5px;
  border-radius: 4px;
  background: linear-gradient(96deg,#b76935 0%, #deb887 100%);
  opacity: .11;
}
@media (max-width: 700px) {
  .section::before { display: none; }
}
.legal-section::before { display: none; }
.hero-section::before { display: none; }

/*-------------------------------------------------*/
/* FORM STYLES (For any forms that might appear)   */
/*-------------------------------------------------*/
input,
textarea,
select {
  background: #FFF;
  border: 2px solid #deb887;
  border-radius: var(--radius-small);
  padding: 9px 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  box-shadow: 0 2px 6px -3px #deb88733;
  transition: border 0.18s;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
}

/*-------------------------------------------------*/
/* MISC (Z-indices, Hide, Utility)                 */
/*-------------------------------------------------*/
.d-none { display: none !important; }
.z-90 { z-index: 90; }
.z-1000 { z-index: 1000; }

/*-------------------------------------------------*/
/* PRINT STYLES                                    */
/*-------------------------------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body, main { background: #fff !important; color: #222 !important; }
}
